├── LICENSE ├── README.md ├── qlinstaller ├── eboot.bin ├── git │ ├── shared.lua │ ├── thread_net.lua │ ├── updater.lua │ └── updater │ │ ├── param.sfo │ │ └── script.lua ├── resources │ ├── back.jpg │ ├── box.png │ ├── installer │ │ ├── app01.png │ │ ├── app02.png │ │ ├── app03.png │ │ └── whatsnew.xml │ ├── lang │ │ ├── english_us.txt │ │ ├── italian.txt │ │ ├── polish.txt │ │ └── russian.txt │ ├── polish.ttf │ └── russian.ttf ├── sce_sys │ ├── icon0.png │ ├── livearea │ │ └── contents │ │ │ ├── bg0.png │ │ │ ├── startup.png │ │ │ └── template.xml │ ├── param.sfo │ └── param.sfo.bak ├── script.lua └── system │ └── commons.lua ├── quicklaunch_preview.jpg └── version /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/README.md -------------------------------------------------------------------------------- /qlinstaller/eboot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/eboot.bin -------------------------------------------------------------------------------- /qlinstaller/git/shared.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/git/shared.lua -------------------------------------------------------------------------------- /qlinstaller/git/thread_net.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/git/thread_net.lua -------------------------------------------------------------------------------- /qlinstaller/git/updater.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/git/updater.lua -------------------------------------------------------------------------------- /qlinstaller/git/updater/param.sfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/git/updater/param.sfo -------------------------------------------------------------------------------- /qlinstaller/git/updater/script.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/git/updater/script.lua -------------------------------------------------------------------------------- /qlinstaller/resources/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/resources/back.jpg -------------------------------------------------------------------------------- /qlinstaller/resources/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/resources/box.png -------------------------------------------------------------------------------- /qlinstaller/resources/installer/app01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/resources/installer/app01.png -------------------------------------------------------------------------------- /qlinstaller/resources/installer/app02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/resources/installer/app02.png -------------------------------------------------------------------------------- /qlinstaller/resources/installer/app03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/resources/installer/app03.png -------------------------------------------------------------------------------- /qlinstaller/resources/installer/whatsnew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/resources/installer/whatsnew.xml -------------------------------------------------------------------------------- /qlinstaller/resources/lang/english_us.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/resources/lang/english_us.txt -------------------------------------------------------------------------------- /qlinstaller/resources/lang/italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/resources/lang/italian.txt -------------------------------------------------------------------------------- /qlinstaller/resources/lang/polish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/resources/lang/polish.txt -------------------------------------------------------------------------------- /qlinstaller/resources/lang/russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/resources/lang/russian.txt -------------------------------------------------------------------------------- /qlinstaller/resources/polish.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/resources/polish.ttf -------------------------------------------------------------------------------- /qlinstaller/resources/russian.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/resources/russian.ttf -------------------------------------------------------------------------------- /qlinstaller/sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/sce_sys/icon0.png -------------------------------------------------------------------------------- /qlinstaller/sce_sys/livearea/contents/bg0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/sce_sys/livearea/contents/bg0.png -------------------------------------------------------------------------------- /qlinstaller/sce_sys/livearea/contents/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/sce_sys/livearea/contents/startup.png -------------------------------------------------------------------------------- /qlinstaller/sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /qlinstaller/sce_sys/param.sfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/sce_sys/param.sfo -------------------------------------------------------------------------------- /qlinstaller/sce_sys/param.sfo.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/sce_sys/param.sfo.bak -------------------------------------------------------------------------------- /qlinstaller/script.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/script.lua -------------------------------------------------------------------------------- /qlinstaller/system/commons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/qlinstaller/system/commons.lua -------------------------------------------------------------------------------- /quicklaunch_preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theheroGAC/QuickLaunch_installer_for_PSVita/HEAD/quicklaunch_preview.jpg -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 262144 2 | --------------------------------------------------------------------------------