From e5ba8c691d43d0e5ed9815cda212e84f998d25de Mon Sep 17 00:00:00 2001 From: thrust26 Date: Mon, 22 Feb 2021 09:58:30 +0100 Subject: [PATCH] Updated changes and WhatsNewDialog Updated version number in docs --- Changes.txt | 20 ++++++++++++++++---- docs/debugger.html | 2 +- docs/index.html | 2 +- docs/index_r77.html | 2 +- src/gui/WhatsNewDialog.cxx | 37 ++++++++++++++++++++++--------------- 5 files changed, 41 insertions(+), 22 deletions(-) diff --git a/Changes.txt b/Changes.txt index 06731a818..907e7b12d 100644 --- a/Changes.txt +++ b/Changes.txt @@ -12,15 +12,27 @@ Release History =========================================================================== +6.5.1 to 6.5.2 (February XX, 2021) + + - Fixed broken Driving Controller support for Stelladaptor/2600-daptor + devices. + + - Fixed missing QuadTari option in UI. + + - Improved QuadTari timing. + + - Added CPU usage stats to ARM cart classes debug widgets. + +-Have fun! + + 6.5 to 6.5.1 (January 24, 2021) * Fixed paddle button bug for jittering controllers. - * Improve switching between joysticks and paddles on Retron77 port. + * Improved switching between joysticks and paddles on Retron77 port. - * Improve memory usage on Retron77 port. - --Have fun! + * Improved memory usage on Retron77 port. 6.4 to 6.5 (January 9, 2021) diff --git a/docs/debugger.html b/docs/debugger.html index 135374d60..5c888a451 100644 --- a/docs/debugger.html +++ b/docs/debugger.html @@ -15,7 +15,7 @@
Stella
-

Release 6.5.1

+

Release 6.5.2

Integrated Debugger

(a work in progress)


diff --git a/docs/index.html b/docs/index.html index d1b78c931..290182aaf 100644 --- a/docs/index.html +++ b/docs/index.html @@ -21,7 +21,7 @@

A multi-platform Atari 2600 VCS emulator

-

Release 6.5.1

+

Release 6.5.2


User's Guide

diff --git a/docs/index_r77.html b/docs/index_r77.html index 41a4ea981..65f22f581 100644 --- a/docs/index_r77.html +++ b/docs/index_r77.html @@ -58,7 +58,7 @@

Stella for RetroN 77

Atari 2600 VCS emulator

-
Release 6.5.1
+
Release 6.5.2

Quick Navigation Guide


diff --git a/src/gui/WhatsNewDialog.cxx b/src/gui/WhatsNewDialog.cxx index c67dc0dc5..4a17ffbb2 100644 --- a/src/gui/WhatsNewDialog.cxx +++ b/src/gui/WhatsNewDialog.cxx @@ -34,27 +34,32 @@ WhatsNewDialog::WhatsNewDialog(OSystem& osystem, DialogContainer& parent, "What's New in Stella " + string(STELLA_VERSION) + "?") #endif { - const int fontWidth = Dialog::fontWidth(), - buttonHeight = Dialog::buttonHeight(), - VBORDER = Dialog::vBorder(), - HBORDER = Dialog::hBorder(), - VGAP = Dialog::vGap(); + const int fontWidth = Dialog::fontWidth(), + buttonHeight = Dialog::buttonHeight(), + VBORDER = Dialog::vBorder(), + HBORDER = Dialog::hBorder(), + VGAP = Dialog::vGap(); int ypos = _th + VBORDER; // Set preliminary dimensions setSize(MAX_CHARS * fontWidth + HBORDER * 2, max_h, max_w, max_h); -#if defined(RETRON77) - 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"); - add(ypos, "improved switching between joysticks and paddles"); - add(ypos, "improved memory usage in UI mode"); -#else const string& version = instance().settings().getString("stella.version"); - if(version != "6.5") +#if defined(RETRON77) + if(version < "6.5") + { + 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"); + add(ypos, "improved switching between joysticks and paddles"); + add(ypos, "improved memory usage in UI mode"); + } + add(ypos, "fixed broken Driving Controller support for Stelladaptor/2600-daptor devices"); + add(ypos, "fixed missing QuadTari option in UI"); +#else + if(version < "6.5") { add(ypos, "added high scores saving"); add(ypos, "enhanced cut/copy/paste and undo/redo for text editing"); @@ -64,8 +69,10 @@ 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, "fixed paddle button bug for jittering controllers"); + add(ypos, "fixed broken Driving Controller support for Stelladaptor/2600-daptor devices"); + add(ypos, "fixed missing QuadTari option in UI"); add(ypos, ELLIPSIS + " (for a complete list see 'docs/Changes.txt')"); #endif