updated Changes.txt & WhatsNewDialog

This commit is contained in:
thrust26 2021-01-20 13:47:41 +01:00
parent fb73d90cf9
commit a5504a88a3
3 changed files with 22 additions and 11 deletions

View File

@ -12,6 +12,13 @@
Release History
===========================================================================
6.5 to 6.5.1 (January X, 2021)
* Fixed paddle button bug for jittering controllers
-Have fun!
6.4 to 6.5 (January 9, 2021)
* Added high scores saving.
@ -52,8 +59,6 @@
* Codebase now uses C++17 features, which means a minimum of gcc7
or clang5 for Linux/Mac, and Visual Studio 2019 for Windows.
-Have fun!
6.3 to 6.4 (November 2, 2020)

View File

@ -49,7 +49,11 @@ WhatsNewDialog::WhatsNewDialog(OSystem& osystem, DialogContainer& parent,
add(ypos, "increased sample size for CDFJ+");
add(ypos, "fixed navigation bug in Video & Audio settings dialog");
add(ypos, "fixed autofire bug for trackball controllers");
add(ypos, "fixed paddle button bug for jittering controllers");
#else
const string& version = instance().settings().getString("stella.version");
if(version != "6.5")
{
add(ypos, "added high scores saving");
add(ypos, "enhanced cut/copy/paste and undo/redo for text editing");
add(ypos, "added mouse support for text editing");
@ -58,6 +62,8 @@ WhatsNewDialog::WhatsNewDialog(OSystem& osystem, DialogContainer& parent,
add(ypos, "added tooltips to many UI items");
add(ypos, "added sound to Time Machine playback");
add(ypos, "moved settings, properties etc. to an SQLite database");
}
add(ypos, "fixed paddle button bug for jittering controllers");
add(ypos, ELLIPSIS + " (for a complete list see 'docs/Changes.txt')");
#endif