├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── bhbb_dl ├── .gitignore ├── CMakeLists.txt ├── SceLsdb.emd ├── bhbb_dl.emd ├── include │ ├── compressed_file.h │ ├── head_bin.h │ ├── installer.h │ ├── main.h │ ├── notice.h │ ├── offsets.h │ ├── promote.h │ ├── sha1.h │ ├── tgz.h │ └── zip.h └── src │ ├── compressed_file.cpp │ ├── installer.cpp │ ├── libc2paf.c │ ├── main.cpp │ ├── minizip │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── unzip.c │ ├── unzip.h │ ├── zip.c │ └── zip.h │ ├── offsets.c │ ├── promote.c │ ├── sha1.c │ ├── tgz.cpp │ └── zip.cpp ├── bootparam.yml ├── common ├── bhbb_dl.h ├── dialog.cpp ├── dialog.h └── print.h ├── imgs ├── cbpsdb_icon.png ├── download1.png ├── download2.png ├── download3.png ├── download4.png ├── ui1.png ├── ui2.png └── vitadb_icon.png ├── include ├── bhbb_locale.h ├── bhbb_plugin.h ├── bhbb_settings.h ├── common.h ├── csv.h ├── db │ ├── cbpsdb.h │ ├── psphbb.h │ ├── source.h │ ├── vhbd.h │ └── vitadb.h ├── downloader.h ├── error_codes.h ├── event.h ├── json.h ├── pages │ ├── app_browser.h │ ├── app_viewer.h │ ├── image_viewer.h │ ├── page.h │ └── text_page.h ├── settings.h ├── tex_pool.h └── utils.h ├── module └── libcurl.suprx ├── param.sfx ├── resource ├── bhbb_plugin.xml ├── file │ └── bhbb_settings.xml ├── locale │ ├── de.xml │ ├── en.xml │ ├── es.xml │ ├── fi.xml │ ├── fr.xml │ ├── it.xml │ ├── ja.xml │ ├── ko.xml │ ├── pl.xml │ ├── ptbr.xml │ ├── ru.xml │ └── zh.xml └── texture │ ├── bg.png │ ├── data_button.png │ ├── download_button.png │ ├── missing_image.png │ ├── refresh_button.png │ ├── screenshot_icon.png │ ├── search_back_button.png │ ├── search_icon.png │ ├── tex_info_icon.png │ ├── tex_info_icon_glow.png │ └── top_bar_bg.png ├── sce_sys ├── icon0.png ├── livearea │ └── contents │ │ ├── bg0.png │ │ ├── default_gate.png │ │ └── template.xml └── pic0.png └── src ├── db ├── cbpsdb.cpp ├── psphbb.cpp ├── source.cpp ├── vhbd.cpp └── vitadb.cpp ├── downloader.cpp ├── event.cpp ├── fread_line.c ├── main.cpp ├── paf_runtime.cpp ├── pages ├── app_browser.cpp ├── app_viewer.cpp ├── image_viewer.cpp ├── page.cpp └── text_page.cpp ├── settings.cpp ├── tex_pool.cpp └── utils.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/README.md -------------------------------------------------------------------------------- /bhbb_dl/.gitignore: -------------------------------------------------------------------------------- 1 | include/notification_util.h 2 | build -------------------------------------------------------------------------------- /bhbb_dl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/CMakeLists.txt -------------------------------------------------------------------------------- /bhbb_dl/SceLsdb.emd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/SceLsdb.emd -------------------------------------------------------------------------------- /bhbb_dl/bhbb_dl.emd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/bhbb_dl.emd -------------------------------------------------------------------------------- /bhbb_dl/include/compressed_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/include/compressed_file.h -------------------------------------------------------------------------------- /bhbb_dl/include/head_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/include/head_bin.h -------------------------------------------------------------------------------- /bhbb_dl/include/installer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/include/installer.h -------------------------------------------------------------------------------- /bhbb_dl/include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/include/main.h -------------------------------------------------------------------------------- /bhbb_dl/include/notice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/include/notice.h -------------------------------------------------------------------------------- /bhbb_dl/include/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/include/offsets.h -------------------------------------------------------------------------------- /bhbb_dl/include/promote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/include/promote.h -------------------------------------------------------------------------------- /bhbb_dl/include/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/include/sha1.h -------------------------------------------------------------------------------- /bhbb_dl/include/tgz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/include/tgz.h -------------------------------------------------------------------------------- /bhbb_dl/include/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/include/zip.h -------------------------------------------------------------------------------- /bhbb_dl/src/compressed_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/src/compressed_file.cpp -------------------------------------------------------------------------------- /bhbb_dl/src/installer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/src/installer.cpp -------------------------------------------------------------------------------- /bhbb_dl/src/libc2paf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/src/libc2paf.c -------------------------------------------------------------------------------- /bhbb_dl/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/src/main.cpp -------------------------------------------------------------------------------- /bhbb_dl/src/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/src/minizip/crypt.h -------------------------------------------------------------------------------- /bhbb_dl/src/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/src/minizip/ioapi.c -------------------------------------------------------------------------------- /bhbb_dl/src/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/src/minizip/ioapi.h -------------------------------------------------------------------------------- /bhbb_dl/src/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/src/minizip/unzip.c -------------------------------------------------------------------------------- /bhbb_dl/src/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/src/minizip/unzip.h -------------------------------------------------------------------------------- /bhbb_dl/src/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/src/minizip/zip.c -------------------------------------------------------------------------------- /bhbb_dl/src/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/src/minizip/zip.h -------------------------------------------------------------------------------- /bhbb_dl/src/offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/src/offsets.c -------------------------------------------------------------------------------- /bhbb_dl/src/promote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/src/promote.c -------------------------------------------------------------------------------- /bhbb_dl/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/src/sha1.c -------------------------------------------------------------------------------- /bhbb_dl/src/tgz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/src/tgz.cpp -------------------------------------------------------------------------------- /bhbb_dl/src/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/bhbb_dl/src/zip.cpp -------------------------------------------------------------------------------- /bootparam.yml: -------------------------------------------------------------------------------- 1 | APP_MEMSIZE: 32768 2 | ATTRIBUTE: 8 -------------------------------------------------------------------------------- /common/bhbb_dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/common/bhbb_dl.h -------------------------------------------------------------------------------- /common/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/common/dialog.cpp -------------------------------------------------------------------------------- /common/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/common/dialog.h -------------------------------------------------------------------------------- /common/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/common/print.h -------------------------------------------------------------------------------- /imgs/cbpsdb_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/imgs/cbpsdb_icon.png -------------------------------------------------------------------------------- /imgs/download1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/imgs/download1.png -------------------------------------------------------------------------------- /imgs/download2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/imgs/download2.png -------------------------------------------------------------------------------- /imgs/download3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/imgs/download3.png -------------------------------------------------------------------------------- /imgs/download4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/imgs/download4.png -------------------------------------------------------------------------------- /imgs/ui1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/imgs/ui1.png -------------------------------------------------------------------------------- /imgs/ui2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/imgs/ui2.png -------------------------------------------------------------------------------- /imgs/vitadb_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/imgs/vitadb_icon.png -------------------------------------------------------------------------------- /include/bhbb_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/bhbb_locale.h -------------------------------------------------------------------------------- /include/bhbb_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/bhbb_plugin.h -------------------------------------------------------------------------------- /include/bhbb_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/bhbb_settings.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/common.h -------------------------------------------------------------------------------- /include/csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/csv.h -------------------------------------------------------------------------------- /include/db/cbpsdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/db/cbpsdb.h -------------------------------------------------------------------------------- /include/db/psphbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/db/psphbb.h -------------------------------------------------------------------------------- /include/db/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/db/source.h -------------------------------------------------------------------------------- /include/db/vhbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/db/vhbd.h -------------------------------------------------------------------------------- /include/db/vitadb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/db/vitadb.h -------------------------------------------------------------------------------- /include/downloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/downloader.h -------------------------------------------------------------------------------- /include/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/error_codes.h -------------------------------------------------------------------------------- /include/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/event.h -------------------------------------------------------------------------------- /include/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/json.h -------------------------------------------------------------------------------- /include/pages/app_browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/pages/app_browser.h -------------------------------------------------------------------------------- /include/pages/app_viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/pages/app_viewer.h -------------------------------------------------------------------------------- /include/pages/image_viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/pages/image_viewer.h -------------------------------------------------------------------------------- /include/pages/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/pages/page.h -------------------------------------------------------------------------------- /include/pages/text_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/pages/text_page.h -------------------------------------------------------------------------------- /include/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/settings.h -------------------------------------------------------------------------------- /include/tex_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/tex_pool.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/include/utils.h -------------------------------------------------------------------------------- /module/libcurl.suprx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/module/libcurl.suprx -------------------------------------------------------------------------------- /param.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/param.sfx -------------------------------------------------------------------------------- /resource/bhbb_plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/bhbb_plugin.xml -------------------------------------------------------------------------------- /resource/file/bhbb_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/file/bhbb_settings.xml -------------------------------------------------------------------------------- /resource/locale/de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/locale/de.xml -------------------------------------------------------------------------------- /resource/locale/en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/locale/en.xml -------------------------------------------------------------------------------- /resource/locale/es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/locale/es.xml -------------------------------------------------------------------------------- /resource/locale/fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/locale/fi.xml -------------------------------------------------------------------------------- /resource/locale/fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/locale/fr.xml -------------------------------------------------------------------------------- /resource/locale/it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/locale/it.xml -------------------------------------------------------------------------------- /resource/locale/ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/locale/ja.xml -------------------------------------------------------------------------------- /resource/locale/ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/locale/ko.xml -------------------------------------------------------------------------------- /resource/locale/pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/locale/pl.xml -------------------------------------------------------------------------------- /resource/locale/ptbr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/locale/ptbr.xml -------------------------------------------------------------------------------- /resource/locale/ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/locale/ru.xml -------------------------------------------------------------------------------- /resource/locale/zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/locale/zh.xml -------------------------------------------------------------------------------- /resource/texture/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/texture/bg.png -------------------------------------------------------------------------------- /resource/texture/data_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/texture/data_button.png -------------------------------------------------------------------------------- /resource/texture/download_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/texture/download_button.png -------------------------------------------------------------------------------- /resource/texture/missing_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/texture/missing_image.png -------------------------------------------------------------------------------- /resource/texture/refresh_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/texture/refresh_button.png -------------------------------------------------------------------------------- /resource/texture/screenshot_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/texture/screenshot_icon.png -------------------------------------------------------------------------------- /resource/texture/search_back_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/texture/search_back_button.png -------------------------------------------------------------------------------- /resource/texture/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/texture/search_icon.png -------------------------------------------------------------------------------- /resource/texture/tex_info_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/texture/tex_info_icon.png -------------------------------------------------------------------------------- /resource/texture/tex_info_icon_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/texture/tex_info_icon_glow.png -------------------------------------------------------------------------------- /resource/texture/top_bar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/resource/texture/top_bar_bg.png -------------------------------------------------------------------------------- /sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/sce_sys/icon0.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/bg0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/sce_sys/livearea/contents/bg0.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/default_gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/sce_sys/livearea/contents/default_gate.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /sce_sys/pic0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/sce_sys/pic0.png -------------------------------------------------------------------------------- /src/db/cbpsdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/db/cbpsdb.cpp -------------------------------------------------------------------------------- /src/db/psphbb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/db/psphbb.cpp -------------------------------------------------------------------------------- /src/db/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/db/source.cpp -------------------------------------------------------------------------------- /src/db/vhbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/db/vhbd.cpp -------------------------------------------------------------------------------- /src/db/vitadb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/db/vitadb.cpp -------------------------------------------------------------------------------- /src/downloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/downloader.cpp -------------------------------------------------------------------------------- /src/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/event.cpp -------------------------------------------------------------------------------- /src/fread_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/fread_line.c -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/paf_runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/paf_runtime.cpp -------------------------------------------------------------------------------- /src/pages/app_browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/pages/app_browser.cpp -------------------------------------------------------------------------------- /src/pages/app_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/pages/app_viewer.cpp -------------------------------------------------------------------------------- /src/pages/image_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/pages/image_viewer.cpp -------------------------------------------------------------------------------- /src/pages/page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/pages/page.cpp -------------------------------------------------------------------------------- /src/pages/text_page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/pages/text_page.cpp -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/tex_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/tex_pool.cpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/BetterHomebrewBrowser/HEAD/src/utils.cpp --------------------------------------------------------------------------------