├── .gitignore ├── CMakeLists.txt ├── README.md ├── 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 ├── config.c ├── config.h ├── context_menu.c ├── context_menu.h ├── elf.c ├── elf.h ├── file.c ├── file.h ├── first_boot.c ├── first_boot.h ├── henkaku_config.h ├── hex.c ├── hex.h ├── ime_dialog.c ├── ime_dialog.h ├── init.c ├── init.h ├── io_process.c ├── io_process.h ├── 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 ├── licence.txt ├── list_dialog.c ├── list_dialog.h ├── main.c ├── main.h ├── makezip.c ├── makezip.h ├── message_dialog.c ├── message_dialog.h ├── minizip ├── crypt.h ├── ioapi.c ├── ioapi.h ├── unzip.c ├── unzip.h ├── zip.c └── zip.h ├── package_installer.c ├── package_installer.h ├── photo.c ├── photo.h ├── pkg └── sce_sys │ ├── icon0.png │ ├── livearea │ └── contents │ │ ├── bg.png │ │ ├── install_button.png │ │ ├── startup.png │ │ └── template.xml │ └── manual │ ├── 001.png │ └── src │ ├── images │ ├── PlayStationCircle.svg │ ├── PlayStationCross.svg │ ├── PlayStationL.svg │ ├── PlayStationR.svg │ ├── PlayStationSelect.svg │ ├── PlayStationSquare.svg │ ├── PlayStationStart.svg │ └── PlayStationTriangle.svg │ └── template.html ├── property_dialog.c ├── property_dialog.h ├── resources ├── archive_icon.png ├── audio_icon.png ├── base_head_bin.h ├── battery.png ├── battery_bar_charge.png ├── battery_bar_green.png ├── battery_bar_red.png ├── changeinfo.txt ├── colors.txt ├── cover.png ├── english_us.txt ├── fastforward.png ├── fastrewind.png ├── file_icon.png ├── folder_icon.png ├── ftp.png ├── image_icon.png ├── pause.png ├── play.png ├── sfo_icon.png ├── stop.png ├── text_icon.png ├── theme.txt ├── updater_eboot.bin ├── updater_param.bin └── wifi.png ├── settings.c ├── settings.h ├── sfo.c ├── sfo.h ├── sha1.c ├── sha1.h ├── text.c ├── text.h ├── theme.c ├── theme.h ├── uncommon_dialog.c ├── uncommon_dialog.h ├── updater ├── Makefile └── main.c ├── utils.c ├── utils.h └── vitashell_config.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/README.md -------------------------------------------------------------------------------- /archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/archive.c -------------------------------------------------------------------------------- /archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/archive.h -------------------------------------------------------------------------------- /audio/id3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/audio/id3.c -------------------------------------------------------------------------------- /audio/id3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/audio/id3.h -------------------------------------------------------------------------------- /audio/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/audio/info.h -------------------------------------------------------------------------------- /audio/lrcparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/audio/lrcparse.c -------------------------------------------------------------------------------- /audio/lrcparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/audio/lrcparse.h -------------------------------------------------------------------------------- /audio/mp3player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/audio/mp3player.c -------------------------------------------------------------------------------- /audio/mp3player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/audio/mp3player.h -------------------------------------------------------------------------------- /audio/mp3xing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/audio/mp3xing.c -------------------------------------------------------------------------------- /audio/mp3xing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/audio/mp3xing.h -------------------------------------------------------------------------------- /audio/oggplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/audio/oggplayer.c -------------------------------------------------------------------------------- /audio/oggplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/audio/oggplayer.h -------------------------------------------------------------------------------- /audio/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/audio/player.c -------------------------------------------------------------------------------- /audio/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/audio/player.h -------------------------------------------------------------------------------- /audio/vita_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/audio/vita_audio.c -------------------------------------------------------------------------------- /audio/vita_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/audio/vita_audio.h -------------------------------------------------------------------------------- /audioplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/audioplayer.c -------------------------------------------------------------------------------- /audioplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/audioplayer.h -------------------------------------------------------------------------------- /bm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/bm.c -------------------------------------------------------------------------------- /bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/bm.h -------------------------------------------------------------------------------- /config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/config.c -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/config.h -------------------------------------------------------------------------------- /context_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/context_menu.c -------------------------------------------------------------------------------- /context_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/context_menu.h -------------------------------------------------------------------------------- /elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/elf.c -------------------------------------------------------------------------------- /elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/elf.h -------------------------------------------------------------------------------- /file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/file.c -------------------------------------------------------------------------------- /file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/file.h -------------------------------------------------------------------------------- /first_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/first_boot.c -------------------------------------------------------------------------------- /first_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/first_boot.h -------------------------------------------------------------------------------- /henkaku_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/henkaku_config.h -------------------------------------------------------------------------------- /hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/hex.c -------------------------------------------------------------------------------- /hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/hex.h -------------------------------------------------------------------------------- /ime_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/ime_dialog.c -------------------------------------------------------------------------------- /ime_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/ime_dialog.h -------------------------------------------------------------------------------- /init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/init.c -------------------------------------------------------------------------------- /init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/init.h -------------------------------------------------------------------------------- /io_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/io_process.c -------------------------------------------------------------------------------- /io_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/io_process.h -------------------------------------------------------------------------------- /language.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/language.c -------------------------------------------------------------------------------- /language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/language.h -------------------------------------------------------------------------------- /libmad/D.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/D.dat -------------------------------------------------------------------------------- /libmad/bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/bit.c -------------------------------------------------------------------------------- /libmad/bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/bit.h -------------------------------------------------------------------------------- /libmad/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/decoder.c -------------------------------------------------------------------------------- /libmad/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/decoder.h -------------------------------------------------------------------------------- /libmad/fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/fixed.c -------------------------------------------------------------------------------- /libmad/fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/fixed.h -------------------------------------------------------------------------------- /libmad/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/frame.c -------------------------------------------------------------------------------- /libmad/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/frame.h -------------------------------------------------------------------------------- /libmad/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/huffman.c -------------------------------------------------------------------------------- /libmad/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/huffman.h -------------------------------------------------------------------------------- /libmad/imdct_s.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/imdct_s.dat -------------------------------------------------------------------------------- /libmad/layer12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/layer12.c -------------------------------------------------------------------------------- /libmad/layer12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/layer12.h -------------------------------------------------------------------------------- /libmad/layer3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/layer3.c -------------------------------------------------------------------------------- /libmad/layer3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/layer3.h -------------------------------------------------------------------------------- /libmad/libmad_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/libmad_config.h -------------------------------------------------------------------------------- /libmad/libmad_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/libmad_global.h -------------------------------------------------------------------------------- /libmad/mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/mad.h -------------------------------------------------------------------------------- /libmad/music_mad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/music_mad.c -------------------------------------------------------------------------------- /libmad/music_mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/music_mad.h -------------------------------------------------------------------------------- /libmad/qc_table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/qc_table.dat -------------------------------------------------------------------------------- /libmad/rq_table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/rq_table.dat -------------------------------------------------------------------------------- /libmad/sf_table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/sf_table.dat -------------------------------------------------------------------------------- /libmad/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/stream.c -------------------------------------------------------------------------------- /libmad/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/stream.h -------------------------------------------------------------------------------- /libmad/synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/synth.c -------------------------------------------------------------------------------- /libmad/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/synth.h -------------------------------------------------------------------------------- /libmad/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/timer.c -------------------------------------------------------------------------------- /libmad/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/libmad/timer.h -------------------------------------------------------------------------------- /licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/licence.txt -------------------------------------------------------------------------------- /list_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/list_dialog.c -------------------------------------------------------------------------------- /list_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/list_dialog.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/main.h -------------------------------------------------------------------------------- /makezip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/makezip.c -------------------------------------------------------------------------------- /makezip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/makezip.h -------------------------------------------------------------------------------- /message_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/message_dialog.c -------------------------------------------------------------------------------- /message_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/message_dialog.h -------------------------------------------------------------------------------- /minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/minizip/crypt.h -------------------------------------------------------------------------------- /minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/minizip/ioapi.c -------------------------------------------------------------------------------- /minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/minizip/ioapi.h -------------------------------------------------------------------------------- /minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/minizip/unzip.c -------------------------------------------------------------------------------- /minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/minizip/unzip.h -------------------------------------------------------------------------------- /minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/minizip/zip.c -------------------------------------------------------------------------------- /minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/minizip/zip.h -------------------------------------------------------------------------------- /package_installer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/package_installer.c -------------------------------------------------------------------------------- /package_installer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/package_installer.h -------------------------------------------------------------------------------- /photo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/photo.c -------------------------------------------------------------------------------- /photo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/photo.h -------------------------------------------------------------------------------- /pkg/sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/pkg/sce_sys/icon0.png -------------------------------------------------------------------------------- /pkg/sce_sys/livearea/contents/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/pkg/sce_sys/livearea/contents/bg.png -------------------------------------------------------------------------------- /pkg/sce_sys/livearea/contents/install_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/pkg/sce_sys/livearea/contents/install_button.png -------------------------------------------------------------------------------- /pkg/sce_sys/livearea/contents/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/pkg/sce_sys/livearea/contents/startup.png -------------------------------------------------------------------------------- /pkg/sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/pkg/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /pkg/sce_sys/manual/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/pkg/sce_sys/manual/001.png -------------------------------------------------------------------------------- /pkg/sce_sys/manual/src/images/PlayStationCircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/pkg/sce_sys/manual/src/images/PlayStationCircle.svg -------------------------------------------------------------------------------- /pkg/sce_sys/manual/src/images/PlayStationCross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/pkg/sce_sys/manual/src/images/PlayStationCross.svg -------------------------------------------------------------------------------- /pkg/sce_sys/manual/src/images/PlayStationL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/pkg/sce_sys/manual/src/images/PlayStationL.svg -------------------------------------------------------------------------------- /pkg/sce_sys/manual/src/images/PlayStationR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/pkg/sce_sys/manual/src/images/PlayStationR.svg -------------------------------------------------------------------------------- /pkg/sce_sys/manual/src/images/PlayStationSelect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/pkg/sce_sys/manual/src/images/PlayStationSelect.svg -------------------------------------------------------------------------------- /pkg/sce_sys/manual/src/images/PlayStationSquare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/pkg/sce_sys/manual/src/images/PlayStationSquare.svg -------------------------------------------------------------------------------- /pkg/sce_sys/manual/src/images/PlayStationStart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/pkg/sce_sys/manual/src/images/PlayStationStart.svg -------------------------------------------------------------------------------- /pkg/sce_sys/manual/src/images/PlayStationTriangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/pkg/sce_sys/manual/src/images/PlayStationTriangle.svg -------------------------------------------------------------------------------- /pkg/sce_sys/manual/src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/pkg/sce_sys/manual/src/template.html -------------------------------------------------------------------------------- /property_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/property_dialog.c -------------------------------------------------------------------------------- /property_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/property_dialog.h -------------------------------------------------------------------------------- /resources/archive_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/archive_icon.png -------------------------------------------------------------------------------- /resources/audio_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/audio_icon.png -------------------------------------------------------------------------------- /resources/base_head_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/base_head_bin.h -------------------------------------------------------------------------------- /resources/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/battery.png -------------------------------------------------------------------------------- /resources/battery_bar_charge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/battery_bar_charge.png -------------------------------------------------------------------------------- /resources/battery_bar_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/battery_bar_green.png -------------------------------------------------------------------------------- /resources/battery_bar_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/battery_bar_red.png -------------------------------------------------------------------------------- /resources/changeinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/changeinfo.txt -------------------------------------------------------------------------------- /resources/colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/colors.txt -------------------------------------------------------------------------------- /resources/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/cover.png -------------------------------------------------------------------------------- /resources/english_us.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/english_us.txt -------------------------------------------------------------------------------- /resources/fastforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/fastforward.png -------------------------------------------------------------------------------- /resources/fastrewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/fastrewind.png -------------------------------------------------------------------------------- /resources/file_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/file_icon.png -------------------------------------------------------------------------------- /resources/folder_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/folder_icon.png -------------------------------------------------------------------------------- /resources/ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/ftp.png -------------------------------------------------------------------------------- /resources/image_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/image_icon.png -------------------------------------------------------------------------------- /resources/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/pause.png -------------------------------------------------------------------------------- /resources/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/play.png -------------------------------------------------------------------------------- /resources/sfo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/sfo_icon.png -------------------------------------------------------------------------------- /resources/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/stop.png -------------------------------------------------------------------------------- /resources/text_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/text_icon.png -------------------------------------------------------------------------------- /resources/theme.txt: -------------------------------------------------------------------------------- 1 | # VitaShell theme file 2 | 3 | THEME_NAME = "Default" -------------------------------------------------------------------------------- /resources/updater_eboot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/updater_eboot.bin -------------------------------------------------------------------------------- /resources/updater_param.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/updater_param.bin -------------------------------------------------------------------------------- /resources/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/resources/wifi.png -------------------------------------------------------------------------------- /settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/settings.c -------------------------------------------------------------------------------- /settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/settings.h -------------------------------------------------------------------------------- /sfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/sfo.c -------------------------------------------------------------------------------- /sfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/sfo.h -------------------------------------------------------------------------------- /sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/sha1.c -------------------------------------------------------------------------------- /sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/sha1.h -------------------------------------------------------------------------------- /text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/text.c -------------------------------------------------------------------------------- /text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/text.h -------------------------------------------------------------------------------- /theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/theme.c -------------------------------------------------------------------------------- /theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/theme.h -------------------------------------------------------------------------------- /uncommon_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/uncommon_dialog.c -------------------------------------------------------------------------------- /uncommon_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/uncommon_dialog.h -------------------------------------------------------------------------------- /updater/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/updater/Makefile -------------------------------------------------------------------------------- /updater/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/updater/main.c -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/utils.c -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/utils.h -------------------------------------------------------------------------------- /vitashell_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henkaku/VitaShell/HEAD/vitashell_config.h --------------------------------------------------------------------------------