mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-12-10 05:38:49 +00:00
wip: added status column for compat data (#1668)
* wip: added basic gui for compat data * data is currently pulled directly from github API, awaiting server infra * removed unused initalizer * fixes * fix cmake * wip: add some testing date / version * add tooltip * fix nested QJsonObject * fix tooltip color * fix clang-format * Edit style * Add clickable status * formatting * import order * typo * fix clang format 2 --------- Co-authored-by: georgemoralis <giorgosmrls@gmail.com>
This commit is contained in:
@@ -3,7 +3,13 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <unordered_map>
|
||||
#include <QDir>
|
||||
#include <QDirIterator>
|
||||
#include <QImage>
|
||||
#include <QString>
|
||||
#include "common/path_util.h"
|
||||
#include "compatibility_info.h"
|
||||
|
||||
struct GameInfo {
|
||||
std::filesystem::path path; // root path of game directory
|
||||
@@ -21,6 +27,7 @@ struct GameInfo {
|
||||
std::string fw = "Unknown";
|
||||
|
||||
std::string play_time = "Unknown";
|
||||
CompatibilityEntry compatibility = CompatibilityEntry{CompatibilityStatus::Unknown};
|
||||
};
|
||||
|
||||
class GameListUtils {
|
||||
|
||||
Reference in New Issue
Block a user