├── .gitattributes ├── .gitignore ├── App ├── AppInfo │ ├── Launcher │ │ ├── JDownloaderPortable.ini │ │ └── Splash.jpg │ ├── appicon.ico │ ├── appicon_16.png │ ├── appicon_32.png │ ├── appinfo.ini │ ├── appinfo_128.png │ └── installer.ini ├── JDownloader │ └── JDownloader.jar └── Readme.txt ├── JDownloaderPortable.exe ├── Other ├── Help │ └── Images │ │ ├── Donation_Button.png │ │ ├── Favicon.ico │ │ ├── Help_Background_Footer.png │ │ ├── Help_Background_Header.png │ │ └── Help_Logo_Top.png └── Source │ ├── AppNamePortable.ini │ ├── LauncherLicense.txt │ └── Readme.txt └── help.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/.gitignore -------------------------------------------------------------------------------- /App/AppInfo/Launcher/JDownloaderPortable.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/App/AppInfo/Launcher/JDownloaderPortable.ini -------------------------------------------------------------------------------- /App/AppInfo/Launcher/Splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/App/AppInfo/Launcher/Splash.jpg -------------------------------------------------------------------------------- /App/AppInfo/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/App/AppInfo/appicon.ico -------------------------------------------------------------------------------- /App/AppInfo/appicon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/App/AppInfo/appicon_16.png -------------------------------------------------------------------------------- /App/AppInfo/appicon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/App/AppInfo/appicon_32.png -------------------------------------------------------------------------------- /App/AppInfo/appinfo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/App/AppInfo/appinfo.ini -------------------------------------------------------------------------------- /App/AppInfo/appinfo_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/App/AppInfo/appinfo_128.png -------------------------------------------------------------------------------- /App/AppInfo/installer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/App/AppInfo/installer.ini -------------------------------------------------------------------------------- /App/JDownloader/JDownloader.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/App/JDownloader/JDownloader.jar -------------------------------------------------------------------------------- /App/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/App/Readme.txt -------------------------------------------------------------------------------- /JDownloaderPortable.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/JDownloaderPortable.exe -------------------------------------------------------------------------------- /Other/Help/Images/Donation_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/Other/Help/Images/Donation_Button.png -------------------------------------------------------------------------------- /Other/Help/Images/Favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/Other/Help/Images/Favicon.ico -------------------------------------------------------------------------------- /Other/Help/Images/Help_Background_Footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/Other/Help/Images/Help_Background_Footer.png -------------------------------------------------------------------------------- /Other/Help/Images/Help_Background_Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/Other/Help/Images/Help_Background_Header.png -------------------------------------------------------------------------------- /Other/Help/Images/Help_Logo_Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/Other/Help/Images/Help_Logo_Top.png -------------------------------------------------------------------------------- /Other/Source/AppNamePortable.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/Other/Source/AppNamePortable.ini -------------------------------------------------------------------------------- /Other/Source/LauncherLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/Other/Source/LauncherLicense.txt -------------------------------------------------------------------------------- /Other/Source/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/Other/Source/Readme.txt -------------------------------------------------------------------------------- /help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/JDownloaderPortable/HEAD/help.html --------------------------------------------------------------------------------