More cleanup
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
parent
ffaa47bf54
commit
2c744da9f7
@ -1,20 +1,20 @@
|
|||||||
// SPDX-License-Identifier: GPL-3.0-only
|
// SPDX-License-Identifier: GPL-3.0-only
|
||||||
/*
|
/*
|
||||||
* PolyMC - Minecraft Launcher
|
* PolyMC - Minecraft Launcher
|
||||||
* Copyright (c) 2022 flowln <flowlnlnln@gmail.com>
|
* Copyright (c) 2022 flowln <flowlnlnln@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, version 3.
|
* the Free Software Foundation, version 3.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
@ -42,13 +42,28 @@ class Metadata {
|
|||||||
return Packwiz::V1::createModFormat(index_dir, internal_mod, mod_slug);
|
return Packwiz::V1::createModFormat(index_dir, internal_mod, mod_slug);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void update(QDir& index_dir, ModStruct& mod) { Packwiz::V1::updateModIndex(index_dir, mod); }
|
static void update(QDir& index_dir, ModStruct& mod)
|
||||||
|
{
|
||||||
|
Packwiz::V1::updateModIndex(index_dir, mod);
|
||||||
|
}
|
||||||
|
|
||||||
static void remove(QDir& index_dir, QString mod_slug) { Packwiz::V1::deleteModIndex(index_dir, mod_slug); }
|
static void remove(QDir& index_dir, QString mod_slug)
|
||||||
|
{
|
||||||
|
Packwiz::V1::deleteModIndex(index_dir, mod_slug);
|
||||||
|
}
|
||||||
|
|
||||||
static void remove(QDir& index_dir, QVariant& mod_id) { Packwiz::V1::deleteModIndex(index_dir, mod_id); }
|
static void remove(QDir& index_dir, QVariant& mod_id)
|
||||||
|
{
|
||||||
|
Packwiz::V1::deleteModIndex(index_dir, mod_id);
|
||||||
|
}
|
||||||
|
|
||||||
static auto get(QDir& index_dir, QString mod_slug) -> ModStruct { return Packwiz::V1::getIndexForMod(index_dir, mod_slug); }
|
static auto get(QDir& index_dir, QString mod_slug) -> ModStruct
|
||||||
|
{
|
||||||
|
return Packwiz::V1::getIndexForMod(index_dir, mod_slug);
|
||||||
|
}
|
||||||
|
|
||||||
static auto get(QDir& index_dir, QVariant& mod_id) -> ModStruct { return Packwiz::V1::getIndexForMod(index_dir, mod_id); }
|
static auto get(QDir& index_dir, QVariant& mod_id) -> ModStruct
|
||||||
|
{
|
||||||
|
return Packwiz::V1::getIndexForMod(index_dir, mod_id);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
@ -185,7 +185,6 @@ ResourcePage* ResourceDownloadDialog::getSelectedPage()
|
|||||||
|
|
||||||
void ResourceDownloadDialog::addResource(ModPlatform::IndexedPack& pack, ModPlatform::IndexedVersion& ver, bool is_indexed)
|
void ResourceDownloadDialog::addResource(ModPlatform::IndexedPack& pack, ModPlatform::IndexedVersion& ver, bool is_indexed)
|
||||||
{
|
{
|
||||||
qWarning() << "DebugName: " << pack.name;
|
|
||||||
removeResource(pack, ver);
|
removeResource(pack, ver);
|
||||||
|
|
||||||
ver.is_currently_selected = true;
|
ver.is_currently_selected = true;
|
||||||
|
@ -3,8 +3,6 @@
|
|||||||
// SPDX-License-Identifier: GPL-3.0-only
|
// SPDX-License-Identifier: GPL-3.0-only
|
||||||
|
|
||||||
#include "ResourceModel.h"
|
#include "ResourceModel.h"
|
||||||
#include <QDir>
|
|
||||||
#include <QList>
|
|
||||||
|
|
||||||
#include <QCryptographicHash>
|
#include <QCryptographicHash>
|
||||||
#include <QIcon>
|
#include <QIcon>
|
||||||
@ -16,7 +14,6 @@
|
|||||||
#include "BuildConfig.h"
|
#include "BuildConfig.h"
|
||||||
#include "Json.h"
|
#include "Json.h"
|
||||||
|
|
||||||
#include "minecraft/mod/tasks/GetModDependenciesTask.h"
|
|
||||||
#include "net/Download.h"
|
#include "net/Download.h"
|
||||||
#include "net/NetJob.h"
|
#include "net/NetJob.h"
|
||||||
|
|
||||||
|
@ -4,14 +4,12 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <QDir>
|
|
||||||
#include <optional>
|
#include <optional>
|
||||||
|
|
||||||
#include <QAbstractListModel>
|
#include <QAbstractListModel>
|
||||||
|
|
||||||
#include "QObjectPtr.h"
|
#include "QObjectPtr.h"
|
||||||
|
|
||||||
#include "modplatform/ModIndex.h"
|
|
||||||
#include "modplatform/ResourceAPI.h"
|
#include "modplatform/ResourceAPI.h"
|
||||||
|
|
||||||
#include "tasks/ConcurrentTask.h"
|
#include "tasks/ConcurrentTask.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user