Jump to content


DBI v654

¿Quieres enterarte al momento de las nuevas descargas? Síguenos en Twitter, Mastodon o Threads!

La solución definitiva para la instalación de archivos NSP/NSZ/XCI con varias caractericas avanzadas para potenciar tu experiencia con Nintendo Switch.

 DBI soporta instalación vía MTP, USB (usando el script dbibackend o la herramienta dbi-nsw), red (sando tu propio servidor http) o memorias USB externas.

Instalación

Descarga la última versión de la aplicación desde esta misma página de forma completamente gratuita, descomprime el archivo descargado y copia los archivo dbi.nro y dbi.config a tu tarjeta SD en la ruta /switch/DBI/.

DBI puede ser ejecutado tanto en modo  applet (desde Album) o en modo aplicación (título). Aun así, está diseñada para utilizarse en primera instancia en modo applet.

Si has lanzado DBI de forma satisfactoria en modo applet verás una pantalla con fondo azul. En modo aplicación el fondo será negro.

Usage

Interface

2021041010520200

  • Browse SD Card — installation of .NSP / .NSZ / .XCI files from your SD card.
  • Browse USB0 Drive — installation of .NSP / .NSZ / .XCI files from an external FAT32 or exFAT formatted USB drive (will only appear if a USB drive is connected)
  • Install title from USB — installation of .NSP / .NSZ / .XCI from a PC via USB 2.0 or 3.0 cable using the included dbibackend script. Main menu hotkey for this option: Y button.
  • Install title from Gamecard — install a game from gamecard to the console's internal NAND or SD card (will only appear if a gamecard is inserted)
  • Home server — install games over your local network (HTTP) using a LAN USB adapter or WiFi network. For full details see Home server
  • Browse installed applications — view installed titles including base, update, DLC and whether or not a LayeredFS mod is present. Displays your total play time and how many times you've launched the title. Check file integrity for errors, transfer game data between internal NAND and SD card, delete individual or multiple titles and their LayeredFS mods with one click, individually remove updates and DLC and use the Reset Required version function to restore the system update check for the selected game back to base. Main menu hotkey for this option: L button.
  • Cleanup orphaned files — removes all orphaned installed content, tickets and pending firmware updates from the system with one click.
  • Browse tickets — view and manually delete system tickets for games.
  • Run MTP responder — enables DBI's internal MTP server to connect the Switch to a PC or to an Android device (Some tested phone/tablet devices: Pixel 3, Xiaomi Mi A1, Lenovo Tab 4 7 "TB-7304X). On your device you will be presented with several virtual drives for installation and many advanced features for file management on your SD card and NAND. Please see Run MTP Responder for a full overview.
  • Exit — exit from the program. Main menu hotkey for this option: + button

The bottom left corner of DBI displays the total amount of data on your currently on your SD card along with the full capacity. The bottom right corner gives you the same information for your NAND's usable space in HOS.

Bottom center (dbi: XXX) is the DBI version number - you should always use the most recent version.

Browse SD Card / Browse USB0 Drive

Select this option if you want to install games, updates and DLC from files that exist on your SD card or external USB drive. Press A to open the folder and B to go back. After opening the folder containing your installation files use the X button to select single or multiple files for installation. The Y button inverts your selections and the color of the name of the selected files will change from white to light blue.

Press the A button to confirm. A window with installation options will appear:

2021041011441100

  • Total transfer size — the total amount of data (.NSP / .NSZ / .XCI files) selected for installation.
  • Total install size — the amount of free space required to install the selected files.
  • Install target — data installation location: NAND - internal memory of the Nintendo Switch console, SD - SD card, AUTO - by default this will install to your SD card but if you don't have enough space the installation will fall back to NAND (internal memory).
  • Delete after install — deletes installation files (.NSP / .NSZ / .XCI files) from the source after they have been successfully installed; for this to work, the "Read-only" attribute must be removed from files if present. By default, files are not deleted. The option is visible only when installing from an SD card / external USB drive.
  • Turn off screen — turns off the screen during installation to conserve battery, after installation successfully completes the screen will automatically turn back on. This option only works in handheld mode.
  • Select Start install to begin the installation. After a successful installation Installation Complete. Press B to return will appear.

DBI will automatically and immediately remove old updates when installing a new update for a game, so you don't have to worry about the extra space they occupy.

Install title from USB

If you cannot use DBI's MTP responder this is another convenient method for installing titles over USB. Installing over USB allows you to transfer files directly from your PC for example, which avoids the inconvenience and of having to first move the file to your SD card and then install it. Compared to using the MTP responder this mode will also allow direct installation of .XCI files.

Main menu hotkey for this option: Y button.

In order to use this option you will first require dbibackend (dbibackend.exe for Windows, dbibackend from dbibackend.tar.xz for all). Launch dbibackend, select the files to install, select Start server, connect a USB-C cable from your PC to your Switch and select Install title from USB in DBI.

From here you will select and install your files on the Switch in the same fashion as using Browse SD Card / Browse USB0 Drive

To quickly send files or folders with games for installation, right-click on them, select Send from dbibackend and the installation files will be immediately placed in dbibackend's queue. To configure this in Windows, press Win + R, enter shell: sendto and create a shortcut for dbibackend.exe in the folder.

Home server

The "Home server" option will appear if the Network install sources section has been configured in dbi.config (more about this file below). You can specify the name of the option as required in the configuration file

To install games over your network, edit the dbi.config file located in the /switch/DBI/ folder, following the example:

; Network install sources
[Network sources]
; <display name>=<type>|<URL>
Home server=ApacheHTTP|http://192.168.1.47/Nintendo/Switch/

Install any other HTTP server with DirectoryListing enabled on your PC: Apache, Mongoose, Python SimpleHTTP, sheret, rclone, etc.

Example for nginx on Windows: edit the file /nginx/conf/nginx.conf, registering the address of your Switch in location, instead of the 127.0.0.1 specified in the example (or your entire subnet like 192.168.1.1/24 or 192.168.0.0/16); it can be found on Switch in System Preferences > Internet:

location / {
root html;
index index.html index.htm;
}
location /Nintendo/Switch/ {
allow 127.0.0.1;
deny all;
autoindex on;
}

Save the config, run nginx.exe, allow the program to access the network, then copy the desired game to the local /nginx/html/Nintendo/Switch/ folder on your PC, and on the Switch select “Home server”. You will now be presented with the usual interface for installing files and you can start installing files over the network. You can stop the web server via nginx -s stop.

For the server address in dbi.config, you can also use a domain name, for example, your remote VPS - suggested to use with HTTP Basic authentication e.g.: http://user:password@host:port/Nintendo/Switch/

For example:

ApacheHTTP|Network repo|http://127.0.0.1/Nintendo/Switch/
ApacheHTTP|WWW VPS repo|http://www.myveryownswitchvpsdomain.su/Nintendo/Switch/

Generate the htpasswd file, put it in /nginx/conf/, then adjust the nginx.conf file as follows:

        location /Nintendo/Switch/ {
			   satisfy all;
			   allow 127.0.0.1;
			   deny all;
			   auth_basic "Password Protected Area";
			   auth_basic_user_file htpasswd; 
               autoindex on;
        }

Login "switch", password "pwd":

htpasswd-file:

switch:{SHA}N/omUzCtg+qoee+x4ttjgIls9jk=

Browse installed applications

In Browse installed applications you can see a list of installed programs, updates and DLC with their occupied space, version (display version and hex version), their titleID, the total game time and the number of launches, the presence of installed LayeredFS mods for the game (for Atmosphére). Main menu hotkey for this option: L button:

2021041012101400

The total number of installed applications (e.g. games and homebrew nsps) is displayed at the top of the screen. Any installed data can be transferred between internal NAND and SD card, it is possible to individually select and uninstall multiple games (b) / updates (u) / DLC (d)together with their associated LayeredFS mods (l) (detected at /atmosphere/contents/) or you can individually select updates and DLC for deletion. The Reset Required version function will force restore the system update check for the selected game back to base (this is also done automatically with installation or removal of game updates):

2021041012102700

By pressing the R button you can sort the game list as you prefer - alphabetically (default) or by last usage. Press the A button to enter the menu of the selected game, the - button deletes the game and its (non-personalized) ticket, the D-pad selects games, the left stick scrolls through the list of games and the ZR and ZL buttons flip through the list of games screen by screen.

You can also check (verify) games for their integrity by selecting the file to check and then selecting Check integrity

Cleanup orphaned files

Cleanup orphaned files automatically cleans unnecessary game files, files from interrupted game installations, downloaded (officially) OFW firmware updates and all unused game tickets if found.

Browse tickets

View and delete game tickets. Ticket (or encrypted title key) is special encrypted unique information about the rights to launch the content of the game which is installed in the system during the installation of each game (000 at the end of titleID) / update (800 at the end of titleID) / each DLC. + means the presence of an installed game, [c] - common-ticket (installed game dump or update), [p] - personalized-ticket (game purchased from the eShop)

You may be able to resolve certain errors with this for example if you know exactly what you are doing. You can remove individual tickets from a specific game and/or its update/DLC.

In most case it's better not to touch anything here in order to avoid errors in starting games.

Run MTP responder

Run MTP responder run the built-in DBI MTP server to connect to your PC or Android device via USB-C OTG (phone / tablet / other devices). Main menu hotkey for this option: X button (same button to exit MTP mode). After successfully connecting the USB cable to the PC and starting the MTP server in DBI, you'll see the following on your computer:

изображение

1: External SD Card, for viewing, copying and deleting files and folders from/to a PC and from/to your SD card. Drop a file larger than 4GB onto the SD card and DBI will automatically split the file into an archived folder, which allows the Switch to see it as a single file, with this you can for example very easily add a >4GB .xci for use in SX OS, or add a >4GB movie for watching in pPlay.

2: NAND User, viewing, copying files and folders on a PC from the Switch's internal memory to its USER system partition (this partition is read-only).

3: NAND System, viewing, copying files and folders on a PC from the internal memory of the Switch to its SYSTEM system partition (the partition is read-only).

4: Installed games, to view installed games.

В Installed games all installed games are displayed from both in NAND (internal memory of the Switch) and SD card. To dump installed games to your PC in .NSP format, just copy the folder with the name of the game from Installed games to your PC. A common ticket with completely cleared personal information is generated based on your personalized ticket. Your dump will be in separated files - the game itself, the update and DLC. If cheats or mods have been installed for the game, they will be located in the Mods & Cheats folder. You can also dump a single combined multicontent file containing the game itself, the update and all DLC. This file is located right at the root of the Installed gamessection. The generated DBI InstalledApplications.csv is also stored here, with a table of the list of installed games, their TitleID and the current version.

5: MicroSD install Drop or copy your NSP or NSZ files in this folder. When the transfer is complete the game will be installed on the SD cardof your console. When installing NSZ files, keep in mind that their actual size may differ greatly from their original size after installation: so if for example you start with 2GB free on your memory card and you do not have enough space to install an NSZ of 1GB in size, that is because NSZ files are compressed and must be decompressed for installation.

6: NAND install: Drop or copy your NSP or NSZ files in this folder. When the transfer is complete the game will be installed on the internal memory of your console. When installing NSZ files, keep in mind that their actual size may differ greatly from their original size after installation: so if for example you start with 2GB free on your memory card and you do not have enough space to install an NSZ of 1GB in size, that is because NSZ files are compressed and must be decompressed for installation.

7: Saves: Access to all game saves - in accounts (Account), system programs (System), in Background Content Asymmetric synchronized delivery and Transmission (BCAT, for example: events in ACNH), temporary (Temporary), cache (Cache, for example: addons in DOOM), system BCAT (SystemBCAT), - stored in the internal memory of the Switch; in the Installed games folder - save for the currently installed games, Uninstalled games - save from deleted games that were previously launched. From here, you can make a backup of them by copying them to a PC, and also delete unnecessary ones - for this, open the folder with the name of the game you need, then delete the folder with the nickname of your account / Device-save. In order to restore the save, copy them to the appropriate folder from your PC. DBI does not require pre-launching the game to restore a save, however this only applies to regular saves. BCAT or Cache saves require a pre-launch of the game before restoring.

8: Album: access to screenshots and videos (Album), similar to Nintendo's feature added OFW 11.0.0.

9: Gamecard: with a gamecard inserted into the Switch you can dump to .XCI or trimmed .XCI on the PC, along with the update built into it if it exists. The personal RSA certificate automatically removed and is dumped separately.

After activating the MTP server on the Switch a window will appear with your account nickname and its UID, as well as the number of game saves: 2021041013152900

To turn off the MTP server and exit to the main menu, press the X button.

Exit

Exit - exit from the program in HOS, either to hbmenu or bypassing hbmenu directly to the homescreen (this is configured in dbi.config). If DBI was launched from a title / forwarder, the program will restart or remain on a black screen.

Errors and warnings

Warnings

  • «HASH MISMATCH» — usually this is NOT an ERROR and the game was simply converted from an .XCI and everything is in order. Sometimes if there are problems with the integrity of the file, download it, rehash it, transferring data via a USB cable / port / during the installation process between the PC and the Switch. If the game still does not start or starts with an error, try reinstalling it again, check or replace the USB cable / SD card / change the USB port.
  • DELTA SKIPPED — this is NOT an ERROR but a notification that unnecessary and unused delta fragments in the update file were skipped during installation.
  • «No tickets found. Possibly this NSP was converted from XCI.» — this is NOT an ERROR and the performance of the game will not be affected. This informs you that the files do not include tickets, they may have been dumped from an .XCI file or converted to Standard Crypto.
  • «WARNING» title marked as Application but has AddonContent — this is NOT an ERROR and usually it indicates a non-standard .NSP homebrew game, for example if an AddonContent flag (DLC) was added to the Application title (main game, v0). If the application starts and works then everything is in order.

ERRORs

  • «Can not find file for ncaid» — The installation file of the game is corrupt (it does not contain the required .nca from the .cnmt list).
  • «Invalid PFS0 magic!» — download the installation file of the game and check its integrity, this file is corrupt.
  • «Received less data than expected» or Installation aborted — data transfer error, recheck and if necessary replace the USB cable / USB port between the Switch and the PC. Also make sure you have the most recent version of the DBI installed.
  • «std::bad_alloc» — rename the file without special characters and Cyrillic in the name and path to it, plus make sure that you are using the latest version of DBI and that the latest supported version of OFW and CFW is installed on the console.
  • «Nothing to install» in the file selection window - rename the file without special characters, hieroglyphs or Cyrillic in the name and path to it.
  • «INVALID LENGTH» — check the USB-C cable connection to your USB port, try with another USB-C cable, check the integrity of the game file and the SD card for errors, when installing via MTP - try to run DBI in application mode (title override) holding the R button while launching a title.
  • «[FAILED] Unknown error» when installing .tik (ticket) - add the latest sigpatches for Atmosphére.
  • «605: Content or placeholder path not exists» or «SOME CONTENTS ARE MISSING» — broken file system on your SD card, or a non-working / low-quality flash drive. Check it in chkdsk and h2testw, if there are no errors reformat to FAT32.
  • WARNING! Extra buffers exceeded, when installing via MTP - try to run DBI in application mode (title override) holding the R button while launching a title or alternatively via NSP forwarder and use a faster microSD card with a different USB cable / port.
  • No tickets found but they are required — incorrect (incomplete, no ticket but with titlerights) dump of the game, use another one.
  • SOME CONTENTS ARE MISSING. APPLICATION WILL BE UNUSABLE — container is incomplete, check the integrity of the game installation file.

dbi.config

The dbi.config file was added starting with version 253. It is located next to DBI.nro and replaces the old flags files dbi.default.asciiand dbi.network.config and also adds several new options for easy customization of settings for the user.

Let's take a look at its contents:

; General settings
[General]
; Use libnx's default font for ASCII symbols
DefaultASCII=true
; Use libusbhsfs for access to USB mass storage drives connected to switch or dock
UseLibUsbHsFS=true
; Direct exit to homescreen
ExitToHomeScreen=true

; Visibility of main menu items
[MainMenu]
; Browse and install files from MicroSD card
BrowseSD=true
; Browse and install files from USB flash drives and HDD
USBHost=true
; Browse and install files from PC via dbibackend
BackendInstall=true
; Install game from inserted game cartridge
GameCard=true
; Browse and install files from configured network sources
Network=true
; Browse installed applications
BrowseApps=true
; Clean up files left from bad installs/old updates/unused tickets and so on
Cleanup=true
; View where you can view or delete installed tickets
Tickets=true
; MTP responder
MTP=true

; Install options
[Install]
; Check NCA hash during install
CheckHash=true

; MTP options
[MTP]
; Log all files, id disabled transfer shows only for files >= 4M
LogAllFiles=false
; Show or not NSP that includes base game, latest update and all DLC in single multi-title file
ShowCombinedNSP=true
; Show or not virtual "Mods & cheats" folder that redirects to sdmc:/atmosphere/contents/TITLEID
ShowMAC=true
; Show user defined shortcuts to MircoSD folders as separate storages
CustomStorages=true

;Enable or disable various MTP storages
[MTP Storages]
1: External SD Card=true
2: Nand USER=true
3: Nand SYSTEM=true
4: Installed games=true
5: MicroSD install=true
6: NAND install=true
7: Saves=true
8: Album=true
9: Gamecard=true

; Network install sources
[Network sources]
; <display name>=<type>|<URL>
;Home server=ApacheHTTP|http://192.168.1.47/Nintendo/Switch/

[MTP custom storages]
; <display name>=<path>
;Homebrew=sdmc:/switch

General settings

  • DefaultASCII - true includes a standard font, false includes an alternative font
  • UseLibUsbHsFS - true enables libusbhsfs library for working with external USB drives via USB-OTG on Switch, false disables it.
  • ExitToHomeScreen — if false, the exit from DBI occurs in the hbmenu, if true, to the Switch's home menu

MainMenu

Shows the corresponding menu items.

true - display in main menu, false - hide from main menu

  • BrowseSD - item "Browse SD card, to install games from Sd card
  • USBHost - item "Browse USB0 Drive, to install games from an external USB
  • BackendInstall - item "Install title from USB, for installing games from PC via backend
  • GameCard - item "Install title from Gamecard, to install the contents of the cartridge in the memory of the console
  • Network - item "Home server, to install games from a home web server
  • BrowseApps - item "Browse installed applications, to manage installed applications
  • Cleanup - item "Cleanup orphaned files, to clean up" orphaned "files from the memory card
  • Tickets - item "Browse tickets, to manage tickets
  • MTP - item "Run MTP responder, to start MTP

Install

  • CheckHash — if true, hashes of .nca files are checked when installing games on the Switch, if false, no.

MTP

  • LogAllFiles  false disables logging of all files when working with MTP; if true, all files are logged, even those that are less than 4MB.
  • ShowCombinedNSPInInstalledGames  false disables display of combined (multi-title .NSP-file) titles.
  • ShowMACInInstalledGames  false turns off the display of the virtual directory "Mods & cheats" in the Installed games item in the MTP, redirecting along the path /atmosphere/contents/%titleid_game% to the memory card.
  • CustomStorages - show or hide storages, listed on MTP custom storages section

MTP Storages

Show relevant items when MTP Responder is running on PC / Android, by default all items are enabled for display.

true - display in MTP on PC, false - no

The item names correspond to the titles of the sections

Network sources

Names and addresses are set for installing games over the network (via WiFi / LAN adapter)

MTP custom storages

Custom items for MTP mode for quick access to folders on your memory card. Format: <folder display name> = <path>, for example: Homebrew = sdmc: / switch. In MTP mode, a Homebrew folder will appear, referring to the switch folder on your memory card

Other possibilities

Mounting the content of installed titles via MTP

Go to "Browse installed applications" -> Choose apps you need to mount with X -> Press A -> "Mount contents via MTP"

by rashevskyv.


Que novedades incluye la versión v654

Released

  • Bug corregido.

No te pierdas nada, síguenos en Twitter, Mastodon o Threads!
Preguntas, aportes y peticiones en el foro.

  • Contenido similar

    • Por Dekuwa
      JKSV es una aplicación multipropósito para Nintendo Switch.

      Cosas que se puede hacer actualmente con JKSV:
          Volcar y restaurar datos guardados. Esto incluye la capacidad de volcar y restaurar a / desde cualquier ubicación en SD presionando menos y usando el modo avanzado. Los datos guardados se pueden descargar y restaurar directamente desde y hacia archivos ZIP habilitando Exportar a ZIP en los menús de opciones. Las carpetas seguirán siendo detectadas y utilizables incluso con esta opción habilitada.     Sistema de volcado de datos guardados El volcado de estos datos siempre está habilitado, pero la escritura debe estar habilitada desde el menú de opciones. Escribir a esto puede ser muy peligroso.     Abrir y explorar las particiones de almacenamiento bis a través del menú Extras BIS Storage se abre dentro de un navegador de archivos básico. La lista de la partición está a la izquierda. Tu SD está a la derecha. Solo la copia a SD y las propiedades de archivo funcionan en particiones BIS. La escritura y la eliminación están deshabilitadas a menos que estén habilitadas, como los datos de guardado del sistema.     Extras: Posibilidad de eliminar las actualizaciones de firmware descargadas de NAND. Esto se encuentra en el menú de extras (ZR en la selección de usuario) Terminación de procesos por ID. Permitiéndole volcar archivos del sistema que normalmente no se pueden abrir. Montar por ID de guardado del sistema. Normalmente se usa cuando el proceso terminado hace que JKSV no pueda volver a escanear títulos sin que el Switch se bloquee. Monte y abra RomFS del proceso, el menú de homebrew se hace cargo (si se inicia como NRO). Mantén presionada la tecla R mientras abres un juego o subprograma con Atmosphere para que se cargue el menú de homebrew. Abra JKSV y presione menos y seleccione Montar proceso RomFS. Las romfs de la aplicación deberían aparecer en el navegador junto con su SD a la derecha. Guía rápida de uso de JKSV:
      Se puede definir una ruta personalizada creando "sdmc: /switch/jksv_dir.txt" y escribiendo la ruta que desea utilizar. Por ejemplo, sdmc: / switch / JKSV / forzará a JKSV a crear su carpeta en la carpeta switch homebrew.
      Se pueden configurar "títulos seguros" personalizados creando un archivo llamado titleDefs.txt en su directorio JKSV. Estas son las carpetas de la SD en las que se almacenan las partidas guardadas. Por ejemplo, si crea este archivo y agrega la línea 0100BFE00E9CA000 = "The Witcher 3 CE", The Witcher 3 usará el directorio [ruta] / JKSV / The Witcher 3 CE / en lugar de su ID de título. Estos deben ser ASCII o no funcionarán.
      Selección de usuario A abre los archivos guardados del usuario seleccionado. Y Vuelca todos los datos guardados de todos los usuarios, los datos guardados del dispositivo y los datos guardados de BCAT. Los datos de guardado del sistema no están incluidos en esto. X Cambia el modo de interfaz de usuario a uno basado en menú de texto para las personas que prefieren los menús de texto de estilo 3DS JKSM. Menos Abre el menú Opciones. ZR abre un pequeño menú de extras. Seleccionar título A Abre el título para realizar copias de seguridad y restaurar. L y R cambian el usuario actual. Y Vuelca todo lo guardado para el usuario seleccionado actualmente. X agrega el título seleccionado a una lista de favoritos que se colocan en la parte superior de la lista de títulos / íconos. Menos agrega el título seleccionado a una lista de títulos ignorados. ZR BORRADOS El título seleccionado se guarda del sistema. Esto es lo mismo que ir a la configuración y eliminar a través de la gestión de datos. ESTO NO BORRA LAS CARPETAS DE GUARDAR DE JKSV. Menú Copia de seguridad / Carpeta Menos abre el modo de archivo. El modo de archivo es un explorador de archivos básico para mover archivos y carpetas individuales. Esto también agrega la capacidad de restaurar guardados desde cualquier ubicación en su tarjeta SD. Si mantiene presionada la tecla L o R mientras selecciona nuevo con A, automáticamente le asignará un nombre a la copia de seguridad sin abrir el teclado. A crea una nueva copia de seguridad JKSV agrega algunas sugerencias al diccionario del teclado, tales como: cadenas de fecha, el nombre del usuario actual si es seguro y el título actual o una abreviatura generada. Y Restaura los datos guardados de la carpeta seleccionada. X Elimina la carpeta seleccionada. ZR BORRA los datos guardados actuales para el título de su sistema, pero deja el archivo en NAND. Modo de archivo A abre directorios. B vuelve a subir una carpeta si es posible. X abre un pequeño menú de opciones para archivos y directorios: Copiar a [X]: copia el elemento seleccionado actualmente en la ubicación abierta en el otro panel. Seleccionando el primero. utilizará el directorio abierto como raíz para copiar. Eliminar elimina el elemento seleccionado actualmente. Renombrar cambia el nombre del elemento seleccionado actualmente. Make Dir crea una carpeta. Propiedades obtiene el tamaño del archivo y el tamaño del directorio. ZL o ZR Cambia el menú controlado. Extras SD To SD Browser abre el navegador de archivos con su SD abierta en ambos paneles BIS: [X] abre la partición [X] en el navegador de archivos. Eliminar actualización elimina las actualizaciones del sistema descargadas de Nintendo y solicita reiniciar el sistema para deshacerse del problema de la actualización. Terminate Process solicita una identificación de título para finalizar. Mount System Save solicita el ID de guardado para montar. Esto es para cuando JKSV no puede volver a escanear con un proceso terminado. Volver a escanear títulos vuelve a cargar la información de los datos guardados. Esto se puede usar para recargar después de que se termina un proceso o cuando se cambian las opciones. Mount Process RomFS abre las romfs del título que se toman para iniciar el menú de homebrew. Esto solo funciona como NRO. El NSP solo abrirá el propio RomFS de JKSV. La carpeta Backup JKSV escribe la carpeta JKSV completa en un archivo ZIP y la coloca en su carpeta JKSV. Opciones Incluir Dev Sv agregará juegos de Device Save como Animal Crossing a los guardados de su cuenta de usuario para facilitar el acceso. AutoBackup creará una copia de seguridad de su guardado actual antes de restaurarlo por si acaso. Overclock sincronizará la CPU de su Switch a 1224MHz en el arranque. Mantener presionado [X] desactivará la necesidad de mantener presionado A para confirmar una acción. Forzar montaje solo permitirá que JKSV enumere los títulos que puede abrir. La desactivación dará una lista completa de todos los guardados en su sistema Account Sys. Los guardados le permitirán ver y abrir los guardados del sistema asociados con las cuentas de usuario. Escriba a Sys. Los guardados le permitirán escribir datos en los archivos guardados del sistema. Esto puede resultar peligroso. El modo de interfaz de usuario de texto permite una interfaz de usuario simplificada que solo usa menús de texto Direct FS Commands usa un contenedor simple en lugar del stdio de libnx. Omitir selección de usuario salta directamente al primer usuario encontrado en lugar de requerir que se seleccione un usuario. Exportar a ZIP utiliza minizip para comprimir los datos guardados en un archivo ZIP en lugar de en una carpeta llena de archivos. Esto ahorra espacio y hace que los ahorros en movimiento sean más convenientes. Ordenar cambia la forma en que se ordenan los títulos. Alfabéticamente, más tiempo reproducido o por último título reproducido. Aplicación creada por J-D-K.
    • Por Dekuwa
      PKHeX es un editor de partidas guardadas, programado en C#, de la serie de videojuegos Pokémon, compatible con títulos de Switch, Nintendo 3DS y GameCube.
      Soporta los siguientes tipos de archivo:
      Archivos de partidas guardadas ("main", *.sav, *.dsv, *.dat, *.gci) Archivos de la tarjeta de memoria de GameCube (.raw, .bin)que contienen las partidas guardadas de los juegos Pokémon de GC. Archivos de juego de Pokémon (.pk*) Archivos de regalo misterioso (.pgt, .pcd, .pgf, .wc*) incluyendo la conversión a .pk* Importación de equipos desde los Battle Videos desencriptados de 3DS Transferencia desde una generación a otra, convirtiendo formatos sobre la marcha.
      Los datos se muestran en una vista que se puede editar y guardar. La interfaz se puede traducir con recursos/archivos de texto externos para que se admitan diferentes idiomas.
      Los conjuntos de Pokémon Showdown y los códigos QR se pueden importar/exportar para ayudar a compartir.
      Los contenedores de datos guardados de Nintendo 3DS usan un AES MAC que no se puede emular sin las claves de 3DS, por lo que se requiere un servicio de renuncia (svdt, save_manager, JKSM o SaveDataFiler).
      No apoyamos ni aprobamos hacer trampa a expensas de otros. No uses Pokémon significativamente pirateados en la batalla o en intercambios con aquellos que no saben que se están usando Pokémon pirateados.
      PKHeX es una aplicación creada por Kaphotics.
    • Por Dekuwa
      uLaunch es un reemplazo/reimplementación personalizado y de código abierto del Menú Home (qlaunch) de Nintendo Switch, extendiéndolo con funcionalidades orientadas al homebrew y así sacarle más partido a la consola.
      Esto no es una especie de extensión del menú Home, inyección, parche, etc. uLaunch es una reimplementación completa, 100% de código abierto, que también se hace cargo de los applets de eShop y Control parental (todos ellos bastante inútiles con esta reimpl) para su funcionalidad ampliada. Para aquellos que estén interesados en cómo se hizo la interfaz de usuario, este proyecto es, como Goldleaf, un buen ejemplo de lo poderosas que pueden ser las bibliotecas de Plutonium para crear hermosas interfaces de usuario. Funcionalidades de uLaunch
      Ejecución adecuada y gestión en primer plano: iniciar, suspender y cerrar aplicaciones y subprogramas Manejo general adecuado de canales (algunos de ellos pueden no estar implementados): suspensión, apagado, reinicio, detección de presionar el menú Home Ajustes: Muestra el nombre de la red WiFi conectada, la dirección MAC y la dirección IP ... Abra el subprograma de conexión en caso de que el usuario quiera cambiar la configuración de red Cambiar el idioma de la consola y mostrar uno activo Cambiar el apodo de la consola y mostrar el actual Funciones de usuario: Permitir crear usuario en el menú de inicio Mostrar la página del usuario (para editar el apodo, icono, amigos ...) Soporte de Homebrew Lanzamiento como applets (¡sin necesidad de Álbum!) Lanzamiento como aplicaciones (¡usando un título de donante!) Menú casero básico personalizado Opción para agregar accesos NRO personalizados al menú principal (artículos caseros o personalizados fácilmente accesibles, ¡no más necesidad de reenviadores!) Interfaz de usuario Temas (diferentes a los temas oficiales del menú HOME / NXThemes) Iconos personalizados, recursos de menú y gráficos (imágenes personalizadas, colores, tamaños, posiciones ...), fondo ... ¡Música de fondo y efectos de sonido personalizados! Carpetas para mantener organizado su menú principal. Usuarios Inicio de sesión similar al de una PC en el inicio (seleccione el usuario y úselo para todo, cierre la sesión, registre / cambie / elimine la contraseña ...) Soporte de contraseña de usuario! (hasta 15 caracteres) Extras varios Navegación web (a través de web-applet) directamente desde el menú principal. Captura de pantalla de la consola desde la propia PC (solo Windows) a través de un cable USB-C y la herramienta uViewer.




      Disclaimer
      uLaunch le permite iniciar homebrew como una aplicación, aprovechando el título de la aplicación incorporado 'flog' del sistema, que fue eliminado pero no eliminado, por lo que su contenido puede anularse a través de LayeredFS y ejecutarse.
      Dado que lanzar este título debería ser imposible, podría implicar un riesgo de prohibición. uLaunch tiene esta opción deshabilitada por defecto, así que habilítela y úsela bajo su propio riesgo. Asegúrese siempre de estar a salvo de prohibiciones (utilizando herramientas como 90DNS) antes de usar uLaunch para evitar posibles riesgos.
      Créditos
      Several scene developers for help with small issues or features. SciresM for libstratosphere. Switchbrew team for libnx and hbloader, the base of *QHbTarget projects (they're some useful wrappers of hbloader in the end) C4Phoenix for the amazing design of this project's logo. Icons8 website for a big part of the icons used by the default style. Everyone from Discord or other places whose suggestions made this project a little bit better ? by XorTroll.
    • Por Dekuwa
      SaltyNX es un proceso en segundo plano de la Nintendo Switch para la modificación de archivos/códigos.
      Este fork incluye muchas mejoras QoL y además de soporte para plugins también soporta parches.
      Parchea el patrón:
      filename es símbolo de función con filetype .asm64, dentro del archivo escriba con el editor hexadecimal las instrucciones que desea sobrescribir para esta función, pon este archivo en SaltySD/patches para que funcione con todos los juegos, o en SaltySD/patches/*titleid* para que funcione con un juego específico. Para funciones adicionales necesitas SaltyNX-Tool
      Las pruebas se realizaron en FW 7.0.1-16.0.0 con Atmosphere hasta 1.5.0.
      No hay soporte técnico para:
      Forks de Atmosphere SX OS Kosmos ReinX SaltyNX es una aplicación creada por masagrator.
    • Por Dekuwa
      Un mitm kip modificado de fs_mitm.
      ldn_mitm implementa la conectividad LAN reemplazando el servicio ldn del sistema.
      El servicio ldn original solo es responsable de llamar al servicio WiFi para escanear y conectarse al Switch cercano. ldn_mitm utiliza LAN UDP para emular este proceso de escaneo. Por lo tanto, ldn_mitm generalmente se usa con switch-lan-play.
       

      ldn_mitm ha sido creado por espaciomeowx2.
×
×
  • Crear nuevo...