├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── adhoc_dialog.c ├── adhoc_dialog.h ├── archive.c ├── archive.h ├── audio ├── id3.c ├── id3.h ├── info.h ├── lrcparse.c ├── lrcparse.h ├── mp3player.c ├── mp3player.h ├── mp3xing.c ├── mp3xing.h ├── oggplayer.c ├── oggplayer.h ├── player.c ├── player.h ├── vita_audio.c └── vita_audio.h ├── audioplayer.c ├── audioplayer.h ├── bm.c ├── bm.h ├── browser.c ├── browser.h ├── config.c ├── config.h ├── context_menu.c ├── context_menu.h ├── coredump.c ├── coredump.h ├── elf.c ├── elf.h ├── file.c ├── file.h ├── hex.c ├── hex.h ├── ime_dialog.c ├── ime_dialog.h ├── init.c ├── init.h ├── io_process.c ├── io_process.h ├── l10n ├── bulgarian.txt ├── chinese_s.txt ├── chinese_t.txt ├── danish.txt ├── dutch.txt ├── french.txt ├── german.txt ├── greeklish.txt ├── hungarian.txt ├── italian.txt ├── japanese.txt ├── korean.txt ├── norwegian.txt ├── polish.txt ├── portuguese.txt ├── portuguese_br.txt ├── russian.txt ├── spanish.txt ├── swedish.txt └── turkish.txt ├── language.c ├── language.h ├── libmad ├── D.dat ├── bit.c ├── bit.h ├── decoder.c ├── decoder.h ├── fixed.c ├── fixed.h ├── frame.c ├── frame.h ├── huffman.c ├── huffman.h ├── imdct_s.dat ├── layer12.c ├── layer12.h ├── layer3.c ├── layer3.h ├── libmad_config.h ├── libmad_global.h ├── mad.h ├── music_mad.c ├── music_mad.h ├── qc_table.dat ├── rq_table.dat ├── sf_table.dat ├── stream.c ├── stream.h ├── synth.c ├── synth.h ├── timer.c └── timer.h ├── main.c ├── main.h ├── main_context.c ├── main_context.h ├── makezip.c ├── makezip.h ├── message_dialog.c ├── message_dialog.h ├── minizip ├── crypt.h ├── ioapi.c ├── ioapi.h ├── zip.c └── zip.h ├── modules ├── kernel │ ├── CMakeLists.txt │ ├── exports.yml │ ├── main.c │ └── vitashell_kernel.h ├── patch │ ├── CMakeLists.txt │ ├── exports.yml │ └── main.c ├── usbdevice │ ├── CMakeLists.txt │ ├── exports.yml │ └── main.c └── user │ ├── CMakeLists.txt │ ├── exports.yml │ ├── main.c │ └── vitashell_user.h ├── netcheck_dialog.c ├── netcheck_dialog.h ├── network_download.c ├── network_download.h ├── network_update.c ├── network_update.h ├── package_installer.c ├── package_installer.h ├── pfs.c ├── pfs.h ├── photo.c ├── photo.h ├── pkg └── sce_sys │ ├── icon0.png │ └── livearea │ └── contents │ ├── bg.png │ ├── startup.png │ └── template.xml ├── property_dialog.c ├── property_dialog.h ├── psarc.c ├── psarc.h ├── qr.c ├── qr.h ├── refresh.c ├── refresh.h ├── release ├── VitaShell.vpk ├── bg.png ├── eboot.bin ├── head.bin ├── icon0.png ├── param.sfo ├── startup.png ├── template.xml └── version.bin ├── resources ├── chinese_s.txt ├── default │ ├── archive_icon.png │ ├── audio_icon.png │ ├── battery.png │ ├── battery_bar_charge.png │ ├── battery_bar_green.png │ ├── battery_bar_red.png │ ├── colors.txt │ ├── cover.png │ ├── fastforward.png │ ├── fastrewind.png │ ├── file_icon.png │ ├── file_symlink_icon.png │ ├── folder_icon.png │ ├── folder_symlink_icon.png │ ├── font.pgf │ ├── ftp.png │ ├── image_icon.png │ ├── pause.png │ ├── play.png │ ├── sfo_icon.png │ ├── stop.png │ └── text_icon.png ├── electron │ ├── archive_icon.png │ ├── audio_icon.png │ ├── battery.png │ ├── battery_bar_charge.png │ ├── battery_bar_green.png │ ├── battery_bar_red.png │ ├── bg_audioplayer.png │ ├── bg_browser.png │ ├── bg_hexeditor.png │ ├── bg_photoviewer.png │ ├── bg_texteditor.png │ ├── colors.txt │ ├── context.png │ ├── context_more.png │ ├── cover.png │ ├── dialog.png │ ├── fastforward.png │ ├── fastrewind.png │ ├── file_icon.png │ ├── folder_icon.png │ ├── font.pgf │ ├── ftp.png │ ├── image_icon.png │ ├── pause.png │ ├── play.png │ ├── settings.png │ ├── sfo_icon.png │ └── text_icon.png ├── english_us.txt ├── head.bin ├── theme.txt ├── umass.skprx ├── updater_eboot.bin └── updater_param.bin ├── rif.c ├── rif.h ├── settings.c ├── settings.h ├── sfo.c ├── sfo.h ├── sha1.c ├── sha1.h ├── sqlite3.c ├── sqlite3.h ├── strnatcmp.c ├── strnatcmp.h ├── text.c ├── text.h ├── theme.c ├── theme.h ├── uncommon_dialog.c ├── uncommon_dialog.h ├── updater ├── Makefile └── main.c ├── usb.c ├── usb.h ├── utils.c ├── utils.h ├── vitashell_config.h └── vitashell_error.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/README.md -------------------------------------------------------------------------------- /adhoc_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/adhoc_dialog.c -------------------------------------------------------------------------------- /adhoc_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/adhoc_dialog.h -------------------------------------------------------------------------------- /archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/archive.c -------------------------------------------------------------------------------- /archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/archive.h -------------------------------------------------------------------------------- /audio/id3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/audio/id3.c -------------------------------------------------------------------------------- /audio/id3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/audio/id3.h -------------------------------------------------------------------------------- /audio/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/audio/info.h -------------------------------------------------------------------------------- /audio/lrcparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/audio/lrcparse.c -------------------------------------------------------------------------------- /audio/lrcparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/audio/lrcparse.h -------------------------------------------------------------------------------- /audio/mp3player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/audio/mp3player.c -------------------------------------------------------------------------------- /audio/mp3player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/audio/mp3player.h -------------------------------------------------------------------------------- /audio/mp3xing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/audio/mp3xing.c -------------------------------------------------------------------------------- /audio/mp3xing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/audio/mp3xing.h -------------------------------------------------------------------------------- /audio/oggplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/audio/oggplayer.c -------------------------------------------------------------------------------- /audio/oggplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/audio/oggplayer.h -------------------------------------------------------------------------------- /audio/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/audio/player.c -------------------------------------------------------------------------------- /audio/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/audio/player.h -------------------------------------------------------------------------------- /audio/vita_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/audio/vita_audio.c -------------------------------------------------------------------------------- /audio/vita_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/audio/vita_audio.h -------------------------------------------------------------------------------- /audioplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/audioplayer.c -------------------------------------------------------------------------------- /audioplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/audioplayer.h -------------------------------------------------------------------------------- /bm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/bm.c -------------------------------------------------------------------------------- /bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/bm.h -------------------------------------------------------------------------------- /browser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/browser.c -------------------------------------------------------------------------------- /browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/browser.h -------------------------------------------------------------------------------- /config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/config.c -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/config.h -------------------------------------------------------------------------------- /context_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/context_menu.c -------------------------------------------------------------------------------- /context_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/context_menu.h -------------------------------------------------------------------------------- /coredump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/coredump.c -------------------------------------------------------------------------------- /coredump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/coredump.h -------------------------------------------------------------------------------- /elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/elf.c -------------------------------------------------------------------------------- /elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/elf.h -------------------------------------------------------------------------------- /file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/file.c -------------------------------------------------------------------------------- /file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/file.h -------------------------------------------------------------------------------- /hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/hex.c -------------------------------------------------------------------------------- /hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/hex.h -------------------------------------------------------------------------------- /ime_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/ime_dialog.c -------------------------------------------------------------------------------- /ime_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/ime_dialog.h -------------------------------------------------------------------------------- /init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/init.c -------------------------------------------------------------------------------- /init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/init.h -------------------------------------------------------------------------------- /io_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/io_process.c -------------------------------------------------------------------------------- /io_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/io_process.h -------------------------------------------------------------------------------- /l10n/bulgarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/bulgarian.txt -------------------------------------------------------------------------------- /l10n/chinese_s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/chinese_s.txt -------------------------------------------------------------------------------- /l10n/chinese_t.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/chinese_t.txt -------------------------------------------------------------------------------- /l10n/danish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/danish.txt -------------------------------------------------------------------------------- /l10n/dutch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/dutch.txt -------------------------------------------------------------------------------- /l10n/french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/french.txt -------------------------------------------------------------------------------- /l10n/german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/german.txt -------------------------------------------------------------------------------- /l10n/greeklish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/greeklish.txt -------------------------------------------------------------------------------- /l10n/hungarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/hungarian.txt -------------------------------------------------------------------------------- /l10n/italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/italian.txt -------------------------------------------------------------------------------- /l10n/japanese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/japanese.txt -------------------------------------------------------------------------------- /l10n/korean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/korean.txt -------------------------------------------------------------------------------- /l10n/norwegian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/norwegian.txt -------------------------------------------------------------------------------- /l10n/polish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/polish.txt -------------------------------------------------------------------------------- /l10n/portuguese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/portuguese.txt -------------------------------------------------------------------------------- /l10n/portuguese_br.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/portuguese_br.txt -------------------------------------------------------------------------------- /l10n/russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/russian.txt -------------------------------------------------------------------------------- /l10n/spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/spanish.txt -------------------------------------------------------------------------------- /l10n/swedish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/swedish.txt -------------------------------------------------------------------------------- /l10n/turkish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/l10n/turkish.txt -------------------------------------------------------------------------------- /language.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/language.c -------------------------------------------------------------------------------- /language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/language.h -------------------------------------------------------------------------------- /libmad/D.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/D.dat -------------------------------------------------------------------------------- /libmad/bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/bit.c -------------------------------------------------------------------------------- /libmad/bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/bit.h -------------------------------------------------------------------------------- /libmad/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/decoder.c -------------------------------------------------------------------------------- /libmad/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/decoder.h -------------------------------------------------------------------------------- /libmad/fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/fixed.c -------------------------------------------------------------------------------- /libmad/fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/fixed.h -------------------------------------------------------------------------------- /libmad/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/frame.c -------------------------------------------------------------------------------- /libmad/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/frame.h -------------------------------------------------------------------------------- /libmad/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/huffman.c -------------------------------------------------------------------------------- /libmad/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/huffman.h -------------------------------------------------------------------------------- /libmad/imdct_s.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/imdct_s.dat -------------------------------------------------------------------------------- /libmad/layer12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/layer12.c -------------------------------------------------------------------------------- /libmad/layer12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/layer12.h -------------------------------------------------------------------------------- /libmad/layer3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/layer3.c -------------------------------------------------------------------------------- /libmad/layer3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/layer3.h -------------------------------------------------------------------------------- /libmad/libmad_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/libmad_config.h -------------------------------------------------------------------------------- /libmad/libmad_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/libmad_global.h -------------------------------------------------------------------------------- /libmad/mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/mad.h -------------------------------------------------------------------------------- /libmad/music_mad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/music_mad.c -------------------------------------------------------------------------------- /libmad/music_mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/music_mad.h -------------------------------------------------------------------------------- /libmad/qc_table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/qc_table.dat -------------------------------------------------------------------------------- /libmad/rq_table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/rq_table.dat -------------------------------------------------------------------------------- /libmad/sf_table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/sf_table.dat -------------------------------------------------------------------------------- /libmad/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/stream.c -------------------------------------------------------------------------------- /libmad/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/stream.h -------------------------------------------------------------------------------- /libmad/synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/synth.c -------------------------------------------------------------------------------- /libmad/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/synth.h -------------------------------------------------------------------------------- /libmad/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/timer.c -------------------------------------------------------------------------------- /libmad/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/libmad/timer.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/main.h -------------------------------------------------------------------------------- /main_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/main_context.c -------------------------------------------------------------------------------- /main_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/main_context.h -------------------------------------------------------------------------------- /makezip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/makezip.c -------------------------------------------------------------------------------- /makezip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/makezip.h -------------------------------------------------------------------------------- /message_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/message_dialog.c -------------------------------------------------------------------------------- /message_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/message_dialog.h -------------------------------------------------------------------------------- /minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/minizip/crypt.h -------------------------------------------------------------------------------- /minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/minizip/ioapi.c -------------------------------------------------------------------------------- /minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/minizip/ioapi.h -------------------------------------------------------------------------------- /minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/minizip/zip.c -------------------------------------------------------------------------------- /minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/minizip/zip.h -------------------------------------------------------------------------------- /modules/kernel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/modules/kernel/CMakeLists.txt -------------------------------------------------------------------------------- /modules/kernel/exports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/modules/kernel/exports.yml -------------------------------------------------------------------------------- /modules/kernel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/modules/kernel/main.c -------------------------------------------------------------------------------- /modules/kernel/vitashell_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/modules/kernel/vitashell_kernel.h -------------------------------------------------------------------------------- /modules/patch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/modules/patch/CMakeLists.txt -------------------------------------------------------------------------------- /modules/patch/exports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/modules/patch/exports.yml -------------------------------------------------------------------------------- /modules/patch/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/modules/patch/main.c -------------------------------------------------------------------------------- /modules/usbdevice/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/modules/usbdevice/CMakeLists.txt -------------------------------------------------------------------------------- /modules/usbdevice/exports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/modules/usbdevice/exports.yml -------------------------------------------------------------------------------- /modules/usbdevice/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/modules/usbdevice/main.c -------------------------------------------------------------------------------- /modules/user/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/modules/user/CMakeLists.txt -------------------------------------------------------------------------------- /modules/user/exports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/modules/user/exports.yml -------------------------------------------------------------------------------- /modules/user/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/modules/user/main.c -------------------------------------------------------------------------------- /modules/user/vitashell_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/modules/user/vitashell_user.h -------------------------------------------------------------------------------- /netcheck_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/netcheck_dialog.c -------------------------------------------------------------------------------- /netcheck_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/netcheck_dialog.h -------------------------------------------------------------------------------- /network_download.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/network_download.c -------------------------------------------------------------------------------- /network_download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/network_download.h -------------------------------------------------------------------------------- /network_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/network_update.c -------------------------------------------------------------------------------- /network_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/network_update.h -------------------------------------------------------------------------------- /package_installer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/package_installer.c -------------------------------------------------------------------------------- /package_installer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/package_installer.h -------------------------------------------------------------------------------- /pfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/pfs.c -------------------------------------------------------------------------------- /pfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/pfs.h -------------------------------------------------------------------------------- /photo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/photo.c -------------------------------------------------------------------------------- /photo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/photo.h -------------------------------------------------------------------------------- /pkg/sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/pkg/sce_sys/icon0.png -------------------------------------------------------------------------------- /pkg/sce_sys/livearea/contents/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/pkg/sce_sys/livearea/contents/bg.png -------------------------------------------------------------------------------- /pkg/sce_sys/livearea/contents/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/pkg/sce_sys/livearea/contents/startup.png -------------------------------------------------------------------------------- /pkg/sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/pkg/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /property_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/property_dialog.c -------------------------------------------------------------------------------- /property_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/property_dialog.h -------------------------------------------------------------------------------- /psarc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/psarc.c -------------------------------------------------------------------------------- /psarc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/psarc.h -------------------------------------------------------------------------------- /qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/qr.c -------------------------------------------------------------------------------- /qr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/qr.h -------------------------------------------------------------------------------- /refresh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/refresh.c -------------------------------------------------------------------------------- /refresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/refresh.h -------------------------------------------------------------------------------- /release/VitaShell.vpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/release/VitaShell.vpk -------------------------------------------------------------------------------- /release/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/release/bg.png -------------------------------------------------------------------------------- /release/eboot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/release/eboot.bin -------------------------------------------------------------------------------- /release/head.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/release/head.bin -------------------------------------------------------------------------------- /release/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/release/icon0.png -------------------------------------------------------------------------------- /release/param.sfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/release/param.sfo -------------------------------------------------------------------------------- /release/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/release/startup.png -------------------------------------------------------------------------------- /release/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/release/template.xml -------------------------------------------------------------------------------- /release/version.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /resources/chinese_s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/chinese_s.txt -------------------------------------------------------------------------------- /resources/default/archive_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/archive_icon.png -------------------------------------------------------------------------------- /resources/default/audio_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/audio_icon.png -------------------------------------------------------------------------------- /resources/default/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/battery.png -------------------------------------------------------------------------------- /resources/default/battery_bar_charge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/battery_bar_charge.png -------------------------------------------------------------------------------- /resources/default/battery_bar_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/battery_bar_green.png -------------------------------------------------------------------------------- /resources/default/battery_bar_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/battery_bar_red.png -------------------------------------------------------------------------------- /resources/default/colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/colors.txt -------------------------------------------------------------------------------- /resources/default/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/cover.png -------------------------------------------------------------------------------- /resources/default/fastforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/fastforward.png -------------------------------------------------------------------------------- /resources/default/fastrewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/fastrewind.png -------------------------------------------------------------------------------- /resources/default/file_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/file_icon.png -------------------------------------------------------------------------------- /resources/default/file_symlink_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/file_symlink_icon.png -------------------------------------------------------------------------------- /resources/default/folder_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/folder_icon.png -------------------------------------------------------------------------------- /resources/default/folder_symlink_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/folder_symlink_icon.png -------------------------------------------------------------------------------- /resources/default/font.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/font.pgf -------------------------------------------------------------------------------- /resources/default/ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/ftp.png -------------------------------------------------------------------------------- /resources/default/image_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/image_icon.png -------------------------------------------------------------------------------- /resources/default/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/pause.png -------------------------------------------------------------------------------- /resources/default/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/play.png -------------------------------------------------------------------------------- /resources/default/sfo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/sfo_icon.png -------------------------------------------------------------------------------- /resources/default/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/stop.png -------------------------------------------------------------------------------- /resources/default/text_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/default/text_icon.png -------------------------------------------------------------------------------- /resources/electron/archive_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/archive_icon.png -------------------------------------------------------------------------------- /resources/electron/audio_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/audio_icon.png -------------------------------------------------------------------------------- /resources/electron/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/battery.png -------------------------------------------------------------------------------- /resources/electron/battery_bar_charge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/battery_bar_charge.png -------------------------------------------------------------------------------- /resources/electron/battery_bar_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/battery_bar_green.png -------------------------------------------------------------------------------- /resources/electron/battery_bar_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/battery_bar_red.png -------------------------------------------------------------------------------- /resources/electron/bg_audioplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/bg_audioplayer.png -------------------------------------------------------------------------------- /resources/electron/bg_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/bg_browser.png -------------------------------------------------------------------------------- /resources/electron/bg_hexeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/bg_hexeditor.png -------------------------------------------------------------------------------- /resources/electron/bg_photoviewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/bg_photoviewer.png -------------------------------------------------------------------------------- /resources/electron/bg_texteditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/bg_texteditor.png -------------------------------------------------------------------------------- /resources/electron/colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/colors.txt -------------------------------------------------------------------------------- /resources/electron/context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/context.png -------------------------------------------------------------------------------- /resources/electron/context_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/context_more.png -------------------------------------------------------------------------------- /resources/electron/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/cover.png -------------------------------------------------------------------------------- /resources/electron/dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/dialog.png -------------------------------------------------------------------------------- /resources/electron/fastforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/fastforward.png -------------------------------------------------------------------------------- /resources/electron/fastrewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/fastrewind.png -------------------------------------------------------------------------------- /resources/electron/file_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/file_icon.png -------------------------------------------------------------------------------- /resources/electron/folder_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/folder_icon.png -------------------------------------------------------------------------------- /resources/electron/font.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/font.pgf -------------------------------------------------------------------------------- /resources/electron/ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/ftp.png -------------------------------------------------------------------------------- /resources/electron/image_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/image_icon.png -------------------------------------------------------------------------------- /resources/electron/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/pause.png -------------------------------------------------------------------------------- /resources/electron/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/play.png -------------------------------------------------------------------------------- /resources/electron/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/settings.png -------------------------------------------------------------------------------- /resources/electron/sfo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/sfo_icon.png -------------------------------------------------------------------------------- /resources/electron/text_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/electron/text_icon.png -------------------------------------------------------------------------------- /resources/english_us.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/english_us.txt -------------------------------------------------------------------------------- /resources/head.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/head.bin -------------------------------------------------------------------------------- /resources/theme.txt: -------------------------------------------------------------------------------- 1 | # VitaShell theme file 2 | 3 | THEME_NAME = "Default" -------------------------------------------------------------------------------- /resources/umass.skprx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/umass.skprx -------------------------------------------------------------------------------- /resources/updater_eboot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/updater_eboot.bin -------------------------------------------------------------------------------- /resources/updater_param.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/resources/updater_param.bin -------------------------------------------------------------------------------- /rif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/rif.c -------------------------------------------------------------------------------- /rif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/rif.h -------------------------------------------------------------------------------- /settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/settings.c -------------------------------------------------------------------------------- /settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/settings.h -------------------------------------------------------------------------------- /sfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/sfo.c -------------------------------------------------------------------------------- /sfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/sfo.h -------------------------------------------------------------------------------- /sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/sha1.c -------------------------------------------------------------------------------- /sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/sha1.h -------------------------------------------------------------------------------- /sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/sqlite3.c -------------------------------------------------------------------------------- /sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/sqlite3.h -------------------------------------------------------------------------------- /strnatcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/strnatcmp.c -------------------------------------------------------------------------------- /strnatcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/strnatcmp.h -------------------------------------------------------------------------------- /text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/text.c -------------------------------------------------------------------------------- /text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/text.h -------------------------------------------------------------------------------- /theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/theme.c -------------------------------------------------------------------------------- /theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/theme.h -------------------------------------------------------------------------------- /uncommon_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/uncommon_dialog.c -------------------------------------------------------------------------------- /uncommon_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/uncommon_dialog.h -------------------------------------------------------------------------------- /updater/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/updater/Makefile -------------------------------------------------------------------------------- /updater/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/updater/main.c -------------------------------------------------------------------------------- /usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/usb.c -------------------------------------------------------------------------------- /usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/usb.h -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/utils.c -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/utils.h -------------------------------------------------------------------------------- /vitashell_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/vitashell_config.h -------------------------------------------------------------------------------- /vitashell_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaShell/HEAD/vitashell_error.h --------------------------------------------------------------------------------