GH-2124 First complete implementation, installing is working now! GH-2172 Added sorting

This commit is contained in:
Janrupf
2018-03-03 21:22:00 +01:00
parent 2d295d5afb
commit b8ca36372b
16 changed files with 498 additions and 169 deletions

View File

@@ -1,8 +1,8 @@
#pragma once
#include <QList>
#include "qmetatype.h"
//Header for structs etc...
struct FtbModpack {
QString name;
QString description;
@@ -16,6 +16,11 @@ struct FtbModpack {
//Technical data
QString dir;
QString file; //<- Url in the xml, but doesn't make much sense
bool bugged = false;
bool broken = false;
};
//We need it for the proxy model
Q_DECLARE_METATYPE(FtbModpack)
typedef QList<FtbModpack> FtbModpackList;