[Scummvm-git-logs] scummvm master -> 3dd9022485ecc459529904c42937ab4aed870a09

lotharsm noreply at scummvm.org
Sun Jan 15 09:55:51 UTC 2023


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
355d983779 NEWS: Mention SWORD1/SWORD2 improvements in German NEWS file
3dd9022485 GUI: Use dynamic packname string in cache clearing dialogs


Commit: 355d9837795b8b7f529a084d596cf5f795fc0d62
    https://github.com/scummvm/scummvm/commit/355d9837795b8b7f529a084d596cf5f795fc0d62
Author: Lothar Serra Mari (mail at serra.me)
Date: 2023-01-15T10:55:27+01:00

Commit Message:
NEWS: Mention SWORD1/SWORD2 improvements in German NEWS file

Changed paths:
    doc/de/NEUES.md


diff --git a/doc/de/NEUES.md b/doc/de/NEUES.md
index 7efac30bd26..12682f7cd8a 100644
--- a/doc/de/NEUES.md
+++ b/doc/de/NEUES.md
@@ -125,7 +125,12 @@ Umfangreichere Informationen über die Änderungen des aktuellen Codes findest D
    - Unterstützung für die chinesische Version von Beneath a Steel Sky hinzugefügt.
 
  Sword1:
-   - Unterstützung für die russische Übersetzung von ND hinzugefügt.
+   - Unterstützung für die russische Übersetzung von Novy Disk hinzugefügt.
+   - Ein Fehler beim Start der Windows-Demo-Versionen wurde korrigiert.
+   - Die Spiele-Erkennung nutzt nun MD5-Checksummen. Teile uns deine nicht erkannten Versionen mit!
+
+ Sword2:
+   - Die Spiele-Erkennung nutzt nun MD5-Checksummen. Teile uns deine nicht erkannten Versionen mit!
 
  Toon:
    - Die Spiel-Menüs verhalten sich nun wie im Original.


Commit: 3dd9022485ecc459529904c42937ab4aed870a09
    https://github.com/scummvm/scummvm/commit/3dd9022485ecc459529904c42937ab4aed870a09
Author: Lothar Serra Mari (mail at serra.me)
Date: 2023-01-15T10:55:27+01:00

Commit Message:
GUI: Use dynamic packname string in cache clearing dialogs

Changed paths:
    gui/downloadpacksdialog.cpp


diff --git a/gui/downloadpacksdialog.cpp b/gui/downloadpacksdialog.cpp
index dd393ff3d4b..a990cec0bee 100644
--- a/gui/downloadpacksdialog.cpp
+++ b/gui/downloadpacksdialog.cpp
@@ -460,7 +460,7 @@ void DownloadPacksDialog::clearCache() {
 	Common::String sizeUnits;
 	Common::String size = getHumanReadableBytes(totalSize, sizeUnits);
 
-	GUI::MessageDialog dialog(Common::U32String::format(_("You are about to remove %s %s of data, deleting all previously downloaded icon files. Do you want to proceed?"), size.c_str(), sizeUnits.c_str()), _("Proceed"), _("Cancel"));
+	GUI::MessageDialog dialog(Common::U32String::format(_("You are about to remove %s %s of data, deleting all previously downloaded %S. Do you want to proceed?"), size.c_str(), sizeUnits.c_str(), _packname.c_str()), _("Proceed"), _("Cancel"));
 	if (dialog.runModal() == ::GUI::kMessageOK) {
 
 		// Build list of previously downloaded icon files




More information about the Scummvm-git-logs mailing list