Skip to content

Commit

Permalink
1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Faust committed Nov 7, 2022
1 parent 0199db6 commit 7568539
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion resources/card-generator.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Sun Nov 06 15:38:43 CET 2022
#Mon Nov 07 17:53:11 CET 2022
card.alphacomposite.black=23
card.alphacomposite.white=0
card.background=Old Bumbers.jpg
Expand Down
2 changes: 1 addition & 1 deletion resources/overlay-generator.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Sun Nov 06 15:38:43 CET 2022
#Mon Nov 07 17:53:11 CET 2022
overlay.alphacomposite.black=0
overlay.alphacomposite.white=0
overlay.background=background4k.jpg
Expand Down
2 changes: 1 addition & 1 deletion resources/service.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Sun Nov 06 15:38:43 CET 2022
#Mon Nov 07 17:53:11 CET 2022
killswitch.key=n
2 changes: 1 addition & 1 deletion src/main/java/de/mephisto/vpin/extensions/Updater.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
public class Updater {
private final static Logger LOG = LoggerFactory.getLogger(Updater.class);

private final static String VERSION = "1.0.9";
private final static String VERSION = "1.0.10";
private final static String BASE_URL = "https://github.com/syd711/vpin-extensions/releases/download/%s/";
private final static String VERSION_PROPERTIES = "https://raw.githubusercontent.com/syd711/vpin-extensions/main/version.properties";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ public ServiceTab(ConfigWindow configWindow, VPinService service) {
installButton = WidgetFactory.createConfigButton(settingsPanel, "install", "Install Autostart", "VPin Service Installation:", this);
startButton = WidgetFactory.createConfigButton(settingsPanel, "start", "Start Test Service", "Service Test Instance:", this);




keyCombo = new JComboBox(new DefaultComboBoxModel(new Vector(Keys.getKeyNames())));
keyCombo.setActionCommand("keyCombo");
keyCombo.addActionListener(this);
Expand All @@ -58,7 +55,7 @@ public ServiceTab(ConfigWindow configWindow, VPinService service) {
separator.setPreferredSize(new Dimension(1, 24));
settingsPanel.add(separator, "wrap");

settingsPanel.add(new JLabel("PinUP Popper Killswitch:"));
settingsPanel.add(new JLabel("PinUP Popper Reset:"));
settingsPanel.add(keyCombo, "wrap");

String hotkey = Config.getServiceConfig().getString("killswitch.key");
Expand Down
2 changes: 1 addition & 1 deletion version.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=1.0.9
version=1.0.10

0 comments on commit 7568539

Please sign in to comment.