NOISSUE rename Twitch to flame internally for consistency and to CurseForge for user displayed strings
This commit is contained in:
parent
cbc973a5af
commit
a0cb1a0d42
@ -100,7 +100,7 @@ void Env::initHttpMetaCache()
|
|||||||
m_metacache->addBase("FTBPacks", QDir("cache/FTBPacks").absolutePath());
|
m_metacache->addBase("FTBPacks", QDir("cache/FTBPacks").absolutePath());
|
||||||
m_metacache->addBase("ModpacksCHPacks", QDir("cache/ModpacksCHPacks").absolutePath());
|
m_metacache->addBase("ModpacksCHPacks", QDir("cache/ModpacksCHPacks").absolutePath());
|
||||||
m_metacache->addBase("TechnicPacks", QDir("cache/TechnicPacks").absolutePath());
|
m_metacache->addBase("TechnicPacks", QDir("cache/TechnicPacks").absolutePath());
|
||||||
m_metacache->addBase("TwitchPacks", QDir("cache/TwitchPacks").absolutePath());
|
m_metacache->addBase("FlamePacks", QDir("cache/FlamePacks").absolutePath());
|
||||||
m_metacache->addBase("skins", QDir("accounts/skins").absolutePath());
|
m_metacache->addBase("skins", QDir("accounts/skins").absolutePath());
|
||||||
m_metacache->addBase("root", QDir::currentPath());
|
m_metacache->addBase("root", QDir::currentPath());
|
||||||
m_metacache->addBase("translations", QDir("translations").absolutePath());
|
m_metacache->addBase("translations", QDir("translations").absolutePath());
|
||||||
|
@ -145,11 +145,11 @@ SET(MULTIMC_SOURCES
|
|||||||
pages/modplatform/legacy_ftb/ListModel.h
|
pages/modplatform/legacy_ftb/ListModel.h
|
||||||
pages/modplatform/legacy_ftb/ListModel.cpp
|
pages/modplatform/legacy_ftb/ListModel.cpp
|
||||||
|
|
||||||
pages/modplatform/twitch/TwitchData.h
|
pages/modplatform/flame/FlameData.h
|
||||||
pages/modplatform/twitch/TwitchModel.cpp
|
pages/modplatform/flame/FlameModel.cpp
|
||||||
pages/modplatform/twitch/TwitchModel.h
|
pages/modplatform/flame/FlameModel.h
|
||||||
pages/modplatform/twitch/TwitchPage.cpp
|
pages/modplatform/flame/FlamePage.cpp
|
||||||
pages/modplatform/twitch/TwitchPage.h
|
pages/modplatform/flame/FlamePage.h
|
||||||
|
|
||||||
pages/modplatform/technic/TechnicModel.cpp
|
pages/modplatform/technic/TechnicModel.cpp
|
||||||
pages/modplatform/technic/TechnicModel.h
|
pages/modplatform/technic/TechnicModel.h
|
||||||
@ -276,7 +276,7 @@ SET(MULTIMC_UIS
|
|||||||
pages/modplatform/atlauncher/AtlPage.ui
|
pages/modplatform/atlauncher/AtlPage.ui
|
||||||
pages/modplatform/ftb/FtbPage.ui
|
pages/modplatform/ftb/FtbPage.ui
|
||||||
pages/modplatform/legacy_ftb/Page.ui
|
pages/modplatform/legacy_ftb/Page.ui
|
||||||
pages/modplatform/twitch/TwitchPage.ui
|
pages/modplatform/flame/FlamePage.ui
|
||||||
pages/modplatform/technic/TechnicPage.ui
|
pages/modplatform/technic/TechnicPage.ui
|
||||||
pages/modplatform/ImportPage.ui
|
pages/modplatform/ImportPage.ui
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@
|
|||||||
#include <pages/modplatform/atlauncher/AtlPage.h>
|
#include <pages/modplatform/atlauncher/AtlPage.h>
|
||||||
#include <pages/modplatform/ftb/FtbPage.h>
|
#include <pages/modplatform/ftb/FtbPage.h>
|
||||||
#include <pages/modplatform/legacy_ftb/Page.h>
|
#include <pages/modplatform/legacy_ftb/Page.h>
|
||||||
#include <pages/modplatform/twitch/TwitchPage.h>
|
#include <pages/modplatform/flame/FlamePage.h>
|
||||||
#include <pages/modplatform/ImportPage.h>
|
#include <pages/modplatform/ImportPage.h>
|
||||||
#include <pages/modplatform/technic/TechnicPage.h>
|
#include <pages/modplatform/technic/TechnicPage.h>
|
||||||
|
|
||||||
@ -124,17 +124,17 @@ void NewInstanceDialog::accept()
|
|||||||
QList<BasePage *> NewInstanceDialog::getPages()
|
QList<BasePage *> NewInstanceDialog::getPages()
|
||||||
{
|
{
|
||||||
importPage = new ImportPage(this);
|
importPage = new ImportPage(this);
|
||||||
twitchPage = new TwitchPage(this);
|
flamePage = new FlamePage(this);
|
||||||
auto technicPage = new TechnicPage(this);
|
auto technicPage = new TechnicPage(this);
|
||||||
return
|
return
|
||||||
{
|
{
|
||||||
new VanillaPage(this),
|
new VanillaPage(this),
|
||||||
importPage,
|
importPage,
|
||||||
new AtlPage(this),
|
new AtlPage(this),
|
||||||
|
flamePage,
|
||||||
new FtbPage(this),
|
new FtbPage(this),
|
||||||
new LegacyFTB::Page(this),
|
new LegacyFTB::Page(this),
|
||||||
technicPage,
|
technicPage
|
||||||
twitchPage
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ class NewInstanceDialog;
|
|||||||
class PageContainer;
|
class PageContainer;
|
||||||
class QDialogButtonBox;
|
class QDialogButtonBox;
|
||||||
class ImportPage;
|
class ImportPage;
|
||||||
class TwitchPage;
|
class FlamePage;
|
||||||
|
|
||||||
class NewInstanceDialog : public QDialog, public BasePageProvider
|
class NewInstanceDialog : public QDialog, public BasePageProvider
|
||||||
{
|
{
|
||||||
@ -68,7 +68,7 @@ private:
|
|||||||
|
|
||||||
QString InstIconKey;
|
QString InstIconKey;
|
||||||
ImportPage *importPage = nullptr;
|
ImportPage *importPage = nullptr;
|
||||||
TwitchPage *twitchPage = nullptr;
|
FlamePage *flamePage = nullptr;
|
||||||
std::unique_ptr<InstanceTask> creationTask;
|
std::unique_ptr<InstanceTask> creationTask;
|
||||||
|
|
||||||
bool importIcon = false;
|
bool importIcon = false;
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QList>
|
#include <QList>
|
||||||
|
|
||||||
namespace Twitch {
|
namespace Flame {
|
||||||
|
|
||||||
struct ModpackAuthor {
|
struct ModpackAuthor {
|
||||||
QString name;
|
QString name;
|
||||||
@ -35,4 +35,4 @@ struct Modpack
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
Q_DECLARE_METATYPE(Twitch::Modpack)
|
Q_DECLARE_METATYPE(Flame::Modpack)
|
@ -1,4 +1,4 @@
|
|||||||
#include "TwitchModel.h"
|
#include "FlameModel.h"
|
||||||
#include "MultiMC.h"
|
#include "MultiMC.h"
|
||||||
|
|
||||||
#include <MMCStrings.h>
|
#include <MMCStrings.h>
|
||||||
@ -10,7 +10,7 @@
|
|||||||
#include <RWStorage.h>
|
#include <RWStorage.h>
|
||||||
#include <Env.h>
|
#include <Env.h>
|
||||||
|
|
||||||
namespace Twitch {
|
namespace Flame {
|
||||||
|
|
||||||
ListModel::ListModel(QObject *parent) : QAbstractListModel(parent)
|
ListModel::ListModel(QObject *parent) : QAbstractListModel(parent)
|
||||||
{
|
{
|
||||||
@ -99,8 +99,8 @@ void ListModel::requestLogo(QString logo, QString url)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
MetaEntryPtr entry = ENV.metacache()->resolveEntry("TwitchPacks", QString("logos/%1").arg(logo.section(".", 0, 0)));
|
MetaEntryPtr entry = ENV.metacache()->resolveEntry("FlamePacks", QString("logos/%1").arg(logo.section(".", 0, 0)));
|
||||||
NetJob *job = new NetJob(QString("Twitch Icon Download %1").arg(logo));
|
NetJob *job = new NetJob(QString("Flame Icon Download %1").arg(logo));
|
||||||
job->addNetAction(Net::Download::makeCached(QUrl(url), entry));
|
job->addNetAction(Net::Download::makeCached(QUrl(url), entry));
|
||||||
|
|
||||||
auto fullPath = entry->getFullPath();
|
auto fullPath = entry->getFullPath();
|
||||||
@ -127,7 +127,7 @@ void ListModel::getLogo(const QString &logo, const QString &logoUrl, LogoCallbac
|
|||||||
{
|
{
|
||||||
if(m_logoMap.contains(logo))
|
if(m_logoMap.contains(logo))
|
||||||
{
|
{
|
||||||
callback(ENV.metacache()->resolveEntry("TwitchPacks", QString("logos/%1").arg(logo.section(".", 0, 0)))->getFullPath());
|
callback(ENV.metacache()->resolveEntry("FlamePacks", QString("logos/%1").arg(logo.section(".", 0, 0)))->getFullPath());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -158,7 +158,7 @@ void ListModel::fetchMore(const QModelIndex& parent)
|
|||||||
|
|
||||||
void ListModel::performPaginatedSearch()
|
void ListModel::performPaginatedSearch()
|
||||||
{
|
{
|
||||||
NetJob *netJob = new NetJob("Twitch::Search");
|
NetJob *netJob = new NetJob("Flame::Search");
|
||||||
auto searchUrl = QString(
|
auto searchUrl = QString(
|
||||||
"https://addons-ecs.forgesvc.net/api/v2/addon/search?"
|
"https://addons-ecs.forgesvc.net/api/v2/addon/search?"
|
||||||
"categoryId=0&"
|
"categoryId=0&"
|
||||||
@ -198,14 +198,14 @@ void ListModel::searchWithTerm(const QString& term)
|
|||||||
performPaginatedSearch();
|
performPaginatedSearch();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Twitch::ListModel::searchRequestFinished()
|
void Flame::ListModel::searchRequestFinished()
|
||||||
{
|
{
|
||||||
jobPtr.reset();
|
jobPtr.reset();
|
||||||
|
|
||||||
QJsonParseError parse_error;
|
QJsonParseError parse_error;
|
||||||
QJsonDocument doc = QJsonDocument::fromJson(response, &parse_error);
|
QJsonDocument doc = QJsonDocument::fromJson(response, &parse_error);
|
||||||
if(parse_error.error != QJsonParseError::NoError) {
|
if(parse_error.error != QJsonParseError::NoError) {
|
||||||
qWarning() << "Error while parsing JSON response from Twitch at " << parse_error.offset << " reason: " << parse_error.errorString();
|
qWarning() << "Error while parsing JSON response from CurseForge at " << parse_error.offset << " reason: " << parse_error.errorString();
|
||||||
qWarning() << response;
|
qWarning() << response;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -292,7 +292,7 @@ void Twitch::ListModel::searchRequestFinished()
|
|||||||
endInsertRows();
|
endInsertRows();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Twitch::ListModel::searchRequestFailed(QString reason)
|
void Flame::ListModel::searchRequestFailed(QString reason)
|
||||||
{
|
{
|
||||||
jobPtr.reset();
|
jobPtr.reset();
|
||||||
|
|
@ -1,6 +1,5 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <modplatform/legacy_ftb/PackHelpers.h>
|
|
||||||
#include <RWStorage.h>
|
#include <RWStorage.h>
|
||||||
|
|
||||||
#include <QAbstractListModel>
|
#include <QAbstractListModel>
|
||||||
@ -16,9 +15,9 @@
|
|||||||
#include <functional>
|
#include <functional>
|
||||||
#include <net/NetJob.h>
|
#include <net/NetJob.h>
|
||||||
|
|
||||||
#include "TwitchData.h"
|
#include "FlameData.h"
|
||||||
|
|
||||||
namespace Twitch {
|
namespace Flame {
|
||||||
|
|
||||||
|
|
||||||
typedef QMap<QString, QIcon> LogoMap;
|
typedef QMap<QString, QIcon> LogoMap;
|
@ -1,29 +1,29 @@
|
|||||||
#include "TwitchPage.h"
|
#include "FlamePage.h"
|
||||||
#include "ui_TwitchPage.h"
|
#include "ui_FlamePage.h"
|
||||||
|
|
||||||
#include "MultiMC.h"
|
#include "MultiMC.h"
|
||||||
#include "dialogs/NewInstanceDialog.h"
|
#include "dialogs/NewInstanceDialog.h"
|
||||||
#include <InstanceImportTask.h>
|
#include <InstanceImportTask.h>
|
||||||
#include "TwitchModel.h"
|
#include "FlameModel.h"
|
||||||
#include <QKeyEvent>
|
#include <QKeyEvent>
|
||||||
|
|
||||||
TwitchPage::TwitchPage(NewInstanceDialog* dialog, QWidget *parent)
|
FlamePage::FlamePage(NewInstanceDialog* dialog, QWidget *parent)
|
||||||
: QWidget(parent), ui(new Ui::TwitchPage), dialog(dialog)
|
: QWidget(parent), ui(new Ui::FlamePage), dialog(dialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
connect(ui->searchButton, &QPushButton::clicked, this, &TwitchPage::triggerSearch);
|
connect(ui->searchButton, &QPushButton::clicked, this, &FlamePage::triggerSearch);
|
||||||
ui->searchEdit->installEventFilter(this);
|
ui->searchEdit->installEventFilter(this);
|
||||||
model = new Twitch::ListModel(this);
|
model = new Flame::ListModel(this);
|
||||||
ui->packView->setModel(model);
|
ui->packView->setModel(model);
|
||||||
connect(ui->packView->selectionModel(), &QItemSelectionModel::currentChanged, this, &TwitchPage::onSelectionChanged);
|
connect(ui->packView->selectionModel(), &QItemSelectionModel::currentChanged, this, &FlamePage::onSelectionChanged);
|
||||||
}
|
}
|
||||||
|
|
||||||
TwitchPage::~TwitchPage()
|
FlamePage::~FlamePage()
|
||||||
{
|
{
|
||||||
delete ui;
|
delete ui;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool TwitchPage::eventFilter(QObject* watched, QEvent* event)
|
bool FlamePage::eventFilter(QObject* watched, QEvent* event)
|
||||||
{
|
{
|
||||||
if (watched == ui->searchEdit && event->type() == QEvent::KeyPress) {
|
if (watched == ui->searchEdit && event->type() == QEvent::KeyPress) {
|
||||||
QKeyEvent* keyEvent = static_cast<QKeyEvent*>(event);
|
QKeyEvent* keyEvent = static_cast<QKeyEvent*>(event);
|
||||||
@ -36,22 +36,22 @@ bool TwitchPage::eventFilter(QObject* watched, QEvent* event)
|
|||||||
return QWidget::eventFilter(watched, event);
|
return QWidget::eventFilter(watched, event);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool TwitchPage::shouldDisplay() const
|
bool FlamePage::shouldDisplay() const
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void TwitchPage::openedImpl()
|
void FlamePage::openedImpl()
|
||||||
{
|
{
|
||||||
suggestCurrent();
|
suggestCurrent();
|
||||||
}
|
}
|
||||||
|
|
||||||
void TwitchPage::triggerSearch()
|
void FlamePage::triggerSearch()
|
||||||
{
|
{
|
||||||
model->searchWithTerm(ui->searchEdit->text());
|
model->searchWithTerm(ui->searchEdit->text());
|
||||||
}
|
}
|
||||||
|
|
||||||
void TwitchPage::onSelectionChanged(QModelIndex first, QModelIndex second)
|
void FlamePage::onSelectionChanged(QModelIndex first, QModelIndex second)
|
||||||
{
|
{
|
||||||
if(!first.isValid())
|
if(!first.isValid())
|
||||||
{
|
{
|
||||||
@ -63,7 +63,7 @@ void TwitchPage::onSelectionChanged(QModelIndex first, QModelIndex second)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
current = model->data(first, Qt::UserRole).value<Twitch::Modpack>();
|
current = model->data(first, Qt::UserRole).value<Flame::Modpack>();
|
||||||
QString text = "";
|
QString text = "";
|
||||||
QString name = current.name;
|
QString name = current.name;
|
||||||
|
|
||||||
@ -72,7 +72,7 @@ void TwitchPage::onSelectionChanged(QModelIndex first, QModelIndex second)
|
|||||||
else
|
else
|
||||||
text = "<a href=\"" + current.websiteUrl + "\">" + name + "</a>";
|
text = "<a href=\"" + current.websiteUrl + "\">" + name + "</a>";
|
||||||
if (!current.authors.empty()) {
|
if (!current.authors.empty()) {
|
||||||
auto authorToStr = [](Twitch::ModpackAuthor & author) {
|
auto authorToStr = [](Flame::ModpackAuthor & author) {
|
||||||
if(author.url.isEmpty()) {
|
if(author.url.isEmpty()) {
|
||||||
return author.name;
|
return author.name;
|
||||||
}
|
}
|
||||||
@ -90,7 +90,7 @@ void TwitchPage::onSelectionChanged(QModelIndex first, QModelIndex second)
|
|||||||
suggestCurrent();
|
suggestCurrent();
|
||||||
}
|
}
|
||||||
|
|
||||||
void TwitchPage::suggestCurrent()
|
void FlamePage::suggestCurrent()
|
||||||
{
|
{
|
||||||
if(!isOpened)
|
if(!isOpened)
|
||||||
{
|
{
|
||||||
@ -103,7 +103,7 @@ void TwitchPage::suggestCurrent()
|
|||||||
|
|
||||||
dialog->setSuggestedPack(current.name, new InstanceImportTask(current.latestFile.downloadUrl));
|
dialog->setSuggestedPack(current.name, new InstanceImportTask(current.latestFile.downloadUrl));
|
||||||
QString editedLogoName;
|
QString editedLogoName;
|
||||||
editedLogoName = "twitch_" + current.logoName.section(".", 0, 0);
|
editedLogoName = "curseforge_" + current.logoName.section(".", 0, 0);
|
||||||
model->getLogo(current.logoName, current.logoUrl, [this, editedLogoName](QString logo)
|
model->getLogo(current.logoName, current.logoUrl, [this, editedLogoName](QString logo)
|
||||||
{
|
{
|
||||||
dialog->setSuggestedIconFromFile(logo, editedLogoName);
|
dialog->setSuggestedIconFromFile(logo, editedLogoName);
|
@ -20,41 +20,41 @@
|
|||||||
#include "pages/BasePage.h"
|
#include "pages/BasePage.h"
|
||||||
#include <MultiMC.h>
|
#include <MultiMC.h>
|
||||||
#include "tasks/Task.h"
|
#include "tasks/Task.h"
|
||||||
#include "TwitchData.h"
|
#include "FlameData.h"
|
||||||
|
|
||||||
namespace Ui
|
namespace Ui
|
||||||
{
|
{
|
||||||
class TwitchPage;
|
class FlamePage;
|
||||||
}
|
}
|
||||||
|
|
||||||
class NewInstanceDialog;
|
class NewInstanceDialog;
|
||||||
|
|
||||||
namespace Twitch {
|
namespace Flame {
|
||||||
class ListModel;
|
class ListModel;
|
||||||
}
|
}
|
||||||
|
|
||||||
class TwitchPage : public QWidget, public BasePage
|
class FlamePage : public QWidget, public BasePage
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit TwitchPage(NewInstanceDialog* dialog, QWidget *parent = 0);
|
explicit FlamePage(NewInstanceDialog* dialog, QWidget *parent = 0);
|
||||||
virtual ~TwitchPage();
|
virtual ~FlamePage();
|
||||||
virtual QString displayName() const override
|
virtual QString displayName() const override
|
||||||
{
|
{
|
||||||
return tr("Twitch");
|
return tr("CurseForge");
|
||||||
}
|
}
|
||||||
virtual QIcon icon() const override
|
virtual QIcon icon() const override
|
||||||
{
|
{
|
||||||
return MMC->getThemedIcon("twitch");
|
return MMC->getThemedIcon("flame");
|
||||||
}
|
}
|
||||||
virtual QString id() const override
|
virtual QString id() const override
|
||||||
{
|
{
|
||||||
return "twitch";
|
return "flame";
|
||||||
}
|
}
|
||||||
virtual QString helpPage() const override
|
virtual QString helpPage() const override
|
||||||
{
|
{
|
||||||
return "Twitch-platform";
|
return "Flame-platform";
|
||||||
}
|
}
|
||||||
virtual bool shouldDisplay() const override;
|
virtual bool shouldDisplay() const override;
|
||||||
|
|
||||||
@ -70,8 +70,8 @@ private slots:
|
|||||||
void onSelectionChanged(QModelIndex first, QModelIndex second);
|
void onSelectionChanged(QModelIndex first, QModelIndex second);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Ui::TwitchPage *ui = nullptr;
|
Ui::FlamePage *ui = nullptr;
|
||||||
NewInstanceDialog* dialog = nullptr;
|
NewInstanceDialog* dialog = nullptr;
|
||||||
Twitch::ListModel* model = nullptr;
|
Flame::ListModel* model = nullptr;
|
||||||
Twitch::Modpack current;
|
Flame::Modpack current;
|
||||||
};
|
};
|
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<ui version="4.0">
|
<ui version="4.0">
|
||||||
<class>TwitchPage</class>
|
<class>FlamePage</class>
|
||||||
<widget class="QWidget" name="TwitchPage">
|
<widget class="QWidget" name="FlamePage">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
@ -10,34 +10,36 @@
|
|||||||
<height>745</height>
|
<height>745</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QGridLayout" name="gridLayout">
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
<item row="0" column="0">
|
<item>
|
||||||
|
<widget class="QWidget" name="widget" native="true">
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||||
|
<property name="leftMargin">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="topMargin">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="rightMargin">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="bottomMargin">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
<widget class="QLineEdit" name="searchEdit"/>
|
<widget class="QLineEdit" name="searchEdit"/>
|
||||||
</item>
|
</item>
|
||||||
<item row="0" column="1">
|
<item>
|
||||||
<widget class="QPushButton" name="searchButton">
|
<widget class="QPushButton" name="searchButton">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Search</string>
|
<string>Search</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="2" column="0" colspan="2">
|
</layout>
|
||||||
<widget class="MCModInfoFrame" name="frame">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="frameShape">
|
|
||||||
<enum>QFrame::StyledPanel</enum>
|
|
||||||
</property>
|
|
||||||
<property name="frameShadow">
|
|
||||||
<enum>QFrame::Raised</enum>
|
|
||||||
</property>
|
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="1" column="0" colspan="2">
|
<item>
|
||||||
<widget class="QListView" name="packView">
|
<widget class="QListView" name="packView">
|
||||||
<property name="horizontalScrollBarPolicy">
|
<property name="horizontalScrollBarPolicy">
|
||||||
<enum>Qt::ScrollBarAlwaysOff</enum>
|
<enum>Qt::ScrollBarAlwaysOff</enum>
|
||||||
@ -53,6 +55,22 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="MCModInfoFrame" name="frame">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="frameShape">
|
||||||
|
<enum>QFrame::StyledPanel</enum>
|
||||||
|
</property>
|
||||||
|
<property name="frameShadow">
|
||||||
|
<enum>QFrame::Raised</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<customwidgets>
|
<customwidgets>
|
@ -11,8 +11,9 @@
|
|||||||
<!-- REDDIT logo icon, needs reddit license! -->
|
<!-- REDDIT logo icon, needs reddit license! -->
|
||||||
<file>scalable/reddit-alien.svg</file>
|
<file>scalable/reddit-alien.svg</file>
|
||||||
|
|
||||||
<!-- twitch logo icon -->
|
<!-- Icon for CurseForge. Unknown license? -->
|
||||||
<file>scalable/twitch.svg</file>
|
<file alias="32x32/flame.png">32x32/instances/flame.png</file>
|
||||||
|
<file alias="128x128/flame.png">128x128/instances/flame.png</file>
|
||||||
|
|
||||||
<!-- technic logo icon -->
|
<!-- technic logo icon -->
|
||||||
<file>scalable/technic.svg</file>
|
<file>scalable/technic.svg</file>
|
||||||
|
@ -1,63 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
id="Layer_1"
|
|
||||||
data-name="Layer 1"
|
|
||||||
viewBox="0 0 134 134"
|
|
||||||
version="1.1"
|
|
||||||
sodipodi:docname="twitch.svg"
|
|
||||||
inkscape:version="0.92.2 2405546, 2018-03-11"
|
|
||||||
width="134"
|
|
||||||
height="134">
|
|
||||||
<metadata
|
|
||||||
id="metadata13">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
<dc:title>Glitch</dc:title>
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="1414"
|
|
||||||
inkscape:window-height="944"
|
|
||||||
id="namedview11"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="1.761194"
|
|
||||||
inkscape:cx="-109.17797"
|
|
||||||
inkscape:cy="66.999998"
|
|
||||||
inkscape:window-x="2640"
|
|
||||||
inkscape:window-y="554"
|
|
||||||
inkscape:window-maximized="0"
|
|
||||||
inkscape:current-layer="Layer_1" />
|
|
||||||
<defs
|
|
||||||
id="defs4">
|
|
||||||
<style
|
|
||||||
id="style2">.cls-1{fill:#6441a4;fill-rule:evenodd;}</style>
|
|
||||||
</defs>
|
|
||||||
<title
|
|
||||||
id="title6">Glitch</title>
|
|
||||||
<path
|
|
||||||
class="cls-1"
|
|
||||||
d="M 9,0 0,23 v 94 h 32 v 17 H 50 L 67,117 H 93 L 128,82 V 0 Z M 116,76 96,96 H 64 L 47,113 V 96 H 20 V 12 h 96 z M 96,35 V 70 H 84 V 35 Z M 64,35 V 70 H 52 V 35 Z"
|
|
||||||
id="path8"
|
|
||||||
style="fill:#6441a4;fill-opacity:1;fill-rule:evenodd"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
Loading…
Reference in New Issue
Block a user