Skip to content

Commit 508327d

Browse files
committed
1.5.0: Change 'home' repo from 4pr0n/RipMe to RipMeApp/RipMe
1 parent 1bcec92 commit 508327d

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.rarchives.ripme</groupId>
55
<artifactId>ripme</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.4.21</version>
7+
<version>1.5.0</version>
88
<name>ripme</name>
99
<url>http://rip.rarchives.com</url>
1010
<properties>

ripme.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
2-
"latestVersion" : "1.4.21",
2+
"latestVersion" : "1.5.0",
33
"changeList" : [
4+
"1.5.0: Change 'home' repo from 4pr0n/RipMe to RipMeApp/RipMe",
45
"1.4.21: Added Chevereto ripper (hushpix.com, tag-fox.com)",
56
"1.4.20: EroshareRipper can now rip user profiles",
67
"1.4.19: WordpressComicRipper supports more rippers; improvements to Instagram and code quality",

src/main/java/com/rarchives/ripme/ui/UpdateUtils.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,14 @@
2121
public class UpdateUtils {
2222

2323
private static final Logger logger = Logger.getLogger(UpdateUtils.class);
24-
private static final String DEFAULT_VERSION = "1.4.21";
25-
private static final String updateJsonURL = "https://raw.githubusercontent.com/4pr0n/ripme/master/ripme.json";
24+
private static final String DEFAULT_VERSION = "1.5.0";
25+
private static final String REPO_NAME = "ripmeapp/ripme";
26+
private static final String updateJsonURL = "https://raw.githubusercontent.com/" + REPO_NAME + "/master/ripme.json";
2627
private static final String mainFileName = "ripme.jar";
2728
private static final String updateFileName = "ripme.jar.update";
2829

2930
public static String getUpdateJarURL(String latestVersion) {
30-
return "https://github.com/4pr0n/ripme/releases/download/" + latestVersion + "/ripme.jar";
31+
return "https://github.com/" + REPO_NAME + "/releases/download/" + latestVersion + "/ripme.jar";
3132
}
3233

3334
public static String getThisJarVersion() {

0 commit comments

Comments
 (0)