├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── auto-assign.yml │ └── winget.yml ├── .gitignore ├── .gitmodules ├── .idea ├── Genshin-Impact-ReShade.iml ├── dictionaries │ └── project.xml ├── discord.xml ├── modules.xml └── vcs.xml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Genshin Stella Mod made by Sefinek.sln ├── Genshin Stella Mod made by Sefinek.sln.DotSettings ├── LICENSE.txt ├── LICENSE_PL.txt ├── OPEN THE SOLUTION.cmd ├── README.md ├── RUN GENSHIN IMPACT.cmd ├── ResXManager.config.xml ├── SECURITY.md ├── Stella.Configuration ├── 3. Configuration.csproj ├── Forms │ ├── Window.Designer.cs │ ├── Window.ar-SA.resx │ ├── Window.cs │ ├── Window.cs-CZ.resx │ ├── Window.de-DE.resx │ ├── Window.es-ES.resx │ ├── Window.fi-FI.resx │ ├── Window.fr-FR.resx │ ├── Window.hu-HU.resx │ ├── Window.id-ID.resx │ ├── Window.it-IT.resx │ ├── Window.ja-JP.resx │ ├── Window.nl-NL.resx │ ├── Window.pl-PL.resx │ ├── Window.pt-BR.resx │ ├── Window.resx │ ├── Window.ru-RU.resx │ ├── Window.sv-SE.resx │ ├── Window.tr-TR.resx │ ├── Window.uk-UA.resx │ ├── Window.vi-VN.resx │ ├── Window.zh-CN.resx │ └── Window.zh-TW.resx ├── Program.cs ├── Properties │ ├── ImageResources.Designer.cs │ ├── ImageResources.resx │ ├── Resources.Designer.cs │ ├── Resources.ar-SA.resx │ ├── Resources.cs-CZ.resx │ ├── Resources.de-DE.resx │ ├── Resources.es-ES.resx │ ├── Resources.fi-FI.resx │ ├── Resources.fr-FR.resx │ ├── Resources.hu-HU.resx │ ├── Resources.id-ID.resx │ ├── Resources.it-IT.resx │ ├── Resources.ja-JP.resx │ ├── Resources.nl-NL.resx │ ├── Resources.pl-PL.resx │ ├── Resources.pt-BR.resx │ ├── Resources.resx │ ├── Resources.ru-RU.resx │ ├── Resources.sv-SE.resx │ ├── Resources.tr-TR.resx │ ├── Resources.uk-UA.resx │ ├── Resources.vi-VN.resx │ ├── Resources.zh-CN.resx │ ├── Resources.zh-TW.resx │ ├── app.manifest │ └── launchSettings.json ├── Resources │ ├── bg.jpg │ ├── cat-black_52x52.ico │ ├── cat-original-black.png │ ├── cat-original-white.png │ ├── cat-white-old.ico │ └── cat-white_52x52.ico └── Scripts │ ├── CheckData.cs │ └── IniFile.cs ├── Stella.Welcome ├── 5. Welcome App.csproj ├── Forms │ ├── MainForm.Designer.cs │ ├── MainForm.ar-SA.resx │ ├── MainForm.cs │ ├── MainForm.cs-CZ.resx │ ├── MainForm.de-DE.resx │ ├── MainForm.es-ES.resx │ ├── MainForm.fi-FI.resx │ ├── MainForm.fr-FR.resx │ ├── MainForm.hu-HU.resx │ ├── MainForm.id-ID.resx │ ├── MainForm.it-IT.resx │ ├── MainForm.ja-JP.resx │ ├── MainForm.nl-NL.resx │ ├── MainForm.pl-PL.resx │ ├── MainForm.pt-BR.resx │ ├── MainForm.resx │ ├── MainForm.ru-RU.resx │ ├── MainForm.sv-SE.resx │ ├── MainForm.tr-TR.resx │ ├── MainForm.uk-UA.resx │ ├── MainForm.vi-VN.resx │ ├── MainForm.zh-CN.resx │ └── MainForm.zh-TW.resx ├── Program.cs ├── Properties │ ├── ImageResources.Designer.cs │ ├── ImageResources.resx │ ├── Resources.Designer.cs │ ├── Resources.ar-SA.resx │ ├── Resources.cs-CZ.resx │ ├── Resources.de-DE.resx │ ├── Resources.es-ES.resx │ ├── Resources.fi-FI.resx │ ├── Resources.fr-FR.resx │ ├── Resources.hu-HU.resx │ ├── Resources.id-ID.resx │ ├── Resources.it-IT.resx │ ├── Resources.ja-JP.resx │ ├── Resources.nl-NL.resx │ ├── Resources.pl-PL.resx │ ├── Resources.pt-BR.resx │ ├── Resources.resx │ ├── Resources.ru-RU.resx │ ├── Resources.sv-SE.resx │ ├── Resources.tr-TR.resx │ ├── Resources.uk-UA.resx │ ├── Resources.vi-VN.resx │ ├── Resources.zh-CN.resx │ ├── Resources.zh-TW.resx │ ├── app.manifest │ └── launchSettings.json ├── Resources │ ├── angry-paimon.ico │ ├── background.jpg │ ├── info.png │ ├── paimon_peek.png │ ├── paimon_shock.png │ └── party_cat.gif └── data │ └── sounds │ └── meows │ ├── 1.mp3 │ ├── 2.mp3 │ ├── 3.mp3 │ └── 4.mp3 └── Test.Genshin ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties ├── app.manifest └── launchSettings.json └── Test.Genshin.csproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/auto-assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/.github/workflows/auto-assign.yml -------------------------------------------------------------------------------- /.github/workflows/winget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/.github/workflows/winget.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/Genshin-Impact-ReShade.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/.idea/Genshin-Impact-ReShade.iml -------------------------------------------------------------------------------- /.idea/dictionaries/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/.idea/dictionaries/project.xml -------------------------------------------------------------------------------- /.idea/discord.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/.idea/discord.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Genshin Stella Mod made by Sefinek.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Genshin Stella Mod made by Sefinek.sln -------------------------------------------------------------------------------- /Genshin Stella Mod made by Sefinek.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Genshin Stella Mod made by Sefinek.sln.DotSettings -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSE_PL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/LICENSE_PL.txt -------------------------------------------------------------------------------- /OPEN THE SOLUTION.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/OPEN THE SOLUTION.cmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/README.md -------------------------------------------------------------------------------- /RUN GENSHIN IMPACT.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/RUN GENSHIN IMPACT.cmd -------------------------------------------------------------------------------- /ResXManager.config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/ResXManager.config.xml -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Stella.Configuration/3. Configuration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/3. Configuration.csproj -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.Designer.cs -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.ar-SA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.ar-SA.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.cs -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.cs-CZ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.cs-CZ.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.de-DE.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.es-ES.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.fi-FI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.fi-FI.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.fr-FR.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.hu-HU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.hu-HU.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.id-ID.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.id-ID.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.it-IT.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.ja-JP.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.nl-NL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.nl-NL.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.pl-PL.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.pt-BR.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.ru-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.ru-RU.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.sv-SE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.sv-SE.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.tr-TR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.tr-TR.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.uk-UA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.uk-UA.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.vi-VN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.vi-VN.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.zh-CN.resx -------------------------------------------------------------------------------- /Stella.Configuration/Forms/Window.zh-TW.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Forms/Window.zh-TW.resx -------------------------------------------------------------------------------- /Stella.Configuration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Program.cs -------------------------------------------------------------------------------- /Stella.Configuration/Properties/ImageResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/ImageResources.Designer.cs -------------------------------------------------------------------------------- /Stella.Configuration/Properties/ImageResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/ImageResources.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.ar-SA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.ar-SA.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.cs-CZ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.cs-CZ.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.de-DE.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.es-ES.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.fi-FI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.fi-FI.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.fr-FR.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.hu-HU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.hu-HU.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.id-ID.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.id-ID.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.it-IT.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.ja-JP.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.nl-NL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.nl-NL.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.pl-PL.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.pt-BR.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.ru-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.ru-RU.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.sv-SE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.sv-SE.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.tr-TR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.tr-TR.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.uk-UA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.uk-UA.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.vi-VN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.vi-VN.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.zh-CN.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/Resources.zh-TW.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/Resources.zh-TW.resx -------------------------------------------------------------------------------- /Stella.Configuration/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/app.manifest -------------------------------------------------------------------------------- /Stella.Configuration/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Properties/launchSettings.json -------------------------------------------------------------------------------- /Stella.Configuration/Resources/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Resources/bg.jpg -------------------------------------------------------------------------------- /Stella.Configuration/Resources/cat-black_52x52.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Resources/cat-black_52x52.ico -------------------------------------------------------------------------------- /Stella.Configuration/Resources/cat-original-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Resources/cat-original-black.png -------------------------------------------------------------------------------- /Stella.Configuration/Resources/cat-original-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Resources/cat-original-white.png -------------------------------------------------------------------------------- /Stella.Configuration/Resources/cat-white-old.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Resources/cat-white-old.ico -------------------------------------------------------------------------------- /Stella.Configuration/Resources/cat-white_52x52.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Resources/cat-white_52x52.ico -------------------------------------------------------------------------------- /Stella.Configuration/Scripts/CheckData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Scripts/CheckData.cs -------------------------------------------------------------------------------- /Stella.Configuration/Scripts/IniFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Configuration/Scripts/IniFile.cs -------------------------------------------------------------------------------- /Stella.Welcome/5. Welcome App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/5. Welcome App.csproj -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.ar-SA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.ar-SA.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.cs -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.cs-CZ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.cs-CZ.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.de-DE.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.es-ES.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.fi-FI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.fi-FI.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.fr-FR.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.hu-HU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.hu-HU.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.id-ID.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.id-ID.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.it-IT.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.ja-JP.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.nl-NL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.nl-NL.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.pl-PL.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.pt-BR.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.ru-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.ru-RU.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.sv-SE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.sv-SE.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.tr-TR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.tr-TR.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.uk-UA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.uk-UA.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.vi-VN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.vi-VN.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.zh-CN.resx -------------------------------------------------------------------------------- /Stella.Welcome/Forms/MainForm.zh-TW.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Forms/MainForm.zh-TW.resx -------------------------------------------------------------------------------- /Stella.Welcome/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Program.cs -------------------------------------------------------------------------------- /Stella.Welcome/Properties/ImageResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/ImageResources.Designer.cs -------------------------------------------------------------------------------- /Stella.Welcome/Properties/ImageResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/ImageResources.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.ar-SA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.ar-SA.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.cs-CZ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.cs-CZ.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.de-DE.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.es-ES.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.fi-FI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.fi-FI.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.fr-FR.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.hu-HU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.hu-HU.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.id-ID.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.id-ID.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.it-IT.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.ja-JP.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.nl-NL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.nl-NL.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.pl-PL.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.pt-BR.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.ru-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.ru-RU.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.sv-SE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.sv-SE.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.tr-TR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.tr-TR.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.uk-UA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.uk-UA.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.vi-VN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.vi-VN.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.zh-CN.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/Resources.zh-TW.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/Resources.zh-TW.resx -------------------------------------------------------------------------------- /Stella.Welcome/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/app.manifest -------------------------------------------------------------------------------- /Stella.Welcome/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Properties/launchSettings.json -------------------------------------------------------------------------------- /Stella.Welcome/Resources/angry-paimon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Resources/angry-paimon.ico -------------------------------------------------------------------------------- /Stella.Welcome/Resources/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Resources/background.jpg -------------------------------------------------------------------------------- /Stella.Welcome/Resources/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Resources/info.png -------------------------------------------------------------------------------- /Stella.Welcome/Resources/paimon_peek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Resources/paimon_peek.png -------------------------------------------------------------------------------- /Stella.Welcome/Resources/paimon_shock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Resources/paimon_shock.png -------------------------------------------------------------------------------- /Stella.Welcome/Resources/party_cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/Resources/party_cat.gif -------------------------------------------------------------------------------- /Stella.Welcome/data/sounds/meows/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/data/sounds/meows/1.mp3 -------------------------------------------------------------------------------- /Stella.Welcome/data/sounds/meows/2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/data/sounds/meows/2.mp3 -------------------------------------------------------------------------------- /Stella.Welcome/data/sounds/meows/3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/data/sounds/meows/3.mp3 -------------------------------------------------------------------------------- /Stella.Welcome/data/sounds/meows/4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Stella.Welcome/data/sounds/meows/4.mp3 -------------------------------------------------------------------------------- /Test.Genshin/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Test.Genshin/MainForm.Designer.cs -------------------------------------------------------------------------------- /Test.Genshin/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Test.Genshin/MainForm.cs -------------------------------------------------------------------------------- /Test.Genshin/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Test.Genshin/MainForm.resx -------------------------------------------------------------------------------- /Test.Genshin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Test.Genshin/Program.cs -------------------------------------------------------------------------------- /Test.Genshin/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Test.Genshin/Properties/app.manifest -------------------------------------------------------------------------------- /Test.Genshin/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Test.Genshin/Properties/launchSettings.json -------------------------------------------------------------------------------- /Test.Genshin/Test.Genshin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefinek/Genshin-Impact-ReShade/HEAD/Test.Genshin/Test.Genshin.csproj --------------------------------------------------------------------------------