├── .gitattributes ├── .gitignore ├── BDI.sln ├── LICENSE ├── Packer ├── App.config ├── Extensions.cs ├── Packer.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── README.MD └── src ├── BDI.pri ├── BDI.rc ├── BDI.vcxproj ├── BDI.vcxproj.filters ├── GeneratedFiles ├── qrc_resources.cpp ├── ui_about.h ├── ui_errordialog.h ├── ui_mainwindow.h ├── ui_pathchooser.h ├── ui_product.h └── ui_splash.h ├── RCa20156 ├── RDa20156 ├── Resources ├── fonts │ ├── Inconsolata-Regular.ttf │ └── Roboto-Bold.ttf └── images │ ├── LogoCanary.svg │ ├── LogoPTB.svg │ ├── LogoStable.svg │ ├── btn_-_hover.png │ ├── btn_-_normal.png │ ├── btn_q_hover.png │ ├── btn_q_normal.png │ ├── btn_x_hover.png │ ├── btn_x_normal.png │ ├── pbargradient.png │ └── spinnergif.gif ├── about.cpp ├── about.h ├── about.htm ├── about.ui ├── appicon.ico ├── asset.cpp ├── asset.h ├── config.cpp ├── config.h ├── config.json ├── debug.pro ├── discord.cpp ├── discord.h ├── errordialog.cpp ├── errordialog.h ├── errordialog.ui ├── logger.cpp ├── logger.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── pathchooser.cpp ├── pathchooser.h ├── pathchooser.ui ├── pbar.cpp ├── pbar.h ├── product.cpp ├── product.h ├── product.ui ├── qtfs.hpp ├── qtjson.hpp ├── release.pro ├── releaseinfo.json ├── remotefile.cpp ├── remotefile.h ├── resource.h ├── resources.qrc ├── splash.cpp ├── splash.h ├── splash.ui ├── userconfig.cpp ├── userconfig.h ├── utils.cpp ├── utils.h ├── version.h ├── zip.cpp └── zip.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/.gitignore -------------------------------------------------------------------------------- /BDI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/BDI.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/LICENSE -------------------------------------------------------------------------------- /Packer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/Packer/App.config -------------------------------------------------------------------------------- /Packer/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/Packer/Extensions.cs -------------------------------------------------------------------------------- /Packer/Packer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/Packer/Packer.csproj -------------------------------------------------------------------------------- /Packer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/Packer/Program.cs -------------------------------------------------------------------------------- /Packer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/Packer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Packer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/Packer/packages.config -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/README.MD -------------------------------------------------------------------------------- /src/BDI.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/BDI.pri -------------------------------------------------------------------------------- /src/BDI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/BDI.rc -------------------------------------------------------------------------------- /src/BDI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/BDI.vcxproj -------------------------------------------------------------------------------- /src/BDI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/BDI.vcxproj.filters -------------------------------------------------------------------------------- /src/GeneratedFiles/qrc_resources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/GeneratedFiles/qrc_resources.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/ui_about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/GeneratedFiles/ui_about.h -------------------------------------------------------------------------------- /src/GeneratedFiles/ui_errordialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/GeneratedFiles/ui_errordialog.h -------------------------------------------------------------------------------- /src/GeneratedFiles/ui_mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/GeneratedFiles/ui_mainwindow.h -------------------------------------------------------------------------------- /src/GeneratedFiles/ui_pathchooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/GeneratedFiles/ui_pathchooser.h -------------------------------------------------------------------------------- /src/GeneratedFiles/ui_product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/GeneratedFiles/ui_product.h -------------------------------------------------------------------------------- /src/GeneratedFiles/ui_splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/GeneratedFiles/ui_splash.h -------------------------------------------------------------------------------- /src/RCa20156: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/RCa20156 -------------------------------------------------------------------------------- /src/RDa20156: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/RDa20156 -------------------------------------------------------------------------------- /src/Resources/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/Resources/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /src/Resources/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/Resources/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /src/Resources/images/LogoCanary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/Resources/images/LogoCanary.svg -------------------------------------------------------------------------------- /src/Resources/images/LogoPTB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/Resources/images/LogoPTB.svg -------------------------------------------------------------------------------- /src/Resources/images/LogoStable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/Resources/images/LogoStable.svg -------------------------------------------------------------------------------- /src/Resources/images/btn_-_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/Resources/images/btn_-_hover.png -------------------------------------------------------------------------------- /src/Resources/images/btn_-_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/Resources/images/btn_-_normal.png -------------------------------------------------------------------------------- /src/Resources/images/btn_q_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/Resources/images/btn_q_hover.png -------------------------------------------------------------------------------- /src/Resources/images/btn_q_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/Resources/images/btn_q_normal.png -------------------------------------------------------------------------------- /src/Resources/images/btn_x_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/Resources/images/btn_x_hover.png -------------------------------------------------------------------------------- /src/Resources/images/btn_x_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/Resources/images/btn_x_normal.png -------------------------------------------------------------------------------- /src/Resources/images/pbargradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/Resources/images/pbargradient.png -------------------------------------------------------------------------------- /src/Resources/images/spinnergif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/Resources/images/spinnergif.gif -------------------------------------------------------------------------------- /src/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/about.cpp -------------------------------------------------------------------------------- /src/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/about.h -------------------------------------------------------------------------------- /src/about.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/about.htm -------------------------------------------------------------------------------- /src/about.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/about.ui -------------------------------------------------------------------------------- /src/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/appicon.ico -------------------------------------------------------------------------------- /src/asset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/asset.cpp -------------------------------------------------------------------------------- /src/asset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/asset.h -------------------------------------------------------------------------------- /src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/config.cpp -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/config.h -------------------------------------------------------------------------------- /src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/config.json -------------------------------------------------------------------------------- /src/debug.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/debug.pro -------------------------------------------------------------------------------- /src/discord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/discord.cpp -------------------------------------------------------------------------------- /src/discord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/discord.h -------------------------------------------------------------------------------- /src/errordialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/errordialog.cpp -------------------------------------------------------------------------------- /src/errordialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/errordialog.h -------------------------------------------------------------------------------- /src/errordialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/errordialog.ui -------------------------------------------------------------------------------- /src/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/logger.cpp -------------------------------------------------------------------------------- /src/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/logger.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/mainwindow.h -------------------------------------------------------------------------------- /src/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/mainwindow.ui -------------------------------------------------------------------------------- /src/pathchooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/pathchooser.cpp -------------------------------------------------------------------------------- /src/pathchooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/pathchooser.h -------------------------------------------------------------------------------- /src/pathchooser.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/pathchooser.ui -------------------------------------------------------------------------------- /src/pbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/pbar.cpp -------------------------------------------------------------------------------- /src/pbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/pbar.h -------------------------------------------------------------------------------- /src/product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/product.cpp -------------------------------------------------------------------------------- /src/product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/product.h -------------------------------------------------------------------------------- /src/product.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/product.ui -------------------------------------------------------------------------------- /src/qtfs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/qtfs.hpp -------------------------------------------------------------------------------- /src/qtjson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/qtjson.hpp -------------------------------------------------------------------------------- /src/release.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/release.pro -------------------------------------------------------------------------------- /src/releaseinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/releaseinfo.json -------------------------------------------------------------------------------- /src/remotefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/remotefile.cpp -------------------------------------------------------------------------------- /src/remotefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/remotefile.h -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/resources.qrc -------------------------------------------------------------------------------- /src/splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/splash.cpp -------------------------------------------------------------------------------- /src/splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/splash.h -------------------------------------------------------------------------------- /src/splash.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/splash.ui -------------------------------------------------------------------------------- /src/userconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/userconfig.cpp -------------------------------------------------------------------------------- /src/userconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/userconfig.h -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/version.h -------------------------------------------------------------------------------- /src/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/zip.cpp -------------------------------------------------------------------------------- /src/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JsSucks/BDI/HEAD/src/zip.h --------------------------------------------------------------------------------