├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── enhancement-request.md │ └── false-positives.md └── workflows │ ├── delete_releases.yml │ ├── jekyll-gh-pages.yml │ └── test.yml ├── .gitignore ├── CreamInstaller.sln ├── CreamInstaller ├── Components │ ├── ContextMenuItem.cs │ ├── CustomForm.cs │ ├── CustomTreeView.cs │ └── PlatformIdComparer.cs ├── CreamInstaller.csproj ├── Forms │ ├── DebugForm.Designer.cs │ ├── DebugForm.cs │ ├── DebugForm.resx │ ├── DialogForm.Designer.cs │ ├── DialogForm.cs │ ├── DialogForm.resx │ ├── InstallForm.Designer.cs │ ├── InstallForm.cs │ ├── InstallForm.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── SelectDialogForm.Designer.cs │ ├── SelectDialogForm.cs │ ├── SelectDialogForm.resx │ ├── SelectForm.Designer.cs │ ├── SelectForm.cs │ └── SelectForm.resx ├── GlobalSuppressions.cs ├── Platforms │ ├── Epic │ │ ├── EpicLibrary.cs │ │ ├── EpicStore.cs │ │ ├── GraphQL │ │ │ ├── Request.cs │ │ │ └── Response.cs │ │ └── Manifest.cs │ ├── Paradox │ │ └── ParadoxLauncher.cs │ ├── Steam │ │ ├── AppDetails.cs │ │ ├── SteamCMD.cs │ │ ├── SteamLibrary.cs │ │ ├── SteamStore.cs │ │ └── ValveDataFile.cs │ └── Ubisoft │ │ └── UbisoftLibrary.cs ├── Program.cs ├── ProgramSelection.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── launchSettings.json ├── Resources │ ├── Koaloader.cs │ ├── Koaloader │ │ ├── audioses-32 │ │ │ └── audioses.dll │ │ ├── audioses-64 │ │ │ └── audioses.dll │ │ ├── d3d10-32 │ │ │ └── d3d10.dll │ │ ├── d3d10-64 │ │ │ └── d3d10.dll │ │ ├── d3d11-32 │ │ │ └── d3d11.dll │ │ ├── d3d11-64 │ │ │ └── d3d11.dll │ │ ├── d3d9-32 │ │ │ └── d3d9.dll │ │ ├── d3d9-64 │ │ │ └── d3d9.dll │ │ ├── dinput8-32 │ │ │ └── dinput8.dll │ │ ├── dinput8-64 │ │ │ └── dinput8.dll │ │ ├── dwmapi-32 │ │ │ └── dwmapi.dll │ │ ├── dwmapi-64 │ │ │ └── dwmapi.dll │ │ ├── dxgi-32 │ │ │ └── dxgi.dll │ │ ├── dxgi-64 │ │ │ └── dxgi.dll │ │ ├── glu32-32 │ │ │ └── glu32.dll │ │ ├── glu32-64 │ │ │ └── glu32.dll │ │ ├── hid-32 │ │ │ └── hid.dll │ │ ├── hid-64 │ │ │ └── hid.dll │ │ ├── iphlpapi-32 │ │ │ └── iphlpapi.dll │ │ ├── iphlpapi-64 │ │ │ └── iphlpapi.dll │ │ ├── msasn1-32 │ │ │ └── msasn1.dll │ │ ├── msasn1-64 │ │ │ └── msasn1.dll │ │ ├── msimg32-32 │ │ │ └── msimg32.dll │ │ ├── msimg32-64 │ │ │ └── msimg32.dll │ │ ├── mswsock-32 │ │ │ └── mswsock.dll │ │ ├── mswsock-64 │ │ │ └── mswsock.dll │ │ ├── opengl32-32 │ │ │ └── opengl32.dll │ │ ├── opengl32-64 │ │ │ └── opengl32.dll │ │ ├── profapi-32 │ │ │ └── profapi.dll │ │ ├── profapi-64 │ │ │ └── profapi.dll │ │ ├── propsys-32 │ │ │ └── propsys.dll │ │ ├── propsys-64 │ │ │ └── propsys.dll │ │ ├── textshaping-32 │ │ │ └── textshaping.dll │ │ ├── textshaping-64 │ │ │ └── textshaping.dll │ │ ├── version-32 │ │ │ └── version.dll │ │ ├── version-64 │ │ │ └── version.dll │ │ ├── winhttp-32 │ │ │ └── winhttp.dll │ │ ├── winhttp-64 │ │ │ └── winhttp.dll │ │ ├── winmm-32 │ │ │ └── winmm.dll │ │ ├── winmm-64 │ │ │ └── winmm.dll │ │ ├── wldp-32 │ │ │ └── wldp.dll │ │ ├── wldp-64 │ │ │ └── wldp.dll │ │ ├── xinput9_1_0-32 │ │ │ └── xinput9_1_0.dll │ │ └── xinput9_1_0-64 │ │ │ └── xinput9_1_0.dll │ ├── Resources.cs │ ├── ScreamAPI.cs │ ├── ScreamAPI │ │ ├── EOSSDK-Win32-Shipping.dll │ │ └── EOSSDK-Win64-Shipping.dll │ ├── SmokeAPI.cs │ ├── SmokeAPI │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ ├── UplayR1.cs │ ├── UplayR1 │ │ ├── uplay_r1_loader.dll │ │ └── uplay_r1_loader64.dll │ ├── UplayR2.cs │ ├── UplayR2 │ │ ├── upc_r2_loader.dll │ │ └── upc_r2_loader64.dll │ └── ini.ico └── Utility │ ├── Diagnostics.cs │ ├── ExceptionHandler.cs │ ├── HttpClientManager.cs │ ├── IconGrabber.cs │ ├── LogTextBox.cs │ └── ProgramData.cs ├── LICENSE ├── README.md └── preview.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/.github/ISSUE_TEMPLATE/enhancement-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/false-positives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/.github/ISSUE_TEMPLATE/false-positives.md -------------------------------------------------------------------------------- /.github/workflows/delete_releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/.github/workflows/delete_releases.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/.gitignore -------------------------------------------------------------------------------- /CreamInstaller.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller.sln -------------------------------------------------------------------------------- /CreamInstaller/Components/ContextMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Components/ContextMenuItem.cs -------------------------------------------------------------------------------- /CreamInstaller/Components/CustomForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Components/CustomForm.cs -------------------------------------------------------------------------------- /CreamInstaller/Components/CustomTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Components/CustomTreeView.cs -------------------------------------------------------------------------------- /CreamInstaller/Components/PlatformIdComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Components/PlatformIdComparer.cs -------------------------------------------------------------------------------- /CreamInstaller/CreamInstaller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/CreamInstaller.csproj -------------------------------------------------------------------------------- /CreamInstaller/Forms/DebugForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/DebugForm.Designer.cs -------------------------------------------------------------------------------- /CreamInstaller/Forms/DebugForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/DebugForm.cs -------------------------------------------------------------------------------- /CreamInstaller/Forms/DebugForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/DebugForm.resx -------------------------------------------------------------------------------- /CreamInstaller/Forms/DialogForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/DialogForm.Designer.cs -------------------------------------------------------------------------------- /CreamInstaller/Forms/DialogForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/DialogForm.cs -------------------------------------------------------------------------------- /CreamInstaller/Forms/DialogForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/DialogForm.resx -------------------------------------------------------------------------------- /CreamInstaller/Forms/InstallForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/InstallForm.Designer.cs -------------------------------------------------------------------------------- /CreamInstaller/Forms/InstallForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/InstallForm.cs -------------------------------------------------------------------------------- /CreamInstaller/Forms/InstallForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/InstallForm.resx -------------------------------------------------------------------------------- /CreamInstaller/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /CreamInstaller/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/MainForm.cs -------------------------------------------------------------------------------- /CreamInstaller/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/MainForm.resx -------------------------------------------------------------------------------- /CreamInstaller/Forms/SelectDialogForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/SelectDialogForm.Designer.cs -------------------------------------------------------------------------------- /CreamInstaller/Forms/SelectDialogForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/SelectDialogForm.cs -------------------------------------------------------------------------------- /CreamInstaller/Forms/SelectDialogForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/SelectDialogForm.resx -------------------------------------------------------------------------------- /CreamInstaller/Forms/SelectForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/SelectForm.Designer.cs -------------------------------------------------------------------------------- /CreamInstaller/Forms/SelectForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/SelectForm.cs -------------------------------------------------------------------------------- /CreamInstaller/Forms/SelectForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Forms/SelectForm.resx -------------------------------------------------------------------------------- /CreamInstaller/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CreamInstaller/Platforms/Epic/EpicLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Platforms/Epic/EpicLibrary.cs -------------------------------------------------------------------------------- /CreamInstaller/Platforms/Epic/EpicStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Platforms/Epic/EpicStore.cs -------------------------------------------------------------------------------- /CreamInstaller/Platforms/Epic/GraphQL/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Platforms/Epic/GraphQL/Request.cs -------------------------------------------------------------------------------- /CreamInstaller/Platforms/Epic/GraphQL/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Platforms/Epic/GraphQL/Response.cs -------------------------------------------------------------------------------- /CreamInstaller/Platforms/Epic/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Platforms/Epic/Manifest.cs -------------------------------------------------------------------------------- /CreamInstaller/Platforms/Paradox/ParadoxLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Platforms/Paradox/ParadoxLauncher.cs -------------------------------------------------------------------------------- /CreamInstaller/Platforms/Steam/AppDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Platforms/Steam/AppDetails.cs -------------------------------------------------------------------------------- /CreamInstaller/Platforms/Steam/SteamCMD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Platforms/Steam/SteamCMD.cs -------------------------------------------------------------------------------- /CreamInstaller/Platforms/Steam/SteamLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Platforms/Steam/SteamLibrary.cs -------------------------------------------------------------------------------- /CreamInstaller/Platforms/Steam/SteamStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Platforms/Steam/SteamStore.cs -------------------------------------------------------------------------------- /CreamInstaller/Platforms/Steam/ValveDataFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Platforms/Steam/ValveDataFile.cs -------------------------------------------------------------------------------- /CreamInstaller/Platforms/Ubisoft/UbisoftLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Platforms/Ubisoft/UbisoftLibrary.cs -------------------------------------------------------------------------------- /CreamInstaller/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Program.cs -------------------------------------------------------------------------------- /CreamInstaller/ProgramSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/ProgramSelection.cs -------------------------------------------------------------------------------- /CreamInstaller/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CreamInstaller/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CreamInstaller/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Properties/Resources.resx -------------------------------------------------------------------------------- /CreamInstaller/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Properties/launchSettings.json -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader.cs -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/audioses-32/audioses.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/audioses-32/audioses.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/audioses-64/audioses.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/audioses-64/audioses.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/d3d10-32/d3d10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/d3d10-32/d3d10.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/d3d10-64/d3d10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/d3d10-64/d3d10.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/d3d11-32/d3d11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/d3d11-32/d3d11.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/d3d11-64/d3d11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/d3d11-64/d3d11.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/d3d9-32/d3d9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/d3d9-32/d3d9.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/d3d9-64/d3d9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/d3d9-64/d3d9.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/dinput8-32/dinput8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/dinput8-32/dinput8.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/dinput8-64/dinput8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/dinput8-64/dinput8.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/dwmapi-32/dwmapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/dwmapi-32/dwmapi.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/dwmapi-64/dwmapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/dwmapi-64/dwmapi.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/dxgi-32/dxgi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/dxgi-32/dxgi.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/dxgi-64/dxgi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/dxgi-64/dxgi.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/glu32-32/glu32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/glu32-32/glu32.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/glu32-64/glu32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/glu32-64/glu32.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/hid-32/hid.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/hid-32/hid.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/hid-64/hid.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/hid-64/hid.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/iphlpapi-32/iphlpapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/iphlpapi-32/iphlpapi.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/iphlpapi-64/iphlpapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/iphlpapi-64/iphlpapi.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/msasn1-32/msasn1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/msasn1-32/msasn1.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/msasn1-64/msasn1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/msasn1-64/msasn1.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/msimg32-32/msimg32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/msimg32-32/msimg32.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/msimg32-64/msimg32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/msimg32-64/msimg32.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/mswsock-32/mswsock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/mswsock-32/mswsock.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/mswsock-64/mswsock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/mswsock-64/mswsock.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/opengl32-32/opengl32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/opengl32-32/opengl32.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/opengl32-64/opengl32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/opengl32-64/opengl32.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/profapi-32/profapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/profapi-32/profapi.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/profapi-64/profapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/profapi-64/profapi.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/propsys-32/propsys.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/propsys-32/propsys.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/propsys-64/propsys.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/propsys-64/propsys.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/textshaping-32/textshaping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/textshaping-32/textshaping.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/textshaping-64/textshaping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/textshaping-64/textshaping.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/version-32/version.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/version-32/version.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/version-64/version.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/version-64/version.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/winhttp-32/winhttp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/winhttp-32/winhttp.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/winhttp-64/winhttp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/winhttp-64/winhttp.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/winmm-32/winmm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/winmm-32/winmm.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/winmm-64/winmm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/winmm-64/winmm.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/wldp-32/wldp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/wldp-32/wldp.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/wldp-64/wldp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/wldp-64/wldp.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/xinput9_1_0-32/xinput9_1_0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/xinput9_1_0-32/xinput9_1_0.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Koaloader/xinput9_1_0-64/xinput9_1_0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Koaloader/xinput9_1_0-64/xinput9_1_0.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/Resources.cs -------------------------------------------------------------------------------- /CreamInstaller/Resources/ScreamAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/ScreamAPI.cs -------------------------------------------------------------------------------- /CreamInstaller/Resources/ScreamAPI/EOSSDK-Win32-Shipping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/ScreamAPI/EOSSDK-Win32-Shipping.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/ScreamAPI/EOSSDK-Win64-Shipping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/ScreamAPI/EOSSDK-Win64-Shipping.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/SmokeAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/SmokeAPI.cs -------------------------------------------------------------------------------- /CreamInstaller/Resources/SmokeAPI/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/SmokeAPI/steam_api.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/SmokeAPI/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/SmokeAPI/steam_api64.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/UplayR1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/UplayR1.cs -------------------------------------------------------------------------------- /CreamInstaller/Resources/UplayR1/uplay_r1_loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/UplayR1/uplay_r1_loader.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/UplayR1/uplay_r1_loader64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/UplayR1/uplay_r1_loader64.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/UplayR2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/UplayR2.cs -------------------------------------------------------------------------------- /CreamInstaller/Resources/UplayR2/upc_r2_loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/UplayR2/upc_r2_loader.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/UplayR2/upc_r2_loader64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/UplayR2/upc_r2_loader64.dll -------------------------------------------------------------------------------- /CreamInstaller/Resources/ini.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Resources/ini.ico -------------------------------------------------------------------------------- /CreamInstaller/Utility/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Utility/Diagnostics.cs -------------------------------------------------------------------------------- /CreamInstaller/Utility/ExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Utility/ExceptionHandler.cs -------------------------------------------------------------------------------- /CreamInstaller/Utility/HttpClientManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Utility/HttpClientManager.cs -------------------------------------------------------------------------------- /CreamInstaller/Utility/IconGrabber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Utility/IconGrabber.cs -------------------------------------------------------------------------------- /CreamInstaller/Utility/LogTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Utility/LogTextBox.cs -------------------------------------------------------------------------------- /CreamInstaller/Utility/ProgramData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/CreamInstaller/Utility/ProgramData.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/README.md -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberSys/CreamInstaller/HEAD/preview.png --------------------------------------------------------------------------------