├── .github └── ISSUE_TEMPLATE │ └── mod_request.yml ├── .screenshots └── MainForm.png ├── .vs ├── AtomicX │ ├── v14 │ │ └── .suo │ ├── v15 │ │ ├── .suo │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide └── BO2 Project Changes │ └── v14 │ └── .suo ├── LICENSE.md ├── README.md ├── crowdin.yml └── src ├── .gitattributes ├── .gitignore ├── Arisen GSC Injector.sln ├── Arisen GSC Injector ├── App.config ├── Arisen GSC Injector.csproj ├── Constants │ └── Urls.cs ├── Database │ ├── DropboxData.cs │ └── SettingsData.cs ├── Extensions │ ├── ControlExtensions.cs │ ├── DataExtensions.cs │ ├── HttpExtensions.cs │ ├── ImageExtensions.cs │ ├── StringExtensions.cs │ ├── UpdateExtensions.cs │ └── WorkerExtensions.cs ├── Forms │ ├── FileInjector.Designer.cs │ ├── FileInjector.cs │ ├── FileInjector.resx │ ├── MainWindow.Designer.cs │ ├── MainWindow.cs │ └── MainWindow.resx ├── Io │ ├── Archives.cs │ ├── KnownFolders.cs │ └── UserFolders.cs ├── Languages │ ├── ar_SA.resx │ ├── cs_CZ.resx │ ├── da_DK.resx │ ├── de_DE.resx │ ├── el_GR.resx │ ├── en_US.resx │ ├── es_ES.resx │ ├── fi_FI.resx │ ├── fr_FR.resx │ ├── ja_JP.resx │ ├── nl_NL.resx │ ├── pl_PL.resx │ ├── pt_BR.resx │ ├── pt_PT.resx │ ├── ro_RO.resx │ ├── ru_RU.resx │ ├── sv_SE.resx │ ├── tr_TR.resx │ ├── uk_UA.resx │ └── zh_CN.resx ├── Models │ ├── GscData.cs │ ├── ModsData.cs │ └── Release Data │ │ └── GitHubData.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ ├── licenses.licx │ └── licenses.licx.bak ├── Resources │ ├── Icons │ │ └── app-icon.ico │ ├── download.png │ ├── install.png │ └── uninstall.png └── packages.config └── References ├── JRPC.dll ├── PS3Lib.dll ├── PS3ManagerAPI.dll └── xdevkit.dll /.github/ISSUE_TEMPLATE/mod_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/.github/ISSUE_TEMPLATE/mod_request.yml -------------------------------------------------------------------------------- /.screenshots/MainForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/.screenshots/MainForm.png -------------------------------------------------------------------------------- /.vs/AtomicX/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/.vs/AtomicX/v14/.suo -------------------------------------------------------------------------------- /.vs/AtomicX/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/.vs/AtomicX/v15/.suo -------------------------------------------------------------------------------- /.vs/AtomicX/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/AtomicX/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/.vs/AtomicX/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/AtomicX/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/.vs/AtomicX/v16/.suo -------------------------------------------------------------------------------- /.vs/AtomicX/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/AtomicX/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/.vs/AtomicX/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/BO2 Project Changes/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/.vs/BO2 Project Changes/v14/.suo -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/crowdin.yml -------------------------------------------------------------------------------- /src/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/.gitattributes -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Arisen GSC Injector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector.sln -------------------------------------------------------------------------------- /src/Arisen GSC Injector/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/App.config -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Arisen GSC Injector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Arisen GSC Injector.csproj -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Constants/Urls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Constants/Urls.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Database/DropboxData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Database/DropboxData.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Database/SettingsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Database/SettingsData.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Extensions/ControlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Extensions/ControlExtensions.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Extensions/DataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Extensions/DataExtensions.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Extensions/HttpExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Extensions/HttpExtensions.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Extensions/ImageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Extensions/ImageExtensions.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Extensions/UpdateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Extensions/UpdateExtensions.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Extensions/WorkerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Extensions/WorkerExtensions.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Forms/FileInjector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Forms/FileInjector.Designer.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Forms/FileInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Forms/FileInjector.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Forms/FileInjector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Forms/FileInjector.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Forms/MainWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Forms/MainWindow.Designer.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Forms/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Forms/MainWindow.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Forms/MainWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Forms/MainWindow.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Io/Archives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Io/Archives.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Io/KnownFolders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Io/KnownFolders.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Io/UserFolders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Io/UserFolders.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/ar_SA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/ar_SA.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/cs_CZ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/cs_CZ.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/da_DK.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/da_DK.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/de_DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/de_DE.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/el_GR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/el_GR.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/en_US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/en_US.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/es_ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/es_ES.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/fi_FI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/fi_FI.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/fr_FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/fr_FR.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/ja_JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/ja_JP.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/nl_NL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/nl_NL.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/pl_PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/pl_PL.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/pt_BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/pt_BR.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/pt_PT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/pt_PT.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/ro_RO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/ro_RO.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/ru_RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/ru_RU.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/sv_SE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/sv_SE.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/tr_TR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/tr_TR.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/uk_UA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/uk_UA.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Languages/zh_CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Languages/zh_CN.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Models/GscData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Models/GscData.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Models/ModsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Models/ModsData.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Models/Release Data/GitHubData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Models/Release Data/GitHubData.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Program.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Properties/licenses.licx -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Properties/licenses.licx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Properties/licenses.licx.bak -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Resources/Icons/app-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Resources/Icons/app-icon.ico -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Resources/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Resources/download.png -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Resources/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Resources/install.png -------------------------------------------------------------------------------- /src/Arisen GSC Injector/Resources/uninstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/Resources/uninstall.png -------------------------------------------------------------------------------- /src/Arisen GSC Injector/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/Arisen GSC Injector/packages.config -------------------------------------------------------------------------------- /src/References/JRPC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/References/JRPC.dll -------------------------------------------------------------------------------- /src/References/PS3Lib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/References/PS3Lib.dll -------------------------------------------------------------------------------- /src/References/PS3ManagerAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/References/PS3ManagerAPI.dll -------------------------------------------------------------------------------- /src/References/xdevkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohhsodead/arisen-gsc-injector/HEAD/src/References/xdevkit.dll --------------------------------------------------------------------------------