mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-09-03 02:42:47 +02:00
1.0.88 - Fix imgbox rips
This commit is contained in:
@@ -49,8 +49,8 @@ public class ImgboxRipper extends AbstractHTMLRipper {
|
||||
List<String> imageURLs = new ArrayList<String>();
|
||||
for (Element thumb : doc.select("div.boxed-content > a > img")) {
|
||||
String image = thumb.attr("src")
|
||||
.replace("s.imgbox.com",
|
||||
"i.imgbox.com");
|
||||
.replaceAll("[a-zA-Z0-9.]+s.imgbox.com",
|
||||
"i.imgbox.com");
|
||||
imageURLs.add(image);
|
||||
}
|
||||
return imageURLs;
|
||||
|
@@ -21,7 +21,7 @@ import com.rarchives.ripme.utils.Utils;
|
||||
public class UpdateUtils {
|
||||
|
||||
private static final Logger logger = Logger.getLogger(UpdateUtils.class);
|
||||
private static final String DEFAULT_VERSION = "1.0.87";
|
||||
private static final String DEFAULT_VERSION = "1.0.88";
|
||||
private static final String updateJsonURL = "http://rarchives.com/ripme.json";
|
||||
private static final String updateJarURL = "http://rarchives.com/ripme.jar";
|
||||
private static final String mainFileName = "ripme.jar";
|
||||
|
Reference in New Issue
Block a user