From b09fad9cbf1f297ba2abb852d683f9fe5cfb9b3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Thu, 17 Nov 2016 02:55:02 +0100 Subject: GH-347 Add timestamp column to mod lists It shows when the file was changed (in most cases added). --- api/logic/minecraft/ModList.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'api/logic/minecraft/ModList.cpp') diff --git a/api/logic/minecraft/ModList.cpp b/api/logic/minecraft/ModList.cpp index 20963729..7396cd65 100644 --- a/api/logic/minecraft/ModList.cpp +++ b/api/logic/minecraft/ModList.cpp @@ -197,7 +197,7 @@ bool ModList::deleteMods(const QModelIndexList& indexes) int ModList::columnCount(const QModelIndex &parent) const { - return 3; + return NUM_COLUMNS; } QVariant ModList::data(const QModelIndex &index, int role) const @@ -220,6 +220,8 @@ QVariant ModList::data(const QModelIndex &index, int role) const return mods[row].name(); case VersionColumn: return mods[row].version(); + case DateColumn: + return mods[row].dateTimeChanged(); default: return QVariant(); @@ -273,6 +275,8 @@ QVariant ModList::headerData(int section, Qt::Orientation orientation, int role) return tr("Name"); case VersionColumn: return tr("Version"); + case DateColumn: + return tr("Last changed"); default: return QVariant(); } @@ -286,6 +290,8 @@ QVariant ModList::headerData(int section, Qt::Orientation orientation, int role) return tr("The name of the mod."); case VersionColumn: return tr("The version of the mod."); + case DateColumn: + return tr("The date and time this mod was last changed (or added)."); default: return QVariant(); } -- cgit v1.2.3