diff --git a/CMakeLists.txt b/CMakeLists.txt index fc7c521b..88e72353 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -716,6 +716,8 @@ set(MULTIMC_QRCS resources/multimc/multimc.qrc resources/pe_dark/pe_dark.qrc resources/pe_light/pe_light.qrc + resources/pe_colored/pe_colored.qrc + resources/pe_blue/pe_blue.qrc resources/instances/instances.qrc resources/versions/versions.qrc ) diff --git a/gui/MainWindow.ui b/gui/MainWindow.ui index a3edf6bd..9fce38c4 100644 --- a/gui/MainWindow.ui +++ b/gui/MainWindow.ui @@ -501,6 +501,8 @@ + + diff --git a/gui/pages/LegacyJarModPage.h b/gui/pages/LegacyJarModPage.h index 1a72abf3..90c7f228 100644 --- a/gui/pages/LegacyJarModPage.h +++ b/gui/pages/LegacyJarModPage.h @@ -41,7 +41,7 @@ public: } virtual QIcon icon() const { - return QIcon::fromTheme("plugin-red"); + return QIcon::fromTheme("jarmods"); } virtual QString id() const { diff --git a/gui/pages/global/ExternalToolsPage.h b/gui/pages/global/ExternalToolsPage.h index 027e164e..1188f22b 100644 --- a/gui/pages/global/ExternalToolsPage.h +++ b/gui/pages/global/ExternalToolsPage.h @@ -37,7 +37,7 @@ public: } QIcon icon() const override { - return QIcon::fromTheme("plugin-blue"); + return QIcon::fromTheme("externaltools"); } QString id() const override { diff --git a/gui/pages/global/MultiMCPage.cpp b/gui/pages/global/MultiMCPage.cpp index 73a5ff20..9694a138 100644 --- a/gui/pages/global/MultiMCPage.cpp +++ b/gui/pages/global/MultiMCPage.cpp @@ -276,6 +276,12 @@ void MultiMCPage::applySettings() case 2: s->set("IconTheme", "pe_light"); break; + case 3: + s->set("IconTheme", "pe_blue"); + break; + case 4: + s->set("IconTheme", "pe_colored"); + break; case 0: default: s->set("IconTheme", "multimc"); @@ -333,6 +339,14 @@ void MultiMCPage::loadSettings() { ui->themeComboBox->setCurrentIndex(2); } + else if (theme == "pe_blue") + { + ui->themeComboBox->setCurrentIndex(3); + } + else if (theme == "pe_colored") + { + ui->themeComboBox->setCurrentIndex(4); + } else { ui->themeComboBox->setCurrentIndex(0); diff --git a/gui/pages/global/MultiMCPage.ui b/gui/pages/global/MultiMCPage.ui index f456ebc1..94592476 100644 --- a/gui/pages/global/MultiMCPage.ui +++ b/gui/pages/global/MultiMCPage.ui @@ -336,7 +336,7 @@ - Simple + Simple (Dark Icons) @@ -344,6 +344,16 @@ Simple (Light Icons) + + + Simple (Blue Icons) + + + + + Simple (Colored Icons) + + diff --git a/gui/widgets/IconLabel.cpp b/gui/widgets/IconLabel.cpp index 773f0b99..86c8a431 100644 --- a/gui/widgets/IconLabel.cpp +++ b/gui/widgets/IconLabel.cpp @@ -26,5 +26,18 @@ void IconLabel::setIcon(QIcon icon) void IconLabel::paintEvent(QPaintEvent *) { QPainter p(this); - m_icon.paint(&p, contentsRect()); + QRect rect = contentsRect(); + int width = rect.width(); + int height = rect.height(); + if(width < height) + { + rect.setHeight(width); + rect.translate(0, (height - width) / 2); + } + else if (width > height) + { + rect.setWidth(height); + rect.translate((width - height) / 2, 0); + } + m_icon.paint(&p, rect); } diff --git a/logic/LegacyInstance.cpp b/logic/LegacyInstance.cpp index eede7070..47fc3eb9 100644 --- a/logic/LegacyInstance.cpp +++ b/logic/LegacyInstance.cpp @@ -53,9 +53,9 @@ QList LegacyInstance::getPages() // FIXME: actually implement the legacy instance upgrade, then enable this. //values.append(new LegacyUpgradePage(this)); values.append(new LegacyJarModPage(this)); - values.append(new ModFolderPage(this, loaderModList(), "mods", "plugin-blue", tr("Loader mods"), + values.append(new ModFolderPage(this, loaderModList(), "mods", "loadermods", tr("Loader mods"), "Loader-mods")); - values.append(new ModFolderPage(this, coreModList(), "coremods", "plugin-green", tr("Core mods"), + values.append(new ModFolderPage(this, coreModList(), "coremods", "coremods", tr("Core mods"), "Core-mods")); values.append(new TexturePackPage(this)); values.append(new NotesPage(this)); diff --git a/logic/OneSixInstance.cpp b/logic/OneSixInstance.cpp index 00d8a9db..fcfe4ac3 100644 --- a/logic/OneSixInstance.cpp +++ b/logic/OneSixInstance.cpp @@ -64,9 +64,9 @@ QList OneSixInstance::getPages() { QList values; values.append(new VersionPage(this)); - values.append(new ModFolderPage(this, loaderModList(), "mods", "plugin-blue", + values.append(new ModFolderPage(this, loaderModList(), "mods", "loadermods", tr("Loader mods"), "Loader-mods")); - values.append(new CoreModFolderPage(this, coreModList(), "coremods", "plugin-green", + values.append(new CoreModFolderPage(this, coreModList(), "coremods", "coremods", tr("Core mods"), "Core-mods")); values.append(new ResourcePackPage(this)); values.append(new TexturePackPage(this)); diff --git a/main.cpp b/main.cpp index 988649e5..87a33f91 100644 --- a/main.cpp +++ b/main.cpp @@ -37,6 +37,8 @@ int main(int argc, char *argv[]) #endif Q_INIT_RESOURCE(pe_dark); Q_INIT_RESOURCE(pe_light); + Q_INIT_RESOURCE(pe_blue); + Q_INIT_RESOURCE(pe_colored); switch (app.status()) { diff --git a/resources/multimc/16x16/plugin-green.png b/resources/multimc/16x16/coremods.png similarity index 100% rename from resources/multimc/16x16/plugin-green.png rename to resources/multimc/16x16/coremods.png diff --git a/resources/multimc/16x16/plugin-red.png b/resources/multimc/16x16/jarmods.png similarity index 100% rename from resources/multimc/16x16/plugin-red.png rename to resources/multimc/16x16/jarmods.png diff --git a/resources/multimc/16x16/plugin-blue.png b/resources/multimc/16x16/loadermods.png similarity index 100% rename from resources/multimc/16x16/plugin-blue.png rename to resources/multimc/16x16/loadermods.png diff --git a/resources/multimc/24x24/plugin-green.png b/resources/multimc/24x24/coremods.png similarity index 100% rename from resources/multimc/24x24/plugin-green.png rename to resources/multimc/24x24/coremods.png diff --git a/resources/multimc/24x24/plugin-red.png b/resources/multimc/24x24/jarmods.png similarity index 100% rename from resources/multimc/24x24/plugin-red.png rename to resources/multimc/24x24/jarmods.png diff --git a/resources/multimc/24x24/plugin-blue.png b/resources/multimc/24x24/loadermods.png similarity index 100% rename from resources/multimc/24x24/plugin-blue.png rename to resources/multimc/24x24/loadermods.png diff --git a/resources/multimc/32x32/plugin-green.png b/resources/multimc/32x32/coremods.png similarity index 100% rename from resources/multimc/32x32/plugin-green.png rename to resources/multimc/32x32/coremods.png diff --git a/resources/multimc/32x32/plugin-red.png b/resources/multimc/32x32/jarmods.png similarity index 100% rename from resources/multimc/32x32/plugin-red.png rename to resources/multimc/32x32/jarmods.png diff --git a/resources/multimc/32x32/plugin-blue.png b/resources/multimc/32x32/loadermods.png similarity index 100% rename from resources/multimc/32x32/plugin-blue.png rename to resources/multimc/32x32/loadermods.png diff --git a/resources/multimc/64x64/plugin-green.png b/resources/multimc/64x64/coremods.png similarity index 100% rename from resources/multimc/64x64/plugin-green.png rename to resources/multimc/64x64/coremods.png diff --git a/resources/multimc/64x64/plugin-red.png b/resources/multimc/64x64/jarmods.png similarity index 100% rename from resources/multimc/64x64/plugin-red.png rename to resources/multimc/64x64/jarmods.png diff --git a/resources/multimc/64x64/plugin-blue.png b/resources/multimc/64x64/loadermods.png similarity index 100% rename from resources/multimc/64x64/plugin-blue.png rename to resources/multimc/64x64/loadermods.png diff --git a/resources/multimc/multimc.qrc b/resources/multimc/multimc.qrc index b0a1b3ab..9be22c7b 100644 --- a/resources/multimc/multimc.qrc +++ b/resources/multimc/multimc.qrc @@ -3,7 +3,7 @@ index.theme - scalable/apps/multimc.svg + scalable/multimc.svg scalable/console.svg @@ -126,22 +126,22 @@ 64x64/status-good.png - 16x16/plugin-blue.png - 24x24/plugin-blue.png - 32x32/plugin-blue.png - 64x64/plugin-blue.png + 16x16/loadermods.png + 24x24/loadermods.png + 32x32/loadermods.png + 64x64/loadermods.png - 16x16/plugin-red.png - 24x24/plugin-red.png - 32x32/plugin-red.png - 64x64/plugin-red.png + 16x16/jarmods.png + 24x24/jarmods.png + 32x32/jarmods.png + 64x64/jarmods.png - 16x16/plugin-green.png - 24x24/plugin-green.png - 32x32/plugin-green.png - 64x64/plugin-green.png + 16x16/coremods.png + 24x24/coremods.png + 32x32/coremods.png + 64x64/coremods.png 16x16/resourcepacks.png diff --git a/resources/multimc/scalable/apps/multimc.svg b/resources/multimc/scalable/multimc.svg similarity index 100% rename from resources/multimc/scalable/apps/multimc.svg rename to resources/multimc/scalable/multimc.svg diff --git a/resources/pe_blue/index.theme b/resources/pe_blue/index.theme new file mode 100644 index 00000000..c9e0d93a --- /dev/null +++ b/resources/pe_blue/index.theme @@ -0,0 +1,11 @@ +[Icon Theme] +Name=pe_blue +Comment=Icons by pexner (blue) +Inherits=multimc +Directories=scalable + +[scalable] +Size=48 +Type=Scalable +MinSize=16 +MaxSize=256 diff --git a/resources/pe_blue/pe_blue.qrc b/resources/pe_blue/pe_blue.qrc new file mode 100644 index 00000000..bfd77f63 --- /dev/null +++ b/resources/pe_blue/pe_blue.qrc @@ -0,0 +1,33 @@ + + + + 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/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/pe_blue/scalable/about.svg b/resources/pe_blue/scalable/about.svg new file mode 100644 index 00000000..56e7fc9b --- /dev/null +++ b/resources/pe_blue/scalable/about.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/accounts.svg b/resources/pe_blue/scalable/accounts.svg new file mode 100644 index 00000000..77e3f45a --- /dev/null +++ b/resources/pe_blue/scalable/accounts.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/bug.svg b/resources/pe_blue/scalable/bug.svg new file mode 100644 index 00000000..75a19e29 --- /dev/null +++ b/resources/pe_blue/scalable/bug.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/centralmods.svg b/resources/pe_blue/scalable/centralmods.svg new file mode 100644 index 00000000..cda39b1f --- /dev/null +++ b/resources/pe_blue/scalable/centralmods.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/checkupdate.svg b/resources/pe_blue/scalable/checkupdate.svg new file mode 100644 index 00000000..a7d9ee81 --- /dev/null +++ b/resources/pe_blue/scalable/checkupdate.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/copy.svg b/resources/pe_blue/scalable/copy.svg new file mode 100644 index 00000000..7ce014ed --- /dev/null +++ b/resources/pe_blue/scalable/copy.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/coremods.svg b/resources/pe_blue/scalable/coremods.svg new file mode 100644 index 00000000..4cc030d0 --- /dev/null +++ b/resources/pe_blue/scalable/coremods.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/externaltools.svg b/resources/pe_blue/scalable/externaltools.svg new file mode 100644 index 00000000..45b73496 --- /dev/null +++ b/resources/pe_blue/scalable/externaltools.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/jarmods.svg b/resources/pe_blue/scalable/jarmods.svg new file mode 100644 index 00000000..bb75f4b1 --- /dev/null +++ b/resources/pe_blue/scalable/jarmods.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/java.svg b/resources/pe_blue/scalable/java.svg new file mode 100644 index 00000000..5e369203 --- /dev/null +++ b/resources/pe_blue/scalable/java.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/loadermods.svg b/resources/pe_blue/scalable/loadermods.svg new file mode 100644 index 00000000..a54dc211 --- /dev/null +++ b/resources/pe_blue/scalable/loadermods.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/log.svg b/resources/pe_blue/scalable/log.svg new file mode 100644 index 00000000..89d373f4 --- /dev/null +++ b/resources/pe_blue/scalable/log.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/minecraft.svg b/resources/pe_blue/scalable/minecraft.svg new file mode 100644 index 00000000..2fe6a028 --- /dev/null +++ b/resources/pe_blue/scalable/minecraft.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/multimc.svg b/resources/pe_blue/scalable/multimc.svg new file mode 100644 index 00000000..820c0b53 --- /dev/null +++ b/resources/pe_blue/scalable/multimc.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/new.svg b/resources/pe_blue/scalable/new.svg new file mode 100644 index 00000000..dcc8579e --- /dev/null +++ b/resources/pe_blue/scalable/new.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/news.svg b/resources/pe_blue/scalable/news.svg new file mode 100644 index 00000000..3ca3be37 --- /dev/null +++ b/resources/pe_blue/scalable/news.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/notes.svg b/resources/pe_blue/scalable/notes.svg new file mode 100644 index 00000000..d0991259 --- /dev/null +++ b/resources/pe_blue/scalable/notes.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/patreon.svg b/resources/pe_blue/scalable/patreon.svg new file mode 100644 index 00000000..644b9b41 --- /dev/null +++ b/resources/pe_blue/scalable/patreon.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/proxy.svg b/resources/pe_blue/scalable/proxy.svg new file mode 100644 index 00000000..8266f9b8 --- /dev/null +++ b/resources/pe_blue/scalable/proxy.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/quickmods.svg b/resources/pe_blue/scalable/quickmods.svg new file mode 100644 index 00000000..8b577376 --- /dev/null +++ b/resources/pe_blue/scalable/quickmods.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/refresh.svg b/resources/pe_blue/scalable/refresh.svg new file mode 100644 index 00000000..a3d2281d --- /dev/null +++ b/resources/pe_blue/scalable/refresh.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/resourcepacks.svg b/resources/pe_blue/scalable/resourcepacks.svg new file mode 100644 index 00000000..a17e7e82 --- /dev/null +++ b/resources/pe_blue/scalable/resourcepacks.svg @@ -0,0 +1,13 @@ + + + + + + + diff --git a/resources/pe_blue/scalable/screenshots.svg b/resources/pe_blue/scalable/screenshots.svg new file mode 100644 index 00000000..1aa4e559 --- /dev/null +++ b/resources/pe_blue/scalable/screenshots.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/settings.svg b/resources/pe_blue/scalable/settings.svg new file mode 100644 index 00000000..43f0b2f2 --- /dev/null +++ b/resources/pe_blue/scalable/settings.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/status-bad.svg b/resources/pe_blue/scalable/status-bad.svg new file mode 100644 index 00000000..3449fea3 --- /dev/null +++ b/resources/pe_blue/scalable/status-bad.svg @@ -0,0 +1,103 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/status-good.svg b/resources/pe_blue/scalable/status-good.svg new file mode 100644 index 00000000..a5bf5c0b --- /dev/null +++ b/resources/pe_blue/scalable/status-good.svg @@ -0,0 +1,114 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_blue/scalable/viewfolder.svg b/resources/pe_blue/scalable/viewfolder.svg new file mode 100644 index 00000000..2634f8ff --- /dev/null +++ b/resources/pe_blue/scalable/viewfolder.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_colored/index.theme b/resources/pe_colored/index.theme new file mode 100644 index 00000000..b757bbd7 --- /dev/null +++ b/resources/pe_colored/index.theme @@ -0,0 +1,11 @@ +[Icon Theme] +Name=pe_colored +Comment=Icons by pexner (colored) +Inherits=multimc +Directories=scalable + +[scalable] +Size=48 +Type=Scalable +MinSize=16 +MaxSize=256 diff --git a/resources/pe_colored/pe_colored.qrc b/resources/pe_colored/pe_colored.qrc new file mode 100644 index 00000000..c1b7d359 --- /dev/null +++ b/resources/pe_colored/pe_colored.qrc @@ -0,0 +1,33 @@ + + + + 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/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/pe_colored/scalable/about.svg b/resources/pe_colored/scalable/about.svg new file mode 100644 index 00000000..95e99689 --- /dev/null +++ b/resources/pe_colored/scalable/about.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/accounts.svg b/resources/pe_colored/scalable/accounts.svg new file mode 100644 index 00000000..301eb368 --- /dev/null +++ b/resources/pe_colored/scalable/accounts.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/bug.svg b/resources/pe_colored/scalable/bug.svg new file mode 100644 index 00000000..8c92df0a --- /dev/null +++ b/resources/pe_colored/scalable/bug.svg @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/resources/pe_colored/scalable/centralmods.svg b/resources/pe_colored/scalable/centralmods.svg new file mode 100644 index 00000000..57a97259 --- /dev/null +++ b/resources/pe_colored/scalable/centralmods.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/checkupdate.svg b/resources/pe_colored/scalable/checkupdate.svg new file mode 100644 index 00000000..0adc8eeb --- /dev/null +++ b/resources/pe_colored/scalable/checkupdate.svg @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/resources/pe_colored/scalable/copy.svg b/resources/pe_colored/scalable/copy.svg new file mode 100644 index 00000000..b9b0f1b1 --- /dev/null +++ b/resources/pe_colored/scalable/copy.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/coremods.svg b/resources/pe_colored/scalable/coremods.svg new file mode 100644 index 00000000..ca7a22f0 --- /dev/null +++ b/resources/pe_colored/scalable/coremods.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/externaltools.svg b/resources/pe_colored/scalable/externaltools.svg new file mode 100644 index 00000000..1469674f --- /dev/null +++ b/resources/pe_colored/scalable/externaltools.svg @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/resources/pe_colored/scalable/jarmods.svg b/resources/pe_colored/scalable/jarmods.svg new file mode 100644 index 00000000..bb75f4b1 --- /dev/null +++ b/resources/pe_colored/scalable/jarmods.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/java.svg b/resources/pe_colored/scalable/java.svg new file mode 100644 index 00000000..32c0225b --- /dev/null +++ b/resources/pe_colored/scalable/java.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/loadermods.svg b/resources/pe_colored/scalable/loadermods.svg new file mode 100644 index 00000000..2d80c7f3 --- /dev/null +++ b/resources/pe_colored/scalable/loadermods.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/log.svg b/resources/pe_colored/scalable/log.svg new file mode 100644 index 00000000..42659b53 --- /dev/null +++ b/resources/pe_colored/scalable/log.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/minecraft.svg b/resources/pe_colored/scalable/minecraft.svg new file mode 100644 index 00000000..52815487 --- /dev/null +++ b/resources/pe_colored/scalable/minecraft.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/multimc.svg b/resources/pe_colored/scalable/multimc.svg new file mode 100644 index 00000000..a146c52e --- /dev/null +++ b/resources/pe_colored/scalable/multimc.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/new.svg b/resources/pe_colored/scalable/new.svg new file mode 100644 index 00000000..f18ed28a --- /dev/null +++ b/resources/pe_colored/scalable/new.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/news.svg b/resources/pe_colored/scalable/news.svg new file mode 100644 index 00000000..4f924cd8 --- /dev/null +++ b/resources/pe_colored/scalable/news.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/notes.svg b/resources/pe_colored/scalable/notes.svg new file mode 100644 index 00000000..55ece163 --- /dev/null +++ b/resources/pe_colored/scalable/notes.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/patreon.svg b/resources/pe_colored/scalable/patreon.svg new file mode 100644 index 00000000..d3c6d2d5 --- /dev/null +++ b/resources/pe_colored/scalable/patreon.svg @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/resources/pe_colored/scalable/proxy.svg b/resources/pe_colored/scalable/proxy.svg new file mode 100644 index 00000000..0aee69b7 --- /dev/null +++ b/resources/pe_colored/scalable/proxy.svg @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/resources/pe_colored/scalable/quickmods.svg b/resources/pe_colored/scalable/quickmods.svg new file mode 100644 index 00000000..199b2dae --- /dev/null +++ b/resources/pe_colored/scalable/quickmods.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/resources/pe_colored/scalable/refresh.svg b/resources/pe_colored/scalable/refresh.svg new file mode 100644 index 00000000..c2e7e91f --- /dev/null +++ b/resources/pe_colored/scalable/refresh.svg @@ -0,0 +1,11 @@ + + + + + + + diff --git a/resources/pe_colored/scalable/resourcepacks.svg b/resources/pe_colored/scalable/resourcepacks.svg new file mode 100644 index 00000000..0318354c --- /dev/null +++ b/resources/pe_colored/scalable/resourcepacks.svg @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/resources/pe_colored/scalable/screenshots.svg b/resources/pe_colored/scalable/screenshots.svg new file mode 100644 index 00000000..844fcbaa --- /dev/null +++ b/resources/pe_colored/scalable/screenshots.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/settings.svg b/resources/pe_colored/scalable/settings.svg new file mode 100644 index 00000000..72032f8a --- /dev/null +++ b/resources/pe_colored/scalable/settings.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/status-bad.svg b/resources/pe_colored/scalable/status-bad.svg new file mode 100644 index 00000000..3449fea3 --- /dev/null +++ b/resources/pe_colored/scalable/status-bad.svg @@ -0,0 +1,103 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/status-good.svg b/resources/pe_colored/scalable/status-good.svg new file mode 100644 index 00000000..a5bf5c0b --- /dev/null +++ b/resources/pe_colored/scalable/status-good.svg @@ -0,0 +1,114 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_colored/scalable/viewfolder.svg b/resources/pe_colored/scalable/viewfolder.svg new file mode 100644 index 00000000..91832577 --- /dev/null +++ b/resources/pe_colored/scalable/viewfolder.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + diff --git a/resources/pe_dark/16x16/status-bad.png b/resources/pe_dark/16x16/status-bad.png deleted file mode 100644 index 0187b990..00000000 Binary files a/resources/pe_dark/16x16/status-bad.png and /dev/null differ diff --git a/resources/pe_dark/16x16/status-good.png b/resources/pe_dark/16x16/status-good.png deleted file mode 100644 index 661405db..00000000 Binary files a/resources/pe_dark/16x16/status-good.png and /dev/null differ diff --git a/resources/pe_dark/22x22/status-bad.png b/resources/pe_dark/22x22/status-bad.png deleted file mode 100644 index 7b6e9bcb..00000000 Binary files a/resources/pe_dark/22x22/status-bad.png and /dev/null differ diff --git a/resources/pe_dark/22x22/status-good.png b/resources/pe_dark/22x22/status-good.png deleted file mode 100644 index 3da59106..00000000 Binary files a/resources/pe_dark/22x22/status-good.png and /dev/null differ diff --git a/resources/pe_dark/24x24/status-bad.png b/resources/pe_dark/24x24/status-bad.png deleted file mode 100644 index bef1e5a3..00000000 Binary files a/resources/pe_dark/24x24/status-bad.png and /dev/null differ diff --git a/resources/pe_dark/24x24/status-good.png b/resources/pe_dark/24x24/status-good.png deleted file mode 100644 index 2b55aeae..00000000 Binary files a/resources/pe_dark/24x24/status-good.png and /dev/null differ diff --git a/resources/pe_dark/32x32/status-bad.png b/resources/pe_dark/32x32/status-bad.png deleted file mode 100644 index fc700e19..00000000 Binary files a/resources/pe_dark/32x32/status-bad.png and /dev/null differ diff --git a/resources/pe_dark/32x32/status-good.png b/resources/pe_dark/32x32/status-good.png deleted file mode 100644 index eff50142..00000000 Binary files a/resources/pe_dark/32x32/status-good.png and /dev/null differ diff --git a/resources/pe_dark/48x48/status-bad.png b/resources/pe_dark/48x48/status-bad.png deleted file mode 100644 index 846ac51d..00000000 Binary files a/resources/pe_dark/48x48/status-bad.png and /dev/null differ diff --git a/resources/pe_dark/48x48/status-good.png b/resources/pe_dark/48x48/status-good.png deleted file mode 100644 index 56574e38..00000000 Binary files a/resources/pe_dark/48x48/status-good.png and /dev/null differ diff --git a/resources/pe_dark/64x64/status-bad.png b/resources/pe_dark/64x64/status-bad.png deleted file mode 100644 index b87772cc..00000000 Binary files a/resources/pe_dark/64x64/status-bad.png and /dev/null differ diff --git a/resources/pe_dark/64x64/status-good.png b/resources/pe_dark/64x64/status-good.png deleted file mode 100644 index afedf8cb..00000000 Binary files a/resources/pe_dark/64x64/status-good.png and /dev/null differ diff --git a/resources/pe_dark/index.theme b/resources/pe_dark/index.theme index 2768cb50..b7d1ad01 100644 --- a/resources/pe_dark/index.theme +++ b/resources/pe_dark/index.theme @@ -2,35 +2,7 @@ Name=pe_dark Comment=Icons by pexner (dark) Inherits=multimc -Directories=scalable/apps,8x8,16x16,22x22,24x24,32x32,48x48,scalable - -[scalable/apps] -Size=48 -Type=scalable -MinSize=1 -MaxSize=512 -Context=Applications - -[8x8] -Size=8 - -[16x16] -Size=16 - -[22x22] -Size=22 - -[24x24] -Size=24 - -[32x32] -Size=32 - -[48x48] -Size=48 - -[64x64] -Size=64 +Directories=scalable [scalable] Size=48 diff --git a/resources/pe_dark/pe_dark.qrc b/resources/pe_dark/pe_dark.qrc index 98823a27..61151a73 100644 --- a/resources/pe_dark/pe_dark.qrc +++ b/resources/pe_dark/pe_dark.qrc @@ -1,57 +1,33 @@ - + index.theme - - scalable/console.svg - - - scalable/console_error.svg - - scalable/about.svg - - + scalable/accounts.svg scalable/bug.svg - - - scalable/patreon.svg - - scalable/centralmods.svg - - scalable/checkupdate.svg - - scalable/copy.svg - - + scalable/coremods.svg + scalable/externaltools.svg + scalable/jarmods.svg + scalable/java.svg + scalable/loadermods.svg + scalable/log.svg + scalable/minecraft.svg + scalable/multimc.svg scalable/new.svg - - - 16x16/status-bad.png - 22x22/status-bad.png - 24x24/status-bad.png - 32x32/status-bad.png - 48x48/status-bad.png - 64x64/status-bad.png - - - 16x16/status-good.png - 22x22/status-good.png - 24x24/status-good.png - 32x32/status-good.png - 48x48/status-good.png - 64x64/status-good.png - - + 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/pe_dark/scalable/about.svg b/resources/pe_dark/scalable/about.svg index 35eb8e87..e75ea6ca 100644 --- a/resources/pe_dark/scalable/about.svg +++ b/resources/pe_dark/scalable/about.svg @@ -1,22 +1,15 @@ - + - - - - - - - - - - - + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> + + + + + + + diff --git a/resources/pe_dark/scalable/accounts.svg b/resources/pe_dark/scalable/accounts.svg new file mode 100644 index 00000000..6d46b2df --- /dev/null +++ b/resources/pe_dark/scalable/accounts.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/bug.svg b/resources/pe_dark/scalable/bug.svg index 6f78087f..9da71adb 100644 --- a/resources/pe_dark/scalable/bug.svg +++ b/resources/pe_dark/scalable/bug.svg @@ -1,29 +1,47 @@ - + - + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - diff --git a/resources/pe_dark/scalable/centralmods.svg b/resources/pe_dark/scalable/centralmods.svg index 7c06f505..f3b0c0e4 100644 --- a/resources/pe_dark/scalable/centralmods.svg +++ b/resources/pe_dark/scalable/centralmods.svg @@ -1,22 +1,40 @@ - + + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/checkupdate.svg b/resources/pe_dark/scalable/checkupdate.svg index 59a5ad75..fc73c348 100644 --- a/resources/pe_dark/scalable/checkupdate.svg +++ b/resources/pe_dark/scalable/checkupdate.svg @@ -1,25 +1,43 @@ - + - - - - - - - - - - - + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/console.svg b/resources/pe_dark/scalable/console.svg deleted file mode 100644 index ec14ab68..00000000 --- a/resources/pe_dark/scalable/console.svg +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - MC - - - diff --git a/resources/pe_dark/scalable/console_error.svg b/resources/pe_dark/scalable/console_error.svg deleted file mode 100644 index a71c6b35..00000000 --- a/resources/pe_dark/scalable/console_error.svg +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/resources/pe_dark/scalable/copy.svg b/resources/pe_dark/scalable/copy.svg index dc89de43..8c30ac0b 100644 --- a/resources/pe_dark/scalable/copy.svg +++ b/resources/pe_dark/scalable/copy.svg @@ -1,21 +1,40 @@ - + - - - - - - - - - - + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/coremods.svg b/resources/pe_dark/scalable/coremods.svg new file mode 100644 index 00000000..1e2eb227 --- /dev/null +++ b/resources/pe_dark/scalable/coremods.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/externaltools.svg b/resources/pe_dark/scalable/externaltools.svg new file mode 100644 index 00000000..29b45f26 --- /dev/null +++ b/resources/pe_dark/scalable/externaltools.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/jarmods.svg b/resources/pe_dark/scalable/jarmods.svg new file mode 100644 index 00000000..cb9a97ba --- /dev/null +++ b/resources/pe_dark/scalable/jarmods.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/java.svg b/resources/pe_dark/scalable/java.svg new file mode 100644 index 00000000..9e1091fa --- /dev/null +++ b/resources/pe_dark/scalable/java.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/loadermods.svg b/resources/pe_dark/scalable/loadermods.svg new file mode 100644 index 00000000..24226a09 --- /dev/null +++ b/resources/pe_dark/scalable/loadermods.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/log.svg b/resources/pe_dark/scalable/log.svg new file mode 100644 index 00000000..68686a7d --- /dev/null +++ b/resources/pe_dark/scalable/log.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/minecraft.svg b/resources/pe_dark/scalable/minecraft.svg new file mode 100644 index 00000000..01baf575 --- /dev/null +++ b/resources/pe_dark/scalable/minecraft.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/multimc.svg b/resources/pe_dark/scalable/multimc.svg new file mode 100644 index 00000000..e4cf7b7f --- /dev/null +++ b/resources/pe_dark/scalable/multimc.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/new.svg b/resources/pe_dark/scalable/new.svg index 88b9bb34..0377aceb 100644 --- a/resources/pe_dark/scalable/new.svg +++ b/resources/pe_dark/scalable/new.svg @@ -1,22 +1,41 @@ - + + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/news.svg b/resources/pe_dark/scalable/news.svg new file mode 100644 index 00000000..84979dcb --- /dev/null +++ b/resources/pe_dark/scalable/news.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/notes.svg b/resources/pe_dark/scalable/notes.svg new file mode 100644 index 00000000..72649721 --- /dev/null +++ b/resources/pe_dark/scalable/notes.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/patreon.svg b/resources/pe_dark/scalable/patreon.svg index 071101eb..01cb279a 100644 --- a/resources/pe_dark/scalable/patreon.svg +++ b/resources/pe_dark/scalable/patreon.svg @@ -1,22 +1,41 @@ - + + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/proxy.svg b/resources/pe_dark/scalable/proxy.svg new file mode 100644 index 00000000..98bcfac1 --- /dev/null +++ b/resources/pe_dark/scalable/proxy.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/quickmods.svg b/resources/pe_dark/scalable/quickmods.svg new file mode 100644 index 00000000..346729f1 --- /dev/null +++ b/resources/pe_dark/scalable/quickmods.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/refresh.svg b/resources/pe_dark/scalable/refresh.svg index 1bfcc007..0d8e62d6 100644 --- a/resources/pe_dark/scalable/refresh.svg +++ b/resources/pe_dark/scalable/refresh.svg @@ -1,21 +1,41 @@ - + + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/resourcepacks.svg b/resources/pe_dark/scalable/resourcepacks.svg new file mode 100644 index 00000000..0db2beb1 --- /dev/null +++ b/resources/pe_dark/scalable/resourcepacks.svg @@ -0,0 +1,13 @@ + + + + + + + diff --git a/resources/pe_dark/scalable/screenshots.svg b/resources/pe_dark/scalable/screenshots.svg new file mode 100644 index 00000000..2803b9aa --- /dev/null +++ b/resources/pe_dark/scalable/screenshots.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/settings.svg b/resources/pe_dark/scalable/settings.svg index 1d571214..c9f701e7 100644 --- a/resources/pe_dark/scalable/settings.svg +++ b/resources/pe_dark/scalable/settings.svg @@ -1,36 +1,43 @@ - + - + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - diff --git a/resources/pe_dark/scalable/status-bad.svg b/resources/pe_dark/scalable/status-bad.svg new file mode 100644 index 00000000..3449fea3 --- /dev/null +++ b/resources/pe_dark/scalable/status-bad.svg @@ -0,0 +1,103 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/status-good.svg b/resources/pe_dark/scalable/status-good.svg new file mode 100644 index 00000000..a5bf5c0b --- /dev/null +++ b/resources/pe_dark/scalable/status-good.svg @@ -0,0 +1,114 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_dark/scalable/viewfolder.svg b/resources/pe_dark/scalable/viewfolder.svg index f520574a..3af36240 100644 --- a/resources/pe_dark/scalable/viewfolder.svg +++ b/resources/pe_dark/scalable/viewfolder.svg @@ -1,20 +1,39 @@ - + - - - - - - - - - - - + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/16x16/status-bad.png b/resources/pe_light/16x16/status-bad.png deleted file mode 100644 index 0187b990..00000000 Binary files a/resources/pe_light/16x16/status-bad.png and /dev/null differ diff --git a/resources/pe_light/16x16/status-good.png b/resources/pe_light/16x16/status-good.png deleted file mode 100644 index 661405db..00000000 Binary files a/resources/pe_light/16x16/status-good.png and /dev/null differ diff --git a/resources/pe_light/22x22/status-bad.png b/resources/pe_light/22x22/status-bad.png deleted file mode 100644 index 7b6e9bcb..00000000 Binary files a/resources/pe_light/22x22/status-bad.png and /dev/null differ diff --git a/resources/pe_light/22x22/status-good.png b/resources/pe_light/22x22/status-good.png deleted file mode 100644 index 3da59106..00000000 Binary files a/resources/pe_light/22x22/status-good.png and /dev/null differ diff --git a/resources/pe_light/24x24/status-bad.png b/resources/pe_light/24x24/status-bad.png deleted file mode 100644 index bef1e5a3..00000000 Binary files a/resources/pe_light/24x24/status-bad.png and /dev/null differ diff --git a/resources/pe_light/24x24/status-good.png b/resources/pe_light/24x24/status-good.png deleted file mode 100644 index 2b55aeae..00000000 Binary files a/resources/pe_light/24x24/status-good.png and /dev/null differ diff --git a/resources/pe_light/32x32/status-bad.png b/resources/pe_light/32x32/status-bad.png deleted file mode 100644 index fc700e19..00000000 Binary files a/resources/pe_light/32x32/status-bad.png and /dev/null differ diff --git a/resources/pe_light/32x32/status-good.png b/resources/pe_light/32x32/status-good.png deleted file mode 100644 index eff50142..00000000 Binary files a/resources/pe_light/32x32/status-good.png and /dev/null differ diff --git a/resources/pe_light/48x48/status-bad.png b/resources/pe_light/48x48/status-bad.png deleted file mode 100644 index 846ac51d..00000000 Binary files a/resources/pe_light/48x48/status-bad.png and /dev/null differ diff --git a/resources/pe_light/48x48/status-good.png b/resources/pe_light/48x48/status-good.png deleted file mode 100644 index 56574e38..00000000 Binary files a/resources/pe_light/48x48/status-good.png and /dev/null differ diff --git a/resources/pe_light/64x64/status-bad.png b/resources/pe_light/64x64/status-bad.png deleted file mode 100644 index b87772cc..00000000 Binary files a/resources/pe_light/64x64/status-bad.png and /dev/null differ diff --git a/resources/pe_light/64x64/status-good.png b/resources/pe_light/64x64/status-good.png deleted file mode 100644 index afedf8cb..00000000 Binary files a/resources/pe_light/64x64/status-good.png and /dev/null differ diff --git a/resources/pe_light/index.theme b/resources/pe_light/index.theme index a782c2ec..c106acc8 100644 --- a/resources/pe_light/index.theme +++ b/resources/pe_light/index.theme @@ -2,35 +2,7 @@ Name=pe_light Comment=Icons by pexner (light) Inherits=multimc -Directories=scalable/apps,8x8,16x16,22x22,24x24,32x32,48x48,scalable - -[scalable/apps] -Size=48 -Type=scalable -MinSize=1 -MaxSize=512 -Context=Applications - -[8x8] -Size=8 - -[16x16] -Size=16 - -[22x22] -Size=22 - -[24x24] -Size=24 - -[32x32] -Size=32 - -[48x48] -Size=48 - -[64x64] -Size=64 +Directories=scalable [scalable] Size=48 diff --git a/resources/pe_light/pe_light.qrc b/resources/pe_light/pe_light.qrc index f1dce837..1c8eba52 100644 --- a/resources/pe_light/pe_light.qrc +++ b/resources/pe_light/pe_light.qrc @@ -1,61 +1,34 @@ - + index.theme - - - scalable/console.svg - - - scalable/console_error.svg - - scalable/about.svg - - + scalable/accounts.svg scalable/bug.svg - - - scalable/patreon.svg - - scalable/centralmods.svg - - scalable/checkupdate.svg - - scalable/copy.svg - - + scalable/coremods.svg + scalable/externaltools.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 - - - 16x16/status-bad.png - 22x22/status-bad.png - 24x24/status-bad.png - 32x32/status-bad.png - 48x48/status-bad.png - 64x64/status-bad.png - - - 16x16/status-good.png - 22x22/status-good.png - 24x24/status-good.png - 32x32/status-good.png - 48x48/status-good.png - 64x64/status-good.png - - + 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/pe_light/scalable/about.svg b/resources/pe_light/scalable/about.svg index 9ee74686..8d00c32e 100644 --- a/resources/pe_light/scalable/about.svg +++ b/resources/pe_light/scalable/about.svg @@ -1,21 +1,15 @@ - + - - - - - - - - - - + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> + + + + + + + diff --git a/resources/pe_light/scalable/accounts.svg b/resources/pe_light/scalable/accounts.svg new file mode 100644 index 00000000..3a092d03 --- /dev/null +++ b/resources/pe_light/scalable/accounts.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/bug.svg b/resources/pe_light/scalable/bug.svg index 44e6d72a..ccb64bc5 100644 --- a/resources/pe_light/scalable/bug.svg +++ b/resources/pe_light/scalable/bug.svg @@ -1,50 +1,47 @@ - + - + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/pe_light/scalable/centralmods.svg b/resources/pe_light/scalable/centralmods.svg index fea7660a..050fdc58 100644 --- a/resources/pe_light/scalable/centralmods.svg +++ b/resources/pe_light/scalable/centralmods.svg @@ -1,20 +1,41 @@ - + + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/checkupdate.svg b/resources/pe_light/scalable/checkupdate.svg index a9199659..deae477f 100644 --- a/resources/pe_light/scalable/checkupdate.svg +++ b/resources/pe_light/scalable/checkupdate.svg @@ -1,24 +1,43 @@ - + - - - - - - - - - + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/console.svg b/resources/pe_light/scalable/console.svg deleted file mode 100644 index ec14ab68..00000000 --- a/resources/pe_light/scalable/console.svg +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - MC - - - diff --git a/resources/pe_light/scalable/console_error.svg b/resources/pe_light/scalable/console_error.svg deleted file mode 100644 index a71c6b35..00000000 --- a/resources/pe_light/scalable/console_error.svg +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/resources/pe_light/scalable/copy.svg b/resources/pe_light/scalable/copy.svg index d8c0fbdc..abdcce09 100644 --- a/resources/pe_light/scalable/copy.svg +++ b/resources/pe_light/scalable/copy.svg @@ -1,20 +1,40 @@ - + - - - - - - - - - + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/coremods.svg b/resources/pe_light/scalable/coremods.svg new file mode 100644 index 00000000..c8fb0eb9 --- /dev/null +++ b/resources/pe_light/scalable/coremods.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/externaltools.svg b/resources/pe_light/scalable/externaltools.svg new file mode 100644 index 00000000..4d232bcf --- /dev/null +++ b/resources/pe_light/scalable/externaltools.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/jarmods.svg b/resources/pe_light/scalable/jarmods.svg new file mode 100644 index 00000000..9852c805 --- /dev/null +++ b/resources/pe_light/scalable/jarmods.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/java.svg b/resources/pe_light/scalable/java.svg new file mode 100644 index 00000000..0584058a --- /dev/null +++ b/resources/pe_light/scalable/java.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/loadermods.svg b/resources/pe_light/scalable/loadermods.svg new file mode 100644 index 00000000..913c1968 --- /dev/null +++ b/resources/pe_light/scalable/loadermods.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/log.svg b/resources/pe_light/scalable/log.svg new file mode 100644 index 00000000..82282ca4 --- /dev/null +++ b/resources/pe_light/scalable/log.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/minecraft.svg b/resources/pe_light/scalable/minecraft.svg new file mode 100644 index 00000000..d772111f --- /dev/null +++ b/resources/pe_light/scalable/minecraft.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/multimc.svg b/resources/pe_light/scalable/multimc.svg new file mode 100644 index 00000000..8b2cb631 --- /dev/null +++ b/resources/pe_light/scalable/multimc.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/new.svg b/resources/pe_light/scalable/new.svg index 2cbd8b92..96fd1f5b 100644 --- a/resources/pe_light/scalable/new.svg +++ b/resources/pe_light/scalable/new.svg @@ -1,21 +1,41 @@ - + + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/news.svg b/resources/pe_light/scalable/news.svg index 67a370df..84979dcb 100644 --- a/resources/pe_light/scalable/news.svg +++ b/resources/pe_light/scalable/news.svg @@ -1,296 +1,13 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce convallis mauris ullamcorper mauris viverra molestie. Donec ultricies faucibus laoreet. Donec convallis congue neque consequat vehicula. Morbi condimentum tempor nulla et rhoncus. Etiam auctor, augue eu pharetra congue, elit justo lacinia risus, non lacinia est justo sed erat. Ut risus urna, viverra id interdum in, molestie non sem. Morbi leo orci, gravida auctor tempor vel, varius et enim. Nulla sem enim, ultricies vel laoreet ac, semper vel mauris. Ut adipiscing sapien sed leo pretium id vulputate erat gravida. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cras tempor leo sit amet velit molestie commodo eget tincidunt leo. Cras dictum metus non ante pulvinar pellentesque. Morbi id elit ullamcorper mi vulputate lobortis. Cras ac vehicula felis. Phasellus dictum, tellus at molestie pellentesque, purus purus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce convallis mauris ullamcorper mauris viverra molestie. Donec ultricies faucibus laoreet. Donec convallis congue neque consequat vehicula. Morbi condimentum tempor nulla et rhoncus. Etiam auctor, augue eu pharetra congue, elit justo lacinia risus, non lacinia est justo sed erat. Ut risus urna, - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + diff --git a/resources/pe_light/scalable/notes.svg b/resources/pe_light/scalable/notes.svg new file mode 100644 index 00000000..02dc11ec --- /dev/null +++ b/resources/pe_light/scalable/notes.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/patreon.svg b/resources/pe_light/scalable/patreon.svg index d48289c8..0bd08826 100644 --- a/resources/pe_light/scalable/patreon.svg +++ b/resources/pe_light/scalable/patreon.svg @@ -1,83 +1,40 @@ - - - -image/svg+xml \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/proxy.svg b/resources/pe_light/scalable/proxy.svg new file mode 100644 index 00000000..9de8d6d1 --- /dev/null +++ b/resources/pe_light/scalable/proxy.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/quickmods.svg b/resources/pe_light/scalable/quickmods.svg new file mode 100644 index 00000000..6dbeab52 --- /dev/null +++ b/resources/pe_light/scalable/quickmods.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/refresh.svg b/resources/pe_light/scalable/refresh.svg index 8d25ea90..eba90471 100644 --- a/resources/pe_light/scalable/refresh.svg +++ b/resources/pe_light/scalable/refresh.svg @@ -1,20 +1,41 @@ - + + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/resourcepacks.svg b/resources/pe_light/scalable/resourcepacks.svg new file mode 100644 index 00000000..7d6323f2 --- /dev/null +++ b/resources/pe_light/scalable/resourcepacks.svg @@ -0,0 +1,13 @@ + + + + + + + diff --git a/resources/pe_light/scalable/screenshots.svg b/resources/pe_light/scalable/screenshots.svg new file mode 100644 index 00000000..f2887be6 --- /dev/null +++ b/resources/pe_light/scalable/screenshots.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/settings.svg b/resources/pe_light/scalable/settings.svg index caa4e75f..83b92a52 100644 --- a/resources/pe_light/scalable/settings.svg +++ b/resources/pe_light/scalable/settings.svg @@ -1,64 +1,43 @@ - + - + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/pe_light/scalable/status-bad.svg b/resources/pe_light/scalable/status-bad.svg new file mode 100644 index 00000000..3449fea3 --- /dev/null +++ b/resources/pe_light/scalable/status-bad.svg @@ -0,0 +1,103 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/status-good.svg b/resources/pe_light/scalable/status-good.svg new file mode 100644 index 00000000..a5bf5c0b --- /dev/null +++ b/resources/pe_light/scalable/status-good.svg @@ -0,0 +1,114 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/pe_light/scalable/viewfolder.svg b/resources/pe_light/scalable/viewfolder.svg index 3161f61f..b36343fe 100644 --- a/resources/pe_light/scalable/viewfolder.svg +++ b/resources/pe_light/scalable/viewfolder.svg @@ -1,19 +1,40 @@ - + + viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve"> - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +