LiquidFenrir / MultiUpdater

or µpdtr for short, is an updater for 3ds applications/a9lh/b9s payloads rewritten in C++
MIT License
140 stars 18 forks source link

is it possible rename command on Multiupdater? #65

Open Johngew opened 5 years ago

Johngew commented 5 years ago

// solve

    {
        "name": "5.NTR (NTR Data)",
        "url": "https://github.com/44670/BootNTR",
        "inrelease": "ntr.zip",
        "inarchive": "ntr.n3ds.bin",
        "path": "/ntr.bin"
    },

// is it possible rename command on Multiupdater?

like this. { "name": "8.NTR (NTR Data)", "url": "https://github.com/44670/BootNTR", "inrelease": "ntr.zip", "inarchive": "ntr.n3ds.bin", "path": "/ntr.n3ds.bin" }, ntr,n3ds.bin > ntr.bin ren ntr,n3ds.bin ntr.bin ?

//

I cant use ftp on n3ds successful. but I use this method to get wireless transfer

    {
        "name": "Tool Selected",
        "url": "https://github.com/Johngew/Gew",
        "inrelease": "tool.zip",
        "inarchive": "tool.cia",
        "path": "/cias/tool.cia"
    },
    {
        "name": "Game Selected",
        "url": "https://github.com/Johngew/Gew",
        "inrelease": "game.zip",
        "inarchive": "game.cia",
        "path": "/cias/game.cia"
    },

thanks your hard work.

Johngew commented 5 years ago

second issues

is it possible unzip or install command pick by user setting ? like godmode9

    {
        "name": "13.GodMode9 file",
        "url": "https://github.com/Johngew/Gew",
        "inrelease": "gm9.zip",
        "path": "/gm9.zip"
    },

/////////////////////////////////////////// this method will solve

    {
        "name": "9.GodMode9 (Script GM9)",
        "url": "https://github.com/d0k3/GodMode9",
        "inrelease": "GodMode9.*\\.zip",
        "inarchive": "gm9/scripts/GM9Megascript.gm9",
        "path": "/gm9/scripts/GM9Megascript.gm9"
    },
    {
        "name": "9.GodMode9 (Script Nand)",
        "url": "https://github.com/d0k3/GodMode9",
        "inrelease": "GodMode9.*\\.zip",
        "inarchive": "gm9/scripts/NANDManager.gm9",
        "path": "/gm9/scripts/NANDManager.gm9"
    },

but I still interest about unzip.zip file and no limit on download zip file. ////////////////////////////////////////////

i pick it out and pack it . I need to unzip it use by 3dshell after download. if Multiupdater can choose command like install or unzip . that will much more easy. Because only .Cia need to install and other just set in position. thank you again.