Skip to content

Commit

Permalink
1.1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
DiamondCoder02 committed Nov 30, 2023
1 parent 9eee063 commit dd96102
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
Binary file modified builds/HentaiGameManager.exe
Binary file not shown.
Binary file modified builds/HentaiGameManager.jar
Binary file not shown.
5 changes: 2 additions & 3 deletions src/WebsiteHandle/autoUpdateCheck.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,13 @@ public static Boolean checkUpdate() {
if (currentVersion == null) {currentVersion = mainInit.appVersion;}
else {JOptionPane.showMessageDialog(null, "Error getting version (checkUpdate)", "Error", JOptionPane.ERROR_MESSAGE);}
}
String url = "https://github.com/DiamondPRO02/nsfw-game-manager/releases/latest";
String url = "https://github.com/DiamondCoder02/nsfw-game-manager/releases/latest";

Boolean updateNeeded = false;
onlineLocation = getOnlineLocation(url); if (onlineLocation == null) { return updateNeeded; }
onlineVersion = onlineLocation.substring(onlineLocation.lastIndexOf("/") + 1, onlineLocation.length());
onlineVersion = onlineVersion.substring(0, onlineVersion.lastIndexOf("-"));
System.out.println(onlineVersion);
System.out.println(currentVersion);
System.out.println(onlineVersion + " -> " + currentVersion);
if (!onlineVersion.equals(currentVersion)) { updateNeeded = true; }
System.out.println("Update is needed: "+updateNeeded);
return updateNeeded;
Expand Down
6 changes: 3 additions & 3 deletions src/main/application/otherButtons.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ public static void FACKQU(){ // TODO faq
"- Dlsite so only ID needed"+br+
"- (Far future) If I can, I will also add to download / autoupdate games"+br+br+
"Q: Support the project?"+br+"A: Patreon:"+" <font color = 64AFFF><a href=\"https://www.patreon.com/DiamondCoder\">https://www.patreon.com/DiamondCoder</a></font>"+br+
"or on Github:"+" <font color = 64AFFF><a href=\"https://github.com/sponsors/DiamondPRO02\">https://github.com/sponsors/DiamondPRO02</a></font>"+br+br+
"Q: Can I help code / Error in the program?"+br+"A: All isssue and help is accepted on GitHub:"+" <font color = 64AFFF><a href=\"https://github.com/DiamondPRO02/nsfw-game-manager\">https://github.com/DiamondPRO02/nsfw-game-manager</a></font>"+br+br+
"or on Github:"+" <font color = 64AFFF><a href=\"https://github.com/sponsors/DiamondCoder02\">https://github.com/sponsors/DiamondCoder02</a></font>"+br+br+
"Q: Can I help code / Error in the program?"+br+"A: All isssue and help is accepted on GitHub:"+" <font color = 64AFFF><a href=\"https://github.com/DiamondCoder02/nsfw-game-manager\">https://github.com/DiamondCoder02/nsfw-game-manager</a></font>"+br+br+
"Q: placeholder?"+br+"A: placeholder!"+
"</span></p>");
ep.addHyperlinkListener(new HyperlinkListener() {
Expand Down Expand Up @@ -103,7 +103,7 @@ public static void money(){
"The main reason for this was to convert my old excel file into something more readeble and more usefull."+br+
"Main focus is something dynamic and easy to use for hentai games."+br+br+
"Thank you for using this program, it gives me smile I can make something good."+br+br+
"Full open source:"+" <font color = 64AFFF><a href=\"https://github.com/DiamondPRO02/nsfw-game-manager\">https://github.com/DiamondPRO02/nsfw-game-manager</a></font>"+br+
"Full open source:"+" <font color = 64AFFF><a href=\"https://github.com/DiamondCoder02/nsfw-game-manager\">https://github.com/DiamondCoder02/nsfw-game-manager</a></font>"+br+
"Support me on Github or on Patreon:"+" <font color = 64AFFF><a href=\"https://www.patreon.com/DiamondCoder\">https://www.patreon.com/DiamondCoder</a></font></span></p>"+br);
ep.addHyperlinkListener(new HyperlinkListener() {
@Override
Expand Down

0 comments on commit dd96102

Please sign in to comment.