Updated changes and WhatsNewDialog

Updated version number in docs
This commit is contained in:
thrust26 2021-02-22 09:58:30 +01:00
parent 71aeb846f2
commit e5ba8c691d
5 changed files with 41 additions and 22 deletions

View File

@ -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)

View File

@ -15,7 +15,7 @@
<body>
<center><b><font size="7">Stella</font></b></center>
<center><h4><b>Release 6.5.1</b></h4></center>
<center><h4><b>Release 6.5.2</b></h4></center>
<center><h1><b>Integrated Debugger</b></h1></center>
<center><h4><b>(a work in progress)</b></h4></center>
<br>

View File

@ -21,7 +21,7 @@
<img src="graphics/stella_icon.png">
<h2><b>A multi-platform Atari 2600 VCS emulator</b></h2>
<h4><b>Release 6.5.1</b></h4>
<h4><b>Release 6.5.2</b></h4>
<br>
<h2><b>User's Guide</b></h2>

View File

@ -58,7 +58,7 @@
<center><h1>Stella for RetroN 77</h1></center>
<center><h2>Atari 2600 VCS emulator</h2></center>
<center>Release 6.5.1</center>
<center>Release 6.5.2</center>
<center><h2>Quick Navigation Guide</h2></center>
<br/>

View File

@ -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