├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── workflows │ ├── build.yml │ ├── crowdin-commit.yml │ └── crowdin-upload.yml ├── .gitignore ├── .gitmodules ├── .vscode └── tasks.json ├── LICENSE ├── Makefile ├── README.md ├── app ├── BannerAudio.wav ├── banner.cgfx ├── build-cia.rsf ├── icon.png └── logo.bcma.lz ├── assets └── gfx │ ├── sprites.t3s │ └── sprites │ ├── add.png │ ├── add_font.png │ ├── arrow.png │ ├── battery │ ├── battery_0.png │ ├── battery_1.png │ ├── battery_2.png │ ├── battery_3.png │ ├── battery_4.png │ ├── battery_blink.png │ ├── battery_charge.png │ └── battery_charge_full.png │ ├── cancel.png │ ├── checked.png │ ├── delete.png │ ├── download.png │ ├── info.png │ ├── installed.png │ ├── keyboard.png │ ├── langs │ ├── jp.png │ ├── ko.png │ ├── ry.png │ ├── zh-CN.png │ └── zh-TW.png │ ├── list.png │ ├── noIcon.png │ ├── notes.png │ ├── qr_code.png │ ├── queue.png │ ├── screenshot.png │ ├── search.png │ ├── settings.png │ ├── shortcut.png │ ├── sort.png │ ├── sort_checked.png │ ├── sort_unchecked.png │ ├── toggle_off.png │ ├── toggle_on.png │ ├── unchecked.png │ ├── universal-core.png │ ├── universal-updater.png │ ├── update.png │ ├── update_app.png │ ├── update_filter.png │ ├── wifi │ ├── wifi_0.png │ ├── wifi_1.png │ ├── wifi_2.png │ ├── wifi_3.png │ └── wifi_off.png │ └── wiki.png ├── clean.bat ├── compile.bat ├── crowdin-pull.sh ├── crowdin.yml ├── include ├── common.hpp ├── gui │ ├── gfx.hpp │ └── msg.hpp ├── init.hpp ├── keyboard.hpp ├── overlays │ └── overlay.hpp ├── qr │ ├── qrcode.hpp │ ├── quirc.hpp │ └── quirc_internal.hpp ├── qrcodegen │ └── qrcodegen.h ├── screens │ └── mainScreen.hpp ├── store │ ├── meta.hpp │ ├── store.hpp │ ├── storeEntry.hpp │ └── storeUtils.hpp └── utils │ ├── animation.hpp │ ├── argumentParser.hpp │ ├── cia.hpp │ ├── config.hpp │ ├── download.hpp │ ├── extract.hpp │ ├── fileBrowse.hpp │ ├── files.hpp │ ├── json.hpp │ ├── lang.hpp │ ├── lodepng.h │ ├── queueSystem.hpp │ ├── screenshot.hpp │ ├── scriptUtils.hpp │ ├── sound.hpp │ ├── stringutils.hpp │ └── theme.hpp ├── resources ├── 2d-banner.png ├── Themes.json └── UniStores.json ├── romfs ├── gfx │ └── .gitkeep └── lang │ ├── br │ └── app.json │ ├── cs │ └── app.json │ ├── da │ └── app.json │ ├── de │ └── app.json │ ├── en │ └── app.json │ ├── es │ └── app.json │ ├── fr │ └── app.json │ ├── hu │ └── app.json │ ├── it │ └── app.json │ ├── jp │ └── app.json │ ├── ko │ └── app.json │ ├── lt │ └── app.json │ ├── nl │ └── app.json │ ├── no │ └── app.json │ ├── pl │ └── app.json │ ├── pt-BR │ └── app.json │ ├── pt │ └── app.json │ ├── ro │ └── app.json │ ├── ru │ └── app.json │ ├── ry │ └── app.json │ ├── tr │ └── app.json │ ├── uk │ └── app.json │ ├── zh-CN │ └── app.json │ └── zh-TW │ └── app.json └── source ├── gui ├── gfx.cpp └── msg.cpp ├── init.cpp ├── keyboard.cpp ├── main.cpp ├── menu ├── downList.cpp ├── entryInfo.cpp ├── grid.cpp ├── list.cpp ├── markMenu.cpp ├── queueMenu.cpp ├── releaseNotes.cpp ├── screenshotMenu.cpp ├── searchMenu.cpp ├── settings.cpp ├── sideMenu.cpp └── sortMenu.cpp ├── overlays ├── credits.cpp ├── dirSelect.cpp ├── showQrCode.cpp ├── storeSelect.cpp └── themeSelect.cpp ├── qr ├── decode.cpp ├── identify.cpp ├── qrcode.cpp ├── quirc.cpp └── version_db.cpp ├── qrcodegen ├── LICENSE ├── README.md └── qrcodegen.c ├── screens └── mainScreen.cpp ├── store ├── meta.cpp ├── store.cpp ├── storeEntry.cpp └── storeUtils.cpp └── utils ├── animation.cpp ├── argumentParser.cpp ├── cia.cpp ├── config.cpp ├── download.cpp ├── extract.cpp ├── fileBrowse.cpp ├── files.cpp ├── lang.cpp ├── lodepng.cpp ├── queueSystem.cpp ├── screenshot.cpp ├── scriptUtils.cpp ├── sound.cpp ├── stringutils.cpp └── theme.cpp /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/.github/workflows/crowdin-commit.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin-upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/.github/workflows/crowdin-upload.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/README.md -------------------------------------------------------------------------------- /app/BannerAudio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/app/BannerAudio.wav -------------------------------------------------------------------------------- /app/banner.cgfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/app/banner.cgfx -------------------------------------------------------------------------------- /app/build-cia.rsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/app/build-cia.rsf -------------------------------------------------------------------------------- /app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/app/icon.png -------------------------------------------------------------------------------- /app/logo.bcma.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/app/logo.bcma.lz -------------------------------------------------------------------------------- /assets/gfx/sprites.t3s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites.t3s -------------------------------------------------------------------------------- /assets/gfx/sprites/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/add.png -------------------------------------------------------------------------------- /assets/gfx/sprites/add_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/add_font.png -------------------------------------------------------------------------------- /assets/gfx/sprites/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/arrow.png -------------------------------------------------------------------------------- /assets/gfx/sprites/battery/battery_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/battery/battery_0.png -------------------------------------------------------------------------------- /assets/gfx/sprites/battery/battery_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/battery/battery_1.png -------------------------------------------------------------------------------- /assets/gfx/sprites/battery/battery_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/battery/battery_2.png -------------------------------------------------------------------------------- /assets/gfx/sprites/battery/battery_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/battery/battery_3.png -------------------------------------------------------------------------------- /assets/gfx/sprites/battery/battery_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/battery/battery_4.png -------------------------------------------------------------------------------- /assets/gfx/sprites/battery/battery_blink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/battery/battery_blink.png -------------------------------------------------------------------------------- /assets/gfx/sprites/battery/battery_charge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/battery/battery_charge.png -------------------------------------------------------------------------------- /assets/gfx/sprites/battery/battery_charge_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/battery/battery_charge_full.png -------------------------------------------------------------------------------- /assets/gfx/sprites/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/cancel.png -------------------------------------------------------------------------------- /assets/gfx/sprites/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/checked.png -------------------------------------------------------------------------------- /assets/gfx/sprites/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/delete.png -------------------------------------------------------------------------------- /assets/gfx/sprites/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/download.png -------------------------------------------------------------------------------- /assets/gfx/sprites/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/info.png -------------------------------------------------------------------------------- /assets/gfx/sprites/installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/installed.png -------------------------------------------------------------------------------- /assets/gfx/sprites/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/keyboard.png -------------------------------------------------------------------------------- /assets/gfx/sprites/langs/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/langs/jp.png -------------------------------------------------------------------------------- /assets/gfx/sprites/langs/ko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/langs/ko.png -------------------------------------------------------------------------------- /assets/gfx/sprites/langs/ry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/langs/ry.png -------------------------------------------------------------------------------- /assets/gfx/sprites/langs/zh-CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/langs/zh-CN.png -------------------------------------------------------------------------------- /assets/gfx/sprites/langs/zh-TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/langs/zh-TW.png -------------------------------------------------------------------------------- /assets/gfx/sprites/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/list.png -------------------------------------------------------------------------------- /assets/gfx/sprites/noIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/noIcon.png -------------------------------------------------------------------------------- /assets/gfx/sprites/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/notes.png -------------------------------------------------------------------------------- /assets/gfx/sprites/qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/qr_code.png -------------------------------------------------------------------------------- /assets/gfx/sprites/queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/queue.png -------------------------------------------------------------------------------- /assets/gfx/sprites/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/screenshot.png -------------------------------------------------------------------------------- /assets/gfx/sprites/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/search.png -------------------------------------------------------------------------------- /assets/gfx/sprites/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/settings.png -------------------------------------------------------------------------------- /assets/gfx/sprites/shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/shortcut.png -------------------------------------------------------------------------------- /assets/gfx/sprites/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/sort.png -------------------------------------------------------------------------------- /assets/gfx/sprites/sort_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/sort_checked.png -------------------------------------------------------------------------------- /assets/gfx/sprites/sort_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/sort_unchecked.png -------------------------------------------------------------------------------- /assets/gfx/sprites/toggle_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/toggle_off.png -------------------------------------------------------------------------------- /assets/gfx/sprites/toggle_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/toggle_on.png -------------------------------------------------------------------------------- /assets/gfx/sprites/unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/unchecked.png -------------------------------------------------------------------------------- /assets/gfx/sprites/universal-core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/universal-core.png -------------------------------------------------------------------------------- /assets/gfx/sprites/universal-updater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/universal-updater.png -------------------------------------------------------------------------------- /assets/gfx/sprites/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/update.png -------------------------------------------------------------------------------- /assets/gfx/sprites/update_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/update_app.png -------------------------------------------------------------------------------- /assets/gfx/sprites/update_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/update_filter.png -------------------------------------------------------------------------------- /assets/gfx/sprites/wifi/wifi_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/wifi/wifi_0.png -------------------------------------------------------------------------------- /assets/gfx/sprites/wifi/wifi_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/wifi/wifi_1.png -------------------------------------------------------------------------------- /assets/gfx/sprites/wifi/wifi_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/wifi/wifi_2.png -------------------------------------------------------------------------------- /assets/gfx/sprites/wifi/wifi_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/wifi/wifi_3.png -------------------------------------------------------------------------------- /assets/gfx/sprites/wifi/wifi_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/wifi/wifi_off.png -------------------------------------------------------------------------------- /assets/gfx/sprites/wiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/assets/gfx/sprites/wiki.png -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean 3 | -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make 3 | pause 4 | -------------------------------------------------------------------------------- /crowdin-pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/crowdin-pull.sh -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/crowdin.yml -------------------------------------------------------------------------------- /include/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/common.hpp -------------------------------------------------------------------------------- /include/gui/gfx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/gui/gfx.hpp -------------------------------------------------------------------------------- /include/gui/msg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/gui/msg.hpp -------------------------------------------------------------------------------- /include/init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/init.hpp -------------------------------------------------------------------------------- /include/keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/keyboard.hpp -------------------------------------------------------------------------------- /include/overlays/overlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/overlays/overlay.hpp -------------------------------------------------------------------------------- /include/qr/qrcode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/qr/qrcode.hpp -------------------------------------------------------------------------------- /include/qr/quirc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/qr/quirc.hpp -------------------------------------------------------------------------------- /include/qr/quirc_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/qr/quirc_internal.hpp -------------------------------------------------------------------------------- /include/qrcodegen/qrcodegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/qrcodegen/qrcodegen.h -------------------------------------------------------------------------------- /include/screens/mainScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/screens/mainScreen.hpp -------------------------------------------------------------------------------- /include/store/meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/store/meta.hpp -------------------------------------------------------------------------------- /include/store/store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/store/store.hpp -------------------------------------------------------------------------------- /include/store/storeEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/store/storeEntry.hpp -------------------------------------------------------------------------------- /include/store/storeUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/store/storeUtils.hpp -------------------------------------------------------------------------------- /include/utils/animation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/utils/animation.hpp -------------------------------------------------------------------------------- /include/utils/argumentParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/utils/argumentParser.hpp -------------------------------------------------------------------------------- /include/utils/cia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/utils/cia.hpp -------------------------------------------------------------------------------- /include/utils/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/utils/config.hpp -------------------------------------------------------------------------------- /include/utils/download.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/utils/download.hpp -------------------------------------------------------------------------------- /include/utils/extract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/utils/extract.hpp -------------------------------------------------------------------------------- /include/utils/fileBrowse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/utils/fileBrowse.hpp -------------------------------------------------------------------------------- /include/utils/files.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/utils/files.hpp -------------------------------------------------------------------------------- /include/utils/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/utils/json.hpp -------------------------------------------------------------------------------- /include/utils/lang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/utils/lang.hpp -------------------------------------------------------------------------------- /include/utils/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/utils/lodepng.h -------------------------------------------------------------------------------- /include/utils/queueSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/utils/queueSystem.hpp -------------------------------------------------------------------------------- /include/utils/screenshot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/utils/screenshot.hpp -------------------------------------------------------------------------------- /include/utils/scriptUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/utils/scriptUtils.hpp -------------------------------------------------------------------------------- /include/utils/sound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/utils/sound.hpp -------------------------------------------------------------------------------- /include/utils/stringutils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/utils/stringutils.hpp -------------------------------------------------------------------------------- /include/utils/theme.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/include/utils/theme.hpp -------------------------------------------------------------------------------- /resources/2d-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/resources/2d-banner.png -------------------------------------------------------------------------------- /resources/Themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/resources/Themes.json -------------------------------------------------------------------------------- /resources/UniStores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/resources/UniStores.json -------------------------------------------------------------------------------- /romfs/gfx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /romfs/lang/br/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/br/app.json -------------------------------------------------------------------------------- /romfs/lang/cs/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/cs/app.json -------------------------------------------------------------------------------- /romfs/lang/da/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/da/app.json -------------------------------------------------------------------------------- /romfs/lang/de/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/de/app.json -------------------------------------------------------------------------------- /romfs/lang/en/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/en/app.json -------------------------------------------------------------------------------- /romfs/lang/es/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/es/app.json -------------------------------------------------------------------------------- /romfs/lang/fr/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/fr/app.json -------------------------------------------------------------------------------- /romfs/lang/hu/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/hu/app.json -------------------------------------------------------------------------------- /romfs/lang/it/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/it/app.json -------------------------------------------------------------------------------- /romfs/lang/jp/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/jp/app.json -------------------------------------------------------------------------------- /romfs/lang/ko/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/ko/app.json -------------------------------------------------------------------------------- /romfs/lang/lt/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/lt/app.json -------------------------------------------------------------------------------- /romfs/lang/nl/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/nl/app.json -------------------------------------------------------------------------------- /romfs/lang/no/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/no/app.json -------------------------------------------------------------------------------- /romfs/lang/pl/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/pl/app.json -------------------------------------------------------------------------------- /romfs/lang/pt-BR/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/pt-BR/app.json -------------------------------------------------------------------------------- /romfs/lang/pt/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/pt/app.json -------------------------------------------------------------------------------- /romfs/lang/ro/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/ro/app.json -------------------------------------------------------------------------------- /romfs/lang/ru/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/ru/app.json -------------------------------------------------------------------------------- /romfs/lang/ry/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/ry/app.json -------------------------------------------------------------------------------- /romfs/lang/tr/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/tr/app.json -------------------------------------------------------------------------------- /romfs/lang/uk/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/uk/app.json -------------------------------------------------------------------------------- /romfs/lang/zh-CN/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/zh-CN/app.json -------------------------------------------------------------------------------- /romfs/lang/zh-TW/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/romfs/lang/zh-TW/app.json -------------------------------------------------------------------------------- /source/gui/gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/gui/gfx.cpp -------------------------------------------------------------------------------- /source/gui/msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/gui/msg.cpp -------------------------------------------------------------------------------- /source/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/init.cpp -------------------------------------------------------------------------------- /source/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/keyboard.cpp -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/menu/downList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/menu/downList.cpp -------------------------------------------------------------------------------- /source/menu/entryInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/menu/entryInfo.cpp -------------------------------------------------------------------------------- /source/menu/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/menu/grid.cpp -------------------------------------------------------------------------------- /source/menu/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/menu/list.cpp -------------------------------------------------------------------------------- /source/menu/markMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/menu/markMenu.cpp -------------------------------------------------------------------------------- /source/menu/queueMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/menu/queueMenu.cpp -------------------------------------------------------------------------------- /source/menu/releaseNotes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/menu/releaseNotes.cpp -------------------------------------------------------------------------------- /source/menu/screenshotMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/menu/screenshotMenu.cpp -------------------------------------------------------------------------------- /source/menu/searchMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/menu/searchMenu.cpp -------------------------------------------------------------------------------- /source/menu/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/menu/settings.cpp -------------------------------------------------------------------------------- /source/menu/sideMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/menu/sideMenu.cpp -------------------------------------------------------------------------------- /source/menu/sortMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/menu/sortMenu.cpp -------------------------------------------------------------------------------- /source/overlays/credits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/overlays/credits.cpp -------------------------------------------------------------------------------- /source/overlays/dirSelect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/overlays/dirSelect.cpp -------------------------------------------------------------------------------- /source/overlays/showQrCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/overlays/showQrCode.cpp -------------------------------------------------------------------------------- /source/overlays/storeSelect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/overlays/storeSelect.cpp -------------------------------------------------------------------------------- /source/overlays/themeSelect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/overlays/themeSelect.cpp -------------------------------------------------------------------------------- /source/qr/decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/qr/decode.cpp -------------------------------------------------------------------------------- /source/qr/identify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/qr/identify.cpp -------------------------------------------------------------------------------- /source/qr/qrcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/qr/qrcode.cpp -------------------------------------------------------------------------------- /source/qr/quirc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/qr/quirc.cpp -------------------------------------------------------------------------------- /source/qr/version_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/qr/version_db.cpp -------------------------------------------------------------------------------- /source/qrcodegen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/qrcodegen/LICENSE -------------------------------------------------------------------------------- /source/qrcodegen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/qrcodegen/README.md -------------------------------------------------------------------------------- /source/qrcodegen/qrcodegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/qrcodegen/qrcodegen.c -------------------------------------------------------------------------------- /source/screens/mainScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/screens/mainScreen.cpp -------------------------------------------------------------------------------- /source/store/meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/store/meta.cpp -------------------------------------------------------------------------------- /source/store/store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/store/store.cpp -------------------------------------------------------------------------------- /source/store/storeEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/store/storeEntry.cpp -------------------------------------------------------------------------------- /source/store/storeUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/store/storeUtils.cpp -------------------------------------------------------------------------------- /source/utils/animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/utils/animation.cpp -------------------------------------------------------------------------------- /source/utils/argumentParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/utils/argumentParser.cpp -------------------------------------------------------------------------------- /source/utils/cia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/utils/cia.cpp -------------------------------------------------------------------------------- /source/utils/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/utils/config.cpp -------------------------------------------------------------------------------- /source/utils/download.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/utils/download.cpp -------------------------------------------------------------------------------- /source/utils/extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/utils/extract.cpp -------------------------------------------------------------------------------- /source/utils/fileBrowse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/utils/fileBrowse.cpp -------------------------------------------------------------------------------- /source/utils/files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/utils/files.cpp -------------------------------------------------------------------------------- /source/utils/lang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/utils/lang.cpp -------------------------------------------------------------------------------- /source/utils/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/utils/lodepng.cpp -------------------------------------------------------------------------------- /source/utils/queueSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/utils/queueSystem.cpp -------------------------------------------------------------------------------- /source/utils/screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/utils/screenshot.cpp -------------------------------------------------------------------------------- /source/utils/scriptUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/utils/scriptUtils.cpp -------------------------------------------------------------------------------- /source/utils/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/utils/sound.cpp -------------------------------------------------------------------------------- /source/utils/stringutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/utils/stringutils.cpp -------------------------------------------------------------------------------- /source/utils/theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Universal-Team/Universal-Updater/HEAD/source/utils/theme.cpp --------------------------------------------------------------------------------