From 7adf8f2c90bd1393c2db09d1c07782efcd8f4a8d Mon Sep 17 00:00:00 2001 From: Syping Date: Wed, 16 Dec 2020 13:02:11 +0100 Subject: [PATCH] 1.9.1: Cayo Perico DLC update, Multi-select bugfix --- .ci/gta5view.nsi | 2 +- ProfileInterface.cpp | 4 ++-- config.h | 2 +- res/app.rc | 8 ++++---- res/de.syping.gta5view.metainfo.xml | 1 + res/global.de.ini | 1 + res/global.en.ini | 1 + res/global.es.ini | 1 + res/global.es_MX.ini | 1 + res/global.fr.ini | 1 + res/global.it.ini | 1 + res/global.ja.ini | 1 + res/global.ko.ini | 1 + res/global.pl.ini | 1 + res/global.pt.ini | 1 + res/global.ru.ini | 1 + res/global.zh.ini | 1 + res/template.g5e | Bin 706 -> 717 bytes 18 files changed, 21 insertions(+), 8 deletions(-) diff --git a/.ci/gta5view.nsi b/.ci/gta5view.nsi index 6302b72..2b586d7 100644 --- a/.ci/gta5view.nsi +++ b/.ci/gta5view.nsi @@ -3,7 +3,7 @@ !define APP_NAME "gta5view" !define COMP_NAME "Syping" !define WEB_SITE "https://gta5view.syping.de/" -!define VERSION "1.9.0.0" +!define VERSION "1.9.1.0" !define COPYRIGHT "Copyright © 2016-2020 Syping" !define DESCRIPTION "Grand Theft Auto V Savegame and Snapmatic Viewer/Editor" !define INSTALLER_NAME "gta5view_setup.exe" diff --git a/ProfileInterface.cpp b/ProfileInterface.cpp index 8dd57e5..99fd1a4 100644 --- a/ProfileInterface.cpp +++ b/ProfileInterface.cpp @@ -1670,7 +1670,7 @@ void ProfileInterface::contextMenuTriggeredPIC(QContextMenuEvent *ev) } QMenu contextMenu(picWidget); const int selectedCount = selectedWidgets(); - if (contentMode < 20 || selectedCount <= 1) { + if (contentMode < 20 || selectedCount == 0) { QMenu editMenu(SnapmaticWidget::tr("Edi&t"), picWidget); if (picWidget->isHidden()) { editMenu.addAction(SnapmaticWidget::tr("Show &In-game"), picWidget, SLOT(makePictureVisibleSlot())); @@ -1750,7 +1750,7 @@ void ProfileInterface::contextMenuTriggeredSGD(QContextMenuEvent *ev) } QMenu contextMenu(sgdWidget); const int selectedCount = selectedWidgets(); - if (contentMode < 20 || selectedCount <= 1) { + if (contentMode < 20 || selectedCount == 0) { contextMenu.addAction(SavegameWidget::tr("&View"), sgdWidget, SLOT(on_cmdView_clicked())); contextMenu.addAction(SavegameWidget::tr("&Export"), sgdWidget, SLOT(on_cmdCopy_clicked())); contextMenu.addAction(SavegameWidget::tr("&Remove"), sgdWidget, SLOT(on_cmdDelete_clicked())); diff --git a/config.h b/config.h index 62d6c6a..98a7897 100644 --- a/config.h +++ b/config.h @@ -44,7 +44,7 @@ #endif #ifndef GTA5SYNC_APPVER -#define GTA5SYNC_APPVER "1.9.0" +#define GTA5SYNC_APPVER "1.9.1" #endif #if __cplusplus diff --git a/res/app.rc b/res/app.rc index b089122..849660a 100644 --- a/res/app.rc +++ b/res/app.rc @@ -4,8 +4,8 @@ IDI_ICON1 ICON DISCARDABLE "5sync.ico" CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "gta5view.exe.manifest" #include VS_VERSION_INFO VERSIONINFO -FILEVERSION 1, 9, 0, 0 -PRODUCTVERSION 1, 9, 0, 0 +FILEVERSION 1, 9, 1, 0 +PRODUCTVERSION 1, 9, 1, 0 FILEFLAGSMASK 0x3fL FILEFLAGS 0 FILEOS VOS_NT_WINDOWS32 @@ -22,12 +22,12 @@ BEGIN BEGIN VALUE "CompanyName", "Syping" VALUE "FileDescription", "gta5view" - VALUE "FileVersion", "1.9.0" + VALUE "FileVersion", "1.9.1" VALUE "InternalName", "gta5view" VALUE "LegalCopyright", "Copyright 2016-2020 Syping" VALUE "OriginalFilename", "gta5view.exe" VALUE "ProductName", "gta5view" - VALUE "ProductVersion", "1.9.0" + VALUE "ProductVersion", "1.9.1" END END END diff --git a/res/de.syping.gta5view.metainfo.xml b/res/de.syping.gta5view.metainfo.xml index 13b6131..95daf20 100644 --- a/res/de.syping.gta5view.metainfo.xml +++ b/res/de.syping.gta5view.metainfo.xml @@ -32,6 +32,7 @@ Syping + diff --git a/res/global.de.ini b/res/global.de.ini index f3b21dc..0916785 100644 --- a/res/global.de.ini +++ b/res/global.de.ini @@ -42,6 +42,7 @@ HAWICK="Hawick" HEART="Heart Attacks Beach" HORS="Vinewood-Rennbahn" HUMLAB="Humane Labs and Research" +ISHEIST="Cayo Perico" JAIL="Bolingbroke-Strafanstalt" KOREAT="Little Seoul" LACT="Land-Act-Stausee" diff --git a/res/global.en.ini b/res/global.en.ini index 1cde708..97c84dd 100644 --- a/res/global.en.ini +++ b/res/global.en.ini @@ -42,6 +42,7 @@ HAWICK="Hawick" HEART="Heart Attacks Beach" HORS="Vinewood Racetrack" HUMLAB="Humane Labs and Research" +ISHEIST="Cayo Perico" JAIL="Bolingbroke Penitentiary" KOREAT="Little Seoul" LACT="Land Act Reservoir" diff --git a/res/global.es.ini b/res/global.es.ini index 60878a1..b364c50 100644 --- a/res/global.es.ini +++ b/res/global.es.ini @@ -42,6 +42,7 @@ HAWICK="Hawick" HEART="Heart Attacks Beach" HORS="Circuito de Vinewood" HUMLAB="Laboratorios Humane" +ISHEIST="Cayo Perico" JAIL="Penitenciaría de Bolingbroke" KOREAT="Little Seoul" LACT="Embalse de Land Act" diff --git a/res/global.es_MX.ini b/res/global.es_MX.ini index 48476ea..620ef14 100644 --- a/res/global.es_MX.ini +++ b/res/global.es_MX.ini @@ -42,6 +42,7 @@ HAWICK="Hawick" HEART="Heart Attacks Beach" HORS="Circuito de Vinewood" HUMLAB="Humane Labs and Research" +ISHEIST="Cayo Perico" JAIL="Penitenciaría de Bolingbroke" KOREAT="Little Seoul" LACT="Presa de Land Act" diff --git a/res/global.fr.ini b/res/global.fr.ini index 977500e..807c5ec 100644 --- a/res/global.fr.ini +++ b/res/global.fr.ini @@ -41,6 +41,7 @@ HAWICK="Hawick" HEART="Heart Attacks Beach" HORS="Hippodrome de Vinewood" HUMLAB="Laboratoires Humane" +ISHEIST="Cayo Perico" JAIL="Pénitencier de Bolingbroke" KOREAT="Little Seoul" LACT="Land Act Reservoir" diff --git a/res/global.it.ini b/res/global.it.ini index a98e012..4c89a36 100644 --- a/res/global.it.ini +++ b/res/global.it.ini @@ -42,6 +42,7 @@ HAWICK="Hawick" HEART="Heart Attacks Beach" HORS="Vinewood Racetrack" HUMLAB="Laboratori di ricerca Humane" +ISHEIST="Cayo Perico" JAIL="Bolingbroke Penitentiary" KOREAT="Little Seoul" LACT="Land Act Reservoir" diff --git a/res/global.ja.ini b/res/global.ja.ini index e1af8ad..f38223d 100644 --- a/res/global.ja.ini +++ b/res/global.ja.ini @@ -42,6 +42,7 @@ HAWICK="ハウィック" HEART="ハートアタック・ビーチ" HORS="バインウッド・レーストラック" HUMLAB="ヒューメイン研究所" +ISHEIST="カヨ・ペリコ" JAIL="ボーリングブローク刑務所" KOREAT="リトル・ソウル" LACT="ランド・アクト貯水池" diff --git a/res/global.ko.ini b/res/global.ko.ini index 11ef9f4..7296638 100644 --- a/res/global.ko.ini +++ b/res/global.ko.ini @@ -42,6 +42,7 @@ HAWICK="호익" HEART="하트 어택 해변" HORS="바인우드 레이스트랙" HUMLAB="휴메인 실험 연구소" +ISHEIST="카요 페리코" JAIL="볼링브로크 교도소" KOREAT="리틀 서울" LACT="랜드 액트 저수지" diff --git a/res/global.pl.ini b/res/global.pl.ini index 877a864..e318284 100644 --- a/res/global.pl.ini +++ b/res/global.pl.ini @@ -42,6 +42,7 @@ HAWICK="Hawick" HEART="Plaża Zawałowców" HORS="Tor wyścigowy Vinewood" HUMLAB="Humane Labs and Research" +ISHEIST="Cayo Perico" JAIL="Zakład karny Bolingbroke" KOREAT="Mały Seul" LACT="Jezioro zaporowe" diff --git a/res/global.pt.ini b/res/global.pt.ini index 8686d6d..79d46ab 100644 --- a/res/global.pt.ini +++ b/res/global.pt.ini @@ -41,6 +41,7 @@ HAWICK="Hawick" HEART="Heart Attacks Beach" HORS="Hipódromo de Vinewood" HUMLAB="Laboratórios e Pesquisas Humane" +ISHEIST="Cayo Perico" JAIL="Penitenciária Bolingbroke" KOREAT="Little Seoul" LACT="Reservatório Land Act" diff --git a/res/global.ru.ini b/res/global.ru.ini index 37df696..996f807 100644 --- a/res/global.ru.ini +++ b/res/global.ru.ini @@ -42,6 +42,7 @@ HAWICK="Хавик" HEART="Харт-Аттакс-Бич" HORS="Гоночная трасса Вайнвуда" HUMLAB="Лаборатория Humane Labs and Research" +ISHEIST="Кайо-Перико" JAIL="Тюрьма Болингброук" KOREAT="Маленький Сеул" LACT="Лэнд-экт-резервуар" diff --git a/res/global.zh.ini b/res/global.zh.ini index 7d7a080..49650cc 100644 --- a/res/global.zh.ini +++ b/res/global.zh.ini @@ -41,6 +41,7 @@ HAWICK="霍伊克" HEART="驚心海灘" HORS="好麥塢賽馬場" HUMLAB="人道研究實驗室" +ISHEIST="佩里克島" JAIL="博林布魯克監獄" KOREAT="小首爾" LACT="蘭艾水庫" diff --git a/res/template.g5e b/res/template.g5e index 42f896dba4afa8f18929dbee93215edefbb302ea..c74ba7fd8c1ffa8c11259f561b5491c5780f2128 100644 GIT binary patch delta 229 zcmV3{}`&k3Tf)nnAP)Ip^Hag!!e1LGCM zf~iV#U7x(Z8d$QlVYZmTS6Z*Ri{sBQe0?8=(#gLY=Ily&H%3__ot`%3&&(l0T&@j* zjw=-+>3>n8;=1F#zST}GBhlO-QpiP4foPp3jV0OwEje+=mb=fzyDLFmPAqRla2y340&m` delta 218 zcmV<0044v;1;Pce!2y5C0000000Ag?+D%Z)3c@fD{FgcR&{j~$O=!JYL671gB&!yh zR`Nh=>A$;4p?KNM&dzKmnIJ7m2we8fzNwHwaql7Wgx;-AP+R3K#9eldGIWE2nD9xX zG1V{EIfEfXtIR|*c%>OMvpAgV`gp49$b`o#>&>Eib)$6<*IP~otKGs`NBZw#rx+J} zrp@^$XNl|X5Z;D3_LgYL?%Nn-f|i`GV9Rp|(Obq?eegWo#$dgFLhRT|YUuSM9Z9mZ U%!>`bD5M{le?b{m%9EJ_G;r{3%m4rY