Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions source/apps/3ds-cli.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"github": "cmdada/3DS-CLI",
"author": "cmdada",
"systems": [
"3DS"
],
"categories": [
"emulator"
],
"icon": "https://raw.githubusercontent.com/cmdada/3ds-cli/main/icon.png",
"long_description": "\nA Nintendo 3DS homebrew application that embeds a full RISC-V CPU emulator (`mini-rv32ima` by cnlohr) to boot a real Linux environment inside the 3DS Horizon OS.\n\nFeatures a custom bottom-screen touch keyboard and standard VT100 console output on the top screen.\nUsage\n- Bottom Screen: Custom touch keyboard, you can probably tell I'm not UX :3\n- START Button: Hard exit the emulator and return to the Homebrew Launcher.\n\nCredits\n- Built using [devkitARM / libctru](https://github.com/devkitPro/libctru).\n- Powered by the incredible [mini-rv32ima](https://github.com/cnlohr/mini-rv32ima) RISC-V emulator by cnlohr.\n",
"archive": {
"3DS-CLI_Install.zip": {
"3ds-cli.3dsx": [
"3ds/3ds-cli.3dsx"
Copy link
Copy Markdown
Member

@Epicpkmn11 Epicpkmn11 May 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm on mobile so I can't do a proper comment, but looking at the zip this should be

”3DS-CLI_Install.zip": {
    "3ds-cli.3dsx": ["3ds-cli.3dsx", "Image"]
}

(they are not inside a 3ds folder in the zip) assuming "Image" goes in root, if "Image" goes in /3ds like this implies then that's not possible with the simple "archive" syntax and this will need a "script" block instead

whenever possible I make installs be one click in U-DB so small support files like that "Image" should simply be installed by the 3dsx script

though if there's not a strong reason for it being on the SD card I would suggest considering moving it into RomFS (edit: I'd been assuming it was read only, it just occurred to me that it might be read write in which case it should perhaps be locked behind a prompt message, which also needs a script. i haven't tried the app at all yet so I'm not 100% what this needs)

],
"Image": [
"3ds/Image"
]
}
}
}