Homebrew SD Setup is a web application written in C# (and a little bit of JavaScript) running on Blazor. The app lets you select the homebrew applications and custom firmwares you want, and quickly create a zip archive to extract to your SD card. The Ninite for your game consoles.
The application has been verified working in Chrome, Firefox, Opera and Edge on Windows 10, as well as Chrome and Firefox on Android. Other browsers are likely to work fine as long as they support WebAssembly or asm.js, and ES6.
Internet Explorer is explicitly incompatible due to lack of ES6 support. Additionally, Firefox 61 and lower requires the user to manually navigate to the generated ZIP blob because the blob won't download programatically for whatever reason. This is fixed in Firefox 62+.
- Generate a perfectly formatted file structure in ZIP format, ready for direct extraction to your SD card. No additional setup necessary, just drag and drop!
- Save your setup so you can update everything later without reselecting all of the packages.
- Choose between a selection of common homebrew applications, tools and utilities, including:
- Custom Firmwares (ex. SX OS, Atmosphere, ReiNX)
- Homebrew Utilities (ex. Homebrew Menu, Checkpoint, JKSV, Tinfoil)
- Emulators (ex. Salamander RetroNX, pSNES)
- Games (ex. Mystery of Solarus DX, SDL Prince of Persia)
- Fusee Payloads (ex. Hekate, BISKeyDump, BriccMii)
- PC Utilities (ex. TegraRCMSmash)
Head over to https://www.sdsetup.com, select your console of choice, select the packages you want, and hit download! Once finished, simply extract the contents of the sd folder in the downloaded ZIP archive to the root of your SD card! Do what you wish with any additional folders included in the zip file.
Please feel free submit an issue for any of the following reasons:
- A package is outdated
- A package's information is incorrect
- A package should be retrieved from a different/better source
- A browser other than Internet Explorer is incompatible
- Reporting a bug
- Suggesting a feature
- Suggesting a new package
- Requesting a package be removed Homebrew SD setup
- Reporting a redistribution clause license violation for a rehosted package
- Any other issue with the site or it's packages
Clone the repository and open the solution in Visual Studio. Build from there.
- SDSetup Blazor: The web application itself, written in C# (and a little bit of JavaScript).
- SDSetup Backend: The backend server which the frontend communicates with. Upon request, generates zip bundles based on the client selection. Also provides manifest data and download statistics.
- SDSetup Backend Control Panel: Control panel to manage functionality of the backend server(s). Also for managing the Homebrew Guide.
- SDSetup Common: Common utilities and types shared between two or more of the above projects.
- The frontend needs a lot of optimization. For example, converting things to components and setting up databinding on individual components to refresh only what UI needs to be refreshed rather than entire containers.
- The frontend badly needs code cleanup. Like, basically everywhere.
- The backend needs to be refactored to conform to ASP.Net Core standards.
Feel free to make pull requests where you see fit!
Please see https://www.sdsetup.com/credits for an up-to-date list of credits and sources for each package available.
Other credits:
- tomGER and the rest of Team AtlasNX for working with me to keep this project up to date.
- the ASP.NET Core team for making this great thing called Blazor
- Chanan Braunstein for BlazorStrap
- Joonas W. for Using C# await against JS Promises in Blazor