Diese Version ist kompatibel mit dem neuesten Atmosphère (v1.11.2).
* Recompiled with latest libnx changes and with Atmosphère v1.11.2 (support for 22.5.0)
Nintendo-Homebrew seit 2011
Diese Version ist kompatibel mit dem neuesten Atmosphère (v1.11.2).
* Recompiled with latest libnx changes and with Atmosphère v1.11.2 (support for 22.5.0)
Liest alle Schlüssel der Switch aus.
Das Ableiten der Keys wurde komplett refactored und neue Keys sollten automatisch ohne Update von Lockpick RCM extrahiert werden können.
Nintendo Switch, Nintendo Switch: Update, Wii, Wii: Update emulator, point and click
Die folgenden Spiele werden nun unterstützt:
Dank Google Summer of Code wurden auch zahlreiche kleinere Dinge behoben und angepasst. Den vollständigen Changelog findet ihr auf der ScummVM-Webseite. Der 3DS-Port wurde bislang noch nicht aktualisiert; erfahrungsgemäß dauert das einige Tage.
Patches, die das Aufnehmen von Screenshots und Videos in jedem Spiel erlauben. Umgeht auch nervige Screenshot-Sperren und Copyright-Texte und erlaubt Video-Streaming per SysDVR!
Die dvr-Patches sind nun mit der neuen Switch-Firmware 22.5.0 kompatibel.
3DS, 3DS: Update, Nintendo Switch, Nintendo Switch: Update, vWii, Wii, Wii U, Wii U: Update, Wii: Update explorer
ROM Properties ist eine Shell-Erweiterung für Windows, Linux und BSD, die Informationen und Cover zu vielen Spiel-bezogenen Formaten anzeigt.
PlayStation-TIM-Texture und S98-Audio-Dateien werden jetzt unterstützt. Für Terminals werden nun die Kitty– und Sixel-Protokolle unterstützt, damit Datei-Icons und Banner angezeigt werden können. Die "fw.bu.img" der Wii U wird nun erkannt, genauso wie amiibo v3. Zudem wurde das Icon-Handling unter Windows verbessert. Unten seht ihr den vereinfachten Changelog; den vollständigen findet ihr auf GitHub.
* PlayStation TIM textures * S98 audio files * Support for Kitty and Sixel protocols in terminals to display file icons and banners. * Improvements for Wii U firmware files, amiibo, and Lua bytecode. * Numerous improvements for Windows icon handling. * More ARM NEON optimizations. * Windows icon allback fix for certain types of files, e.g. Powershell scripts. * GNU gettext is now built as part of rom-properties using a custom CMake build.
Nintendo Switch, Nintendo Switch: Update bluetooth, controller
Die neue Switch-Firmware 22.5.0 wird unterstützt.
* Added support for firmware 22.5.0
Systemmodul welches automatisch Signatur-Patches anwendet.
UPDATE, 17.06.2026, 10:10 Uhr: sys-patch wurde mit v1.6.2.3 nachkorrigiert.
Die neue Switch-Firmware 22.5.0 wird jetzt unterstützt.
* Basic support was added for 22.5.0. * Atmosphère was updated to use GCC 16/newlib (latest devkitA64/devkitARM releases). * General system stability improvements to enhance the user's experience.
Nintendo Switch, Nintendo Switch: Update custom themes, themes
JPG- und PNG-Bilder können nun direkt als Wallpaper installiert werden. Neu ist auch ein experimentelles Custom-Systemmodul, welches über die Einstellungen aktiviert werden kann und ein installiertes Theme bei HOME-Menü-Updates automatisch entfernt (TitleID: 00FF007468656D65). Es läuft nur beim Boot, nimmt also beim Betrieb keinen RAM ein. Beim Installieren von Themes über Themezer werden Patches nun automatisch angewendet und die Extrahierung des HOME-Menü-Layouts schreibt nun nicht mehr auf die SD-Karte, was einige Abstürze behebt.
Der Switch Theme Injector wird in der nächsten Version außerdem mit einem Web-basierten Theme-Creator ersetzt.
* JPG and PNG images can now be directly installed as themes, without the need to create nxtheme files. ** Currently wallpapers are installed as plain images with the system default layout. * We have a new experimental sysmodule to detect home menu updates and automatically uninstall themes when they are not compatbile ** You can enable or disable it from the settings page of the theme installer ** This sysmodule only runs on boot and removes themes when the firmware version changes, this should fix crashes when switching between sysmmc/emummc or updating firmware ** The sysmodule uses very little memory and automatically terminates after boot, freeing memory for other sysmodules ** Title ID is 00FF007468656D65, please give it a try and report any issues. * Home menu extraction happens on the fly and does not write to the sd card anymore ** This solves a number of crashes on boot caused by users skipping the extraction process after an update and accidentally installing an incompatible version ** Installing themes just works regardless of sysmmc or emummc ** You can still export the raw szs files needed for making custom layouts from the home menu extraction page * Home menu patches are applied when installing from external sources ** This solves crashes on boot when installing a theme from themezer-nx right after updating the console * Various improvements on error handling, hopefully we should see overall less crashes of the application especially in applet mode.
Nintendo Switch, Nintendo Switch: Update audio, player, Video
Diese Version enthält Bugfixes für HTTP(S)- und USB-Mounts.
Bug fixes for HTTP(S)/USB mounts
Lädt Screenshots und Videos direkt nach der Aufnahme zu Telegram, Discord, Immich oder ntfy.sh hoch.
Intern wurde ein größeres Refactoring durchgeführt. Für Endnutzer ist lediglich relevant, dass der Key "upload_movies" in der Config durch "upload_videos" ersetzt wurde.
Breaking Changes * upload_movies renamed to upload_videos — The INI config key upload_movies has been renamed to upload_videos across all channels (Telegram, Discord, ntfy, Immich). Update your config.ini accordingly. New Features & Architecture * Modular channel architecture — Upload channels (Telegram, Discord, ntfy, Immich) are now fully self-contained modules under src/channels/. Each channel has its own .hpp + .cpp pair encapsulating: ** Config struct with defaults, load(), and validate() ** send(path) upload function ** Enabled state (no more separate flags in Config) * X-macro channel registry (channels/channels.inc) — All channels are registered via X-macro, enabling automatic expansion in config.hpp/cpp and main.cpp. Adding a new channel now only requires: registering in channels.inc + creating channels/xxx.hpp + channels/xxx.cpp. Bug Fixes * Fixed a dangling pointer issue in the main loop. * Fixed Immich config comment typo in config.ini.template.
Nintendo Switch, Nintendo Switch: Update screenshot, upload, Video
Lädt Screenshots und Videos direkt nach der Aufnahme zu Telegram, Discord, Immich oder ntfy.sh hoch.
Bilder und Videos können nun auf eine eigene Immich-Instanz hochgeladen werden. Dazu müssen die Server-URL und der API-Key in der Config ergänzt werden. Zudem werden bei Video-Uploads zu Telegram nun die Video-Dimensionen mitgegeben, damit diese korrekt im Chat angezeigt werden.
New Features * Immich Integration: Added support for uploading screenshots and videos to self-hosted Immich instances via its API. You can now configure server_url and api_key under the new [immich] section in config.ini. (Contributed by @hax4dazy) Bug Fixes * Telegram Video Uploads: Added missing video dimension parameters (1280x720) for Telegram to ensure videos are formatted and displayed correctly in the chat. * System Stability: Fixed a memory leak and potential sysmodule crash in the Immich upload flow by properly freeing cURL MIME resources. (Contributed by @hax4dazy) Improvements & Maintenance * Enhanced Logging: Updated the logger to include local timestamps (e.g., [2026-05-09 16:19:14]) for better readability and easier debugging. * Profiling Support: Renamed the internal timing flags and scripts for better clarity (changed ENABLE_TIME_FUNCTIONS to ENABLE_PROFILING and renamed build-with-time.sh to build-with-profiling.sh). * Code Cleanup: Removed unused legacy code (fopen and CURLOPT_READFUNCTION) from the new Immich implementation and applied general code formatting across the project. * Documentation: Updated the English and Chinese README.md files to include instructions for configuring the new Immich upload destination.
Systemmodul welches automatisch Signatur-Patches anwendet.
Wenn es beim Patchen mehr als ein Ergebnis gibt, werden nun alle Vorkommnisse gepatcht. Auch wurde ein Patch hinzugefügt, mit dem chinesische GameCards auf einer neueren globalen Firmware ausgeführt werden könnnen.
* adds ability to target more results than first one, if patterns has more than one result.
* adds a patch to NS that forces a 0 to GetGameCardCompatibilityType whenever NS calls for it, so that users who own chinese region ("terra") gamecards can launch their cards while running global firmware version of HorizonOS (i.e. any firmware above CHN 19.0.2)
* also added another decimal so that minor patches can be put out that aren't "worth" updating to.
Das Tool funktioniert wieder mit der neuesten Atmosphère-Version.
* This update builds against the latest libnx so it should now run on the newest atmosphere. Additionally console printing issues were resolved thanks to @drizzt
Nintendo Switch, Nintendo Switch: Update aufnahme, screenshot
Patches, die das Aufnehmen von Screenshots und Videos in jedem Spiel erlauben. Umgeht auch nervige Screenshot-Sperren und Copyright-Texte und erlaubt Video-Streaming per SysDVR!
Die Switch-Firmware-Versionen 22.0.0 und 22.1.0 werden unterstützt.
This release adds support for firmware 22.0 and 22.1
Ermöglicht das Online-Spielen über LAN-Play mit anderen Switch-Konsolen weltweit.
Dieses Update macht ldn_mitm fit für die neue Switch-Firmware 22.1.0.