Skip to content

Commit

Permalink
1.7.53: Added Picstatio ripper; Fixed instagram ripper; Reddit ripper…
Browse files Browse the repository at this point in the history
… now gets videos from v.redd.it; Fixed ZikiRipper getAlbumTitle; fixed twitter ripper
  • Loading branch information
cyian-1756 committed Jun 19, 2018
1 parent 0daec63 commit 53684ca
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.rarchives.ripme</groupId>
<artifactId>ripme</artifactId>
<packaging>jar</packaging>
<version>1.7.52</version>
<version>1.7.53</version>
<name>ripme</name>
<url>http://rip.rarchives.com</url>
<properties>
Expand Down
5 changes: 3 additions & 2 deletions ripme.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"latestVersion": "1.7.52",
"changeList": [
"1.7.53: Added Picstatio ripper; Fixed instagram ripper; Reddit ripper now gets videos from v.redd.it; Fixed ZikiRipper getAlbumTitle; fixed twitter ripper",
"1.7.52: Added warning about using furaffinty shared account; Refactoring in Utils class; XhamsterRipper now accepts all countries subdomains; E621 ripper now accepts urls with order:Score at the end; release.py imrpovements; DeviantartRipper now logs in using cookies; patch.py imrpovements",
"1.7.51: Fixed instagram ripper; Added the ability to rip from vsco profiles; Fixed TheyiffgalleryRipper; Can now update ripme using the -j flag; added script to automate releases; Code style fixes",
"1.7.50: Ripme now checks file hash before running update; fixed update bug which cased ripme to report every update as new",
Expand Down Expand Up @@ -224,5 +224,6 @@
"1.0.3: Added VK.com ripper",
"1.0.1: Added auto-update functionality"
],
"currentHash": "a384d44f2b0c7f517bef3d87ebabc73aaa0887622da8ac3b61bd9d8b29ada48d"
"latestVersion": "1.7.53",
"currentHash": "3447ec65444b979d8c28bdbfdbc3a675166c8dce695b9c5fb4716ff1b5195e35"
}
2 changes: 1 addition & 1 deletion src/main/java/com/rarchives/ripme/ui/UpdateUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
public class UpdateUtils {

private static final Logger logger = Logger.getLogger(UpdateUtils.class);
private static final String DEFAULT_VERSION = "1.7.52";
private static final String DEFAULT_VERSION = "1.7.53";
private static final String REPO_NAME = "ripmeapp/ripme";
private static final String updateJsonURL = "https://raw.githubusercontent.com/" + REPO_NAME + "/master/ripme.json";
private static final String mainFileName = "ripme.jar";
Expand Down

5 comments on commit 53684ca

@thinkpad4
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cyian-1756 I'm testing with Taylor Swift and it doesn't stop ripping. She has about 187 pics on her IG, it ripped over 1000 and showed no sign of stopping. I had to manually stop it. Tested with https://www.instagram.com/katebeckinsale/?hl=en too. Isn't stopping

@cyian-1756
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like for some reason instagram keeps returning new images long after it should've stopped

@cyian-1756
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like the instagram api is returning the images of a random user every time getnextpage is called

@cyian-1756
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's the fucking queryHash! Making the getNextPage request with one hash will return the users images, but the other will return some photos the user was tagged in (or liked or retweeted or whatever the hell ig calls it)!

@cyian-1756
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've fixed this and made a PR

Please sign in to comment.