mirror of https://github.com/stella-emu/stella.git
updated Changes.txt & WhatsNewDialog
This commit is contained in:
parent
fb73d90cf9
commit
a5504a88a3
|
@ -12,6 +12,13 @@
|
||||||
Release History
|
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)
|
6.4 to 6.5 (January 9, 2021)
|
||||||
|
|
||||||
* Added high scores saving.
|
* Added high scores saving.
|
||||||
|
@ -52,8 +59,6 @@
|
||||||
* Codebase now uses C++17 features, which means a minimum of gcc7
|
* Codebase now uses C++17 features, which means a minimum of gcc7
|
||||||
or clang5 for Linux/Mac, and Visual Studio 2019 for Windows.
|
or clang5 for Linux/Mac, and Visual Studio 2019 for Windows.
|
||||||
|
|
||||||
-Have fun!
|
|
||||||
|
|
||||||
|
|
||||||
6.3 to 6.4 (November 2, 2020)
|
6.3 to 6.4 (November 2, 2020)
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,11 @@ WhatsNewDialog::WhatsNewDialog(OSystem& osystem, DialogContainer& parent,
|
||||||
add(ypos, "increased sample size for CDFJ+");
|
add(ypos, "increased sample size for CDFJ+");
|
||||||
add(ypos, "fixed navigation bug in Video & Audio settings dialog");
|
add(ypos, "fixed navigation bug in Video & Audio settings dialog");
|
||||||
add(ypos, "fixed autofire bug for trackball controllers");
|
add(ypos, "fixed autofire bug for trackball controllers");
|
||||||
|
add(ypos, "fixed paddle button bug for jittering controllers");
|
||||||
#else
|
#else
|
||||||
|
const string& version = instance().settings().getString("stella.version");
|
||||||
|
if(version != "6.5")
|
||||||
|
{
|
||||||
add(ypos, "added high scores saving");
|
add(ypos, "added high scores saving");
|
||||||
add(ypos, "enhanced cut/copy/paste and undo/redo for text editing");
|
add(ypos, "enhanced cut/copy/paste and undo/redo for text editing");
|
||||||
add(ypos, "added mouse support 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 tooltips to many UI items");
|
||||||
add(ypos, "added sound to Time Machine playback");
|
add(ypos, "added sound to Time Machine playback");
|
||||||
add(ypos, "moved settings, properties etc. to an SQLite database");
|
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')");
|
add(ypos, ELLIPSIS + " (for a complete list see 'docs/Changes.txt')");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue