You can now find the latest code, issues, and releases at RipMeApp/ripme.
Please be polite and supportive to all users and contributors. Please be inclusive of everyone regardless of race, religion, gender identity or expression, sexual preference, or tools and platform preferences. Please be helpful and stick to the engineering facts, and avoid expressing unhelpful or off-topic opinions.
Please tag NSFW links (links to sites with adult content) with "(NSFW)"!
Many of the sites we deal with contain NSFW (Not Safe For Work) content. Please assume any link you see is NSFW unless tagged otherwise -- i.e., SFW (Safe For Work). Please tag all links you post with either "(NSFW)" or "(SFW)" to be considerate to others who may not be browsing this repo in private or who are not interested in NSFW content.
There is a helpful plugin called uMatrix available for Firefox and Chrome which allows you to block certain types of content like media and scripts. If you're not sure if a site might contain NSFW images or media, and you are in mixed company but want to develop a new ripper, you can block downloading images and media in the * (all sites) scope and allow requests for specific domains you trust as you go. Being able to browse the HTML is usually the most important part of developing or fixing a ripper, so it is not necessarily important to actually see the images load.
Our priorities, roughly in order of impact:
If you have noticed a bug in RipMe, please open an issue at RipMeApp/ripme.
Please include enough information that we can easily confirm the problem and verify when it is fixed. (For example: the exact URL that you tried to rip when something bad/incorrect happened.)
Request support for more sites by adding a comment to this Github issue.
If you're a developer, you can add your own Ripper by following the wiki guide How To Create A Ripper for HTML Websites.
Before you open your pull request, please consider the following:
master branch of this repo (i.e. https://github.com/RipMeApp/ripme.git)
git pull on the master branch before starting work on your bug fix.gradlew test shows no new errors since before your change.src/test/java/com/rarchives/ripme/tst/ripper/rippers/ImgurRipperTest.javaGenerally, we will regard style changes as low-priority. Please consider that the contributors don't have a lot of volunteer time to work on this project, so style changes which do not improve the functionality of the project may be ignored in favor of critical bug fixes, new features, or other tangible improvements. Additionally, changes which are difficult to review may be ignored.
If you make a large or complex change, please detail what changes you made, and how they are helpful or what they fix.
If you feel the need to make a style change: changes to spacing and so on are easy to review regardless of the number of lines changed if ONLY whitespace changes are present. (git diff -w is helpful here.) If you change spacing and layout, please avoid also moving things around or otherwise refactoring the code. Submit refactoring changes separately from style changes.
Good style is a tool for communicating your intent with other developers of the project. We are interested in maintaining reasonably well-styled code. If a contribution is illegible, we may refuse to merge it until it has been brought up to reasonable style guidelines. If a contribution violates any of our "rules" but is still legible, it is likely to be merged anyway.
Some recommendations:
if, for, while, switch, etc.):
if (...) {} else if (...) {} else {}UPPER_SNAKE_CASE a.k.a. CONST_CASEPascalCase a.k.a. UpperCamelCasecamelCase a.k.a. lowerCamelCaselower_snake_case1 + 2 not 1+2(a + b) not ( a + b )