From 547f6f77d02caf41bd681d1bf2553a8b8af1c2e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Mon, 27 Oct 2014 00:15:52 +0100 Subject: [PATCH] Add iOS and OSX icon themes by pe --- CMakeLists.txt | 2 + gui/MainWindow.ui | 2 + gui/pages/InstanceSettingsPage.h | 2 +- gui/pages/NotesPage.h | 5 +- gui/pages/global/AccountListPage.h | 7 +- gui/pages/global/MultiMCPage.cpp | 14 +++ gui/pages/global/MultiMCPage.ui | 10 ++ main.cpp | 2 + resources/OSX/OSX.qrc | 34 ++++++ resources/OSX/index.theme | 11 ++ resources/OSX/scalable/about.svg | 20 +++ resources/OSX/scalable/accounts.svg | 16 +++ resources/OSX/scalable/bug.svg | 25 ++++ resources/OSX/scalable/centralmods.svg | 16 +++ resources/OSX/scalable/checkupdate.svg | 22 ++++ resources/OSX/scalable/copy.svg | 18 +++ resources/OSX/scalable/coremods.svg | 21 ++++ resources/OSX/scalable/externaltools.svg | 14 +++ resources/OSX/scalable/instance-settings.svg | 25 ++++ resources/OSX/scalable/jarmods.svg | 30 +++++ resources/OSX/scalable/java.svg | 33 +++++ resources/OSX/scalable/loadermods.svg | 14 +++ resources/OSX/scalable/log.svg | 19 +++ resources/OSX/scalable/minecraft.svg | 12 ++ resources/OSX/scalable/multimc.svg | 18 +++ resources/OSX/scalable/new.svg | 19 +++ resources/OSX/scalable/news.svg | 14 +++ resources/OSX/scalable/notes.svg | 21 ++++ resources/OSX/scalable/patreon.svg | 15 +++ resources/OSX/scalable/proxy.svg | 16 +++ resources/OSX/scalable/quickmods.svg | 18 +++ resources/OSX/scalable/refresh.svg | 16 +++ resources/OSX/scalable/resourcepacks.svg | 17 +++ resources/OSX/scalable/screenshots.svg | 19 +++ resources/OSX/scalable/settings.svg | 25 ++++ resources/OSX/scalable/status-bad.svg | 103 ++++++++++++++++ resources/OSX/scalable/status-good.svg | 114 ++++++++++++++++++ resources/OSX/scalable/viewfolder.svg | 16 +++ resources/iOS/iOS.qrc | 34 ++++++ resources/iOS/index.theme | 11 ++ resources/iOS/scalable/about.svg | 16 +++ resources/iOS/scalable/accounts.svg | 14 +++ resources/iOS/scalable/bug.svg | 22 ++++ resources/iOS/scalable/centralmods.svg | 13 ++ resources/iOS/scalable/checkupdate.svg | 16 +++ resources/iOS/scalable/copy.svg | 13 ++ resources/iOS/scalable/coremods.svg | 18 +++ resources/iOS/scalable/externaltools.svg | 13 ++ resources/iOS/scalable/instance-settings.svg | 19 +++ resources/iOS/scalable/jarmods.svg | 31 +++++ resources/iOS/scalable/java.svg | 33 +++++ resources/iOS/scalable/loadermods.svg | 14 +++ resources/iOS/scalable/log.svg | 13 ++ resources/iOS/scalable/minecraft.svg | 8 ++ resources/iOS/scalable/multimc.svg | 13 ++ resources/iOS/scalable/new.svg | 13 ++ resources/iOS/scalable/news.svg | 15 +++ resources/iOS/scalable/notes.svg | 15 +++ resources/iOS/scalable/patreon.svg | 12 ++ resources/iOS/scalable/proxy.svg | 11 ++ resources/iOS/scalable/quickmods.svg | 14 +++ resources/iOS/scalable/refresh.svg | 13 ++ resources/iOS/scalable/resourcepacks.svg | 15 +++ resources/iOS/scalable/screenshots.svg | 14 +++ resources/iOS/scalable/settings.svg | 19 +++ resources/iOS/scalable/status-bad.svg | 103 ++++++++++++++++ resources/iOS/scalable/status-good.svg | 114 ++++++++++++++++++ resources/iOS/scalable/viewfolder.svg | 12 ++ resources/multimc/16x16/instance-settings.png | Bin 0 -> 1410 bytes resources/multimc/22x22/instance-settings.png | Bin 0 -> 1964 bytes resources/multimc/32x32/instance-settings.png | Bin 0 -> 2983 bytes resources/multimc/48x48/instance-settings.png | Bin 0 -> 4797 bytes resources/multimc/64x64/instance-settings.png | Bin 0 -> 7125 bytes resources/multimc/multimc.qrc | 7 ++ resources/pe_blue/pe_blue.qrc | 1 + .../pe_blue/scalable/instance-settings.svg | 46 +++++++ resources/pe_colored/pe_colored.qrc | 1 + .../pe_colored/scalable/instance-settings.svg | 18 +++ resources/pe_dark/pe_dark.qrc | 1 + .../pe_dark/scalable/instance-settings.svg | 43 +++++++ resources/pe_light/pe_light.qrc | 1 + .../pe_light/scalable/instance-settings.svg | 43 +++++++ 82 files changed, 1634 insertions(+), 3 deletions(-) create mode 100644 resources/OSX/OSX.qrc create mode 100644 resources/OSX/index.theme create mode 100644 resources/OSX/scalable/about.svg create mode 100644 resources/OSX/scalable/accounts.svg create mode 100644 resources/OSX/scalable/bug.svg create mode 100644 resources/OSX/scalable/centralmods.svg create mode 100644 resources/OSX/scalable/checkupdate.svg create mode 100644 resources/OSX/scalable/copy.svg create mode 100644 resources/OSX/scalable/coremods.svg create mode 100644 resources/OSX/scalable/externaltools.svg create mode 100644 resources/OSX/scalable/instance-settings.svg create mode 100644 resources/OSX/scalable/jarmods.svg create mode 100644 resources/OSX/scalable/java.svg create mode 100644 resources/OSX/scalable/loadermods.svg create mode 100644 resources/OSX/scalable/log.svg create mode 100644 resources/OSX/scalable/minecraft.svg create mode 100644 resources/OSX/scalable/multimc.svg create mode 100644 resources/OSX/scalable/new.svg create mode 100644 resources/OSX/scalable/news.svg create mode 100644 resources/OSX/scalable/notes.svg create mode 100644 resources/OSX/scalable/patreon.svg create mode 100644 resources/OSX/scalable/proxy.svg create mode 100644 resources/OSX/scalable/quickmods.svg create mode 100644 resources/OSX/scalable/refresh.svg create mode 100644 resources/OSX/scalable/resourcepacks.svg create mode 100644 resources/OSX/scalable/screenshots.svg create mode 100644 resources/OSX/scalable/settings.svg create mode 100644 resources/OSX/scalable/status-bad.svg create mode 100644 resources/OSX/scalable/status-good.svg create mode 100644 resources/OSX/scalable/viewfolder.svg create mode 100644 resources/iOS/iOS.qrc create mode 100644 resources/iOS/index.theme create mode 100644 resources/iOS/scalable/about.svg create mode 100644 resources/iOS/scalable/accounts.svg create mode 100644 resources/iOS/scalable/bug.svg create mode 100644 resources/iOS/scalable/centralmods.svg create mode 100644 resources/iOS/scalable/checkupdate.svg create mode 100644 resources/iOS/scalable/copy.svg create mode 100644 resources/iOS/scalable/coremods.svg create mode 100644 resources/iOS/scalable/externaltools.svg create mode 100644 resources/iOS/scalable/instance-settings.svg create mode 100644 resources/iOS/scalable/jarmods.svg create mode 100644 resources/iOS/scalable/java.svg create mode 100644 resources/iOS/scalable/loadermods.svg create mode 100644 resources/iOS/scalable/log.svg create mode 100644 resources/iOS/scalable/minecraft.svg create mode 100644 resources/iOS/scalable/multimc.svg create mode 100644 resources/iOS/scalable/new.svg create mode 100644 resources/iOS/scalable/news.svg create mode 100644 resources/iOS/scalable/notes.svg create mode 100644 resources/iOS/scalable/patreon.svg create mode 100644 resources/iOS/scalable/proxy.svg create mode 100644 resources/iOS/scalable/quickmods.svg create mode 100644 resources/iOS/scalable/refresh.svg create mode 100644 resources/iOS/scalable/resourcepacks.svg create mode 100644 resources/iOS/scalable/screenshots.svg create mode 100644 resources/iOS/scalable/settings.svg create mode 100644 resources/iOS/scalable/status-bad.svg create mode 100644 resources/iOS/scalable/status-good.svg create mode 100644 resources/iOS/scalable/viewfolder.svg create mode 100644 resources/multimc/16x16/instance-settings.png create mode 100644 resources/multimc/22x22/instance-settings.png create mode 100644 resources/multimc/32x32/instance-settings.png create mode 100644 resources/multimc/48x48/instance-settings.png create mode 100644 resources/multimc/64x64/instance-settings.png create mode 100644 resources/pe_blue/scalable/instance-settings.svg create mode 100644 resources/pe_colored/scalable/instance-settings.svg create mode 100644 resources/pe_dark/scalable/instance-settings.svg create mode 100644 resources/pe_light/scalable/instance-settings.svg diff --git a/CMakeLists.txt b/CMakeLists.txt index 88e72353d..70031bd20 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -718,6 +718,8 @@ set(MULTIMC_QRCS resources/pe_light/pe_light.qrc resources/pe_colored/pe_colored.qrc resources/pe_blue/pe_blue.qrc + resources/OSX/OSX.qrc + resources/iOS/iOS.qrc resources/instances/instances.qrc resources/versions/versions.qrc ) diff --git a/gui/MainWindow.ui b/gui/MainWindow.ui index 9fce38c41..e6812353c 100644 --- a/gui/MainWindow.ui +++ b/gui/MainWindow.ui @@ -505,6 +505,8 @@ + + diff --git a/gui/pages/InstanceSettingsPage.h b/gui/pages/InstanceSettingsPage.h index 988862cf1..7d653fab5 100644 --- a/gui/pages/InstanceSettingsPage.h +++ b/gui/pages/InstanceSettingsPage.h @@ -41,7 +41,7 @@ public: } virtual QIcon icon() const override { - return QIcon::fromTheme("settings"); + return QIcon::fromTheme("instance-settings"); } virtual QString id() const override { diff --git a/gui/pages/NotesPage.h b/gui/pages/NotesPage.h index 81338e575..0e9391df3 100644 --- a/gui/pages/NotesPage.h +++ b/gui/pages/NotesPage.h @@ -40,7 +40,10 @@ public: } virtual QIcon icon() const override { - return QIcon::fromTheme("news"); + auto icon = QIcon::fromTheme("notes"); + if(icon.isNull()) + icon = QIcon::fromTheme("news"); + return icon; } virtual QString id() const override { diff --git a/gui/pages/global/AccountListPage.h b/gui/pages/global/AccountListPage.h index fd2c96e3b..cc695614c 100644 --- a/gui/pages/global/AccountListPage.h +++ b/gui/pages/global/AccountListPage.h @@ -42,7 +42,12 @@ public: } QIcon icon() const override { - return QIcon::fromTheme("noaccount"); + auto icon = QIcon::fromTheme("accounts"); + if(icon.isNull()) + { + icon = QIcon::fromTheme("noaccount"); + } + return icon; } QString id() const override { diff --git a/gui/pages/global/MultiMCPage.cpp b/gui/pages/global/MultiMCPage.cpp index 9694a1388..79797aa7f 100644 --- a/gui/pages/global/MultiMCPage.cpp +++ b/gui/pages/global/MultiMCPage.cpp @@ -282,6 +282,12 @@ void MultiMCPage::applySettings() case 4: s->set("IconTheme", "pe_colored"); break; + case 5: + s->set("IconTheme", "OSX"); + break; + case 6: + s->set("IconTheme", "iOS"); + break; case 0: default: s->set("IconTheme", "multimc"); @@ -347,6 +353,14 @@ void MultiMCPage::loadSettings() { ui->themeComboBox->setCurrentIndex(4); } + else if (theme == "OSX") + { + ui->themeComboBox->setCurrentIndex(5); + } + else if (theme == "iOS") + { + ui->themeComboBox->setCurrentIndex(6); + } else { ui->themeComboBox->setCurrentIndex(0); diff --git a/gui/pages/global/MultiMCPage.ui b/gui/pages/global/MultiMCPage.ui index 945924763..308d88423 100644 --- a/gui/pages/global/MultiMCPage.ui +++ b/gui/pages/global/MultiMCPage.ui @@ -354,6 +354,16 @@ Simple (Colored Icons) + + + OSX + + + + + iOS + + diff --git a/main.cpp b/main.cpp index 87a33f918..e9f566eeb 100644 --- a/main.cpp +++ b/main.cpp @@ -39,6 +39,8 @@ int main(int argc, char *argv[]) Q_INIT_RESOURCE(pe_light); Q_INIT_RESOURCE(pe_blue); Q_INIT_RESOURCE(pe_colored); + Q_INIT_RESOURCE(OSX); + Q_INIT_RESOURCE(iOS); switch (app.status()) { diff --git a/resources/OSX/OSX.qrc b/resources/OSX/OSX.qrc new file mode 100644 index 000000000..24e1a0bf8 --- /dev/null +++ b/resources/OSX/OSX.qrc @@ -0,0 +1,34 @@ + + + + index.theme + scalable/about.svg + scalable/accounts.svg + scalable/bug.svg + scalable/centralmods.svg + scalable/checkupdate.svg + scalable/copy.svg + scalable/coremods.svg + scalable/externaltools.svg + scalable/instance-settings.svg + scalable/jarmods.svg + scalable/java.svg + scalable/loadermods.svg + scalable/log.svg + scalable/minecraft.svg + scalable/multimc.svg + scalable/new.svg + scalable/news.svg + scalable/notes.svg + scalable/patreon.svg + scalable/proxy.svg + scalable/quickmods.svg + scalable/refresh.svg + scalable/resourcepacks.svg + scalable/screenshots.svg + scalable/settings.svg + scalable/status-bad.svg + scalable/status-good.svg + scalable/viewfolder.svg + + diff --git a/resources/OSX/index.theme b/resources/OSX/index.theme new file mode 100644 index 000000000..7f90a32ed --- /dev/null +++ b/resources/OSX/index.theme @@ -0,0 +1,11 @@ +[Icon Theme] +Name=OSX +Comment=OSX theme by pexner +Inherits=multimc +Directories=scalable + +[scalable] +Size=48 +Type=Scalable +MinSize=16 +MaxSize=256 diff --git a/resources/OSX/scalable/about.svg b/resources/OSX/scalable/about.svg new file mode 100644 index 000000000..eb87ccf18 --- /dev/null +++ b/resources/OSX/scalable/about.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + diff --git a/resources/OSX/scalable/accounts.svg b/resources/OSX/scalable/accounts.svg new file mode 100644 index 000000000..163bcee01 --- /dev/null +++ b/resources/OSX/scalable/accounts.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/resources/OSX/scalable/bug.svg b/resources/OSX/scalable/bug.svg new file mode 100644 index 000000000..00565bb64 --- /dev/null +++ b/resources/OSX/scalable/bug.svg @@ -0,0 +1,25 @@ + + + + + + + + + diff --git a/resources/OSX/scalable/centralmods.svg b/resources/OSX/scalable/centralmods.svg new file mode 100644 index 000000000..37b821e46 --- /dev/null +++ b/resources/OSX/scalable/centralmods.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/resources/OSX/scalable/checkupdate.svg b/resources/OSX/scalable/checkupdate.svg new file mode 100644 index 000000000..30cec51f1 --- /dev/null +++ b/resources/OSX/scalable/checkupdate.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + diff --git a/resources/OSX/scalable/copy.svg b/resources/OSX/scalable/copy.svg new file mode 100644 index 000000000..7382d6e26 --- /dev/null +++ b/resources/OSX/scalable/copy.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/resources/OSX/scalable/coremods.svg b/resources/OSX/scalable/coremods.svg new file mode 100644 index 000000000..b0df60529 --- /dev/null +++ b/resources/OSX/scalable/coremods.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + diff --git a/resources/OSX/scalable/externaltools.svg b/resources/OSX/scalable/externaltools.svg new file mode 100644 index 000000000..a2b7488e1 --- /dev/null +++ b/resources/OSX/scalable/externaltools.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/resources/OSX/scalable/instance-settings.svg b/resources/OSX/scalable/instance-settings.svg new file mode 100644 index 000000000..394877f81 --- /dev/null +++ b/resources/OSX/scalable/instance-settings.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + diff --git a/resources/OSX/scalable/jarmods.svg b/resources/OSX/scalable/jarmods.svg new file mode 100644 index 000000000..213ec8334 --- /dev/null +++ b/resources/OSX/scalable/jarmods.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/OSX/scalable/java.svg b/resources/OSX/scalable/java.svg new file mode 100644 index 000000000..e1aee1592 --- /dev/null +++ b/resources/OSX/scalable/java.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/OSX/scalable/loadermods.svg b/resources/OSX/scalable/loadermods.svg new file mode 100644 index 000000000..76951ebd7 --- /dev/null +++ b/resources/OSX/scalable/loadermods.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/resources/OSX/scalable/log.svg b/resources/OSX/scalable/log.svg new file mode 100644 index 000000000..0ac45d54f --- /dev/null +++ b/resources/OSX/scalable/log.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/resources/OSX/scalable/minecraft.svg b/resources/OSX/scalable/minecraft.svg new file mode 100644 index 000000000..86c915bc9 --- /dev/null +++ b/resources/OSX/scalable/minecraft.svg @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git a/resources/OSX/scalable/multimc.svg b/resources/OSX/scalable/multimc.svg new file mode 100644 index 000000000..caad21b51 --- /dev/null +++ b/resources/OSX/scalable/multimc.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/resources/OSX/scalable/new.svg b/resources/OSX/scalable/new.svg new file mode 100644 index 000000000..79ee87ba9 --- /dev/null +++ b/resources/OSX/scalable/new.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/resources/OSX/scalable/news.svg b/resources/OSX/scalable/news.svg new file mode 100644 index 000000000..bd9a3f0b2 --- /dev/null +++ b/resources/OSX/scalable/news.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/resources/OSX/scalable/notes.svg b/resources/OSX/scalable/notes.svg new file mode 100644 index 000000000..c2e95cfd9 --- /dev/null +++ b/resources/OSX/scalable/notes.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + diff --git a/resources/OSX/scalable/patreon.svg b/resources/OSX/scalable/patreon.svg new file mode 100644 index 000000000..4f0da3e56 --- /dev/null +++ b/resources/OSX/scalable/patreon.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/resources/OSX/scalable/proxy.svg b/resources/OSX/scalable/proxy.svg new file mode 100644 index 000000000..99acaa2b7 --- /dev/null +++ b/resources/OSX/scalable/proxy.svg @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/resources/OSX/scalable/quickmods.svg b/resources/OSX/scalable/quickmods.svg new file mode 100644 index 000000000..e0aaad876 --- /dev/null +++ b/resources/OSX/scalable/quickmods.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + diff --git a/resources/OSX/scalable/refresh.svg b/resources/OSX/scalable/refresh.svg new file mode 100644 index 000000000..c97489c1a --- /dev/null +++ b/resources/OSX/scalable/refresh.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/resources/OSX/scalable/resourcepacks.svg b/resources/OSX/scalable/resourcepacks.svg new file mode 100644 index 000000000..c85d4e3ce --- /dev/null +++ b/resources/OSX/scalable/resourcepacks.svg @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/resources/OSX/scalable/screenshots.svg b/resources/OSX/scalable/screenshots.svg new file mode 100644 index 000000000..12df0c883 --- /dev/null +++ b/resources/OSX/scalable/screenshots.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + diff --git a/resources/OSX/scalable/settings.svg b/resources/OSX/scalable/settings.svg new file mode 100644 index 000000000..dcdd9f1c2 --- /dev/null +++ b/resources/OSX/scalable/settings.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + diff --git a/resources/OSX/scalable/status-bad.svg b/resources/OSX/scalable/status-bad.svg new file mode 100644 index 000000000..3449fea37 --- /dev/null +++ b/resources/OSX/scalable/status-bad.svg @@ -0,0 +1,103 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/resources/OSX/scalable/status-good.svg b/resources/OSX/scalable/status-good.svg new file mode 100644 index 000000000..a5bf5c0b3 --- /dev/null +++ b/resources/OSX/scalable/status-good.svg @@ -0,0 +1,114 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/OSX/scalable/viewfolder.svg b/resources/OSX/scalable/viewfolder.svg new file mode 100644 index 000000000..682c72c7d --- /dev/null +++ b/resources/OSX/scalable/viewfolder.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/resources/iOS/iOS.qrc b/resources/iOS/iOS.qrc new file mode 100644 index 000000000..6bfcef6d7 --- /dev/null +++ b/resources/iOS/iOS.qrc @@ -0,0 +1,34 @@ + + + + index.theme + scalable/about.svg + scalable/accounts.svg + scalable/bug.svg + scalable/centralmods.svg + scalable/checkupdate.svg + scalable/copy.svg + scalable/coremods.svg + scalable/externaltools.svg + scalable/instance-settings.svg + scalable/jarmods.svg + scalable/java.svg + scalable/loadermods.svg + scalable/log.svg + scalable/minecraft.svg + scalable/multimc.svg + scalable/new.svg + scalable/news.svg + scalable/notes.svg + scalable/patreon.svg + scalable/proxy.svg + scalable/quickmods.svg + scalable/refresh.svg + scalable/resourcepacks.svg + scalable/screenshots.svg + scalable/settings.svg + scalable/status-bad.svg + scalable/status-good.svg + scalable/viewfolder.svg + + diff --git a/resources/iOS/index.theme b/resources/iOS/index.theme new file mode 100644 index 000000000..b0f2f6bac --- /dev/null +++ b/resources/iOS/index.theme @@ -0,0 +1,11 @@ +[Icon Theme] +Name=iOS +Comment=iOS theme by pexner +Inherits=multimc +Directories=scalable + +[scalable] +Size=48 +Type=Scalable +MinSize=16 +MaxSize=256 diff --git a/resources/iOS/scalable/about.svg b/resources/iOS/scalable/about.svg new file mode 100644 index 000000000..c4d354710 --- /dev/null +++ b/resources/iOS/scalable/about.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + diff --git a/resources/iOS/scalable/accounts.svg b/resources/iOS/scalable/accounts.svg new file mode 100644 index 000000000..65f76c3f4 --- /dev/null +++ b/resources/iOS/scalable/accounts.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/resources/iOS/scalable/bug.svg b/resources/iOS/scalable/bug.svg new file mode 100644 index 000000000..fc4a3d690 --- /dev/null +++ b/resources/iOS/scalable/bug.svg @@ -0,0 +1,22 @@ + + + + + + diff --git a/resources/iOS/scalable/centralmods.svg b/resources/iOS/scalable/centralmods.svg new file mode 100644 index 000000000..1b4c47419 --- /dev/null +++ b/resources/iOS/scalable/centralmods.svg @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/resources/iOS/scalable/checkupdate.svg b/resources/iOS/scalable/checkupdate.svg new file mode 100644 index 000000000..9fc983d14 --- /dev/null +++ b/resources/iOS/scalable/checkupdate.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/resources/iOS/scalable/copy.svg b/resources/iOS/scalable/copy.svg new file mode 100644 index 000000000..3ccc2f065 --- /dev/null +++ b/resources/iOS/scalable/copy.svg @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/resources/iOS/scalable/coremods.svg b/resources/iOS/scalable/coremods.svg new file mode 100644 index 000000000..ea47872c3 --- /dev/null +++ b/resources/iOS/scalable/coremods.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + diff --git a/resources/iOS/scalable/externaltools.svg b/resources/iOS/scalable/externaltools.svg new file mode 100644 index 000000000..16e9fa488 --- /dev/null +++ b/resources/iOS/scalable/externaltools.svg @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/resources/iOS/scalable/instance-settings.svg b/resources/iOS/scalable/instance-settings.svg new file mode 100644 index 000000000..95b8a5081 --- /dev/null +++ b/resources/iOS/scalable/instance-settings.svg @@ -0,0 +1,19 @@ + + + + + + + + + + diff --git a/resources/iOS/scalable/jarmods.svg b/resources/iOS/scalable/jarmods.svg new file mode 100644 index 000000000..c4c5ca8c9 --- /dev/null +++ b/resources/iOS/scalable/jarmods.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/iOS/scalable/java.svg b/resources/iOS/scalable/java.svg new file mode 100644 index 000000000..8d7c27987 --- /dev/null +++ b/resources/iOS/scalable/java.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/iOS/scalable/loadermods.svg b/resources/iOS/scalable/loadermods.svg new file mode 100644 index 000000000..010efa11f --- /dev/null +++ b/resources/iOS/scalable/loadermods.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/resources/iOS/scalable/log.svg b/resources/iOS/scalable/log.svg new file mode 100644 index 000000000..5d1c7f061 --- /dev/null +++ b/resources/iOS/scalable/log.svg @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/resources/iOS/scalable/minecraft.svg b/resources/iOS/scalable/minecraft.svg new file mode 100644 index 000000000..069b4e710 --- /dev/null +++ b/resources/iOS/scalable/minecraft.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/resources/iOS/scalable/multimc.svg b/resources/iOS/scalable/multimc.svg new file mode 100644 index 000000000..bc8194335 --- /dev/null +++ b/resources/iOS/scalable/multimc.svg @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/resources/iOS/scalable/new.svg b/resources/iOS/scalable/new.svg new file mode 100644 index 000000000..9f221580f --- /dev/null +++ b/resources/iOS/scalable/new.svg @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/resources/iOS/scalable/news.svg b/resources/iOS/scalable/news.svg new file mode 100644 index 000000000..79b626261 --- /dev/null +++ b/resources/iOS/scalable/news.svg @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/resources/iOS/scalable/notes.svg b/resources/iOS/scalable/notes.svg new file mode 100644 index 000000000..b42ebeef5 --- /dev/null +++ b/resources/iOS/scalable/notes.svg @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/resources/iOS/scalable/patreon.svg b/resources/iOS/scalable/patreon.svg new file mode 100644 index 000000000..1bd06f4ae --- /dev/null +++ b/resources/iOS/scalable/patreon.svg @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/resources/iOS/scalable/proxy.svg b/resources/iOS/scalable/proxy.svg new file mode 100644 index 000000000..f65522817 --- /dev/null +++ b/resources/iOS/scalable/proxy.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/resources/iOS/scalable/quickmods.svg b/resources/iOS/scalable/quickmods.svg new file mode 100644 index 000000000..cd63ba718 --- /dev/null +++ b/resources/iOS/scalable/quickmods.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/resources/iOS/scalable/refresh.svg b/resources/iOS/scalable/refresh.svg new file mode 100644 index 000000000..297b79c9b --- /dev/null +++ b/resources/iOS/scalable/refresh.svg @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/resources/iOS/scalable/resourcepacks.svg b/resources/iOS/scalable/resourcepacks.svg new file mode 100644 index 000000000..5b359d63b --- /dev/null +++ b/resources/iOS/scalable/resourcepacks.svg @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/resources/iOS/scalable/screenshots.svg b/resources/iOS/scalable/screenshots.svg new file mode 100644 index 000000000..39ce7b827 --- /dev/null +++ b/resources/iOS/scalable/screenshots.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/resources/iOS/scalable/settings.svg b/resources/iOS/scalable/settings.svg new file mode 100644 index 000000000..95b8a5081 --- /dev/null +++ b/resources/iOS/scalable/settings.svg @@ -0,0 +1,19 @@ + + + + + + + + + + diff --git a/resources/iOS/scalable/status-bad.svg b/resources/iOS/scalable/status-bad.svg new file mode 100644 index 000000000..3449fea37 --- /dev/null +++ b/resources/iOS/scalable/status-bad.svg @@ -0,0 +1,103 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/resources/iOS/scalable/status-good.svg b/resources/iOS/scalable/status-good.svg new file mode 100644 index 000000000..a5bf5c0b3 --- /dev/null +++ b/resources/iOS/scalable/status-good.svg @@ -0,0 +1,114 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/iOS/scalable/viewfolder.svg b/resources/iOS/scalable/viewfolder.svg new file mode 100644 index 000000000..0ae0c0b52 --- /dev/null +++ b/resources/iOS/scalable/viewfolder.svg @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git a/resources/multimc/16x16/instance-settings.png b/resources/multimc/16x16/instance-settings.png new file mode 100644 index 0000000000000000000000000000000000000000..b916cd2450cfe3e19d5933734cee12a3e1a725d3 GIT binary patch literal 1410 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^zbpD<_bdda}R zz?S6g?!o{DKb?2iGcYi47I;J!GcYiCfU(=jY&(!(S%G6Z$Sg39IkxsN0|RrFr;B5V z#cA6~wH|X=WscjQKW+QH&d%E3#`fv6OFOOoZPVHEw4yyZOl4g|1Ximos+S6E-135z zhwblniLIin*@Ax)kIeGa&raqn_U<*?mN-%0+SY3B^Otj%KmT0hU*A&qka@rUpSt+E z`kGc|_FXrot&?8+vEuXdj}>d~tn0AI;XA2z)75j5t7njk<0RGfueR3~J$v)x!iAmf zjJ{=7wbqQwcFMi9y>xwvM(UxT>)$tAZ_kT-AtvFfvF3^8oo6aR@w??U!bMW!;-Y?) zt1HZp-#^t$S479Vuba;kJl*bMfZ&oy#&e^`=JF zs|%gRFR*CW4(NE)E|~9+FQMVf5bkIIo67MRU8s+yzy?)O?>R z?vmDiabv1-YHQ_cRiCBN4rXDVdh0xz6sn%?-CS%32_ zpOX8;bMEg+OQar5zimEw(}OA{fjh=)UfwFt&R)G-$9u+^=bPJj5*W%nYgWB}@UP$c zmQtQtoU>^7$QG^v@X-eYJX@)^kL5_w$rBdPOTXFJ8TT{r3#dzx%AN8D$D_ zbDueTcE)63;h(3&_5RQFI5Y1_No{G?w}2y7Pq&M%b}baj2%3{;lPB*GYw_p6%XjbQ zt&CXnGs?5`zp+3Z)2y;rs}Cs~{5D+3EF6GL4Cb1MS_ zm30pvz%+nVT0wL%7#SEE=o%R58X1Hb8Cw~dSs6h!)cme5MA49&pOTqY3DsbzYiJl^ zU}-)F|_~;wy8R}af+#&(95n>quKUK?5zrw)4APKTDI6tkVJh3R1!7(L2DOJHU zH!(dmC^a#qvhZZ84X99rC@L*VPG#^bEz8eIT;p&0k%5811R)V08sr0Wa(Q{VUS@KB ro^Ez#UbgTe~DWM4fc9>A( literal 0 HcmV?d00001 diff --git a/resources/multimc/22x22/instance-settings.png b/resources/multimc/22x22/instance-settings.png new file mode 100644 index 0000000000000000000000000000000000000000..daf56aad3dff7b7dfe8232f5e9e58c4d4ed9e078 GIT binary patch literal 1964 zcmeAS@N?(olHy`uVBq!ia0y~yU=Rag4mJh`h9g^YtQi;>SkfJR9T^zbpD<_bdda}R zz?S6g?!o{DKb?2iGcYi47I;J!GcYiCfU(=jY&(!(S%G6Z$Sg3vbM$2d0|V<4PZ!4! zi_=@DM&^XHi?;3Gecn#)nDq?98wc5Pa>AI``Z})>(c(DhrxAE*kBdiW5bM^Ukf(~h zQlVY5_J!Pa>3(I>y2Xq0MD7A5hsZ@LUBXV>e6!7Mnr+wFCifq|Zd{!H?oRb@2PsL_ zp!rox{y+72etF`#`Y+slk3am^Sh%zDY%TBYZG}7U+?JM>{vH|@wxh;w{*$uZqW!lQ zubAZ>Ch8j~5*ii~8k`b2RWwwXrQFm1{KLn4_qxZkbTMqo<^JBtdssy%)8@miZ2SB6 z%g-0QcH@y@-5hX4Ct}93)`=Tucw5g{=5X)Chp&BE*S2i2xpljG3;PaEh2=pfe;@d{ z=irwwAy-U3&#|v=eO~uLv#8W|oBNT%odqVWDS`s;-}sXdO>3r#cmJHt z5TqgECbCptg@dVU5$kR1ZEv-?r++%OlBMh|*PK~KD^~7U{>o@Y1WTfP1=Ekun%mYE z@9t@m>~LFLyDZY9n|t9R4aL)1Z47P7>E&PhsCB zCjZjV4a-uMt@nSen11_hm6XG}_3?j~c0ViH`SIhA{qD@FjnjUq*15TDR`~50dhju; zFYDo!k1G7v&wPk@-W;>j?&QP6`=$KUCQoO4GI3(#dWLlMW5`tuV*jOXDQ zY*mawRvlU|B)?tr+f={y!1uVSxvN~Y@+?5FC6)JT=dCm+UabGZCUVa~}W zZ`TVhGLgrWU)bEAx6IVyyuaVlonqY=J|D_rS`}OS@6UZ_2dBK8do0s9%LE1XeJHZa zzbDtPo|)PAK>zwh+c=s2V?y<_#IG$mdG<)Xz z(H-Hm%F2d+b$8_Ym#fV^r?fLV|h71oC7O;vXR{oVp zYy7lsxu7zy_w8HP=gHOnK09@Gme=h@GCmG=B_bxrG*k3re5r^$+jnravC^a*vZex921 z{QJz9caPq@QC%KUBEYA#;K78}S-;wL%`g4`<7sX8^s8K*+|OtH`W$H2;}`Vf-{~vm zIqqdLUQVJFe-*j5Ib00Xyd@-Qd-ls+$Jd9w)vNnuEWadaO_i8(OJKu-owdiE>nmSf z$hZ2tO2_#!hwtRfO1kJ2+T2nrrP;?H_uFhLf856VdP{*t$11IkCI_|I$$5IN zCQ_xpe(5bgH^OX_T|H3>;9;ZVL3=FCzt`Q~4MX8A;sk$kNC8-QX1_qY8hK9O^rXhxA zRt6SUCPumj=2ivj0_A7bPbGjjSNDJjIE5!tc(mH8ft#m7oup$ z%}>cptAuJW)HO5=F|f2Uw6HRPYB*V5cAkNO!4%{qpUmXcyy8@bjFOT9D}8;iU72O6 z$@#gt`FX{9`9-z&($v|%FjwoE-BW}18dhWv)ux!j~P5&{an^LB{Ts5 Dp|@rs literal 0 HcmV?d00001 diff --git a/resources/multimc/32x32/instance-settings.png b/resources/multimc/32x32/instance-settings.png new file mode 100644 index 0000000000000000000000000000000000000000..a9c0817c931c2251632083698b571da359b12fd4 GIT binary patch literal 2983 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 literal 0 HcmV?d00001 diff --git a/resources/multimc/48x48/instance-settings.png b/resources/multimc/48x48/instance-settings.png new file mode 100644 index 0000000000000000000000000000000000000000..6674eb236d40a571d619059b3e16e5c0b56282fb GIT binary patch literal 4797 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 Zte*$gu3u)m1vEg#;OXk;vd$@?2>|(L)Gh!3 literal 0 HcmV?d00001 diff --git a/resources/multimc/64x64/instance-settings.png b/resources/multimc/64x64/instance-settings.png new file mode 100644 index 0000000000000000000000000000000000000000..e3ff58faf7b887d202e7d40422887680a6db9a9d GIT binary patch literal 7125 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 literal 0 HcmV?d00001 diff --git a/resources/multimc/multimc.qrc b/resources/multimc/multimc.qrc index 9be22c7bf..1713c50ff 100644 --- a/resources/multimc/multimc.qrc +++ b/resources/multimc/multimc.qrc @@ -163,6 +163,13 @@ 48x48/settings.png 64x64/settings.png + + 16x16/instance-settings.png + 22x22/instance-settings.png + 32x32/instance-settings.png + 48x48/instance-settings.png + 64x64/instance-settings.png + scalable/viewfolder.svg 16x16/viewfolder.png diff --git a/resources/pe_blue/pe_blue.qrc b/resources/pe_blue/pe_blue.qrc index bfd77f635..5fdfd3176 100644 --- a/resources/pe_blue/pe_blue.qrc +++ b/resources/pe_blue/pe_blue.qrc @@ -10,6 +10,7 @@ scalable/copy.svg scalable/coremods.svg scalable/externaltools.svg + scalable/instance-settings.svg scalable/jarmods.svg scalable/java.svg scalable/loadermods.svg diff --git a/resources/pe_blue/scalable/instance-settings.svg b/resources/pe_blue/scalable/instance-settings.svg new file mode 100644 index 000000000..43f0b2f29 --- /dev/null +++ b/resources/pe_blue/scalable/instance-settings.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_colored/pe_colored.qrc b/resources/pe_colored/pe_colored.qrc index c1b7d3597..f89cf63fc 100644 --- a/resources/pe_colored/pe_colored.qrc +++ b/resources/pe_colored/pe_colored.qrc @@ -10,6 +10,7 @@ scalable/copy.svg scalable/coremods.svg scalable/externaltools.svg + scalable/instance-settings.svg scalable/jarmods.svg scalable/java.svg scalable/loadermods.svg diff --git a/resources/pe_colored/scalable/instance-settings.svg b/resources/pe_colored/scalable/instance-settings.svg new file mode 100644 index 000000000..72032f8a3 --- /dev/null +++ b/resources/pe_colored/scalable/instance-settings.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/pe_dark.qrc b/resources/pe_dark/pe_dark.qrc index 61151a738..d5c621bca 100644 --- a/resources/pe_dark/pe_dark.qrc +++ b/resources/pe_dark/pe_dark.qrc @@ -10,6 +10,7 @@ scalable/copy.svg scalable/coremods.svg scalable/externaltools.svg + scalable/instance-settings.svg scalable/jarmods.svg scalable/java.svg scalable/loadermods.svg diff --git a/resources/pe_dark/scalable/instance-settings.svg b/resources/pe_dark/scalable/instance-settings.svg new file mode 100644 index 000000000..c9f701e70 --- /dev/null +++ b/resources/pe_dark/scalable/instance-settings.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/pe_light.qrc b/resources/pe_light/pe_light.qrc index 1c8eba520..11d74c8f1 100644 --- a/resources/pe_light/pe_light.qrc +++ b/resources/pe_light/pe_light.qrc @@ -10,6 +10,7 @@ scalable/copy.svg scalable/coremods.svg scalable/externaltools.svg + scalable/instance-settings.svg scalable/jarmods.svg scalable/java.svg scalable/loadermods.svg diff --git a/resources/pe_light/scalable/instance-settings.svg b/resources/pe_light/scalable/instance-settings.svg new file mode 100644 index 000000000..83b92a526 --- /dev/null +++ b/resources/pe_light/scalable/instance-settings.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +