├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── icon.png ├── include ├── SDL_helper.h ├── common.h ├── config.h ├── dirbrowse.h ├── fs.h ├── input_helper.h ├── menus │ ├── menu_gallery.h │ ├── menu_main.h │ ├── menu_music.h │ ├── menu_options.h │ └── menu_settings.h ├── minizip │ ├── archive.h │ ├── crypt.h │ ├── ioapi.h │ └── unzip.h ├── osk.h ├── progress_bar.h ├── status_bar.h ├── textures.h ├── touch_helper.h └── utils.h ├── romfs └── res │ ├── Roboto-Regular.ttf │ └── drawable │ ├── battery_20.png │ ├── battery_20_charging.png │ ├── battery_30.png │ ├── battery_30_charging.png │ ├── battery_50.png │ ├── battery_50_charging.png │ ├── battery_60.png │ ├── battery_60_charging.png │ ├── battery_80.png │ ├── battery_80_charging.png │ ├── battery_90.png │ ├── battery_90_charging.png │ ├── battery_full.png │ ├── battery_full_charging.png │ ├── battery_low.png │ ├── battery_unknown.png │ ├── bg_header.png │ ├── btn_material_light_check_off_normal.png │ ├── btn_material_light_check_off_normal_dark.png │ ├── btn_material_light_check_on_normal.png │ ├── btn_material_light_check_on_normal_dark.png │ ├── btn_material_light_radio_off_normal.png │ ├── btn_material_light_radio_off_normal_dark.png │ ├── btn_material_light_radio_on_normal.png │ ├── btn_material_light_radio_on_normal_dark.png │ ├── btn_material_light_toggle_off_normal.png │ ├── btn_material_light_toggle_on_normal.png │ ├── btn_material_light_toggle_on_normal_dark.png │ ├── btn_playback_forward.png │ ├── btn_playback_pause.png │ ├── btn_playback_play.png │ ├── btn_playback_repeat.png │ ├── btn_playback_repeat_overlay.png │ ├── btn_playback_rewind.png │ ├── btn_playback_shuffle.png │ ├── btn_playback_shuffle_overlay.png │ ├── default_artwork.png │ ├── default_artwork_blur.png │ ├── ic_arrow_back_normal.png │ ├── ic_fso_default.png │ ├── ic_fso_folder.png │ ├── ic_fso_folder_dark.png │ ├── ic_fso_type_audio.png │ ├── ic_fso_type_compress.png │ ├── ic_fso_type_document.png │ ├── ic_fso_type_executable.png │ ├── ic_fso_type_image.png │ ├── ic_fso_type_text.png │ ├── ic_material_dialog.png │ ├── ic_material_dialog_dark.png │ ├── ic_material_dialog_fs_locked.png │ ├── ic_material_light_accept.png │ ├── ic_material_light_accept_dark.png │ ├── ic_material_light_contextual_action.png │ ├── ic_material_light_navigation_drawer.png │ ├── ic_material_light_remove.png │ ├── ic_material_light_remove_dark.png │ ├── ic_material_light_sdcard.png │ ├── ic_material_light_sdcard_dark.png │ ├── ic_material_light_secure.png │ ├── ic_material_light_secure_dark.png │ ├── ic_material_light_settings.png │ ├── ic_material_light_settings_dark.png │ ├── ic_material_options_dialog.png │ ├── ic_material_options_dialog_dark.png │ ├── ic_material_properties_dialog.png │ └── ic_material_properties_dialog_dark.png └── source ├── SDL_helper.c ├── common.c ├── config.c ├── dirbrowse.c ├── fs.c ├── input_helper.c ├── main.c ├── menus ├── menu_gallery.c ├── menu_main.c ├── menu_music.c ├── menu_options.c └── menu_settings.c ├── minizip ├── archive.c ├── ioapi.c └── unzip.c ├── osk.c ├── progress_bar.c ├── status_bar.c ├── textures.c ├── touch_helper.c └── utils.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/icon.png -------------------------------------------------------------------------------- /include/SDL_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/SDL_helper.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/common.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/config.h -------------------------------------------------------------------------------- /include/dirbrowse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/dirbrowse.h -------------------------------------------------------------------------------- /include/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/fs.h -------------------------------------------------------------------------------- /include/input_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/input_helper.h -------------------------------------------------------------------------------- /include/menus/menu_gallery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/menus/menu_gallery.h -------------------------------------------------------------------------------- /include/menus/menu_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/menus/menu_main.h -------------------------------------------------------------------------------- /include/menus/menu_music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/menus/menu_music.h -------------------------------------------------------------------------------- /include/menus/menu_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/menus/menu_options.h -------------------------------------------------------------------------------- /include/menus/menu_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/menus/menu_settings.h -------------------------------------------------------------------------------- /include/minizip/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/minizip/archive.h -------------------------------------------------------------------------------- /include/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/minizip/crypt.h -------------------------------------------------------------------------------- /include/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/minizip/ioapi.h -------------------------------------------------------------------------------- /include/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/minizip/unzip.h -------------------------------------------------------------------------------- /include/osk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/osk.h -------------------------------------------------------------------------------- /include/progress_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/progress_bar.h -------------------------------------------------------------------------------- /include/status_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/status_bar.h -------------------------------------------------------------------------------- /include/textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/textures.h -------------------------------------------------------------------------------- /include/touch_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/touch_helper.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/include/utils.h -------------------------------------------------------------------------------- /romfs/res/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/Roboto-Regular.ttf -------------------------------------------------------------------------------- /romfs/res/drawable/battery_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/battery_20.png -------------------------------------------------------------------------------- /romfs/res/drawable/battery_20_charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/battery_20_charging.png -------------------------------------------------------------------------------- /romfs/res/drawable/battery_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/battery_30.png -------------------------------------------------------------------------------- /romfs/res/drawable/battery_30_charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/battery_30_charging.png -------------------------------------------------------------------------------- /romfs/res/drawable/battery_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/battery_50.png -------------------------------------------------------------------------------- /romfs/res/drawable/battery_50_charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/battery_50_charging.png -------------------------------------------------------------------------------- /romfs/res/drawable/battery_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/battery_60.png -------------------------------------------------------------------------------- /romfs/res/drawable/battery_60_charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/battery_60_charging.png -------------------------------------------------------------------------------- /romfs/res/drawable/battery_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/battery_80.png -------------------------------------------------------------------------------- /romfs/res/drawable/battery_80_charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/battery_80_charging.png -------------------------------------------------------------------------------- /romfs/res/drawable/battery_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/battery_90.png -------------------------------------------------------------------------------- /romfs/res/drawable/battery_90_charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/battery_90_charging.png -------------------------------------------------------------------------------- /romfs/res/drawable/battery_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/battery_full.png -------------------------------------------------------------------------------- /romfs/res/drawable/battery_full_charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/battery_full_charging.png -------------------------------------------------------------------------------- /romfs/res/drawable/battery_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/battery_low.png -------------------------------------------------------------------------------- /romfs/res/drawable/battery_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/battery_unknown.png -------------------------------------------------------------------------------- /romfs/res/drawable/bg_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/bg_header.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_material_light_check_off_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_material_light_check_off_normal.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_material_light_check_off_normal_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_material_light_check_off_normal_dark.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_material_light_check_on_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_material_light_check_on_normal.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_material_light_check_on_normal_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_material_light_check_on_normal_dark.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_material_light_radio_off_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_material_light_radio_off_normal.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_material_light_radio_off_normal_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_material_light_radio_off_normal_dark.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_material_light_radio_on_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_material_light_radio_on_normal.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_material_light_radio_on_normal_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_material_light_radio_on_normal_dark.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_material_light_toggle_off_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_material_light_toggle_off_normal.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_material_light_toggle_on_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_material_light_toggle_on_normal.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_material_light_toggle_on_normal_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_material_light_toggle_on_normal_dark.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_playback_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_playback_forward.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_playback_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_playback_pause.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_playback_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_playback_play.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_playback_repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_playback_repeat.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_playback_repeat_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_playback_repeat_overlay.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_playback_rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_playback_rewind.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_playback_shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_playback_shuffle.png -------------------------------------------------------------------------------- /romfs/res/drawable/btn_playback_shuffle_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/btn_playback_shuffle_overlay.png -------------------------------------------------------------------------------- /romfs/res/drawable/default_artwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/default_artwork.png -------------------------------------------------------------------------------- /romfs/res/drawable/default_artwork_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/default_artwork_blur.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_arrow_back_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_arrow_back_normal.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_fso_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_fso_default.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_fso_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_fso_folder.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_fso_folder_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_fso_folder_dark.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_fso_type_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_fso_type_audio.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_fso_type_compress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_fso_type_compress.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_fso_type_document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_fso_type_document.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_fso_type_executable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_fso_type_executable.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_fso_type_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_fso_type_image.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_fso_type_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_fso_type_text.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_dialog.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_dialog_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_dialog_dark.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_dialog_fs_locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_dialog_fs_locked.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_light_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_light_accept.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_light_accept_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_light_accept_dark.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_light_contextual_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_light_contextual_action.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_light_navigation_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_light_navigation_drawer.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_light_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_light_remove.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_light_remove_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_light_remove_dark.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_light_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_light_sdcard.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_light_sdcard_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_light_sdcard_dark.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_light_secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_light_secure.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_light_secure_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_light_secure_dark.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_light_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_light_settings.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_light_settings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_light_settings_dark.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_options_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_options_dialog.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_options_dialog_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_options_dialog_dark.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_properties_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_properties_dialog.png -------------------------------------------------------------------------------- /romfs/res/drawable/ic_material_properties_dialog_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/romfs/res/drawable/ic_material_properties_dialog_dark.png -------------------------------------------------------------------------------- /source/SDL_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/SDL_helper.c -------------------------------------------------------------------------------- /source/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/common.c -------------------------------------------------------------------------------- /source/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/config.c -------------------------------------------------------------------------------- /source/dirbrowse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/dirbrowse.c -------------------------------------------------------------------------------- /source/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/fs.c -------------------------------------------------------------------------------- /source/input_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/input_helper.c -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/main.c -------------------------------------------------------------------------------- /source/menus/menu_gallery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/menus/menu_gallery.c -------------------------------------------------------------------------------- /source/menus/menu_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/menus/menu_main.c -------------------------------------------------------------------------------- /source/menus/menu_music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/menus/menu_music.c -------------------------------------------------------------------------------- /source/menus/menu_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/menus/menu_options.c -------------------------------------------------------------------------------- /source/menus/menu_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/menus/menu_settings.c -------------------------------------------------------------------------------- /source/minizip/archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/minizip/archive.c -------------------------------------------------------------------------------- /source/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/minizip/ioapi.c -------------------------------------------------------------------------------- /source/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/minizip/unzip.c -------------------------------------------------------------------------------- /source/osk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/osk.c -------------------------------------------------------------------------------- /source/progress_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/progress_bar.c -------------------------------------------------------------------------------- /source/status_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/status_bar.c -------------------------------------------------------------------------------- /source/textures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/textures.c -------------------------------------------------------------------------------- /source/touch_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/touch_helper.c -------------------------------------------------------------------------------- /source/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/WiiU-Shell/HEAD/source/utils.c --------------------------------------------------------------------------------