diff --git a/gui/AppDetailsContent.cpp b/gui/AppDetailsContent.cpp index e4035c8..83377fd 100644 --- a/gui/AppDetailsContent.cpp +++ b/gui/AppDetailsContent.cpp @@ -45,7 +45,7 @@ std::string getTrimmedDetails(AppDetailsContent* content, std::string details) AppDetailsContent::AppDetailsContent(Package *package, bool useBannerIcons) : reportIssue(i18n("contents.report"), L_BUTTON) - , moreByAuthor(i18n("more"), R_BUTTON) + , moreByAuthor(i18n("contents.more"), R_BUTTON) , title(package->getTitle().c_str(), 35, &HBAS::ThemeManager::textPrimary) , title2(package->getAuthor().c_str(), 27, &HBAS::ThemeManager::textSecondary) , details(i18n("contents.placeholder1"), 20 / SCALER, &HBAS::ThemeManager::textPrimary, false, PANE_WIDTH + 20 / SCALER) @@ -297,7 +297,7 @@ void AppDetailsContent::switchExtraInfo(Package* package, int newState) { // update button text auto hideText = i18n("contents.hide"); auto showText = i18n("contents.show"); - showFiles.updateText((std::string(newState == SHOW_LIST_OF_FILES ? hideText : showText) + " " + i18n("contents.showinstalled ")).c_str()); + showFiles.updateText((std::string(newState == SHOW_LIST_OF_FILES ? hideText : showText) + " " + i18n("contents.showinstalled")).c_str()); showChangelog.updateText((std::string(newState == SHOW_CHANGELOG ? hideText : showText) + " " + i18n("contents.changelog")).c_str()); // hide/show changelog text based on if neither is true diff --git a/gui/AppList.cpp b/gui/AppList.cpp index 6a099a0..cbda97f 100644 --- a/gui/AppList.cpp +++ b/gui/AppList.cpp @@ -130,6 +130,7 @@ bool AppList::process(InputEvents* event) hideSidebar = !hideSidebar; R = (SCREEN_WIDTH - 400) / 260 + hideSidebar; this->x = 400 - 260 * hideSidebar; + sidebar->addHints(); update(); return true; } diff --git a/gui/MainDisplay.cpp b/gui/MainDisplay.cpp index c6db95e..90f7f7f 100644 --- a/gui/MainDisplay.cpp +++ b/gui/MainDisplay.cpp @@ -265,7 +265,7 @@ bool MainDisplay::process(InputEvents* event) } else writeFailed = true; - if (writeFailed || true) { + if (writeFailed) { std::string cardText = replaceAll(i18n("errors.writetestfail"), "PATH", tmp_file) + "\n"; #if defined(__WIIU__) cardText = i18n("errors.sdlock") + "\n"s + cardText; diff --git a/gui/Sidebar.cpp b/gui/Sidebar.cpp index 530e870..fc250b0 100644 --- a/gui/Sidebar.cpp +++ b/gui/Sidebar.cpp @@ -88,16 +88,20 @@ Sidebar::~Sidebar() void Sidebar::addHints() { - // small indicator to switch to advanced view using L - hider = new ImageElement(RAMFS "res/button-l-outline.png"); - hider->resize(20, 20); - hider->position(270, SCREEN_HEIGHT - 35); - super::append(hider); + if (hider == nullptr) { + // small indicator to switch to advanced view using L + hider = new ImageElement(Button::getControllerButtonImageForPlatform(L_BUTTON, false, false)); + hider->resize(20, 20); + super::append(hider); + } - hint = new TextElement(i18n("contents.hide"), 15); - hint->position(hider->x + hider->width + 5, hider->y); - super::append(hint); + if (hint == nullptr) { + hint = new TextElement(i18n("sidebar.hide"), 15); + super::append(hint); + } + hider->position(getWidth() - 25 - (!appList->hideSidebar)*(hint->width+10), SCREEN_HEIGHT - 35); + hint->position(hider->x + hider->width + 5, hider->y); showCurrentCategory = true; } @@ -279,9 +283,5 @@ std::string Sidebar::currentCatValue() } int Sidebar::getWidth() { -#if defined(WII) - return 400 - 260 * appList->hideSidebar - 35; // hardcoded sidebar width on wii, for now TODO: fix all the things -#endif - return 400 - 260 * appList->hideSidebar - 35; // hardcoded sidebar width on wii, for now TODO: fix all the things - return 400 - 260 * (appList->R - 3) - 35; + return 400 - 260 * appList->hideSidebar - 35; } \ No newline at end of file diff --git a/libs/chesto b/libs/chesto index 60d7e78..858a4ac 160000 --- a/libs/chesto +++ b/libs/chesto @@ -1 +1 @@ -Subproject commit 60d7e78f15f5fd6f0f0a6ff427e74e728a63e519 +Subproject commit 858a4acfc598405d0b34119e7910ed2874e023ba diff --git a/resin/res/controllers/buttons/keyboard_a.svg b/resin/res/controllers/buttons/keyboard_a.svg new file mode 100644 index 0000000..1f7afe2 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_a.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_a_gray.svg b/resin/res/controllers/buttons/keyboard_a_gray.svg new file mode 100644 index 0000000..41edb18 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_a_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_a_outline.svg b/resin/res/controllers/buttons/keyboard_a_outline.svg new file mode 100644 index 0000000..2cbe290 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_a_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_a_outline_gray.svg b/resin/res/controllers/buttons/keyboard_a_outline_gray.svg new file mode 100644 index 0000000..2e166ca --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_a_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_b.svg b/resin/res/controllers/buttons/keyboard_b.svg new file mode 100644 index 0000000..1d1999a --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_b.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_b_gray.svg b/resin/res/controllers/buttons/keyboard_b_gray.svg new file mode 100644 index 0000000..7fba83a --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_b_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_b_outline.svg b/resin/res/controllers/buttons/keyboard_b_outline.svg new file mode 100644 index 0000000..0b60ebe --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_b_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_b_outline_gray.svg b/resin/res/controllers/buttons/keyboard_b_outline_gray.svg new file mode 100644 index 0000000..1fa2343 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_b_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_backspace.svg b/resin/res/controllers/buttons/keyboard_backspace.svg new file mode 100644 index 0000000..3069f33 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_backspace.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_backspace_gray.svg b/resin/res/controllers/buttons/keyboard_backspace_gray.svg new file mode 100644 index 0000000..1c22a22 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_backspace_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_backspace_outline.svg b/resin/res/controllers/buttons/keyboard_backspace_outline.svg new file mode 100644 index 0000000..e6c638a --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_backspace_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_backspace_outline_gray.svg b/resin/res/controllers/buttons/keyboard_backspace_outline_gray.svg new file mode 100644 index 0000000..3afee35 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_backspace_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_enter.svg b/resin/res/controllers/buttons/keyboard_enter.svg new file mode 100644 index 0000000..f77a8d4 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_enter.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_enter_gray.svg b/resin/res/controllers/buttons/keyboard_enter_gray.svg new file mode 100644 index 0000000..087cd69 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_enter_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_enter_outline.svg b/resin/res/controllers/buttons/keyboard_enter_outline.svg new file mode 100644 index 0000000..43cfd82 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_enter_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_enter_outline_gray.svg b/resin/res/controllers/buttons/keyboard_enter_outline_gray.svg new file mode 100644 index 0000000..f31fb7a --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_enter_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_l.svg b/resin/res/controllers/buttons/keyboard_l.svg new file mode 100644 index 0000000..2a0a7e0 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_l.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_l_gray.svg b/resin/res/controllers/buttons/keyboard_l_gray.svg new file mode 100644 index 0000000..63b268c --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_l_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_l_outline.svg b/resin/res/controllers/buttons/keyboard_l_outline.svg new file mode 100644 index 0000000..1ec8058 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_l_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_l_outline_gray.svg b/resin/res/controllers/buttons/keyboard_l_outline_gray.svg new file mode 100644 index 0000000..c425fe6 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_l_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_q.svg b/resin/res/controllers/buttons/keyboard_q.svg new file mode 100644 index 0000000..e0a2876 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_q.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_q_gray.svg b/resin/res/controllers/buttons/keyboard_q_gray.svg new file mode 100644 index 0000000..2451eb8 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_q_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_q_outline.svg b/resin/res/controllers/buttons/keyboard_q_outline.svg new file mode 100644 index 0000000..42b91ea --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_q_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_q_outline_gray.svg b/resin/res/controllers/buttons/keyboard_q_outline_gray.svg new file mode 100644 index 0000000..ef4b9ad --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_q_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_r.svg b/resin/res/controllers/buttons/keyboard_r.svg new file mode 100644 index 0000000..57d3e2c --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_r.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_r_gray.svg b/resin/res/controllers/buttons/keyboard_r_gray.svg new file mode 100644 index 0000000..6da2792 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_r_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_r_outline.svg b/resin/res/controllers/buttons/keyboard_r_outline.svg new file mode 100644 index 0000000..07056fa --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_r_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_r_outline_gray.svg b/resin/res/controllers/buttons/keyboard_r_outline_gray.svg new file mode 100644 index 0000000..dc1e188 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_r_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_return.svg b/resin/res/controllers/buttons/keyboard_return.svg new file mode 100644 index 0000000..f4b4866 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_return.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_return_gray.svg b/resin/res/controllers/buttons/keyboard_return_gray.svg new file mode 100644 index 0000000..5b30519 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_return_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_return_outline.svg b/resin/res/controllers/buttons/keyboard_return_outline.svg new file mode 100644 index 0000000..fab9a5b --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_return_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_return_outline_gray.svg b/resin/res/controllers/buttons/keyboard_return_outline_gray.svg new file mode 100644 index 0000000..451fc7f --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_return_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_x.svg b/resin/res/controllers/buttons/keyboard_x.svg new file mode 100644 index 0000000..5565c8f --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_x.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_x_gray.svg b/resin/res/controllers/buttons/keyboard_x_gray.svg new file mode 100644 index 0000000..a7c7bb8 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_x_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_x_outline.svg b/resin/res/controllers/buttons/keyboard_x_outline.svg new file mode 100644 index 0000000..18c0650 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_x_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_x_outline_gray.svg b/resin/res/controllers/buttons/keyboard_x_outline_gray.svg new file mode 100644 index 0000000..7853d0d --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_x_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_y.svg b/resin/res/controllers/buttons/keyboard_y.svg new file mode 100644 index 0000000..6574a93 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_y.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_y_gray.svg b/resin/res/controllers/buttons/keyboard_y_gray.svg new file mode 100644 index 0000000..e3f3ede --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_y_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_y_outline.svg b/resin/res/controllers/buttons/keyboard_y_outline.svg new file mode 100644 index 0000000..fbd4c87 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_y_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_y_outline_gray.svg b/resin/res/controllers/buttons/keyboard_y_outline_gray.svg new file mode 100644 index 0000000..73e12df --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_y_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_z.svg b/resin/res/controllers/buttons/keyboard_z.svg new file mode 100644 index 0000000..6bdc3dd --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_z.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_z_gray.svg b/resin/res/controllers/buttons/keyboard_z_gray.svg new file mode 100644 index 0000000..7e6d948 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_z_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_z_outline.svg b/resin/res/controllers/buttons/keyboard_z_outline.svg new file mode 100644 index 0000000..ab68a94 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_z_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/keyboard_z_outline_gray.svg b/resin/res/controllers/buttons/keyboard_z_outline_gray.svg new file mode 100644 index 0000000..787aa62 --- /dev/null +++ b/resin/res/controllers/buttons/keyboard_z_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/make_gray_copies.py b/resin/res/controllers/buttons/make_gray_copies.py new file mode 100644 index 0000000..03e3a20 --- /dev/null +++ b/resin/res/controllers/buttons/make_gray_copies.py @@ -0,0 +1,20 @@ +#!/bin/python3 +import os + +# for every file in the current directory +for filename in os.listdir('.'): + # if it's an svg + if filename.endswith('.svg') and not filename.endswith('_light.svg') and not filename.endswith('_gray.svg'): + # open the file + with open(filename, 'r') as file: + # read the file + data = file.read() + # replace the fill color + # data = data.replace('#FFFFFF', '#000000') + data = data.replace('#FFFFFF', '#555555') + # write the file + # with open(filename.replace('.svg', '_light.svg'), 'w') as file: + with open(filename.replace('.svg', '_gray.svg'), 'w') as file: + file.write(data) + +print("Done!") \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_a.svg b/resin/res/controllers/buttons/switch_button_a.svg new file mode 100644 index 0000000..b8ede8d --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_a.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_a_gray.svg b/resin/res/controllers/buttons/switch_button_a_gray.svg new file mode 100644 index 0000000..21bff4a --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_a_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_a_outline.svg b/resin/res/controllers/buttons/switch_button_a_outline.svg new file mode 100644 index 0000000..17121c7 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_a_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_a_outline_gray.svg b/resin/res/controllers/buttons/switch_button_a_outline_gray.svg new file mode 100644 index 0000000..b1aea69 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_a_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_b.svg b/resin/res/controllers/buttons/switch_button_b.svg new file mode 100644 index 0000000..a3f24ad --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_b.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_b_gray.svg b/resin/res/controllers/buttons/switch_button_b_gray.svg new file mode 100644 index 0000000..ec6cfb1 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_b_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_b_outline.svg b/resin/res/controllers/buttons/switch_button_b_outline.svg new file mode 100644 index 0000000..bc6493f --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_b_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_b_outline_gray.svg b/resin/res/controllers/buttons/switch_button_b_outline_gray.svg new file mode 100644 index 0000000..d223738 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_b_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_home.svg b/resin/res/controllers/buttons/switch_button_home.svg new file mode 100644 index 0000000..10d1ef1 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_home.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_home_gray.svg b/resin/res/controllers/buttons/switch_button_home_gray.svg new file mode 100644 index 0000000..be73fa6 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_home_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_home_outline.svg b/resin/res/controllers/buttons/switch_button_home_outline.svg new file mode 100644 index 0000000..1988c16 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_home_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_home_outline_gray.svg b/resin/res/controllers/buttons/switch_button_home_outline_gray.svg new file mode 100644 index 0000000..aab17ec --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_home_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_l.svg b/resin/res/controllers/buttons/switch_button_l.svg new file mode 100644 index 0000000..19288f9 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_l.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_l_gray.svg b/resin/res/controllers/buttons/switch_button_l_gray.svg new file mode 100644 index 0000000..6a48861 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_l_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_l_outline.svg b/resin/res/controllers/buttons/switch_button_l_outline.svg new file mode 100644 index 0000000..66b3997 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_l_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_l_outline_gray.svg b/resin/res/controllers/buttons/switch_button_l_outline_gray.svg new file mode 100644 index 0000000..0e3bc8f --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_l_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_minus.svg b/resin/res/controllers/buttons/switch_button_minus.svg new file mode 100644 index 0000000..575f88f --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_minus.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_minus_gray.svg b/resin/res/controllers/buttons/switch_button_minus_gray.svg new file mode 100644 index 0000000..942c5fc --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_minus_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_minus_outline.svg b/resin/res/controllers/buttons/switch_button_minus_outline.svg new file mode 100644 index 0000000..a3a88b0 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_minus_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_minus_outline_gray.svg b/resin/res/controllers/buttons/switch_button_minus_outline_gray.svg new file mode 100644 index 0000000..170d345 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_minus_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_plus.svg b/resin/res/controllers/buttons/switch_button_plus.svg new file mode 100644 index 0000000..817c260 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_plus.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_plus_gray.svg b/resin/res/controllers/buttons/switch_button_plus_gray.svg new file mode 100644 index 0000000..2f647ad --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_plus_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_plus_outline.svg b/resin/res/controllers/buttons/switch_button_plus_outline.svg new file mode 100644 index 0000000..8a4bb1e --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_plus_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_plus_outline_gray.svg b/resin/res/controllers/buttons/switch_button_plus_outline_gray.svg new file mode 100644 index 0000000..a36bcba --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_plus_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_r.svg b/resin/res/controllers/buttons/switch_button_r.svg new file mode 100644 index 0000000..24ec390 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_r.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_r_gray.svg b/resin/res/controllers/buttons/switch_button_r_gray.svg new file mode 100644 index 0000000..b2d12ec --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_r_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_r_outline.svg b/resin/res/controllers/buttons/switch_button_r_outline.svg new file mode 100644 index 0000000..6540d09 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_r_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_r_outline_gray.svg b/resin/res/controllers/buttons/switch_button_r_outline_gray.svg new file mode 100644 index 0000000..b74ce01 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_r_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_x.svg b/resin/res/controllers/buttons/switch_button_x.svg new file mode 100644 index 0000000..a84f973 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_x.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_x_gray.svg b/resin/res/controllers/buttons/switch_button_x_gray.svg new file mode 100644 index 0000000..b25202f --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_x_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_x_outline.svg b/resin/res/controllers/buttons/switch_button_x_outline.svg new file mode 100644 index 0000000..8a0644c --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_x_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_x_outline_gray.svg b/resin/res/controllers/buttons/switch_button_x_outline_gray.svg new file mode 100644 index 0000000..4a72afd --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_x_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_y.svg b/resin/res/controllers/buttons/switch_button_y.svg new file mode 100644 index 0000000..07526e4 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_y.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_y_gray.svg b/resin/res/controllers/buttons/switch_button_y_gray.svg new file mode 100644 index 0000000..cc548a6 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_y_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_y_outline.svg b/resin/res/controllers/buttons/switch_button_y_outline.svg new file mode 100644 index 0000000..ac30d3c --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_y_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_y_outline_gray.svg b/resin/res/controllers/buttons/switch_button_y_outline_gray.svg new file mode 100644 index 0000000..8186a56 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_y_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_zl.svg b/resin/res/controllers/buttons/switch_button_zl.svg new file mode 100644 index 0000000..922e22f --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_zl.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_zl_gray.svg b/resin/res/controllers/buttons/switch_button_zl_gray.svg new file mode 100644 index 0000000..3a4bbab --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_zl_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_zl_outline.svg b/resin/res/controllers/buttons/switch_button_zl_outline.svg new file mode 100644 index 0000000..fa6aa02 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_zl_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_zl_outline_gray.svg b/resin/res/controllers/buttons/switch_button_zl_outline_gray.svg new file mode 100644 index 0000000..c2a87f7 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_zl_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_zr.svg b/resin/res/controllers/buttons/switch_button_zr.svg new file mode 100644 index 0000000..344d999 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_zr.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_zr_gray.svg b/resin/res/controllers/buttons/switch_button_zr_gray.svg new file mode 100644 index 0000000..eb967e0 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_zr_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_zr_outline.svg b/resin/res/controllers/buttons/switch_button_zr_outline.svg new file mode 100644 index 0000000..d38b5e3 --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_zr_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/switch_button_zr_outline_gray.svg b/resin/res/controllers/buttons/switch_button_zr_outline_gray.svg new file mode 100644 index 0000000..19d8c0e --- /dev/null +++ b/resin/res/controllers/buttons/switch_button_zr_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_1.svg b/resin/res/controllers/buttons/wii_button_1.svg new file mode 100644 index 0000000..7bb834c --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_1.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_1_gray.svg b/resin/res/controllers/buttons/wii_button_1_gray.svg new file mode 100644 index 0000000..afd2832 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_1_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_1_outline.svg b/resin/res/controllers/buttons/wii_button_1_outline.svg new file mode 100644 index 0000000..3c187e2 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_1_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_1_outline_gray.svg b/resin/res/controllers/buttons/wii_button_1_outline_gray.svg new file mode 100644 index 0000000..5115ad5 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_1_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_2.svg b/resin/res/controllers/buttons/wii_button_2.svg new file mode 100644 index 0000000..ca6753a --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_2.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_2_gray.svg b/resin/res/controllers/buttons/wii_button_2_gray.svg new file mode 100644 index 0000000..37e7ea9 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_2_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_2_outline.svg b/resin/res/controllers/buttons/wii_button_2_outline.svg new file mode 100644 index 0000000..86d87c6 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_2_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_2_outline_gray.svg b/resin/res/controllers/buttons/wii_button_2_outline_gray.svg new file mode 100644 index 0000000..570a1a0 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_2_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_a.svg b/resin/res/controllers/buttons/wii_button_a.svg new file mode 100644 index 0000000..b8ede8d --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_a.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_a_gray.svg b/resin/res/controllers/buttons/wii_button_a_gray.svg new file mode 100644 index 0000000..21bff4a --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_a_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_a_outline.svg b/resin/res/controllers/buttons/wii_button_a_outline.svg new file mode 100644 index 0000000..17121c7 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_a_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_a_outline_gray.svg b/resin/res/controllers/buttons/wii_button_a_outline_gray.svg new file mode 100644 index 0000000..b1aea69 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_a_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_b.svg b/resin/res/controllers/buttons/wii_button_b.svg new file mode 100644 index 0000000..c521994 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_b.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_b_gray.svg b/resin/res/controllers/buttons/wii_button_b_gray.svg new file mode 100644 index 0000000..82c95f1 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_b_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_b_outline.svg b/resin/res/controllers/buttons/wii_button_b_outline.svg new file mode 100644 index 0000000..7d316ef --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_b_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_b_outline_gray.svg b/resin/res/controllers/buttons/wii_button_b_outline_gray.svg new file mode 100644 index 0000000..1ccbd73 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_b_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_c.svg b/resin/res/controllers/buttons/wii_button_c.svg new file mode 100644 index 0000000..4269e7a --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_c.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_c_gray.svg b/resin/res/controllers/buttons/wii_button_c_gray.svg new file mode 100644 index 0000000..7bc2cbf --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_c_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_c_outline.svg b/resin/res/controllers/buttons/wii_button_c_outline.svg new file mode 100644 index 0000000..aa49512 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_c_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_c_outline_gray.svg b/resin/res/controllers/buttons/wii_button_c_outline_gray.svg new file mode 100644 index 0000000..582fa39 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_c_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_home.svg b/resin/res/controllers/buttons/wii_button_home.svg new file mode 100644 index 0000000..10d1ef1 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_home.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_home_gray.svg b/resin/res/controllers/buttons/wii_button_home_gray.svg new file mode 100644 index 0000000..be73fa6 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_home_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_home_outline.svg b/resin/res/controllers/buttons/wii_button_home_outline.svg new file mode 100644 index 0000000..1988c16 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_home_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_home_outline_gray.svg b/resin/res/controllers/buttons/wii_button_home_outline_gray.svg new file mode 100644 index 0000000..aab17ec --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_home_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_l.svg b/resin/res/controllers/buttons/wii_button_l.svg new file mode 100644 index 0000000..6f4b38c --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_l.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_l_gray.svg b/resin/res/controllers/buttons/wii_button_l_gray.svg new file mode 100644 index 0000000..72780ac --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_l_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_l_outline.svg b/resin/res/controllers/buttons/wii_button_l_outline.svg new file mode 100644 index 0000000..7b99937 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_l_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_l_outline_gray.svg b/resin/res/controllers/buttons/wii_button_l_outline_gray.svg new file mode 100644 index 0000000..57b8eeb --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_l_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_minus.svg b/resin/res/controllers/buttons/wii_button_minus.svg new file mode 100644 index 0000000..575f88f --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_minus.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_minus_gray.svg b/resin/res/controllers/buttons/wii_button_minus_gray.svg new file mode 100644 index 0000000..942c5fc --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_minus_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_minus_outline.svg b/resin/res/controllers/buttons/wii_button_minus_outline.svg new file mode 100644 index 0000000..a3a88b0 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_minus_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_minus_outline_gray.svg b/resin/res/controllers/buttons/wii_button_minus_outline_gray.svg new file mode 100644 index 0000000..170d345 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_minus_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_plus.svg b/resin/res/controllers/buttons/wii_button_plus.svg new file mode 100644 index 0000000..817c260 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_plus.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_plus_gray.svg b/resin/res/controllers/buttons/wii_button_plus_gray.svg new file mode 100644 index 0000000..2f647ad --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_plus_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_plus_outline.svg b/resin/res/controllers/buttons/wii_button_plus_outline.svg new file mode 100644 index 0000000..8a4bb1e --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_plus_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_plus_outline_gray.svg b/resin/res/controllers/buttons/wii_button_plus_outline_gray.svg new file mode 100644 index 0000000..a36bcba --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_plus_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_r.svg b/resin/res/controllers/buttons/wii_button_r.svg new file mode 100644 index 0000000..30293f7 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_r.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_r_gray.svg b/resin/res/controllers/buttons/wii_button_r_gray.svg new file mode 100644 index 0000000..04c8aa3 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_r_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_r_outline.svg b/resin/res/controllers/buttons/wii_button_r_outline.svg new file mode 100644 index 0000000..ef99a9d --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_r_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_r_outline_gray.svg b/resin/res/controllers/buttons/wii_button_r_outline_gray.svg new file mode 100644 index 0000000..11e6921 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_r_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_x.svg b/resin/res/controllers/buttons/wii_button_x.svg new file mode 100644 index 0000000..a84f973 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_x.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_x_gray.svg b/resin/res/controllers/buttons/wii_button_x_gray.svg new file mode 100644 index 0000000..b25202f --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_x_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_x_outline.svg b/resin/res/controllers/buttons/wii_button_x_outline.svg new file mode 100644 index 0000000..8a0644c --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_x_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_x_outline_gray.svg b/resin/res/controllers/buttons/wii_button_x_outline_gray.svg new file mode 100644 index 0000000..4a72afd --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_x_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_y.svg b/resin/res/controllers/buttons/wii_button_y.svg new file mode 100644 index 0000000..07526e4 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_y.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_y_gray.svg b/resin/res/controllers/buttons/wii_button_y_gray.svg new file mode 100644 index 0000000..cc548a6 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_y_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_y_outline.svg b/resin/res/controllers/buttons/wii_button_y_outline.svg new file mode 100644 index 0000000..ac30d3c --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_y_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_y_outline_gray.svg b/resin/res/controllers/buttons/wii_button_y_outline_gray.svg new file mode 100644 index 0000000..8186a56 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_y_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_z.svg b/resin/res/controllers/buttons/wii_button_z.svg new file mode 100644 index 0000000..1599ce1 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_z.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_z_gray.svg b/resin/res/controllers/buttons/wii_button_z_gray.svg new file mode 100644 index 0000000..65d3dbb --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_z_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_z_outline.svg b/resin/res/controllers/buttons/wii_button_z_outline.svg new file mode 100644 index 0000000..ce27515 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_z_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_z_outline_gray.svg b/resin/res/controllers/buttons/wii_button_z_outline_gray.svg new file mode 100644 index 0000000..73981e4 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_z_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_zl.svg b/resin/res/controllers/buttons/wii_button_zl.svg new file mode 100644 index 0000000..bb9d161 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_zl.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_zl_gray.svg b/resin/res/controllers/buttons/wii_button_zl_gray.svg new file mode 100644 index 0000000..340677d --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_zl_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_zl_outline.svg b/resin/res/controllers/buttons/wii_button_zl_outline.svg new file mode 100644 index 0000000..096d9fe --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_zl_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_zl_outline_gray.svg b/resin/res/controllers/buttons/wii_button_zl_outline_gray.svg new file mode 100644 index 0000000..9b87e42 --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_zl_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_zr.svg b/resin/res/controllers/buttons/wii_button_zr.svg new file mode 100644 index 0000000..2d0a89f --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_zr.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_zr_gray.svg b/resin/res/controllers/buttons/wii_button_zr_gray.svg new file mode 100644 index 0000000..02c06be --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_zr_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_zr_outline.svg b/resin/res/controllers/buttons/wii_button_zr_outline.svg new file mode 100644 index 0000000..6d74e4b --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_zr_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wii_button_zr_outline_gray.svg b/resin/res/controllers/buttons/wii_button_zr_outline_gray.svg new file mode 100644 index 0000000..1e701ea --- /dev/null +++ b/resin/res/controllers/buttons/wii_button_zr_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_a.svg b/resin/res/controllers/buttons/wiiu_button_a.svg new file mode 100644 index 0000000..b8ede8d --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_a.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_a_gray.svg b/resin/res/controllers/buttons/wiiu_button_a_gray.svg new file mode 100644 index 0000000..21bff4a --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_a_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_a_outline.svg b/resin/res/controllers/buttons/wiiu_button_a_outline.svg new file mode 100644 index 0000000..17121c7 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_a_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_a_outline_gray.svg b/resin/res/controllers/buttons/wiiu_button_a_outline_gray.svg new file mode 100644 index 0000000..b1aea69 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_a_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_b.svg b/resin/res/controllers/buttons/wiiu_button_b.svg new file mode 100644 index 0000000..a3f24ad --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_b.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_b_gray.svg b/resin/res/controllers/buttons/wiiu_button_b_gray.svg new file mode 100644 index 0000000..ec6cfb1 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_b_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_b_outline.svg b/resin/res/controllers/buttons/wiiu_button_b_outline.svg new file mode 100644 index 0000000..bc6493f --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_b_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_b_outline_gray.svg b/resin/res/controllers/buttons/wiiu_button_b_outline_gray.svg new file mode 100644 index 0000000..d223738 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_b_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_home.svg b/resin/res/controllers/buttons/wiiu_button_home.svg new file mode 100644 index 0000000..10d1ef1 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_home.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_home_gray.svg b/resin/res/controllers/buttons/wiiu_button_home_gray.svg new file mode 100644 index 0000000..be73fa6 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_home_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_home_outline.svg b/resin/res/controllers/buttons/wiiu_button_home_outline.svg new file mode 100644 index 0000000..1988c16 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_home_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_home_outline_gray.svg b/resin/res/controllers/buttons/wiiu_button_home_outline_gray.svg new file mode 100644 index 0000000..aab17ec --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_home_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_l.svg b/resin/res/controllers/buttons/wiiu_button_l.svg new file mode 100644 index 0000000..d539fe7 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_l.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_l_gray.svg b/resin/res/controllers/buttons/wiiu_button_l_gray.svg new file mode 100644 index 0000000..0fc5d46 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_l_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_l_outline.svg b/resin/res/controllers/buttons/wiiu_button_l_outline.svg new file mode 100644 index 0000000..4ba434b --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_l_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_l_outline_gray.svg b/resin/res/controllers/buttons/wiiu_button_l_outline_gray.svg new file mode 100644 index 0000000..80d76b3 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_l_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_minus.svg b/resin/res/controllers/buttons/wiiu_button_minus.svg new file mode 100644 index 0000000..575f88f --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_minus.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_minus_gray.svg b/resin/res/controllers/buttons/wiiu_button_minus_gray.svg new file mode 100644 index 0000000..942c5fc --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_minus_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_minus_outline.svg b/resin/res/controllers/buttons/wiiu_button_minus_outline.svg new file mode 100644 index 0000000..a3a88b0 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_minus_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_minus_outline_gray.svg b/resin/res/controllers/buttons/wiiu_button_minus_outline_gray.svg new file mode 100644 index 0000000..170d345 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_minus_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_plus.svg b/resin/res/controllers/buttons/wiiu_button_plus.svg new file mode 100644 index 0000000..817c260 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_plus.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_plus_gray.svg b/resin/res/controllers/buttons/wiiu_button_plus_gray.svg new file mode 100644 index 0000000..2f647ad --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_plus_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_plus_outline.svg b/resin/res/controllers/buttons/wiiu_button_plus_outline.svg new file mode 100644 index 0000000..8a4bb1e --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_plus_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_plus_outline_gray.svg b/resin/res/controllers/buttons/wiiu_button_plus_outline_gray.svg new file mode 100644 index 0000000..a36bcba --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_plus_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_r.svg b/resin/res/controllers/buttons/wiiu_button_r.svg new file mode 100644 index 0000000..56ce87d --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_r.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_r_gray.svg b/resin/res/controllers/buttons/wiiu_button_r_gray.svg new file mode 100644 index 0000000..4df7c6c --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_r_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_r_outline.svg b/resin/res/controllers/buttons/wiiu_button_r_outline.svg new file mode 100644 index 0000000..f16af86 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_r_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_r_outline_gray.svg b/resin/res/controllers/buttons/wiiu_button_r_outline_gray.svg new file mode 100644 index 0000000..7db738b --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_r_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_x.svg b/resin/res/controllers/buttons/wiiu_button_x.svg new file mode 100644 index 0000000..a84f973 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_x.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_x_gray.svg b/resin/res/controllers/buttons/wiiu_button_x_gray.svg new file mode 100644 index 0000000..b25202f --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_x_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_x_outline.svg b/resin/res/controllers/buttons/wiiu_button_x_outline.svg new file mode 100644 index 0000000..8a0644c --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_x_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_x_outline_gray.svg b/resin/res/controllers/buttons/wiiu_button_x_outline_gray.svg new file mode 100644 index 0000000..4a72afd --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_x_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_y.svg b/resin/res/controllers/buttons/wiiu_button_y.svg new file mode 100644 index 0000000..07526e4 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_y.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_y_gray.svg b/resin/res/controllers/buttons/wiiu_button_y_gray.svg new file mode 100644 index 0000000..cc548a6 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_y_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_y_outline.svg b/resin/res/controllers/buttons/wiiu_button_y_outline.svg new file mode 100644 index 0000000..ac30d3c --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_y_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_y_outline_gray.svg b/resin/res/controllers/buttons/wiiu_button_y_outline_gray.svg new file mode 100644 index 0000000..8186a56 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_y_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_zl.svg b/resin/res/controllers/buttons/wiiu_button_zl.svg new file mode 100644 index 0000000..daec0e2 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_zl.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_zl_gray.svg b/resin/res/controllers/buttons/wiiu_button_zl_gray.svg new file mode 100644 index 0000000..33f06df --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_zl_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_zl_outline.svg b/resin/res/controllers/buttons/wiiu_button_zl_outline.svg new file mode 100644 index 0000000..e6eeca5 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_zl_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_zl_outline_gray.svg b/resin/res/controllers/buttons/wiiu_button_zl_outline_gray.svg new file mode 100644 index 0000000..a8b02c2 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_zl_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_zr.svg b/resin/res/controllers/buttons/wiiu_button_zr.svg new file mode 100644 index 0000000..c59e0bd --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_zr.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_zr_gray.svg b/resin/res/controllers/buttons/wiiu_button_zr_gray.svg new file mode 100644 index 0000000..302d486 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_zr_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_zr_outline.svg b/resin/res/controllers/buttons/wiiu_button_zr_outline.svg new file mode 100644 index 0000000..3e2a28c --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_zr_outline.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/buttons/wiiu_button_zr_outline_gray.svg b/resin/res/controllers/buttons/wiiu_button_zr_outline_gray.svg new file mode 100644 index 0000000..8cdfb67 --- /dev/null +++ b/resin/res/controllers/buttons/wiiu_button_zr_outline_gray.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resin/res/controllers/platforms/keyboard_key.png b/resin/res/controllers/platforms/keyboard_key.png new file mode 100644 index 0000000..1381093 Binary files /dev/null and b/resin/res/controllers/platforms/keyboard_key.png differ diff --git a/resin/res/controllers/platforms/playstation_3.png b/resin/res/controllers/platforms/playstation_3.png new file mode 100644 index 0000000..09aab4e Binary files /dev/null and b/resin/res/controllers/platforms/playstation_3.png differ diff --git a/resin/res/controllers/platforms/playstation_4.png b/resin/res/controllers/platforms/playstation_4.png new file mode 100644 index 0000000..7686b33 Binary files /dev/null and b/resin/res/controllers/platforms/playstation_4.png differ diff --git a/resin/res/controllers/platforms/playstation_5.png b/resin/res/controllers/platforms/playstation_5.png new file mode 100644 index 0000000..d50bf5a Binary files /dev/null and b/resin/res/controllers/platforms/playstation_5.png differ diff --git a/resin/res/controllers/platforms/switch_joycon.png b/resin/res/controllers/platforms/switch_joycon.png new file mode 100644 index 0000000..a1841e0 Binary files /dev/null and b/resin/res/controllers/platforms/switch_joycon.png differ diff --git a/resin/res/controllers/platforms/switch_pro.png b/resin/res/controllers/platforms/switch_pro.png new file mode 100644 index 0000000..137aa88 Binary files /dev/null and b/resin/res/controllers/platforms/switch_pro.png differ diff --git a/resin/res/controllers/platforms/wii_classic.png b/resin/res/controllers/platforms/wii_classic.png new file mode 100644 index 0000000..37fdee7 Binary files /dev/null and b/resin/res/controllers/platforms/wii_classic.png differ diff --git a/resin/res/controllers/platforms/wii_classic_pro.png b/resin/res/controllers/platforms/wii_classic_pro.png new file mode 100644 index 0000000..3f38927 Binary files /dev/null and b/resin/res/controllers/platforms/wii_classic_pro.png differ diff --git a/resin/res/controllers/platforms/wii_nunchuk.png b/resin/res/controllers/platforms/wii_nunchuk.png new file mode 100644 index 0000000..e79990d Binary files /dev/null and b/resin/res/controllers/platforms/wii_nunchuk.png differ diff --git a/resin/res/controllers/platforms/wii_remote.png b/resin/res/controllers/platforms/wii_remote.png new file mode 100644 index 0000000..6abf58c Binary files /dev/null and b/resin/res/controllers/platforms/wii_remote.png differ diff --git a/resin/res/controllers/platforms/wiiu_gamepad.png b/resin/res/controllers/platforms/wiiu_gamepad.png new file mode 100644 index 0000000..6bddba0 Binary files /dev/null and b/resin/res/controllers/platforms/wiiu_gamepad.png differ diff --git a/resin/res/controllers/platforms/wiiu_pro.png b/resin/res/controllers/platforms/wiiu_pro.png new file mode 100644 index 0000000..9a063d7 Binary files /dev/null and b/resin/res/controllers/platforms/wiiu_pro.png differ diff --git a/resin/res/controllers/platforms/xbox_360.png b/resin/res/controllers/platforms/xbox_360.png new file mode 100644 index 0000000..3837b62 Binary files /dev/null and b/resin/res/controllers/platforms/xbox_360.png differ diff --git a/resin/res/controllers/platforms/xbox_adaptive.png b/resin/res/controllers/platforms/xbox_adaptive.png new file mode 100644 index 0000000..65dbe4b Binary files /dev/null and b/resin/res/controllers/platforms/xbox_adaptive.png differ diff --git a/resin/res/controllers/platforms/xbox_one.png b/resin/res/controllers/platforms/xbox_one.png new file mode 100644 index 0000000..09563d6 Binary files /dev/null and b/resin/res/controllers/platforms/xbox_one.png differ diff --git a/resin/res/controllers/platforms/xbox_series.png b/resin/res/controllers/platforms/xbox_series.png new file mode 100644 index 0000000..1473e6b Binary files /dev/null and b/resin/res/controllers/platforms/xbox_series.png differ diff --git a/resin/res/i18n/en-us.ini b/resin/res/i18n/en-us.ini index 39402f2..54ecdbd 100644 --- a/resin/res/i18n/en-us.ini +++ b/resin/res/i18n/en-us.ini @@ -63,7 +63,6 @@ contents.hide = Hide contents.show = Show contents.files.installed = Installed Files List contents.changelog = Changelog -contents.changelog.header = Changelog: contents.files.current = Currently Installed Files: contents.files.remote = Manifest of Remote Files: @@ -118,6 +117,7 @@ sidebar.tools = Tools sidebar.advanced = Advanced sidebar.themes = Themes sidebar.misc = Misc +sidebar.hide = Hide Sidebar ; Recovery Stuff recovery.version = v2.3 for PLATFORM