Changed read timestamps timezones to UTC.

Fix QListDB::getObjectMetadatas not returning metadata when a single
object was requested.
Show size in GiB for backups.
This commit is contained in:
codestation
2014-04-19 15:48:50 -04:30
parent bb8909ef36
commit 00b76f308c
6 changed files with 31 additions and 10 deletions

View File

@@ -188,7 +188,10 @@ void BackupManagerForm::loadBackupListing(int index)
item->title = game_name;
connect(item, SIGNAL(deleteEntry(BackupItem*)), this, SLOT(removeEntry(BackupItem*)));
QString size = readable_size(meta->size);
// show better size info for multi GiB backups
bool use_gb = ohfi == VITA_OHFI_BACKUP && meta->size > 1024*1024*1024;
QString size = readable_size(meta->size, use_gb);
QString info;