mirror of https://github.com/stella-emu/stella.git
updated docs and WhatsNewDialog
This commit is contained in:
parent
dd842cce30
commit
42e1fdb518
|
@ -19,9 +19,11 @@
|
||||||
|
|
||||||
* Added web links for many games
|
* Added web links for many games
|
||||||
|
|
||||||
|
* Debugger: enhanced prompt's auto complete and history
|
||||||
|
|
||||||
* Debugger: added optional logging of breaks and traps
|
* Debugger: added optional logging of breaks and traps
|
||||||
|
|
||||||
* Debugger: enhanced prompt's auto complete and history
|
* Debugger: added Thumb cycle counting
|
||||||
|
|
||||||
-Have fun!
|
-Have fun!
|
||||||
|
|
||||||
|
|
|
@ -4757,6 +4757,7 @@ Ms Pac-Man (Stella extended codes):
|
||||||
<tr><td>FC </td><td>Amiga Power Play Aracde 16/32K </td><td>.FC </td></tr>
|
<tr><td>FC </td><td>Amiga Power Play Aracde 16/32K </td><td>.FC </td></tr>
|
||||||
<tr><td>FE </td><td>8K Decathlon </td><td>.FE </td></tr>
|
<tr><td>FE </td><td>8K Decathlon </td><td>.FE </td></tr>
|
||||||
<tr><td>MDM </td><td>Menu Driven Megacart </td><td>.MDM </td></tr>
|
<tr><td>MDM </td><td>Menu Driven Megacart </td><td>.MDM </td></tr>
|
||||||
|
<tr><td>MVC </td><td>Movie Cart</td><td>.MVC </td></tr>
|
||||||
<tr><td>SB </td><td>128-256K SUPERbanking </td><td>.SB </td></tr>
|
<tr><td>SB </td><td>128-256K SUPERbanking </td><td>.SB </td></tr>
|
||||||
<tr><td>TVBOY</td><td>512K TV Boy (127 games)</td><td>.TVB, .TVBOY </td></tr>
|
<tr><td>TVBOY</td><td>512K TV Boy (127 games)</td><td>.TVB, .TVBOY </td></tr>
|
||||||
<tr><td>UA </td><td>8K UA Ltd. </td><td>.UA </td></tr>
|
<tr><td>UA </td><td>8K UA Ltd. </td><td>.UA </td></tr>
|
||||||
|
|
|
@ -61,6 +61,7 @@ WhatsNewDialog::WhatsNewDialog(OSystem& osystem, DialogContainer& parent,
|
||||||
add(ypos, "fixed QuadTari support for some controller types");
|
add(ypos, "fixed QuadTari support for some controller types");
|
||||||
add(ypos, "fixed palette and TV effects saving");
|
add(ypos, "fixed palette and TV effects saving");
|
||||||
}
|
}
|
||||||
|
add(ypos, "added MovieCart support");
|
||||||
#else
|
#else
|
||||||
if(version < "6.5")
|
if(version < "6.5")
|
||||||
{
|
{
|
||||||
|
@ -72,17 +73,15 @@ 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, "fixed broken Driving Controller support for Stelladaptor/2600-daptor devices");
|
|
||||||
add(ypos, "fixed missing QuadTari option in UI");
|
|
||||||
add(ypos, "added context-sensitive help");
|
add(ypos, "added context-sensitive help");
|
||||||
add(ypos, "improved analog input reading");
|
add(ypos, "improved analog input reading");
|
||||||
add(ypos, "improved multi-monitor support");
|
add(ypos, "improved multi-monitor support");
|
||||||
add(ypos, "fixed QuadTari support for some controller types");
|
|
||||||
}
|
}
|
||||||
|
add(ypos, "added MovieCart support");
|
||||||
add(ypos, "added weblinks for many games");
|
add(ypos, "added weblinks for many games");
|
||||||
add(ypos, "debugger: added optional logging of breaks and traps");
|
add(ypos, "debugger: added optional logging of breaks and traps");
|
||||||
add(ypos, "debugger: enhanced prompt auto complete and history");
|
add(ypos, "debugger: enhanced prompt auto complete and history");
|
||||||
|
add(ypos, "debugger: added Thumb cycle counting");
|
||||||
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