From 088ad07a8098d587aac54a582e1ef70f18ff5d17 Mon Sep 17 00:00:00 2001 From: Sky Date: Sat, 11 Jan 2014 00:22:08 +0000 Subject: Show active account skin whilst it's checked for updates --- gui/MainWindow.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'gui/MainWindow.cpp') diff --git a/gui/MainWindow.cpp b/gui/MainWindow.cpp index 31e4b9e4..dba15e98 100644 --- a/gui/MainWindow.cpp +++ b/gui/MainWindow.cpp @@ -235,17 +235,20 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWi connect(MMC->accounts().get(), &MojangAccountList::listChanged, [this] { repopulateAccountsMenu(); }); - std::shared_ptr accounts = MMC->accounts(); + // Show initial account + activeAccountChanged(); + + auto accounts = MMC->accounts(); // TODO: Nicer way to iterate? for (int i = 0; i < accounts->count(); i++) { - MojangAccountPtr account = accounts->at(i); + auto account = accounts->at(i); if (account != nullptr) { auto job = new NetJob("Startup player skins: " + account->username()); - for (AccountProfile profile : account->profiles()) + for (auto profile : account->profiles()) { auto meta = MMC->metacache()->resolveEntry("skins", profile.name + ".png"); auto action = CacheDownload::make( -- cgit From a774b3d24816aa0010e1d5f67b20acb99e7181ac Mon Sep 17 00:00:00 2001 From: Sky Date: Sun, 12 Jan 2014 18:28:42 +0000 Subject: Show Mojang service statuses in status bar --- CMakeLists.txt | 4 ++ MultiMC.cpp | 6 ++ MultiMC.h | 7 +++ gui/MainWindow.cpp | 79 +++++++++++++++++++++++ gui/MainWindow.h | 11 ++++ logic/net/URLConstants.h | 2 + logic/status/StatusChecker.cpp | 138 +++++++++++++++++++++++++++++++++++++++++ logic/status/StatusChecker.h | 67 ++++++++++++++++++++ 8 files changed, 314 insertions(+) create mode 100644 logic/status/StatusChecker.cpp create mode 100644 logic/status/StatusChecker.h (limited to 'gui/MainWindow.cpp') diff --git a/CMakeLists.txt b/CMakeLists.txt index dcb4cbaa..7aba8832 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -393,6 +393,10 @@ logic/news/NewsChecker.cpp logic/news/NewsEntry.h logic/news/NewsEntry.cpp +# Status system +logic/status/StatusChecker.h +logic/status/StatusChecker.cpp + # legacy instances logic/LegacyInstance.h logic/LegacyInstance.cpp diff --git a/MultiMC.cpp b/MultiMC.cpp index 17fc2e0a..819091cd 100644 --- a/MultiMC.cpp +++ b/MultiMC.cpp @@ -20,8 +20,11 @@ #include "logic/news/NewsChecker.h" +#include "logic/status/StatusChecker.h" + #include "logic/InstanceLauncher.h" #include "logic/net/HttpMetaCache.h" +#include "logic/net/URLConstants.h" #include "logic/JavaUtils.h" @@ -181,6 +184,9 @@ MultiMC::MultiMC(int &argc, char **argv, bool root_override) // initialize the news checker m_newsChecker.reset(new NewsChecker(NEWS_RSS_URL)); + // initialize the status checker + m_statusChecker.reset(new StatusChecker()); + // and instances auto InstDirSetting = m_settings->getSetting("InstanceDir"); m_instances.reset(new InstanceList(InstDirSetting->get().toString(), this)); diff --git a/MultiMC.h b/MultiMC.h index 18c7aab7..638a442f 100644 --- a/MultiMC.h +++ b/MultiMC.h @@ -21,6 +21,7 @@ class JavaVersionList; class UpdateChecker; class NotificationChecker; class NewsChecker; +class StatusChecker; #if defined(MMC) #undef MMC @@ -113,6 +114,11 @@ public: return m_newsChecker; } + std::shared_ptr statusChecker() + { + return m_statusChecker; + } + std::shared_ptr lwjgllist(); std::shared_ptr forgelist(); @@ -183,6 +189,7 @@ private: std::shared_ptr m_updateChecker; std::shared_ptr m_notificationChecker; std::shared_ptr m_newsChecker; + std::shared_ptr m_statusChecker; std::shared_ptr m_accounts; std::shared_ptr m_icons; std::shared_ptr m_qnam; diff --git a/gui/MainWindow.cpp b/gui/MainWindow.cpp index dba15e98..cc6d4abb 100644 --- a/gui/MainWindow.cpp +++ b/gui/MainWindow.cpp @@ -77,6 +77,8 @@ #include "logic/news/NewsChecker.h" +#include "logic/status/StatusChecker.h" + #include "logic/net/URLConstants.h" #include "logic/BaseInstance.h" @@ -199,7 +201,27 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWi connect(MMC->instances().get(), SIGNAL(dataIsInvalid()), SLOT(selectionBad())); m_statusLeft = new QLabel(tr("No instance selected"), this); + m_statusRight = new QLabel(tr("No status available"), this); + m_statusRefresh = new QToolButton(this); + m_statusRefresh->setToolButtonStyle(Qt::ToolButtonIconOnly); + m_statusRefresh->setIcon( + QPixmap(":/icons/toolbar/refresh").scaled(16, 16, Qt::KeepAspectRatio)); + statusBar()->addPermanentWidget(m_statusLeft, 1); + statusBar()->addPermanentWidget(m_statusRight, 0); + statusBar()->addPermanentWidget(m_statusRefresh, 0); + + // Start status checker + { + connect(MMC->statusChecker().get(), &StatusChecker::statusLoaded, this, &MainWindow::updateStatusUI); + connect(MMC->statusChecker().get(), &StatusChecker::statusLoadingFailed, this, &MainWindow::updateStatusFailedUI); + + connect(m_statusRefresh, &QAbstractButton::clicked, this, &MainWindow::reloadStatus); + connect(&statusTimer, &QTimer::timeout, this, &MainWindow::reloadStatus); + statusTimer.setSingleShot(true); + + reloadStatus(); + } // Add "manage accounts" button, right align QWidget *spacer = new QWidget(); @@ -498,6 +520,63 @@ void MainWindow::updateNewsLabel() } } +static QString convertStatus(const QString &status) +{ + if(status == "green") return "↑"; + else if(status == "yellow") return "-"; + else if(status == "red") return "↓"; + else return "?"; +} + +void MainWindow::reloadStatus() +{ + MMC->statusChecker()->reloadStatus(); + updateStatusUI(); +} + +static QString makeStatusString(const QMap statuses) +{ + QString status = ""; + status += "Web: " + convertStatus(statuses["minecraft.net"]); + status += " Account: " + convertStatus(statuses["account.mojang.com"]); + status += " Skins: " + convertStatus(statuses["skins.minecraft.net"]); + status += " Auth: " + convertStatus(statuses["authserver.mojang.com"]); + status += " Session: " + convertStatus(statuses["sessionserver.mojang.com"]); + + return status; +} + +void MainWindow::updateStatusUI() +{ + auto statusChecker = MMC->statusChecker(); + auto statuses = statusChecker->getStatusEntries(); + + QString status = makeStatusString(statuses); + if(statusChecker->isLoadingStatus()) + { + m_statusRefresh->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); + m_statusRefresh->setText(tr("Loading...")); + } + else + { + m_statusRefresh->setToolButtonStyle(Qt::ToolButtonIconOnly); + m_statusRefresh->setText(tr("")); + } + + m_statusRight->setText(status); + + statusTimer.start(60 * 1000); +} + +void MainWindow::updateStatusFailedUI() +{ + m_statusRight->setText(makeStatusString(QMap())); + m_statusRefresh->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); + m_statusRefresh->setText(tr("Failed.")); + + statusTimer.start(60 * 1000); +} + void MainWindow::updateAvailable(QString repo, QString versionName, int versionId) { UpdateDialog dlg; diff --git a/gui/MainWindow.h b/gui/MainWindow.h index 12d76da4..eb478776 100644 --- a/gui/MainWindow.h +++ b/gui/MainWindow.h @@ -17,6 +17,7 @@ #include #include +#include #include "logic/lists/InstanceList.h" #include "logic/BaseInstance.h" @@ -168,6 +169,12 @@ slots: void repopulateAccountsMenu(); void updateNewsLabel(); + + void updateStatusUI(); + + void updateStatusFailedUI(); + + void reloadStatus(); /*! * Runs the DownloadUpdateTask and installs updates. @@ -198,8 +205,12 @@ private: Task *m_versionLoadTask; QLabel *m_statusLeft; + QLabel *m_statusRight; + QToolButton *m_statusRefresh; QMenu *accountMenu; QToolButton *accountMenuButton; QAction *manageAccountsAction; + + QTimer statusTimer; }; diff --git a/logic/net/URLConstants.h b/logic/net/URLConstants.h index 9579198d..8cb1f3fd 100644 --- a/logic/net/URLConstants.h +++ b/logic/net/URLConstants.h @@ -31,4 +31,6 @@ const QString SKINS_BASE("skins.minecraft.net/MinecraftSkins/"); const QString AUTH_BASE("authserver.mojang.com/"); const QString FORGE_LEGACY_URL("http://files.minecraftforge.net/minecraftforge/json"); const QString FORGE_GRADLE_URL("http://files.minecraftforge.net/maven/net/minecraftforge/forge/json"); +const QString MOJANG_STATUS_URL("http://status.mojang.com/check"); +const QString MOJANG_STATUS_NEWS_URL("http://status.mojang.com/news"); } diff --git a/logic/status/StatusChecker.cpp b/logic/status/StatusChecker.cpp new file mode 100644 index 00000000..54cf077a --- /dev/null +++ b/logic/status/StatusChecker.cpp @@ -0,0 +1,138 @@ +/* Copyright 2013 MultiMC Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include "StatusChecker.h" + +#include + +#include +#include + +#include + +StatusChecker::StatusChecker() +{ + +} + +void StatusChecker::reloadStatus() +{ + if (isLoadingStatus()) + { + QLOG_INFO() << "Ignored request to reload status. Currently reloading already."; + return; + } + + QLOG_INFO() << "Reloading status."; + + NetJob* job = new NetJob("Status JSON"); + job->addNetAction(ByteArrayDownload::make(URLConstants::MOJANG_STATUS_URL)); + QObject::connect(job, &NetJob::succeeded, this, &StatusChecker::statusDownloadFinished); + QObject::connect(job, &NetJob::failed, this, &StatusChecker::statusDownloadFailed); + m_statusNetJob.reset(job); + job->start(); +} + +void StatusChecker::statusDownloadFinished() +{ + // Parse the XML file and process the RSS feed entries. + QLOG_DEBUG() << "Finished loading status JSON."; + + QByteArray data; + { + ByteArrayDownloadPtr dl = std::dynamic_pointer_cast(m_statusNetJob->first()); + data = dl->m_data; + m_statusNetJob.reset(); + } + + QJsonParseError jsonError; + QJsonDocument jsonDoc = QJsonDocument::fromJson(data, &jsonError); + + if (jsonError.error != QJsonParseError::NoError) + { + fail("Error parsing status JSON:" + jsonError.errorString()); + return; + } + + if (!jsonDoc.isArray()) + { + fail("Error parsing status JSON: JSON root is not an array"); + return; + } + + QJsonArray root = jsonDoc.array(); + + for(auto status = root.begin(); status != root.end(); ++status) + { + QVariantMap map = (*status).toObject().toVariantMap(); + + for (QVariantMap::const_iterator iter = map.begin(); iter != map.end(); ++iter) + { + QString key = iter.key(); + QVariant value = iter.value(); + + if(value.type() == QVariant::Type::String) + { + m_statusEntries.insert(key, value.toString()); + QLOG_DEBUG() << "Status JSON object: " << key << m_statusEntries[key]; + } + else + { + fail("Malformed status JSON: expected status type to be a string."); + return; + } + } + } + + succeed(); +} + +void StatusChecker::statusDownloadFailed() +{ + fail("Failed to load status JSON."); +} + + +QMap StatusChecker::getStatusEntries() const +{ + return m_statusEntries; +} + +bool StatusChecker::isLoadingStatus() const +{ + return m_statusNetJob.get() != nullptr; +} + +QString StatusChecker::getLastLoadErrorMsg() const +{ + return m_lastLoadError; +} + +void StatusChecker::succeed() +{ + m_lastLoadError = ""; + QLOG_DEBUG() << "Status loading succeeded."; + m_statusNetJob.reset(); + emit statusLoaded(); +} + +void StatusChecker::fail(const QString& errorMsg) +{ + m_lastLoadError = errorMsg; + QLOG_DEBUG() << "Failed to load status:" << errorMsg; + m_statusNetJob.reset(); + emit statusLoadingFailed(errorMsg); +} + diff --git a/logic/status/StatusChecker.h b/logic/status/StatusChecker.h new file mode 100644 index 00000000..b81050ab --- /dev/null +++ b/logic/status/StatusChecker.h @@ -0,0 +1,67 @@ +/* Copyright 2013 MultiMC Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#pragma once + +#include +#include +#include + +#include + +class StatusChecker : public QObject +{ + Q_OBJECT +public: + StatusChecker(); + + QString getLastLoadErrorMsg() const; + + bool isStatusLoaded() const; + + bool isLoadingStatus() const; + + QMap getStatusEntries() const; + + void Q_SLOT reloadStatus(); + +signals: + void statusLoaded(); + void statusLoadingFailed(QString errorMsg); + +protected slots: + void statusDownloadFinished(); + void statusDownloadFailed(); + +protected: + QMap m_statusEntries; + NetJobPtr m_statusNetJob; + + //! True if news has been loaded. + bool m_loadedStatus; + + QString m_lastLoadError; + + /*! + * Emits newsLoaded() and sets m_lastLoadError to empty string. + */ + void Q_SLOT succeed(); + + /*! + * Emits newsLoadingFailed() and sets m_lastLoadError to the given message. + */ + void Q_SLOT fail(const QString& errorMsg); +}; + -- cgit From 398167e8b01732badaa2c757b1547e879a369945 Mon Sep 17 00:00:00 2001 From: Sky Date: Sun, 12 Jan 2014 18:44:54 +0000 Subject: More space between status items --- gui/MainWindow.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gui/MainWindow.cpp') diff --git a/gui/MainWindow.cpp b/gui/MainWindow.cpp index cc6d4abb..d5cc1d44 100644 --- a/gui/MainWindow.cpp +++ b/gui/MainWindow.cpp @@ -538,10 +538,10 @@ static QString makeStatusString(const QMap statuses) { QString status = ""; status += "Web: " + convertStatus(statuses["minecraft.net"]); - status += " Account: " + convertStatus(statuses["account.mojang.com"]); - status += " Skins: " + convertStatus(statuses["skins.minecraft.net"]); - status += " Auth: " + convertStatus(statuses["authserver.mojang.com"]); - status += " Session: " + convertStatus(statuses["sessionserver.mojang.com"]); + status += " Account: " + convertStatus(statuses["account.mojang.com"]); + status += " Skins: " + convertStatus(statuses["skins.minecraft.net"]); + status += " Auth: " + convertStatus(statuses["authserver.mojang.com"]); + status += " Session: " + convertStatus(statuses["sessionserver.mojang.com"]); return status; } -- cgit From e6ab57b8b1275137d873c0c465aeffe61c13c324 Mon Sep 17 00:00:00 2001 From: Sky Date: Sun, 19 Jan 2014 01:33:32 +0000 Subject: Try to improve status arrows a bit --- gui/MainWindow.cpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'gui/MainWindow.cpp') diff --git a/gui/MainWindow.cpp b/gui/MainWindow.cpp index d5cc1d44..cca1ecac 100644 --- a/gui/MainWindow.cpp +++ b/gui/MainWindow.cpp @@ -522,10 +522,13 @@ void MainWindow::updateNewsLabel() static QString convertStatus(const QString &status) { - if(status == "green") return "↑"; - else if(status == "yellow") return "-"; - else if(status == "red") return "↓"; - else return "?"; + QString ret = "?"; + + if(status == "green") ret = "↑"; + else if(status == "yellow") ret = "-"; + else if(status == "red") ret="↓"; + + return "" + ret + ""; } void MainWindow::reloadStatus() -- cgit From d8413fa5ec594455b3cdec86899b61adba39eb33 Mon Sep 17 00:00:00 2001 From: Petr Mrázek Date: Sun, 19 Jan 2014 04:52:34 +0100 Subject: Use icon theme so we can have more than one icon size per icon --- CMakeLists.txt | 10 +- graphics.qrc | 51 - gui/MainWindow.cpp | 31 +- gui/MainWindow.ui | 41 +- main.cpp | 5 +- resources/MultiMC.ico | Bin 0 -> 76126 bytes resources/XdgIcon.theme | 12 - resources/backgrounds/backgrounds.qrc | 6 + resources/backgrounds/catbgrnd2.png | Bin 0 -> 78285 bytes resources/catbgrnd2.png | Bin 78285 -> 0 bytes resources/icons/MultiMC.ico | Bin 76126 -> 0 bytes resources/icons/console.svg | 228 --- resources/icons/console_error.svg | 247 --- resources/icons/instances/brick.png | Bin 713 -> 0 bytes resources/icons/instances/chicken.png | Bin 1181 -> 0 bytes resources/icons/instances/chicken128.png | Bin 6369 -> 0 bytes resources/icons/instances/creeper.png | Bin 1524 -> 0 bytes resources/icons/instances/creeper128.png | Bin 9046 -> 0 bytes resources/icons/instances/derp.png | Bin 5225 -> 0 bytes resources/icons/instances/diamond.png | Bin 708 -> 0 bytes resources/icons/instances/dirt.png | Bin 482 -> 0 bytes resources/icons/instances/enderman.png | Bin 2429 -> 0 bytes resources/icons/instances/enderpearl.png | Bin 2120 -> 0 bytes resources/icons/instances/enderpearl128.png | Bin 21425 -> 0 bytes resources/icons/instances/ftb_glow.png | Bin 1747 -> 0 bytes resources/icons/instances/ftb_glow128.png | Bin 12708 -> 0 bytes resources/icons/instances/ftb_logo.png | Bin 1607 -> 0 bytes resources/icons/instances/ftb_logo128.png | Bin 7883 -> 0 bytes resources/icons/instances/gear.png | Bin 2414 -> 0 bytes resources/icons/instances/gear128.png | Bin 18321 -> 0 bytes resources/icons/instances/gold.png | Bin 978 -> 0 bytes resources/icons/instances/grass.png | Bin 618 -> 0 bytes resources/icons/instances/herobrine.png | Bin 1034 -> 0 bytes resources/icons/instances/herobrine128.png | Bin 4937 -> 0 bytes resources/icons/instances/infinity.png | Bin 1714 -> 0 bytes resources/icons/instances/infinity128.png | Bin 9237 -> 0 bytes resources/icons/instances/iron.png | Bin 532 -> 0 bytes resources/icons/instances/magitech.png | Bin 2646 -> 0 bytes resources/icons/instances/magitech128.png | Bin 23097 -> 0 bytes resources/icons/instances/meat.png | Bin 1514 -> 0 bytes resources/icons/instances/meat128.png | Bin 10583 -> 0 bytes resources/icons/instances/netherstar.png | Bin 1942 -> 0 bytes resources/icons/instances/netherstar128.png | Bin 14062 -> 0 bytes resources/icons/instances/planks.png | Bin 461 -> 0 bytes resources/icons/instances/skeleton.png | Bin 696 -> 0 bytes resources/icons/instances/skeleton128.png | Bin 3673 -> 0 bytes resources/icons/instances/squarecreeper.png | Bin 1623 -> 0 bytes resources/icons/instances/squarecreeper128.png | Bin 9136 -> 0 bytes resources/icons/instances/steve.png | Bin 969 -> 0 bytes resources/icons/instances/steve128.png | Bin 4312 -> 0 bytes resources/icons/instances/stone.png | Bin 438 -> 0 bytes resources/icons/instances/tnt.png | Bin 378 -> 0 bytes resources/icons/instances_svg/clucker.svg | 404 ----- resources/icons/instances_svg/creeper.svg | 775 --------- resources/icons/instances_svg/enderpearl.svg | 271 --- resources/icons/instances_svg/ftb-glow.svg | 606 ------- resources/icons/instances_svg/ftb-logo.svg | 257 --- resources/icons/instances_svg/gear.svg | 434 ----- resources/icons/instances_svg/herobrine.svg | 583 ------- resources/icons/instances_svg/magitech.svg | 886 ---------- resources/icons/instances_svg/meat.svg | 371 ----- resources/icons/instances_svg/netherstar.svg | 342 ---- resources/icons/instances_svg/pskeleton.svg | 581 ------- resources/icons/instances_svg/skeleton.svg | 610 ------- resources/icons/instances_svg/squarecreeper.svg | 828 ---------- resources/icons/instances_svg/steve.svg | 534 ------ resources/icons/multimc.svg | 1993 ----------------------- resources/icons/toolbar/Cat.png | Bin 811 -> 0 bytes resources/icons/toolbar/InstCopy.png | Bin 297 -> 0 bytes resources/icons/toolbar/NewsIcon.png | Bin 1173 -> 0 bytes resources/icons/toolbar/NoAccount.png | Bin 284 -> 0 bytes resources/icons/toolbar/ReportBug.png | Bin 1180 -> 0 bytes resources/icons/toolbar/about.png | Bin 1693 -> 0 bytes resources/icons/toolbar/centralmods.png | Bin 1561 -> 0 bytes resources/icons/toolbar/checkupdate.png | Bin 1635 -> 0 bytes resources/icons/toolbar/help.png | Bin 1735 -> 0 bytes resources/icons/toolbar/new.png | Bin 1440 -> 0 bytes resources/icons/toolbar/refresh.png | Bin 1843 -> 0 bytes resources/icons/toolbar/settings.png | Bin 1964 -> 0 bytes resources/icons/toolbar/viewfolder.png | Bin 1006 -> 0 bytes resources/icons/toolbar_svg/bug.svg | 387 ----- resources/icons/toolbar_svg/news.svg | 296 ---- resources/instances/brick.png | Bin 0 -> 713 bytes resources/instances/chicken.png | Bin 0 -> 1181 bytes resources/instances/chicken128.png | Bin 0 -> 6369 bytes resources/instances/creeper.png | Bin 0 -> 1524 bytes resources/instances/creeper128.png | Bin 0 -> 9046 bytes resources/instances/derp.png | Bin 0 -> 5225 bytes resources/instances/diamond.png | Bin 0 -> 708 bytes resources/instances/dirt.png | Bin 0 -> 482 bytes resources/instances/enderman.png | Bin 0 -> 2429 bytes resources/instances/enderpearl.png | Bin 0 -> 2120 bytes resources/instances/enderpearl128.png | Bin 0 -> 21425 bytes resources/instances/ftb_glow.png | Bin 0 -> 1747 bytes resources/instances/ftb_glow128.png | Bin 0 -> 12708 bytes resources/instances/ftb_logo.png | Bin 0 -> 1607 bytes resources/instances/ftb_logo128.png | Bin 0 -> 7883 bytes resources/instances/gear.png | Bin 0 -> 2414 bytes resources/instances/gear128.png | Bin 0 -> 18321 bytes resources/instances/gold.png | Bin 0 -> 978 bytes resources/instances/grass.png | Bin 0 -> 618 bytes resources/instances/herobrine.png | Bin 0 -> 1034 bytes resources/instances/herobrine128.png | Bin 0 -> 4937 bytes resources/instances/infinity.png | Bin 0 -> 1714 bytes resources/instances/infinity128.png | Bin 0 -> 9237 bytes resources/instances/instances.qrc | 30 + resources/instances/iron.png | Bin 0 -> 532 bytes resources/instances/magitech.png | Bin 0 -> 2646 bytes resources/instances/magitech128.png | Bin 0 -> 23097 bytes resources/instances/meat.png | Bin 0 -> 1514 bytes resources/instances/meat128.png | Bin 0 -> 10583 bytes resources/instances/netherstar.png | Bin 0 -> 1942 bytes resources/instances/netherstar128.png | Bin 0 -> 14062 bytes resources/instances/planks.png | Bin 0 -> 461 bytes resources/instances/skeleton.png | Bin 0 -> 696 bytes resources/instances/skeleton128.png | Bin 0 -> 3673 bytes resources/instances/squarecreeper.png | Bin 0 -> 1623 bytes resources/instances/squarecreeper128.png | Bin 0 -> 9136 bytes resources/instances/steve.png | Bin 0 -> 969 bytes resources/instances/steve128.png | Bin 0 -> 4312 bytes resources/instances/stone.png | Bin 0 -> 438 bytes resources/instances/tnt.png | Bin 0 -> 378 bytes resources/multimc/16x16/noaccount.png | Bin 0 -> 334 bytes resources/multimc/16x16/refresh.png | Bin 0 -> 1389 bytes resources/multimc/22x22/about.png | Bin 0 -> 1693 bytes resources/multimc/22x22/bug.png | Bin 0 -> 1180 bytes resources/multimc/22x22/centralmods.png | Bin 0 -> 1561 bytes resources/multimc/22x22/checkupdate.png | Bin 0 -> 1635 bytes resources/multimc/22x22/copy.png | Bin 0 -> 297 bytes resources/multimc/22x22/help.png | Bin 0 -> 1735 bytes resources/multimc/22x22/new.png | Bin 0 -> 1440 bytes resources/multimc/22x22/news.png | Bin 0 -> 1173 bytes resources/multimc/22x22/refresh.png | Bin 0 -> 1843 bytes resources/multimc/22x22/settings.png | Bin 0 -> 1964 bytes resources/multimc/22x22/viewfolder.png | Bin 0 -> 1006 bytes resources/multimc/24x24/cat.png | Bin 0 -> 811 bytes resources/multimc/24x24/noaccount.png | Bin 0 -> 344 bytes resources/multimc/24x24/refresh.png | Bin 0 -> 2116 bytes resources/multimc/32x32/noaccount.png | Bin 0 -> 363 bytes resources/multimc/32x32/refresh.png | Bin 0 -> 2822 bytes resources/multimc/48x48/noaccount.png | Bin 0 -> 387 bytes resources/multimc/48x48/refresh.png | Bin 0 -> 3922 bytes resources/multimc/8x8/noaccount.png | Bin 0 -> 284 bytes resources/multimc/index.theme | 30 + resources/multimc/multimc.qrc | 32 + resources/multimc/scalable/apps/multimc.svg | 1993 +++++++++++++++++++++++ resources/multimc/scalable/bug.svg | 387 +++++ resources/multimc/scalable/console.svg | 228 +++ resources/multimc/scalable/console_error.svg | 247 +++ resources/multimc/scalable/news.svg | 296 ++++ resources/sources/clucker.svg | 404 +++++ resources/sources/creeper.svg | 775 +++++++++ resources/sources/enderpearl.svg | 271 +++ resources/sources/ftb-glow.svg | 606 +++++++ resources/sources/ftb-logo.svg | 257 +++ resources/sources/gear.svg | 434 +++++ resources/sources/herobrine.svg | 583 +++++++ resources/sources/magitech.svg | 886 ++++++++++ resources/sources/meat.svg | 371 +++++ resources/sources/netherstar.svg | 342 ++++ resources/sources/pskeleton.svg | 581 +++++++ resources/sources/skeleton.svg | 610 +++++++ resources/sources/squarecreeper.svg | 828 ++++++++++ resources/sources/status-bad.svg | 262 +++ resources/sources/status-good.svg | 293 ++++ resources/sources/status-terrible.svg | 262 +++ resources/sources/steve.svg | 534 ++++++ 167 files changed, 11586 insertions(+), 10745 deletions(-) delete mode 100644 graphics.qrc create mode 100644 resources/MultiMC.ico delete mode 100644 resources/XdgIcon.theme create mode 100644 resources/backgrounds/backgrounds.qrc create mode 100644 resources/backgrounds/catbgrnd2.png delete mode 100644 resources/catbgrnd2.png delete mode 100644 resources/icons/MultiMC.ico delete mode 100644 resources/icons/console.svg delete mode 100644 resources/icons/console_error.svg delete mode 100644 resources/icons/instances/brick.png delete mode 100644 resources/icons/instances/chicken.png delete mode 100644 resources/icons/instances/chicken128.png delete mode 100644 resources/icons/instances/creeper.png delete mode 100644 resources/icons/instances/creeper128.png delete mode 100644 resources/icons/instances/derp.png delete mode 100644 resources/icons/instances/diamond.png delete mode 100644 resources/icons/instances/dirt.png delete mode 100644 resources/icons/instances/enderman.png delete mode 100644 resources/icons/instances/enderpearl.png delete mode 100644 resources/icons/instances/enderpearl128.png delete mode 100644 resources/icons/instances/ftb_glow.png delete mode 100644 resources/icons/instances/ftb_glow128.png delete mode 100644 resources/icons/instances/ftb_logo.png delete mode 100644 resources/icons/instances/ftb_logo128.png delete mode 100644 resources/icons/instances/gear.png delete mode 100644 resources/icons/instances/gear128.png delete mode 100644 resources/icons/instances/gold.png delete mode 100644 resources/icons/instances/grass.png delete mode 100644 resources/icons/instances/herobrine.png delete mode 100644 resources/icons/instances/herobrine128.png delete mode 100644 resources/icons/instances/infinity.png delete mode 100644 resources/icons/instances/infinity128.png delete mode 100644 resources/icons/instances/iron.png delete mode 100644 resources/icons/instances/magitech.png delete mode 100644 resources/icons/instances/magitech128.png delete mode 100644 resources/icons/instances/meat.png delete mode 100644 resources/icons/instances/meat128.png delete mode 100644 resources/icons/instances/netherstar.png delete mode 100644 resources/icons/instances/netherstar128.png delete mode 100644 resources/icons/instances/planks.png delete mode 100644 resources/icons/instances/skeleton.png delete mode 100644 resources/icons/instances/skeleton128.png delete mode 100644 resources/icons/instances/squarecreeper.png delete mode 100644 resources/icons/instances/squarecreeper128.png delete mode 100644 resources/icons/instances/steve.png delete mode 100644 resources/icons/instances/steve128.png delete mode 100644 resources/icons/instances/stone.png delete mode 100644 resources/icons/instances/tnt.png delete mode 100644 resources/icons/instances_svg/clucker.svg delete mode 100644 resources/icons/instances_svg/creeper.svg delete mode 100644 resources/icons/instances_svg/enderpearl.svg delete mode 100644 resources/icons/instances_svg/ftb-glow.svg delete mode 100644 resources/icons/instances_svg/ftb-logo.svg delete mode 100644 resources/icons/instances_svg/gear.svg delete mode 100644 resources/icons/instances_svg/herobrine.svg delete mode 100644 resources/icons/instances_svg/magitech.svg delete mode 100644 resources/icons/instances_svg/meat.svg delete mode 100644 resources/icons/instances_svg/netherstar.svg delete mode 100644 resources/icons/instances_svg/pskeleton.svg delete mode 100644 resources/icons/instances_svg/skeleton.svg delete mode 100644 resources/icons/instances_svg/squarecreeper.svg delete mode 100644 resources/icons/instances_svg/steve.svg delete mode 100644 resources/icons/multimc.svg delete mode 100644 resources/icons/toolbar/Cat.png delete mode 100644 resources/icons/toolbar/InstCopy.png delete mode 100644 resources/icons/toolbar/NewsIcon.png delete mode 100644 resources/icons/toolbar/NoAccount.png delete mode 100644 resources/icons/toolbar/ReportBug.png delete mode 100644 resources/icons/toolbar/about.png delete mode 100644 resources/icons/toolbar/centralmods.png delete mode 100644 resources/icons/toolbar/checkupdate.png delete mode 100644 resources/icons/toolbar/help.png delete mode 100644 resources/icons/toolbar/new.png delete mode 100644 resources/icons/toolbar/refresh.png delete mode 100644 resources/icons/toolbar/settings.png delete mode 100644 resources/icons/toolbar/viewfolder.png delete mode 100644 resources/icons/toolbar_svg/bug.svg delete mode 100644 resources/icons/toolbar_svg/news.svg create mode 100644 resources/instances/brick.png create mode 100644 resources/instances/chicken.png create mode 100644 resources/instances/chicken128.png create mode 100644 resources/instances/creeper.png create mode 100644 resources/instances/creeper128.png create mode 100644 resources/instances/derp.png create mode 100644 resources/instances/diamond.png create mode 100644 resources/instances/dirt.png create mode 100644 resources/instances/enderman.png create mode 100644 resources/instances/enderpearl.png create mode 100644 resources/instances/enderpearl128.png create mode 100644 resources/instances/ftb_glow.png create mode 100644 resources/instances/ftb_glow128.png create mode 100644 resources/instances/ftb_logo.png create mode 100644 resources/instances/ftb_logo128.png create mode 100644 resources/instances/gear.png create mode 100644 resources/instances/gear128.png create mode 100644 resources/instances/gold.png create mode 100644 resources/instances/grass.png create mode 100644 resources/instances/herobrine.png create mode 100644 resources/instances/herobrine128.png create mode 100644 resources/instances/infinity.png create mode 100644 resources/instances/infinity128.png create mode 100644 resources/instances/instances.qrc create mode 100644 resources/instances/iron.png create mode 100644 resources/instances/magitech.png create mode 100644 resources/instances/magitech128.png create mode 100644 resources/instances/meat.png create mode 100644 resources/instances/meat128.png create mode 100644 resources/instances/netherstar.png create mode 100644 resources/instances/netherstar128.png create mode 100644 resources/instances/planks.png create mode 100644 resources/instances/skeleton.png create mode 100644 resources/instances/skeleton128.png create mode 100644 resources/instances/squarecreeper.png create mode 100644 resources/instances/squarecreeper128.png create mode 100644 resources/instances/steve.png create mode 100644 resources/instances/steve128.png create mode 100644 resources/instances/stone.png create mode 100644 resources/instances/tnt.png create mode 100644 resources/multimc/16x16/noaccount.png create mode 100644 resources/multimc/16x16/refresh.png create mode 100644 resources/multimc/22x22/about.png create mode 100644 resources/multimc/22x22/bug.png create mode 100644 resources/multimc/22x22/centralmods.png create mode 100644 resources/multimc/22x22/checkupdate.png create mode 100644 resources/multimc/22x22/copy.png create mode 100644 resources/multimc/22x22/help.png create mode 100644 resources/multimc/22x22/new.png create mode 100644 resources/multimc/22x22/news.png create mode 100644 resources/multimc/22x22/refresh.png create mode 100644 resources/multimc/22x22/settings.png create mode 100644 resources/multimc/22x22/viewfolder.png create mode 100644 resources/multimc/24x24/cat.png create mode 100644 resources/multimc/24x24/noaccount.png create mode 100644 resources/multimc/24x24/refresh.png create mode 100644 resources/multimc/32x32/noaccount.png create mode 100644 resources/multimc/32x32/refresh.png create mode 100644 resources/multimc/48x48/noaccount.png create mode 100644 resources/multimc/48x48/refresh.png create mode 100644 resources/multimc/8x8/noaccount.png create mode 100644 resources/multimc/index.theme create mode 100644 resources/multimc/multimc.qrc create mode 100644 resources/multimc/scalable/apps/multimc.svg create mode 100644 resources/multimc/scalable/bug.svg create mode 100644 resources/multimc/scalable/console.svg create mode 100644 resources/multimc/scalable/console_error.svg create mode 100644 resources/multimc/scalable/news.svg create mode 100644 resources/sources/clucker.svg create mode 100644 resources/sources/creeper.svg create mode 100644 resources/sources/enderpearl.svg create mode 100644 resources/sources/ftb-glow.svg create mode 100644 resources/sources/ftb-logo.svg create mode 100644 resources/sources/gear.svg create mode 100644 resources/sources/herobrine.svg create mode 100644 resources/sources/magitech.svg create mode 100644 resources/sources/meat.svg create mode 100644 resources/sources/netherstar.svg create mode 100644 resources/sources/pskeleton.svg create mode 100644 resources/sources/skeleton.svg create mode 100644 resources/sources/squarecreeper.svg create mode 100644 resources/sources/status-bad.svg create mode 100644 resources/sources/status-good.svg create mode 100644 resources/sources/status-terrible.svg create mode 100644 resources/sources/steve.svg (limited to 'gui/MainWindow.cpp') diff --git a/CMakeLists.txt b/CMakeLists.txt index c0a4439b..f2ccdab0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -519,6 +519,12 @@ gui/widgets/MCModInfoFrame.ui set (FILES_TO_TRANSLATE ${FILES_TO_TRANSLATE} ${MULTIMC_SOURCES} ${MULTIMC_UIS}) +SET(MULTIMC_QRCS +resources/backgrounds/backgrounds.qrc +resources/multimc/multimc.qrc +resources/instances/instances.qrc +) + ######## Windows resource files ######## IF(WIN32) @@ -562,10 +568,10 @@ ENDIF(MultiMC_CODE_COVERAGE) # Qt 5 stuff QT5_WRAP_UI(MULTIMC_UI ${MULTIMC_UIS}) -QT5_ADD_RESOURCES(GRAPHICS_QRC graphics.qrc) +QT5_ADD_RESOURCES(MULTIMC_RESOURCES ${MULTIMC_QRCS}) # Add common library -ADD_LIBRARY(MultiMC_common STATIC ${MULTIMC_SOURCES} ${MULTIMC_UI} ${GRAPHICS_QRC}) +ADD_LIBRARY(MultiMC_common STATIC ${MULTIMC_SOURCES} ${MULTIMC_UI} ${MULTIMC_RESOURCES}) # Add executable ADD_EXECUTABLE(MultiMC MACOSX_BUNDLE WIN32 main.cpp ${MULTIMC_RCS}) diff --git a/graphics.qrc b/graphics.qrc deleted file mode 100644 index 68d3beed..00000000 --- a/graphics.qrc +++ /dev/null @@ -1,51 +0,0 @@ - - - resources/icons/toolbar/about.png - resources/icons/toolbar/ReportBug.png - resources/icons/toolbar/centralmods.png - resources/icons/toolbar/checkupdate.png - resources/icons/toolbar/help.png - resources/icons/toolbar/new.png - resources/icons/toolbar/InstCopy.png - resources/icons/toolbar/NewsIcon.png - resources/icons/toolbar/refresh.png - resources/icons/toolbar/settings.png - resources/icons/toolbar/viewfolder.png - resources/icons/toolbar/Cat.png - resources/icons/toolbar/NoAccount.png - - - resources/icons/instances/brick.png - resources/icons/instances/chicken128.png - resources/icons/instances/creeper128.png - resources/icons/instances/derp.png - resources/icons/instances/diamond.png - resources/icons/instances/dirt.png - resources/icons/instances/enderman.png - resources/icons/instances/enderpearl128.png - resources/icons/instances/ftb_glow128.png - resources/icons/instances/ftb_logo128.png - resources/icons/instances/gear128.png - resources/icons/instances/gold.png - resources/icons/instances/grass.png - resources/icons/instances/herobrine128.png - resources/icons/instances/infinity128.png - resources/icons/instances/iron.png - resources/icons/instances/magitech128.png - resources/icons/instances/meat128.png - resources/icons/instances/netherstar128.png - resources/icons/instances/planks.png - resources/icons/instances/skeleton128.png - resources/icons/instances/squarecreeper128.png - resources/icons/instances/steve128.png - resources/icons/instances/stone.png - resources/icons/instances/tnt.png - - - resources/icons/multimc.svg - resources/XdgIcon.theme - - - resources/catbgrnd2.png - - diff --git a/gui/MainWindow.cpp b/gui/MainWindow.cpp index cca1ecac..7c8562cd 100644 --- a/gui/MainWindow.cpp +++ b/gui/MainWindow.cpp @@ -128,7 +128,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWi // Add the news label to the news toolbar. { newsLabel = new QToolButton(); - newsLabel->setIcon(QIcon(":/icons/toolbar/news")); + newsLabel->setIcon(QIcon::fromTheme("news")); newsLabel->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); newsLabel->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); ui->newsToolBar->insertWidget(ui->actionMoreNews, newsLabel); @@ -203,9 +203,9 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWi m_statusLeft = new QLabel(tr("No instance selected"), this); m_statusRight = new QLabel(tr("No status available"), this); m_statusRefresh = new QToolButton(this); + m_statusRefresh->setCheckable(true); m_statusRefresh->setToolButtonStyle(Qt::ToolButtonIconOnly); - m_statusRefresh->setIcon( - QPixmap(":/icons/toolbar/refresh").scaled(16, 16, Qt::KeepAspectRatio)); + m_statusRefresh->setIcon(QIcon::fromTheme("refresh")); statusBar()->addPermanentWidget(m_statusLeft, 1); statusBar()->addPermanentWidget(m_statusRight, 0); @@ -241,8 +241,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWi accountMenuButton->setMenu(accountMenu); accountMenuButton->setPopupMode(QToolButton::InstantPopup); accountMenuButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); - accountMenuButton->setIcon( - QPixmap(":/icons/toolbar/noaccount").scaled(48, 48, Qt::KeepAspectRatio)); + accountMenuButton->setIcon(QIcon::fromTheme("noaccount")); QWidgetAction *accountMenuButtonAction = new QWidgetAction(this); accountMenuButtonAction->setDefaultWidget(accountMenuButton); @@ -408,7 +407,7 @@ void MainWindow::repopulateAccountsMenu() QAction *action = new QAction(tr("No Default Account"), this); action->setCheckable(true); - action->setIcon(QPixmap(":/icons/toolbar/noaccount").scaled(48, 48, Qt::KeepAspectRatio)); + action->setIcon(QIcon::fromTheme("noaccount")); action->setData(""); if (active_username.isEmpty()) { @@ -462,8 +461,7 @@ void MainWindow::activeAccountChanged() } // Set the icon to the "no account" icon. - accountMenuButton->setIcon( - QPixmap(":/icons/toolbar/noaccount").scaled(48, 48, Qt::KeepAspectRatio)); + accountMenuButton->setIcon(QIcon::fromTheme("noaccount")); } bool MainWindow::eventFilter(QObject *obj, QEvent *ev) @@ -533,8 +531,9 @@ static QString convertStatus(const QString &status) void MainWindow::reloadStatus() { + m_statusRefresh->setChecked(true); MMC->statusChecker()->reloadStatus(); - updateStatusUI(); + //updateStatusUI(); } static QString makeStatusString(const QMap statuses) @@ -555,16 +554,7 @@ void MainWindow::updateStatusUI() auto statuses = statusChecker->getStatusEntries(); QString status = makeStatusString(statuses); - if(statusChecker->isLoadingStatus()) - { - m_statusRefresh->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); - m_statusRefresh->setText(tr("Loading...")); - } - else - { - m_statusRefresh->setToolButtonStyle(Qt::ToolButtonIconOnly); - m_statusRefresh->setText(tr("")); - } + m_statusRefresh->setChecked(false); m_statusRight->setText(status); @@ -574,8 +564,7 @@ void MainWindow::updateStatusUI() void MainWindow::updateStatusFailedUI() { m_statusRight->setText(makeStatusString(QMap())); - m_statusRefresh->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); - m_statusRefresh->setText(tr("Failed.")); + m_statusRefresh->setChecked(false); statusTimer.start(60 * 1000); } diff --git a/gui/MainWindow.ui b/gui/MainWindow.ui index 16e72c2f..5653907e 100644 --- a/gui/MainWindow.ui +++ b/gui/MainWindow.ui @@ -14,7 +14,7 @@ MultiMC 5 - + :/icons/multimc/scalable/apps/multimc.svg:/icons/multimc/scalable/apps/multimc.svg @@ -152,8 +152,7 @@ - - :/icons/toolbar/new:/icons/toolbar/new + Add Instance @@ -167,8 +166,7 @@ - - :/icons/toolbar/viewfolder:/icons/toolbar/viewfolder + View Instance Folder @@ -182,8 +180,7 @@ - - :/icons/toolbar/refresh:/icons/toolbar/refresh + Refresh @@ -197,8 +194,7 @@ - - :/icons/toolbar/centralmods:/icons/toolbar/centralmods + View Central Mods Folder @@ -212,8 +208,7 @@ - - :/icons/toolbar/checkupdate:/icons/toolbar/checkupdate + Check for Updates @@ -227,8 +222,7 @@ - - :/icons/toolbar/settings:/icons/toolbar/settings + Settings @@ -245,8 +239,7 @@ - - :/icons/toolbar/bug:/icons/toolbar/bug + Report a Bug @@ -260,8 +253,7 @@ - - :/icons/toolbar/news:/icons/toolbar/news + More News @@ -278,8 +270,7 @@ - - :/icons/toolbar/about:/icons/toolbar/about + About MultiMC @@ -332,7 +323,7 @@ true - + :/icons/instances/infinity:/icons/instances/infinity @@ -472,8 +463,7 @@ true - - :/icons/toolbar/cat:/icons/toolbar/cat + Meow @@ -484,8 +474,7 @@ - - :/icons/toolbar/copy:/icons/toolbar/copy + Copy Instance @@ -508,7 +497,9 @@ - + + + diff --git a/main.cpp b/main.cpp index c91af978..181d7299 100644 --- a/main.cpp +++ b/main.cpp @@ -4,6 +4,7 @@ int main_gui(MultiMC &app) { // show main window + QIcon::setThemeName("multimc"); MainWindow mainWin; mainWin.restoreState(QByteArray::fromBase64(MMC->settings()->get("MainWindowState").toByteArray())); mainWin.restoreGeometry(QByteArray::fromBase64(MMC->settings()->get("MainWindowGeometry").toByteArray())); @@ -18,7 +19,9 @@ int main(int argc, char *argv[]) // initialize Qt MultiMC app(argc, argv); - Q_INIT_RESOURCE(graphics); + Q_INIT_RESOURCE(instances); + Q_INIT_RESOURCE(multimc); + Q_INIT_RESOURCE(backgrounds); switch (app.status()) { diff --git a/resources/MultiMC.ico b/resources/MultiMC.ico new file mode 100644 index 00000000..734af0fb Binary files /dev/null and b/resources/MultiMC.ico differ diff --git a/resources/XdgIcon.theme b/resources/XdgIcon.theme deleted file mode 100644 index ad26482e..00000000 --- a/resources/XdgIcon.theme +++ /dev/null @@ -1,12 +0,0 @@ -[Icon Theme] -Name=MultiMC -Comment=MultiMC Default Icons -Inherits=default -Directories=scalable/apps - -[scalable/apps] -Size=48 -Type=scalable -MinSize=1 -MaxSize=512 -Context=Applications diff --git a/resources/backgrounds/backgrounds.qrc b/resources/backgrounds/backgrounds.qrc new file mode 100644 index 00000000..55de139e --- /dev/null +++ b/resources/backgrounds/backgrounds.qrc @@ -0,0 +1,6 @@ + + + + catbgrnd2.png + + diff --git a/resources/backgrounds/catbgrnd2.png b/resources/backgrounds/catbgrnd2.png new file mode 100644 index 00000000..2b949e0b Binary files /dev/null and b/resources/backgrounds/catbgrnd2.png differ diff --git a/resources/catbgrnd2.png b/resources/catbgrnd2.png deleted file mode 100644 index 2b949e0b..00000000 Binary files a/resources/catbgrnd2.png and /dev/null differ diff --git a/resources/icons/MultiMC.ico b/resources/icons/MultiMC.ico deleted file mode 100644 index 734af0fb..00000000 Binary files a/resources/icons/MultiMC.ico and /dev/null differ diff --git a/resources/icons/console.svg b/resources/icons/console.svg deleted file mode 100644 index ec14ab68..00000000 --- a/resources/icons/console.svg +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - MC - - - diff --git a/resources/icons/console_error.svg b/resources/icons/console_error.svg deleted file mode 100644 index a71c6b35..00000000 --- a/resources/icons/console_error.svg +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/instances/brick.png b/resources/icons/instances/brick.png deleted file mode 100644 index 0b534366..00000000 Binary files a/resources/icons/instances/brick.png and /dev/null differ diff --git a/resources/icons/instances/chicken.png b/resources/icons/instances/chicken.png deleted file mode 100644 index f870467a..00000000 Binary files a/resources/icons/instances/chicken.png and /dev/null differ diff --git a/resources/icons/instances/chicken128.png b/resources/icons/instances/chicken128.png deleted file mode 100644 index 71f6dedc..00000000 Binary files a/resources/icons/instances/chicken128.png and /dev/null differ diff --git a/resources/icons/instances/creeper.png b/resources/icons/instances/creeper.png deleted file mode 100644 index a67ecfc3..00000000 Binary files a/resources/icons/instances/creeper.png and /dev/null differ diff --git a/resources/icons/instances/creeper128.png b/resources/icons/instances/creeper128.png deleted file mode 100644 index 41b7d07d..00000000 Binary files a/resources/icons/instances/creeper128.png and /dev/null differ diff --git a/resources/icons/instances/derp.png b/resources/icons/instances/derp.png deleted file mode 100644 index 4c361942..00000000 Binary files a/resources/icons/instances/derp.png and /dev/null differ diff --git a/resources/icons/instances/diamond.png b/resources/icons/instances/diamond.png deleted file mode 100644 index 376ab901..00000000 Binary files a/resources/icons/instances/diamond.png and /dev/null differ diff --git a/resources/icons/instances/dirt.png b/resources/icons/instances/dirt.png deleted file mode 100644 index 9e19eb8f..00000000 Binary files a/resources/icons/instances/dirt.png and /dev/null differ diff --git a/resources/icons/instances/enderman.png b/resources/icons/instances/enderman.png deleted file mode 100644 index 9f3a72b3..00000000 Binary files a/resources/icons/instances/enderman.png and /dev/null differ diff --git a/resources/icons/instances/enderpearl.png b/resources/icons/instances/enderpearl.png deleted file mode 100644 index a818eb8e..00000000 Binary files a/resources/icons/instances/enderpearl.png and /dev/null differ diff --git a/resources/icons/instances/enderpearl128.png b/resources/icons/instances/enderpearl128.png deleted file mode 100644 index 0a5bf91a..00000000 Binary files a/resources/icons/instances/enderpearl128.png and /dev/null differ diff --git a/resources/icons/instances/ftb_glow.png b/resources/icons/instances/ftb_glow.png deleted file mode 100644 index c4e6fd5d..00000000 Binary files a/resources/icons/instances/ftb_glow.png and /dev/null differ diff --git a/resources/icons/instances/ftb_glow128.png b/resources/icons/instances/ftb_glow128.png deleted file mode 100644 index 86632b21..00000000 Binary files a/resources/icons/instances/ftb_glow128.png and /dev/null differ diff --git a/resources/icons/instances/ftb_logo.png b/resources/icons/instances/ftb_logo.png deleted file mode 100644 index 20df7171..00000000 Binary files a/resources/icons/instances/ftb_logo.png and /dev/null differ diff --git a/resources/icons/instances/ftb_logo128.png b/resources/icons/instances/ftb_logo128.png deleted file mode 100644 index e725b7fe..00000000 Binary files a/resources/icons/instances/ftb_logo128.png and /dev/null differ diff --git a/resources/icons/instances/gear.png b/resources/icons/instances/gear.png deleted file mode 100644 index da9ba2f9..00000000 Binary files a/resources/icons/instances/gear.png and /dev/null differ diff --git a/resources/icons/instances/gear128.png b/resources/icons/instances/gear128.png deleted file mode 100644 index 75c68a66..00000000 Binary files a/resources/icons/instances/gear128.png and /dev/null differ diff --git a/resources/icons/instances/gold.png b/resources/icons/instances/gold.png deleted file mode 100644 index 9bedda16..00000000 Binary files a/resources/icons/instances/gold.png and /dev/null differ diff --git a/resources/icons/instances/grass.png b/resources/icons/instances/grass.png deleted file mode 100644 index f1694547..00000000 Binary files a/resources/icons/instances/grass.png and /dev/null differ diff --git a/resources/icons/instances/herobrine.png b/resources/icons/instances/herobrine.png deleted file mode 100644 index e5460da3..00000000 Binary files a/resources/icons/instances/herobrine.png and /dev/null differ diff --git a/resources/icons/instances/herobrine128.png b/resources/icons/instances/herobrine128.png deleted file mode 100644 index 13f1494c..00000000 Binary files a/resources/icons/instances/herobrine128.png and /dev/null differ diff --git a/resources/icons/instances/infinity.png b/resources/icons/instances/infinity.png deleted file mode 100644 index bd94a3dc..00000000 Binary files a/resources/icons/instances/infinity.png and /dev/null differ diff --git a/resources/icons/instances/infinity128.png b/resources/icons/instances/infinity128.png deleted file mode 100644 index 226847fb..00000000 Binary files a/resources/icons/instances/infinity128.png and /dev/null differ diff --git a/resources/icons/instances/iron.png b/resources/icons/instances/iron.png deleted file mode 100644 index 28960782..00000000 Binary files a/resources/icons/instances/iron.png and /dev/null differ diff --git a/resources/icons/instances/magitech.png b/resources/icons/instances/magitech.png deleted file mode 100644 index 6fd8ff60..00000000 Binary files a/resources/icons/instances/magitech.png and /dev/null differ diff --git a/resources/icons/instances/magitech128.png b/resources/icons/instances/magitech128.png deleted file mode 100644 index 0f81a199..00000000 Binary files a/resources/icons/instances/magitech128.png and /dev/null differ diff --git a/resources/icons/instances/meat.png b/resources/icons/instances/meat.png deleted file mode 100644 index 6694859d..00000000 Binary files a/resources/icons/instances/meat.png and /dev/null differ diff --git a/resources/icons/instances/meat128.png b/resources/icons/instances/meat128.png deleted file mode 100644 index fefc9bf1..00000000 Binary files a/resources/icons/instances/meat128.png and /dev/null differ diff --git a/resources/icons/instances/netherstar.png b/resources/icons/instances/netherstar.png deleted file mode 100644 index 43cb5113..00000000 Binary files a/resources/icons/instances/netherstar.png and /dev/null differ diff --git a/resources/icons/instances/netherstar128.png b/resources/icons/instances/netherstar128.png deleted file mode 100644 index 132085f0..00000000 Binary files a/resources/icons/instances/netherstar128.png and /dev/null differ diff --git a/resources/icons/instances/planks.png b/resources/icons/instances/planks.png deleted file mode 100644 index 7fcf8467..00000000 Binary files a/resources/icons/instances/planks.png and /dev/null differ diff --git a/resources/icons/instances/skeleton.png b/resources/icons/instances/skeleton.png deleted file mode 100644 index 0c8d3505..00000000 Binary files a/resources/icons/instances/skeleton.png and /dev/null differ diff --git a/resources/icons/instances/skeleton128.png b/resources/icons/instances/skeleton128.png deleted file mode 100644 index 55fcf5a9..00000000 Binary files a/resources/icons/instances/skeleton128.png and /dev/null differ diff --git a/resources/icons/instances/squarecreeper.png b/resources/icons/instances/squarecreeper.png deleted file mode 100644 index b78c4ae0..00000000 Binary files a/resources/icons/instances/squarecreeper.png and /dev/null differ diff --git a/resources/icons/instances/squarecreeper128.png b/resources/icons/instances/squarecreeper128.png deleted file mode 100644 index c82d8406..00000000 Binary files a/resources/icons/instances/squarecreeper128.png and /dev/null differ diff --git a/resources/icons/instances/steve.png b/resources/icons/instances/steve.png deleted file mode 100644 index 07c6acde..00000000 Binary files a/resources/icons/instances/steve.png and /dev/null differ diff --git a/resources/icons/instances/steve128.png b/resources/icons/instances/steve128.png deleted file mode 100644 index a07cbd2f..00000000 Binary files a/resources/icons/instances/steve128.png and /dev/null differ diff --git a/resources/icons/instances/stone.png b/resources/icons/instances/stone.png deleted file mode 100644 index 34f9a751..00000000 Binary files a/resources/icons/instances/stone.png and /dev/null differ diff --git a/resources/icons/instances/tnt.png b/resources/icons/instances/tnt.png deleted file mode 100644 index e40d404d..00000000 Binary files a/resources/icons/instances/tnt.png and /dev/null differ diff --git a/resources/icons/instances_svg/clucker.svg b/resources/icons/instances_svg/clucker.svg deleted file mode 100644 index 0c1727eb..00000000 --- a/resources/icons/instances_svg/clucker.svg +++ /dev/null @@ -1,404 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/instances_svg/creeper.svg b/resources/icons/instances_svg/creeper.svg deleted file mode 100644 index 2a2e39b6..00000000 --- a/resources/icons/instances_svg/creeper.svg +++ /dev/null @@ -1,775 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/instances_svg/enderpearl.svg b/resources/icons/instances_svg/enderpearl.svg deleted file mode 100644 index ac9378f5..00000000 --- a/resources/icons/instances_svg/enderpearl.svg +++ /dev/null @@ -1,271 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/instances_svg/ftb-glow.svg b/resources/icons/instances_svg/ftb-glow.svg deleted file mode 100644 index be78c78e..00000000 --- a/resources/icons/instances_svg/ftb-glow.svg +++ /dev/null @@ -1,606 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/instances_svg/ftb-logo.svg b/resources/icons/instances_svg/ftb-logo.svg deleted file mode 100644 index 8cf73567..00000000 --- a/resources/icons/instances_svg/ftb-logo.svg +++ /dev/null @@ -1,257 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/instances_svg/gear.svg b/resources/icons/instances_svg/gear.svg deleted file mode 100644 index c0169aec..00000000 --- a/resources/icons/instances_svg/gear.svg +++ /dev/null @@ -1,434 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/resources/icons/instances_svg/herobrine.svg b/resources/icons/instances_svg/herobrine.svg deleted file mode 100644 index 7392ba36..00000000 --- a/resources/icons/instances_svg/herobrine.svg +++ /dev/null @@ -1,583 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/instances_svg/magitech.svg b/resources/icons/instances_svg/magitech.svg deleted file mode 100644 index c6dd6bc0..00000000 --- a/resources/icons/instances_svg/magitech.svg +++ /dev/null @@ -1,886 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/instances_svg/meat.svg b/resources/icons/instances_svg/meat.svg deleted file mode 100644 index 69a20073..00000000 --- a/resources/icons/instances_svg/meat.svg +++ /dev/null @@ -1,371 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/instances_svg/netherstar.svg b/resources/icons/instances_svg/netherstar.svg deleted file mode 100644 index 4046e4ec..00000000 --- a/resources/icons/instances_svg/netherstar.svg +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/instances_svg/pskeleton.svg b/resources/icons/instances_svg/pskeleton.svg deleted file mode 100644 index c2783df8..00000000 --- a/resources/icons/instances_svg/pskeleton.svg +++ /dev/null @@ -1,581 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/instances_svg/skeleton.svg b/resources/icons/instances_svg/skeleton.svg deleted file mode 100644 index 5d55f272..00000000 --- a/resources/icons/instances_svg/skeleton.svg +++ /dev/null @@ -1,610 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/instances_svg/squarecreeper.svg b/resources/icons/instances_svg/squarecreeper.svg deleted file mode 100644 index a1b0f4d1..00000000 --- a/resources/icons/instances_svg/squarecreeper.svg +++ /dev/null @@ -1,828 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/instances_svg/steve.svg b/resources/icons/instances_svg/steve.svg deleted file mode 100644 index 2233272c..00000000 --- a/resources/icons/instances_svg/steve.svg +++ /dev/null @@ -1,534 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/multimc.svg b/resources/icons/multimc.svg deleted file mode 100644 index 178509ac..00000000 --- a/resources/icons/multimc.svg +++ /dev/null @@ -1,1993 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/toolbar/Cat.png b/resources/icons/toolbar/Cat.png deleted file mode 100644 index 4fcda3ea..00000000 Binary files a/resources/icons/toolbar/Cat.png and /dev/null differ diff --git a/resources/icons/toolbar/InstCopy.png b/resources/icons/toolbar/InstCopy.png deleted file mode 100644 index c8f9db41..00000000 Binary files a/resources/icons/toolbar/InstCopy.png and /dev/null differ diff --git a/resources/icons/toolbar/NewsIcon.png b/resources/icons/toolbar/NewsIcon.png deleted file mode 100644 index 1953bf7b..00000000 Binary files a/resources/icons/toolbar/NewsIcon.png and /dev/null differ diff --git a/resources/icons/toolbar/NoAccount.png b/resources/icons/toolbar/NoAccount.png deleted file mode 100644 index 466e4c07..00000000 Binary files a/resources/icons/toolbar/NoAccount.png and /dev/null differ diff --git a/resources/icons/toolbar/ReportBug.png b/resources/icons/toolbar/ReportBug.png deleted file mode 100644 index 90481bba..00000000 Binary files a/resources/icons/toolbar/ReportBug.png and /dev/null differ diff --git a/resources/icons/toolbar/about.png b/resources/icons/toolbar/about.png deleted file mode 100644 index 57775e25..00000000 Binary files a/resources/icons/toolbar/about.png and /dev/null differ diff --git a/resources/icons/toolbar/centralmods.png b/resources/icons/toolbar/centralmods.png deleted file mode 100644 index a10f9a2b..00000000 Binary files a/resources/icons/toolbar/centralmods.png and /dev/null differ diff --git a/resources/icons/toolbar/checkupdate.png b/resources/icons/toolbar/checkupdate.png deleted file mode 100644 index badb200c..00000000 Binary files a/resources/icons/toolbar/checkupdate.png and /dev/null differ diff --git a/resources/icons/toolbar/help.png b/resources/icons/toolbar/help.png deleted file mode 100644 index da79b3e3..00000000 Binary files a/resources/icons/toolbar/help.png and /dev/null differ diff --git a/resources/icons/toolbar/new.png b/resources/icons/toolbar/new.png deleted file mode 100644 index c707fbbf..00000000 Binary files a/resources/icons/toolbar/new.png and /dev/null differ diff --git a/resources/icons/toolbar/refresh.png b/resources/icons/toolbar/refresh.png deleted file mode 100644 index 734729bf..00000000 Binary files a/resources/icons/toolbar/refresh.png and /dev/null differ diff --git a/resources/icons/toolbar/settings.png b/resources/icons/toolbar/settings.png deleted file mode 100644 index daf56aad..00000000 Binary files a/resources/icons/toolbar/settings.png and /dev/null differ diff --git a/resources/icons/toolbar/viewfolder.png b/resources/icons/toolbar/viewfolder.png deleted file mode 100644 index b645167f..00000000 Binary files a/resources/icons/toolbar/viewfolder.png and /dev/null differ diff --git a/resources/icons/toolbar_svg/bug.svg b/resources/icons/toolbar_svg/bug.svg deleted file mode 100644 index 0534cbef..00000000 --- a/resources/icons/toolbar_svg/bug.svg +++ /dev/null @@ -1,387 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/icons/toolbar_svg/news.svg b/resources/icons/toolbar_svg/news.svg deleted file mode 100644 index 67a370df..00000000 --- a/resources/icons/toolbar_svg/news.svg +++ /dev/null @@ -1,296 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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/instances/brick.png b/resources/instances/brick.png new file mode 100644 index 00000000..0b534366 Binary files /dev/null and b/resources/instances/brick.png differ diff --git a/resources/instances/chicken.png b/resources/instances/chicken.png new file mode 100644 index 00000000..f870467a Binary files /dev/null and b/resources/instances/chicken.png differ diff --git a/resources/instances/chicken128.png b/resources/instances/chicken128.png new file mode 100644 index 00000000..71f6dedc Binary files /dev/null and b/resources/instances/chicken128.png differ diff --git a/resources/instances/creeper.png b/resources/instances/creeper.png new file mode 100644 index 00000000..a67ecfc3 Binary files /dev/null and b/resources/instances/creeper.png differ diff --git a/resources/instances/creeper128.png b/resources/instances/creeper128.png new file mode 100644 index 00000000..41b7d07d Binary files /dev/null and b/resources/instances/creeper128.png differ diff --git a/resources/instances/derp.png b/resources/instances/derp.png new file mode 100644 index 00000000..4c361942 Binary files /dev/null and b/resources/instances/derp.png differ diff --git a/resources/instances/diamond.png b/resources/instances/diamond.png new file mode 100644 index 00000000..376ab901 Binary files /dev/null and b/resources/instances/diamond.png differ diff --git a/resources/instances/dirt.png b/resources/instances/dirt.png new file mode 100644 index 00000000..9e19eb8f Binary files /dev/null and b/resources/instances/dirt.png differ diff --git a/resources/instances/enderman.png b/resources/instances/enderman.png new file mode 100644 index 00000000..9f3a72b3 Binary files /dev/null and b/resources/instances/enderman.png differ diff --git a/resources/instances/enderpearl.png b/resources/instances/enderpearl.png new file mode 100644 index 00000000..a818eb8e Binary files /dev/null and b/resources/instances/enderpearl.png differ diff --git a/resources/instances/enderpearl128.png b/resources/instances/enderpearl128.png new file mode 100644 index 00000000..0a5bf91a Binary files /dev/null and b/resources/instances/enderpearl128.png differ diff --git a/resources/instances/ftb_glow.png b/resources/instances/ftb_glow.png new file mode 100644 index 00000000..c4e6fd5d Binary files /dev/null and b/resources/instances/ftb_glow.png differ diff --git a/resources/instances/ftb_glow128.png b/resources/instances/ftb_glow128.png new file mode 100644 index 00000000..86632b21 Binary files /dev/null and b/resources/instances/ftb_glow128.png differ diff --git a/resources/instances/ftb_logo.png b/resources/instances/ftb_logo.png new file mode 100644 index 00000000..20df7171 Binary files /dev/null and b/resources/instances/ftb_logo.png differ diff --git a/resources/instances/ftb_logo128.png b/resources/instances/ftb_logo128.png new file mode 100644 index 00000000..e725b7fe Binary files /dev/null and b/resources/instances/ftb_logo128.png differ diff --git a/resources/instances/gear.png b/resources/instances/gear.png new file mode 100644 index 00000000..da9ba2f9 Binary files /dev/null and b/resources/instances/gear.png differ diff --git a/resources/instances/gear128.png b/resources/instances/gear128.png new file mode 100644 index 00000000..75c68a66 Binary files /dev/null and b/resources/instances/gear128.png differ diff --git a/resources/instances/gold.png b/resources/instances/gold.png new file mode 100644 index 00000000..9bedda16 Binary files /dev/null and b/resources/instances/gold.png differ diff --git a/resources/instances/grass.png b/resources/instances/grass.png new file mode 100644 index 00000000..f1694547 Binary files /dev/null and b/resources/instances/grass.png differ diff --git a/resources/instances/herobrine.png b/resources/instances/herobrine.png new file mode 100644 index 00000000..e5460da3 Binary files /dev/null and b/resources/instances/herobrine.png differ diff --git a/resources/instances/herobrine128.png b/resources/instances/herobrine128.png new file mode 100644 index 00000000..13f1494c Binary files /dev/null and b/resources/instances/herobrine128.png differ diff --git a/resources/instances/infinity.png b/resources/instances/infinity.png new file mode 100644 index 00000000..bd94a3dc Binary files /dev/null and b/resources/instances/infinity.png differ diff --git a/resources/instances/infinity128.png b/resources/instances/infinity128.png new file mode 100644 index 00000000..226847fb Binary files /dev/null and b/resources/instances/infinity128.png differ diff --git a/resources/instances/instances.qrc b/resources/instances/instances.qrc new file mode 100644 index 00000000..e9d22c78 --- /dev/null +++ b/resources/instances/instances.qrc @@ -0,0 +1,30 @@ + + + + brick.png + chicken128.png + creeper128.png + derp.png + diamond.png + dirt.png + enderman.png + enderpearl128.png + ftb_glow128.png + ftb_logo128.png + gear128.png + gold.png + grass.png + herobrine128.png + infinity128.png + iron.png + magitech128.png + meat128.png + netherstar128.png + planks.png + skeleton128.png + squarecreeper128.png + steve128.png + stone.png + tnt.png + + diff --git a/resources/instances/iron.png b/resources/instances/iron.png new file mode 100644 index 00000000..28960782 Binary files /dev/null and b/resources/instances/iron.png differ diff --git a/resources/instances/magitech.png b/resources/instances/magitech.png new file mode 100644 index 00000000..6fd8ff60 Binary files /dev/null and b/resources/instances/magitech.png differ diff --git a/resources/instances/magitech128.png b/resources/instances/magitech128.png new file mode 100644 index 00000000..0f81a199 Binary files /dev/null and b/resources/instances/magitech128.png differ diff --git a/resources/instances/meat.png b/resources/instances/meat.png new file mode 100644 index 00000000..6694859d Binary files /dev/null and b/resources/instances/meat.png differ diff --git a/resources/instances/meat128.png b/resources/instances/meat128.png new file mode 100644 index 00000000..fefc9bf1 Binary files /dev/null and b/resources/instances/meat128.png differ diff --git a/resources/instances/netherstar.png b/resources/instances/netherstar.png new file mode 100644 index 00000000..43cb5113 Binary files /dev/null and b/resources/instances/netherstar.png differ diff --git a/resources/instances/netherstar128.png b/resources/instances/netherstar128.png new file mode 100644 index 00000000..132085f0 Binary files /dev/null and b/resources/instances/netherstar128.png differ diff --git a/resources/instances/planks.png b/resources/instances/planks.png new file mode 100644 index 00000000..7fcf8467 Binary files /dev/null and b/resources/instances/planks.png differ diff --git a/resources/instances/skeleton.png b/resources/instances/skeleton.png new file mode 100644 index 00000000..0c8d3505 Binary files /dev/null and b/resources/instances/skeleton.png differ diff --git a/resources/instances/skeleton128.png b/resources/instances/skeleton128.png new file mode 100644 index 00000000..55fcf5a9 Binary files /dev/null and b/resources/instances/skeleton128.png differ diff --git a/resources/instances/squarecreeper.png b/resources/instances/squarecreeper.png new file mode 100644 index 00000000..b78c4ae0 Binary files /dev/null and b/resources/instances/squarecreeper.png differ diff --git a/resources/instances/squarecreeper128.png b/resources/instances/squarecreeper128.png new file mode 100644 index 00000000..c82d8406 Binary files /dev/null and b/resources/instances/squarecreeper128.png differ diff --git a/resources/instances/steve.png b/resources/instances/steve.png new file mode 100644 index 00000000..07c6acde Binary files /dev/null and b/resources/instances/steve.png differ diff --git a/resources/instances/steve128.png b/resources/instances/steve128.png new file mode 100644 index 00000000..a07cbd2f Binary files /dev/null and b/resources/instances/steve128.png differ diff --git a/resources/instances/stone.png b/resources/instances/stone.png new file mode 100644 index 00000000..34f9a751 Binary files /dev/null and b/resources/instances/stone.png differ diff --git a/resources/instances/tnt.png b/resources/instances/tnt.png new file mode 100644 index 00000000..e40d404d Binary files /dev/null and b/resources/instances/tnt.png differ diff --git a/resources/multimc/16x16/noaccount.png b/resources/multimc/16x16/noaccount.png new file mode 100644 index 00000000..b49bcf36 Binary files /dev/null and b/resources/multimc/16x16/noaccount.png differ diff --git a/resources/multimc/16x16/refresh.png b/resources/multimc/16x16/refresh.png new file mode 100644 index 00000000..dc66b824 Binary files /dev/null and b/resources/multimc/16x16/refresh.png differ diff --git a/resources/multimc/22x22/about.png b/resources/multimc/22x22/about.png new file mode 100644 index 00000000..57775e25 Binary files /dev/null and b/resources/multimc/22x22/about.png differ diff --git a/resources/multimc/22x22/bug.png b/resources/multimc/22x22/bug.png new file mode 100644 index 00000000..90481bba Binary files /dev/null and b/resources/multimc/22x22/bug.png differ diff --git a/resources/multimc/22x22/centralmods.png b/resources/multimc/22x22/centralmods.png new file mode 100644 index 00000000..a10f9a2b Binary files /dev/null and b/resources/multimc/22x22/centralmods.png differ diff --git a/resources/multimc/22x22/checkupdate.png b/resources/multimc/22x22/checkupdate.png new file mode 100644 index 00000000..badb200c Binary files /dev/null and b/resources/multimc/22x22/checkupdate.png differ diff --git a/resources/multimc/22x22/copy.png b/resources/multimc/22x22/copy.png new file mode 100644 index 00000000..c8f9db41 Binary files /dev/null and b/resources/multimc/22x22/copy.png differ diff --git a/resources/multimc/22x22/help.png b/resources/multimc/22x22/help.png new file mode 100644 index 00000000..da79b3e3 Binary files /dev/null and b/resources/multimc/22x22/help.png differ diff --git a/resources/multimc/22x22/new.png b/resources/multimc/22x22/new.png new file mode 100644 index 00000000..c707fbbf Binary files /dev/null and b/resources/multimc/22x22/new.png differ diff --git a/resources/multimc/22x22/news.png b/resources/multimc/22x22/news.png new file mode 100644 index 00000000..1953bf7b Binary files /dev/null and b/resources/multimc/22x22/news.png differ diff --git a/resources/multimc/22x22/refresh.png b/resources/multimc/22x22/refresh.png new file mode 100644 index 00000000..734729bf Binary files /dev/null and b/resources/multimc/22x22/refresh.png differ diff --git a/resources/multimc/22x22/settings.png b/resources/multimc/22x22/settings.png new file mode 100644 index 00000000..daf56aad Binary files /dev/null and b/resources/multimc/22x22/settings.png differ diff --git a/resources/multimc/22x22/viewfolder.png b/resources/multimc/22x22/viewfolder.png new file mode 100644 index 00000000..b645167f Binary files /dev/null and b/resources/multimc/22x22/viewfolder.png differ diff --git a/resources/multimc/24x24/cat.png b/resources/multimc/24x24/cat.png new file mode 100644 index 00000000..4fcda3ea Binary files /dev/null and b/resources/multimc/24x24/cat.png differ diff --git a/resources/multimc/24x24/noaccount.png b/resources/multimc/24x24/noaccount.png new file mode 100644 index 00000000..ac12437c Binary files /dev/null and b/resources/multimc/24x24/noaccount.png differ diff --git a/resources/multimc/24x24/refresh.png b/resources/multimc/24x24/refresh.png new file mode 100644 index 00000000..09a11186 Binary files /dev/null and b/resources/multimc/24x24/refresh.png differ diff --git a/resources/multimc/32x32/noaccount.png b/resources/multimc/32x32/noaccount.png new file mode 100644 index 00000000..a73afc94 Binary files /dev/null and b/resources/multimc/32x32/noaccount.png differ diff --git a/resources/multimc/32x32/refresh.png b/resources/multimc/32x32/refresh.png new file mode 100644 index 00000000..1f0c3913 Binary files /dev/null and b/resources/multimc/32x32/refresh.png differ diff --git a/resources/multimc/48x48/noaccount.png b/resources/multimc/48x48/noaccount.png new file mode 100644 index 00000000..4703796c Binary files /dev/null and b/resources/multimc/48x48/noaccount.png differ diff --git a/resources/multimc/48x48/refresh.png b/resources/multimc/48x48/refresh.png new file mode 100644 index 00000000..f81b8d67 Binary files /dev/null and b/resources/multimc/48x48/refresh.png differ diff --git a/resources/multimc/8x8/noaccount.png b/resources/multimc/8x8/noaccount.png new file mode 100644 index 00000000..466e4c07 Binary files /dev/null and b/resources/multimc/8x8/noaccount.png differ diff --git a/resources/multimc/index.theme b/resources/multimc/index.theme new file mode 100644 index 00000000..d7d460c7 --- /dev/null +++ b/resources/multimc/index.theme @@ -0,0 +1,30 @@ +[Icon Theme] +Name=multimc +Comment=MultiMC Default Icons +Inherits=default +Directories=scalable/apps,8x8,16x16,22x22,24x24,32x32,48x48 + +[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 diff --git a/resources/multimc/multimc.qrc b/resources/multimc/multimc.qrc new file mode 100644 index 00000000..bacd1f76 --- /dev/null +++ b/resources/multimc/multimc.qrc @@ -0,0 +1,32 @@ + + + + index.theme + scalable/apps/multimc.svg + scalable/console.svg + scalable/console_error.svg + scalable/bug.svg + scalable/news.svg + 22x22/about.png + 22x22/bug.png + 22x22/centralmods.png + 22x22/checkupdate.png + 22x22/help.png + 22x22/new.png + 22x22/copy.png + 22x22/news.png + 16x16/refresh.png + 22x22/refresh.png + 24x24/refresh.png + 32x32/refresh.png + 48x48/refresh.png + 22x22/settings.png + 22x22/viewfolder.png + 24x24/cat.png + 8x8/noaccount.png + 16x16/noaccount.png + 24x24/noaccount.png + 32x32/noaccount.png + 48x48/noaccount.png + + diff --git a/resources/multimc/scalable/apps/multimc.svg b/resources/multimc/scalable/apps/multimc.svg new file mode 100644 index 00000000..178509ac --- /dev/null +++ b/resources/multimc/scalable/apps/multimc.svg @@ -0,0 +1,1993 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/multimc/scalable/bug.svg b/resources/multimc/scalable/bug.svg new file mode 100644 index 00000000..0534cbef --- /dev/null +++ b/resources/multimc/scalable/bug.svg @@ -0,0 +1,387 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/multimc/scalable/console.svg b/resources/multimc/scalable/console.svg new file mode 100644 index 00000000..ec14ab68 --- /dev/null +++ b/resources/multimc/scalable/console.svg @@ -0,0 +1,228 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + MC + + + diff --git a/resources/multimc/scalable/console_error.svg b/resources/multimc/scalable/console_error.svg new file mode 100644 index 00000000..a71c6b35 --- /dev/null +++ b/resources/multimc/scalable/console_error.svg @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/resources/multimc/scalable/news.svg b/resources/multimc/scalable/news.svg new file mode 100644 index 00000000..67a370df --- /dev/null +++ b/resources/multimc/scalable/news.svg @@ -0,0 +1,296 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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/sources/clucker.svg b/resources/sources/clucker.svg new file mode 100644 index 00000000..0c1727eb --- /dev/null +++ b/resources/sources/clucker.svg @@ -0,0 +1,404 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/sources/creeper.svg b/resources/sources/creeper.svg new file mode 100644 index 00000000..2a2e39b6 --- /dev/null +++ b/resources/sources/creeper.svg @@ -0,0 +1,775 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/sources/enderpearl.svg b/resources/sources/enderpearl.svg new file mode 100644 index 00000000..ac9378f5 --- /dev/null +++ b/resources/sources/enderpearl.svg @@ -0,0 +1,271 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/resources/sources/ftb-glow.svg b/resources/sources/ftb-glow.svg new file mode 100644 index 00000000..be78c78e --- /dev/null +++ b/resources/sources/ftb-glow.svg @@ -0,0 +1,606 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/sources/ftb-logo.svg b/resources/sources/ftb-logo.svg new file mode 100644 index 00000000..8cf73567 --- /dev/null +++ b/resources/sources/ftb-logo.svg @@ -0,0 +1,257 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/sources/gear.svg b/resources/sources/gear.svg new file mode 100644 index 00000000..c0169aec --- /dev/null +++ b/resources/sources/gear.svg @@ -0,0 +1,434 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/resources/sources/herobrine.svg b/resources/sources/herobrine.svg new file mode 100644 index 00000000..7392ba36 --- /dev/null +++ b/resources/sources/herobrine.svg @@ -0,0 +1,583 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/sources/magitech.svg b/resources/sources/magitech.svg new file mode 100644 index 00000000..c6dd6bc0 --- /dev/null +++ b/resources/sources/magitech.svg @@ -0,0 +1,886 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/sources/meat.svg b/resources/sources/meat.svg new file mode 100644 index 00000000..69a20073 --- /dev/null +++ b/resources/sources/meat.svg @@ -0,0 +1,371 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/sources/netherstar.svg b/resources/sources/netherstar.svg new file mode 100644 index 00000000..4046e4ec --- /dev/null +++ b/resources/sources/netherstar.svg @@ -0,0 +1,342 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/sources/pskeleton.svg b/resources/sources/pskeleton.svg new file mode 100644 index 00000000..c2783df8 --- /dev/null +++ b/resources/sources/pskeleton.svg @@ -0,0 +1,581 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/sources/skeleton.svg b/resources/sources/skeleton.svg new file mode 100644 index 00000000..5d55f272 --- /dev/null +++ b/resources/sources/skeleton.svg @@ -0,0 +1,610 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/sources/squarecreeper.svg b/resources/sources/squarecreeper.svg new file mode 100644 index 00000000..a1b0f4d1 --- /dev/null +++ b/resources/sources/squarecreeper.svg @@ -0,0 +1,828 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/sources/status-bad.svg b/resources/sources/status-bad.svg new file mode 100644 index 00000000..54334e06 --- /dev/null +++ b/resources/sources/status-bad.svg @@ -0,0 +1,262 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/resources/sources/status-good.svg b/resources/sources/status-good.svg new file mode 100644 index 00000000..3b311806 --- /dev/null +++ b/resources/sources/status-good.svg @@ -0,0 +1,293 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/resources/sources/status-terrible.svg b/resources/sources/status-terrible.svg new file mode 100644 index 00000000..b0de7bfd --- /dev/null +++ b/resources/sources/status-terrible.svg @@ -0,0 +1,262 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/resources/sources/steve.svg b/resources/sources/steve.svg new file mode 100644 index 00000000..2233272c --- /dev/null +++ b/resources/sources/steve.svg @@ -0,0 +1,534 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit From 3a3c9ac9515447941d383f2c4fe4b0225fdd8252 Mon Sep 17 00:00:00 2001 From: Petr Mrázek Date: Mon, 20 Jan 2014 01:14:11 +0100 Subject: Update the changelog, version, scale the instance icon --- CMakeLists.txt | 4 ++-- changelog.yaml | 14 +++++++++++++- gui/MainWindow.cpp | 6 +++--- logic/icons/IconList.cpp | 17 +++++++++++++++++ logic/icons/IconList.h | 1 + 5 files changed, 36 insertions(+), 6 deletions(-) (limited to 'gui/MainWindow.cpp') diff --git a/CMakeLists.txt b/CMakeLists.txt index 9efb4cd2..0b276cf8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -92,8 +92,8 @@ SET(MultiMC_NEWS_RSS_URL "http://multimc.org/rss.xml" CACHE STRING "URL to fetch ######## Set version numbers ######## SET(MultiMC_VERSION_MAJOR 0) -SET(MultiMC_VERSION_MINOR 1) -SET(MultiMC_VERSION_HOTFIX 1) +SET(MultiMC_VERSION_MINOR 2) +SET(MultiMC_VERSION_HOTFIX 0) # Build number SET(MultiMC_VERSION_BUILD -1 CACHE STRING "Build number. -1 for no build number.") diff --git a/changelog.yaml b/changelog.yaml index 82dccd69..01e11f52 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -16,4 +16,16 @@ - Added additional information to the about dialog. 0.1.1: - Hotfix - Changed the issue tracker URL to [GitHub issues](https://github.com/MultiMC/MultiMC5/issues). - +0.2: + - Java memory settings have MB added to the number to make the units obvious. + - Complete rework of the launcher part. No more sensitive information in the process arguments. + - Cached downloads now do not destroy files on failure. + - Mojang service status is now on the MultiMC status bar. + - Java checker is no longer needed/used on instance launch. + - Support for private FTB packs. + - Fixed instance ID issues related to copying FTB packs without changing the instance name. + - Forge versions are better sorted (build numbers above 999 were sorted wrong). + - Fixed crash related to the MultiMC update channel picker in offline mode. + - Started using icon themes for the application icons, fixing many OSX graphical glitches. + - Icon sources have been located, along with icon licenses. + - Update to the German translation. diff --git a/gui/MainWindow.cpp b/gui/MainWindow.cpp index 7c8562cd..ee9c3fad 100644 --- a/gui/MainWindow.cpp +++ b/gui/MainWindow.cpp @@ -830,7 +830,7 @@ void MainWindow::on_actionChangeInstIcon_triggered() if (dlg.result() == QDialog::Accepted) { m_selectedInstance->setIconKey(dlg.selectedIconKey); - auto ico = MMC->icons()->getIcon(dlg.selectedIconKey); + auto ico = MMC->icons()->getBigIcon(dlg.selectedIconKey); ui->actionChangeInstIcon->setIcon(ico); } } @@ -839,14 +839,14 @@ void MainWindow::iconUpdated(QString icon) { if(icon == m_currentInstIcon) { - ui->actionChangeInstIcon->setIcon(MMC->icons()->getIcon(m_currentInstIcon)); + ui->actionChangeInstIcon->setIcon(MMC->icons()->getBigIcon(m_currentInstIcon)); } } void MainWindow::updateInstanceToolIcon(QString new_icon) { m_currentInstIcon = new_icon; - ui->actionChangeInstIcon->setIcon(MMC->icons()->getIcon(m_currentInstIcon)); + ui->actionChangeInstIcon->setIcon(MMC->icons()->getBigIcon(m_currentInstIcon)); } void MainWindow::setSelectedInstanceById(const QString &id) diff --git a/logic/icons/IconList.cpp b/logic/icons/IconList.cpp index cda2db7b..d76e6fbb 100644 --- a/logic/icons/IconList.cpp +++ b/logic/icons/IconList.cpp @@ -336,6 +336,23 @@ QIcon IconList::getIcon(QString key) return QIcon(); } +QIcon IconList::getBigIcon(QString key) +{ + int icon_index = getIconIndex(key); + + if (icon_index == -1) + key = "infinity"; + + // Fallback for icons that don't exist. + icon_index = getIconIndex(key); + + if (icon_index == -1) + return QIcon(); + + QPixmap bigone = icons[icon_index].icon().pixmap(256,256).scaled(256,256); + return QIcon(bigone); +} + int IconList::getIconIndex(QString key) { if (key == "default") diff --git a/logic/icons/IconList.h b/logic/icons/IconList.h index 322411d1..4ee3f782 100644 --- a/logic/icons/IconList.h +++ b/logic/icons/IconList.h @@ -34,6 +34,7 @@ public: virtual ~IconList() {}; QIcon getIcon(QString key); + QIcon getBigIcon(QString key); int getIconIndex(QString key); virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; -- cgit