├── .editorconfig ├── LICENSE ├── README.md ├── img ├── pic1.png ├── pic2.png ├── pic3.png ├── pic4.png └── pic5.png └── src ├── build.py ├── common.nsh ├── files ├── Plugins │ └── x86-unicode │ │ ├── AccessControl.dll │ │ ├── Crypto.dll │ │ ├── ExecDos.dll │ │ ├── KillProcDLL.dll │ │ ├── NScurl.dll │ │ ├── NSxfer.dll │ │ ├── nsJSON.dll │ │ └── nsisFirewallW.dll ├── db │ ├── config.db │ └── torrserver.db └── icons │ ├── offline.ico │ ├── online.ico │ └── uninst.ico ├── offline_Installer.nsi └── online_Installer.nsi /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/.editorconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/README.md -------------------------------------------------------------------------------- /img/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/img/pic1.png -------------------------------------------------------------------------------- /img/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/img/pic2.png -------------------------------------------------------------------------------- /img/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/img/pic3.png -------------------------------------------------------------------------------- /img/pic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/img/pic4.png -------------------------------------------------------------------------------- /img/pic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/img/pic5.png -------------------------------------------------------------------------------- /src/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/src/build.py -------------------------------------------------------------------------------- /src/common.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/src/common.nsh -------------------------------------------------------------------------------- /src/files/Plugins/x86-unicode/AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/src/files/Plugins/x86-unicode/AccessControl.dll -------------------------------------------------------------------------------- /src/files/Plugins/x86-unicode/Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/src/files/Plugins/x86-unicode/Crypto.dll -------------------------------------------------------------------------------- /src/files/Plugins/x86-unicode/ExecDos.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/src/files/Plugins/x86-unicode/ExecDos.dll -------------------------------------------------------------------------------- /src/files/Plugins/x86-unicode/KillProcDLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/src/files/Plugins/x86-unicode/KillProcDLL.dll -------------------------------------------------------------------------------- /src/files/Plugins/x86-unicode/NScurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/src/files/Plugins/x86-unicode/NScurl.dll -------------------------------------------------------------------------------- /src/files/Plugins/x86-unicode/NSxfer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/src/files/Plugins/x86-unicode/NSxfer.dll -------------------------------------------------------------------------------- /src/files/Plugins/x86-unicode/nsJSON.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/src/files/Plugins/x86-unicode/nsJSON.dll -------------------------------------------------------------------------------- /src/files/Plugins/x86-unicode/nsisFirewallW.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/src/files/Plugins/x86-unicode/nsisFirewallW.dll -------------------------------------------------------------------------------- /src/files/db/config.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/src/files/db/config.db -------------------------------------------------------------------------------- /src/files/db/torrserver.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/src/files/db/torrserver.db -------------------------------------------------------------------------------- /src/files/icons/offline.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/src/files/icons/offline.ico -------------------------------------------------------------------------------- /src/files/icons/online.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/src/files/icons/online.ico -------------------------------------------------------------------------------- /src/files/icons/uninst.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/src/files/icons/uninst.ico -------------------------------------------------------------------------------- /src/offline_Installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/src/offline_Installer.nsi -------------------------------------------------------------------------------- /src/online_Installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noperkot/TorrServerInstaller/HEAD/src/online_Installer.nsi --------------------------------------------------------------------------------