├── .gitignore ├── App ├── AppInfo │ ├── EULA.txt │ ├── Launcher │ │ ├── DiscordPortable.ini │ │ └── custom.nsh │ ├── appicon.ico │ ├── appicon_128.png │ ├── appicon_16.png │ ├── appicon_32.png │ └── appinfo.ini └── Readme.txt ├── DiscordPortable.exe ├── DiscordPortable.ini ├── LICENSE ├── Other ├── Help │ └── Images │ │ ├── Donation_Button.png │ │ ├── Favicon.ico │ │ ├── Help_Background_Footer.png │ │ ├── Help_Background_Header.png │ │ └── Help_Logo_Top.png └── Source │ ├── COPYING │ ├── DiscordPortable.ini │ ├── LauncherLicense.txt │ ├── PortableApps.comInstallerCustom.nsh │ └── Readme.txt ├── README.md └── help.html /.gitignore: -------------------------------------------------------------------------------- 1 | DiscordPortable/Data 2 | -------------------------------------------------------------------------------- /App/AppInfo/EULA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/App/AppInfo/EULA.txt -------------------------------------------------------------------------------- /App/AppInfo/Launcher/DiscordPortable.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/App/AppInfo/Launcher/DiscordPortable.ini -------------------------------------------------------------------------------- /App/AppInfo/Launcher/custom.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/App/AppInfo/Launcher/custom.nsh -------------------------------------------------------------------------------- /App/AppInfo/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/App/AppInfo/appicon.ico -------------------------------------------------------------------------------- /App/AppInfo/appicon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/App/AppInfo/appicon_128.png -------------------------------------------------------------------------------- /App/AppInfo/appicon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/App/AppInfo/appicon_16.png -------------------------------------------------------------------------------- /App/AppInfo/appicon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/App/AppInfo/appicon_32.png -------------------------------------------------------------------------------- /App/AppInfo/appinfo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/App/AppInfo/appinfo.ini -------------------------------------------------------------------------------- /App/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/App/Readme.txt -------------------------------------------------------------------------------- /DiscordPortable.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/DiscordPortable.exe -------------------------------------------------------------------------------- /DiscordPortable.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/DiscordPortable.ini -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/LICENSE -------------------------------------------------------------------------------- /Other/Help/Images/Donation_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/Other/Help/Images/Donation_Button.png -------------------------------------------------------------------------------- /Other/Help/Images/Favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/Other/Help/Images/Favicon.ico -------------------------------------------------------------------------------- /Other/Help/Images/Help_Background_Footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/Other/Help/Images/Help_Background_Footer.png -------------------------------------------------------------------------------- /Other/Help/Images/Help_Background_Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/Other/Help/Images/Help_Background_Header.png -------------------------------------------------------------------------------- /Other/Help/Images/Help_Logo_Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/Other/Help/Images/Help_Logo_Top.png -------------------------------------------------------------------------------- /Other/Source/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/Other/Source/COPYING -------------------------------------------------------------------------------- /Other/Source/DiscordPortable.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/Other/Source/DiscordPortable.ini -------------------------------------------------------------------------------- /Other/Source/LauncherLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/Other/Source/LauncherLicense.txt -------------------------------------------------------------------------------- /Other/Source/PortableApps.comInstallerCustom.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/Other/Source/PortableApps.comInstallerCustom.nsh -------------------------------------------------------------------------------- /Other/Source/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/Other/Source/Readme.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/README.md -------------------------------------------------------------------------------- /help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daemondevin/DiscordPortable/HEAD/help.html --------------------------------------------------------------------------------