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

@ -363,7 +363,7 @@ bool Paddles::setMouseControl(
if(xtype == Controller::Type::Paddles)
myMPaddleIDX = (xid == 2 || xid == 3) ? xid & 0x01 : -1;
if(ytype == Controller::Type::Paddles)
myMPaddleIDY = (yid == 2 || yid == 3) ? yid & 0x01 : -1;
myMPaddleIDY = (yid == 2 || yid == 3) ? yid & 0x01 : -1;
}
}

View File

@ -49,15 +49,21 @@ 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
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");
add(ypos, "added wildcard support to launcher dialog filter");
add(ypos, "added option to search subdirectories in launcher");
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");
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");
add(ypos, "added wildcard support to launcher dialog filter");
add(ypos, "added option to search subdirectories in launcher");
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