Skip to content

Commit b2687ff

Browse files
committed
Bump to v2.1
1 parent 02a606a commit b2687ff

File tree

10 files changed

+18
-9
lines changed

10 files changed

+18
-9
lines changed

.idea/modules/blobsaver.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/blobsaver_main.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/blobsaver_test.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1+
PULL_REQUEST_TEMPLATE.md

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ A GUI for saving SHSH blobs using encounter's fork of tsschecker(uses tihmstar's
55

66
If you have an antivirus or firewall, you may need to disable some other settings or disable the firewall completely for automatically saving blobs in the background to work. If you use Norton, go to Settings -> Firewall -> Advanced Program Control and set the option "Low Risk Applications" to "Allow".
77

8-
![Mac Screenshot](https://i.imgur.com/czq78Yf.png)
9-
![Windows Screenshot](https://i.imgur.com/zlPh4JY.png)
8+
![Mac Screenshot](https://i.imgur.com/DLPbzNd.png)
9+
![Windows Screenshot](https://i.imgur.com/oxqUZsI.png)
1010

1111
## Features
1212
- **Automatically save blobs in the background**

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'java'
44
}
55

6-
version '2.1-beta'
6+
version '2.1'
77

88
sourceCompatibility = 1.8
99

src/main/java/blobsaver/Controller.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -994,6 +994,14 @@ public void debugLogHandler() {
994994
}
995995
}
996996

997+
public void showWiki() {
998+
try {
999+
Desktop.getDesktop().browse(new URI("https://github.com/airsquared/blobsaver/wiki"));
1000+
} catch (IOException | URISyntaxException e) {
1001+
e.printStackTrace();
1002+
}
1003+
}
1004+
9971005
public void throwException() {
9981006
throw new EnumConstantNotPresentException(Notification.Notifier.class, "");
9991007
}

src/main/java/blobsaver/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
public class Main {
3737

38-
static final String appVersion = "v2.1-beta";
38+
static final String appVersion = "v2.1";
3939
static final Preferences appPrefs = Preferences.userRoot().node("airsquared/blobsaver/prefs");
4040
private static final String appID = "com.airsquared.blobsaver";
4141
static Stage primaryStage;

src/main/resources/blobsaver/blobsaver.fxml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@
3535
<MenuItem mnemonicParsing="false" onAction="#resetAppHandler" text="Clear all data"/>
3636
</Menu>
3737
<Menu mnemonicParsing="false" text="Help">
38+
<MenuItem mnemonicParsing="false" onAction="#showWiki"
39+
text="blobsaver Wiki"/>
3840
<MenuItem mnemonicParsing="false" onAction="#newGithubIssue"
3941
text="Send Feedback(Github Issue)"/>
4042
<MenuItem mnemonicParsing="false" onAction="#sendRedditPM"

src/main/resources/blobsaver/libraries_used_windows.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ Copyright (c) 2015 by Gerrit Grunwald
4141

4242
Licensed under the Apache License, Version 2.0.
4343
(https://www.apache.org/licenses/LICENSE-2.0)
44-
To read the license offline, unzip the jar and open enzo_lib-license.txt
4544

4645
============================================================================
4746

0 commit comments

Comments
 (0)