Jar download: http://sourceforge.net/projects/imgurdl/
Loadur (previously ImgurDL) is a Java Swing application that allows you to easily download galleries and albums from Imgur. Loadur, originally known as ImgurDL has been downloaded and used by tens of thousands of people from all over the globe.
Loadur was originally created in 2010 so I could easily download galleries and albums from Imgur. This was before Imgur made a public API available so instead of handling data from imgur in an easy format like JSON. Instead of doing something so simple I had to write an HTML spider to allow me to extract images from an Imgur gallery.
We are currently migrating the backend away from using the old web spider and towards using the "Official" Imgur API. This should make Loadur easier to use and make the Imgur folks happy that we aren't slamming their servers like we used to in the good ol' days...
Loadur is now Public Domain software. This means you can do pretty much anything (only legal things) that you want to with it. You can modify it, rename it, repackage it and start your own app development company with it. You could always check out the code, make improvements and then send those improvements back to me. Then anyone that uses it later will be using your improvements! The only thing you can't do with this software is steal it, because I'm giving it to you. Here you can have this. If you wanted to leave my name in the source I wouldn't mind. Some future employer might see it and want to hire me because of my stunning genius.
I could have left Loadur proprietary and attempted to make more money off of it, but I think that making it Open Source and releasing it into the public domain will cause this software to be of more use to, and more effective to the people who use and develop it.
To Use the app on Windows, Linux or Mac you can download the jar here:
Jar download: http://sourceforge.net/projects/imgurdl/
It's easy to contribute to loadur.
You need a few things to be able to contribute to loadur:
- Git
- Java
- Eclipse
If you already have these programs ready to use you can skip the next section.
Whether you have Linux or Windows it's pretty easy to install the tools you need to contribute to Loadur.
Installing Git for windows is as easy as installing any other windows application, download it here: Git To Check if Git is properly installed right click on any file in a Windows folder and you'll see Git options in the menu:
If this does not work you can try using the Github for Windows app, it's not as good as the pure Windows Git app though: [Github App](http://i.imgur.com/TjOiu4c.png)Java is also easy to download and run for Windows, get it here: Java To verify that Java is loaded, open a Command Prompt and type:
C:\Users\Isaac\Desktop> java -version
java version "1.8.0_40"
Java(TM) SE Runtime Environment (build 1.8.0_40-b26)
Java HotSpot(TM) Client VM (build 25.40-b25, mixed mode, sharing)
If Java does not respond to this command it means you'll need to add it to your PATH
You can download Eclipse for your preferred operating system here: Eclipse Downloads Pick your OS, download and install.
Some of these tools are installed slightly differently (easier) when you are using a real OS.
You're using Linux. You probably already know how to install git. But if you're new, just do this:
sudo apt-get install git
yum install git
To verify you now have git installed run:
isaac@ubuntu-desktop:~$ git --version
git version 1.9.1
If you have any other distribution you, again, probably already know how to install git, if it's not installed already.
Java is also very simple to download and run for Linux, run the following:
sudo apt-get install java
or
sudo yum install java
To verify that Java is loaded, open a Terminal and type:
java -version
You should get a response similar to this:
java version "1.7.0_79"
If Java does not respond to this command it means you'll need to add it to your PATH
You can download Eclipse for your preferred operating system here: Eclipse Downloads Pick your OS, download and install.
- Clone the Git repository into the folder you would like to work in:
git clone https://github.com/ChicoSystems/ImgurDL.git
- Import the project you just cloned into Eclipse:
File -> Import -> Git -> Projects From Git -> local -> Add -> Browse
- Run The Main Loadur Class in Eclipse
Right Click Project Folder -> Run As -> Java Application
Loadur should now be running, go ahead and press the download button using the default URL and download some nice wallpapers. Or perhaps you'd like to put in an Imgur gallery or album URL? Try it. If something breaks you can check the code and fix it. Then send me a pull request, or a patch, as detailed in the next section.
Clone repository and import the project into Eclipse.
- Updated backend url from chicosystems.com:3000 to api.chicosystems.com:3000
- Changed library for http connection to something included in jdk 11+
- Added Menu
- Added Directory Chooser - User Now can choose another directory to download to.
- Moved Update Alert into the Menu.
- Fixed Menu Disappearing Bug.
- Fixed Picture Downloading with wrong colors bug.
-
- Java's fault, we had to use the TwelveMonkeys ImageIO plugins to fix it.
- Made textField Auto Focus
- Enter Button now initiates search.
- Hitting the button now highlights text letting user type over it.
- Put API calls in their own thread to reduce latency.
- Added a taskbar icon, tested working with linux and windows.
- Fixed background size issue.
- Put version info in app title.
- Updated readme with this changelog.
- Added more info to report home.
- Added user notification when update is available.
- Made it so albums could be downloaded directly from link again.
- Made Download button turn into stop button.
- Added ReportHome api to track app usage.
- Changed from using direct links to search feature.
- Resized display area.
- Update Readme with lots of info
- Added Licence to Project
- Reworked Stats Tracker
- Changed from web spider to Imgur api client
- Imgur changed their html again. Updated some spider delimiters.
- Changed the logo URL to something that can be monitored.
- Moved stats to the top of app.
- Program Works again.
- Fixed bug where pictures download multiple time.
- Now Pictures already in directory don't get downloaded again.
- Based on pictures name.extention.
- Added Stats system, Displaying Kbits, Queue, Downloaded, and Folder
- Updated input system. It's a bit more robust now.
- Update default download page
- Added file checking to make sure duplicates don't get saved.
- Added stats system monitoring.
- Just a Basic App Designed to Download Imgur Galleries
- Created Frontend to show user pics as they are downloading.