├── .github ├── CODEOWNERS └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── ICON0.PNG ├── LICENSE ├── README.md ├── data ├── CIRCLE.png ├── CROSS.png ├── LANG │ ├── ch.txt │ ├── de.po │ ├── es.po │ ├── fi.po │ ├── fr.po │ ├── id.po │ ├── it.po │ ├── pl.po │ ├── pt.po │ ├── tr.po │ └── zh.txt ├── SQUARE.png ├── TRIANGLE.png ├── background.png ├── fonts │ ├── NotoSansJP-Medium.otf │ └── OFL.txt └── pkgi.txt ├── docs ├── README.md ├── _config.yml ├── leon-luna.jpg └── screenshot.png ├── include ├── font-8x16.h ├── libfont.h ├── pkgi.h ├── pkgi_aes.h ├── pkgi_config.h ├── pkgi_db.h ├── pkgi_dialog.h ├── pkgi_download.h ├── pkgi_menu.h ├── pkgi_sha256.h ├── pkgi_style.h ├── pkgi_utils.h └── ttf_render.h ├── source ├── depackager.c ├── libfont.c ├── loadpng.c ├── pkg2iso.c ├── pkgi.c ├── pkgi_aes.c ├── pkgi_config.c ├── pkgi_db.c ├── pkgi_dialog.c ├── pkgi_download.c ├── pkgi_menu.c ├── pkgi_psp.c ├── ttf_fonts.c └── zip_util.c └── translate.po /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /ICON0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/ICON0.PNG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/README.md -------------------------------------------------------------------------------- /data/CIRCLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/CIRCLE.png -------------------------------------------------------------------------------- /data/CROSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/CROSS.png -------------------------------------------------------------------------------- /data/LANG/ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/LANG/ch.txt -------------------------------------------------------------------------------- /data/LANG/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/LANG/de.po -------------------------------------------------------------------------------- /data/LANG/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/LANG/es.po -------------------------------------------------------------------------------- /data/LANG/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/LANG/fi.po -------------------------------------------------------------------------------- /data/LANG/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/LANG/fr.po -------------------------------------------------------------------------------- /data/LANG/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/LANG/id.po -------------------------------------------------------------------------------- /data/LANG/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/LANG/it.po -------------------------------------------------------------------------------- /data/LANG/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/LANG/pl.po -------------------------------------------------------------------------------- /data/LANG/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/LANG/pt.po -------------------------------------------------------------------------------- /data/LANG/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/LANG/tr.po -------------------------------------------------------------------------------- /data/LANG/zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/LANG/zh.txt -------------------------------------------------------------------------------- /data/SQUARE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/SQUARE.png -------------------------------------------------------------------------------- /data/TRIANGLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/TRIANGLE.png -------------------------------------------------------------------------------- /data/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/background.png -------------------------------------------------------------------------------- /data/fonts/NotoSansJP-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/fonts/NotoSansJP-Medium.otf -------------------------------------------------------------------------------- /data/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/fonts/OFL.txt -------------------------------------------------------------------------------- /data/pkgi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/data/pkgi.txt -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/leon-luna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/docs/leon-luna.jpg -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /include/font-8x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/include/font-8x16.h -------------------------------------------------------------------------------- /include/libfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/include/libfont.h -------------------------------------------------------------------------------- /include/pkgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/include/pkgi.h -------------------------------------------------------------------------------- /include/pkgi_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/include/pkgi_aes.h -------------------------------------------------------------------------------- /include/pkgi_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/include/pkgi_config.h -------------------------------------------------------------------------------- /include/pkgi_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/include/pkgi_db.h -------------------------------------------------------------------------------- /include/pkgi_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/include/pkgi_dialog.h -------------------------------------------------------------------------------- /include/pkgi_download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/include/pkgi_download.h -------------------------------------------------------------------------------- /include/pkgi_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/include/pkgi_menu.h -------------------------------------------------------------------------------- /include/pkgi_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/include/pkgi_sha256.h -------------------------------------------------------------------------------- /include/pkgi_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/include/pkgi_style.h -------------------------------------------------------------------------------- /include/pkgi_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/include/pkgi_utils.h -------------------------------------------------------------------------------- /include/ttf_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/include/ttf_render.h -------------------------------------------------------------------------------- /source/depackager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/source/depackager.c -------------------------------------------------------------------------------- /source/libfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/source/libfont.c -------------------------------------------------------------------------------- /source/loadpng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/source/loadpng.c -------------------------------------------------------------------------------- /source/pkg2iso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/source/pkg2iso.c -------------------------------------------------------------------------------- /source/pkgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/source/pkgi.c -------------------------------------------------------------------------------- /source/pkgi_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/source/pkgi_aes.c -------------------------------------------------------------------------------- /source/pkgi_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/source/pkgi_config.c -------------------------------------------------------------------------------- /source/pkgi_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/source/pkgi_db.c -------------------------------------------------------------------------------- /source/pkgi_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/source/pkgi_dialog.c -------------------------------------------------------------------------------- /source/pkgi_download.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/source/pkgi_download.c -------------------------------------------------------------------------------- /source/pkgi_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/source/pkgi_menu.c -------------------------------------------------------------------------------- /source/pkgi_psp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/source/pkgi_psp.c -------------------------------------------------------------------------------- /source/ttf_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/source/ttf_fonts.c -------------------------------------------------------------------------------- /source/zip_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/source/zip_util.c -------------------------------------------------------------------------------- /translate.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/pkgi-psp/HEAD/translate.po --------------------------------------------------------------------------------