1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-22 21:43:06 +02:00

add ripme-2.0.0 sha256sum

This commit is contained in:
soloturn
2021-12-26 13:15:29 +01:00
parent 2b4d4cc124
commit c653c7f016
2 changed files with 6 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
{ {
"currentHash": "008201e406f401b27248277a4188f26203bb9da0170872de900125f8a6c8b558", "currentHash": "8f51271e5a9e138a9d7f7febe11809619a28e7272cb231fed9b4a6faef88e8b6",
"changeList": [ "changeList": [
"2.0.0: Fixed Zizki, WordpressComics, Imagebam; marked some tests as flaky ",
"1.7.95: Added porncomixinfo.net; Fixed ripper for HentaiNexus; move l option to before r and R; marked some tests as flaky ", "1.7.95: Added porncomixinfo.net; Fixed ripper for HentaiNexus; move l option to before r and R; marked some tests as flaky ",
"1.7.94: Added reddit gallery support; Fixed AllporncomicRipper; Fix imagefap ripper; instagramRipper, replaced Nashorn with GraalVM.js", "1.7.94: Added reddit gallery support; Fixed AllporncomicRipper; Fix imagefap ripper; instagramRipper, replaced Nashorn with GraalVM.js",
"1.7.93: Fixed Motherless ripper; Fixed e621 ripper; Updated pt_PT translation; Implemented redgifs Ripper; added missing translation to Korean/KR; Fixed elecx ripper; Added ripper for HentaiNexus", "1.7.93: Fixed Motherless ripper; Fixed e621 ripper; Updated pt_PT translation; Implemented redgifs Ripper; added missing translation to Korean/KR; Fixed elecx ripper; Added ripper for HentaiNexus",
@@ -268,4 +269,4 @@
"1.0.1: Added auto-update functionality" "1.0.1: Added auto-update functionality"
], ],
"latestVersion": "1.7.95" "latestVersion": "1.7.95"
} }

View File

@@ -26,8 +26,8 @@ public class UpdateUtils {
private static final Logger logger = LogManager.getLogger(UpdateUtils.class); private static final Logger logger = LogManager.getLogger(UpdateUtils.class);
// do not update the default version without adjusting the unit test. the real version comes from METAINF.MF // do not update the default version without adjusting the unit test. the real version comes from METAINF.MF
private static final String DEFAULT_VERSION = "1.7.94-10-b6345398"; private static final String DEFAULT_VERSION = "1.7.94-10-b6345398";
private static final String REPO_NAME = "ripmeapp/ripme"; private static final String REPO_NAME = "ripmeapp2/ripme";
private static final String updateJsonURL = "https://raw.githubusercontent.com/" + REPO_NAME + "/master/ripme.json"; private static final String updateJsonURL = "https://raw.githubusercontent.com/" + REPO_NAME + "/main/ripme.json";
private static String mainFileName; private static String mainFileName;
static { static {
@@ -44,7 +44,7 @@ public class UpdateUtils {
private static JSONObject ripmeJson; private static JSONObject ripmeJson;
private static String getUpdateJarURL(String latestVersion) { private static String getUpdateJarURL(String latestVersion) {
return "https://github.com/" + REPO_NAME + "/releases/download/" + latestVersion + "/ripme.jar"; return "https://github.com/" + REPO_NAME + "/releases/download/latest-" + latestVersion + "/ripme"+ latestVersion + ".jar";
} }
public static String getThisJarVersion() { public static String getThisJarVersion() {