├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── include ├── config.h ├── fs.h ├── gui.h ├── keyboard.h ├── log.h ├── popups.h ├── tabs.h ├── textures.h ├── utils.h └── windows.h ├── libs ├── lib │ └── libtiff.a ├── libtiff │ ├── COPYRIGHT │ ├── tif_config.h │ ├── tif_dir.h │ ├── tif_hash_set.h │ ├── tiff.h │ ├── tiffconf.h │ ├── tiffio.h │ ├── tiffiop.h │ └── tiffvers.h └── stb_image.h ├── res ├── folder.png └── image.png ├── sce_sys ├── icon0.png └── livearea │ └── contents │ ├── bg.png │ ├── startup.png │ └── template.xml └── source ├── config.cpp ├── fs.cpp ├── gui.cpp ├── image.cpp ├── keyboard.cpp ├── log.cpp ├── main.cpp ├── popups └── properties.cpp ├── tabs ├── filebrowser.cpp └── settings.cpp ├── textures.cpp ├── utils.cpp └── window.cpp /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/README.md -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/include/config.h -------------------------------------------------------------------------------- /include/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/include/fs.h -------------------------------------------------------------------------------- /include/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/include/gui.h -------------------------------------------------------------------------------- /include/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/include/keyboard.h -------------------------------------------------------------------------------- /include/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/include/log.h -------------------------------------------------------------------------------- /include/popups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/include/popups.h -------------------------------------------------------------------------------- /include/tabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/include/tabs.h -------------------------------------------------------------------------------- /include/textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/include/textures.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/include/utils.h -------------------------------------------------------------------------------- /include/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/include/windows.h -------------------------------------------------------------------------------- /libs/lib/libtiff.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/libs/lib/libtiff.a -------------------------------------------------------------------------------- /libs/libtiff/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/libs/libtiff/COPYRIGHT -------------------------------------------------------------------------------- /libs/libtiff/tif_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/libs/libtiff/tif_config.h -------------------------------------------------------------------------------- /libs/libtiff/tif_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/libs/libtiff/tif_dir.h -------------------------------------------------------------------------------- /libs/libtiff/tif_hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/libs/libtiff/tif_hash_set.h -------------------------------------------------------------------------------- /libs/libtiff/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/libs/libtiff/tiff.h -------------------------------------------------------------------------------- /libs/libtiff/tiffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/libs/libtiff/tiffconf.h -------------------------------------------------------------------------------- /libs/libtiff/tiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/libs/libtiff/tiffio.h -------------------------------------------------------------------------------- /libs/libtiff/tiffiop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/libs/libtiff/tiffiop.h -------------------------------------------------------------------------------- /libs/libtiff/tiffvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/libs/libtiff/tiffvers.h -------------------------------------------------------------------------------- /libs/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/libs/stb_image.h -------------------------------------------------------------------------------- /res/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/res/folder.png -------------------------------------------------------------------------------- /res/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/res/image.png -------------------------------------------------------------------------------- /sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/sce_sys/icon0.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/sce_sys/livearea/contents/bg.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/sce_sys/livearea/contents/startup.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /source/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/source/config.cpp -------------------------------------------------------------------------------- /source/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/source/fs.cpp -------------------------------------------------------------------------------- /source/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/source/gui.cpp -------------------------------------------------------------------------------- /source/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/source/image.cpp -------------------------------------------------------------------------------- /source/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/source/keyboard.cpp -------------------------------------------------------------------------------- /source/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/source/log.cpp -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/popups/properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/source/popups/properties.cpp -------------------------------------------------------------------------------- /source/tabs/filebrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/source/tabs/filebrowser.cpp -------------------------------------------------------------------------------- /source/tabs/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/source/tabs/settings.cpp -------------------------------------------------------------------------------- /source/textures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/source/textures.cpp -------------------------------------------------------------------------------- /source/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/source/utils.cpp -------------------------------------------------------------------------------- /source/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/VITAlbum/HEAD/source/window.cpp --------------------------------------------------------------------------------