mirror of https://github.com/stella-emu/stella.git
(Semi) Final update for 6.1 release. I'm sure there's something we've missed.
This commit is contained in:
parent
c7c15c7ece
commit
4d248c97df
|
@ -12,7 +12,7 @@
|
||||||
Release History
|
Release History
|
||||||
===========================================================================
|
===========================================================================
|
||||||
|
|
||||||
6.0.2 to 6.1: (MM dd, 2020)
|
6.0.2 to 6.1: (March 22, 2020)
|
||||||
|
|
||||||
* IMPORTANT NOTES:
|
* IMPORTANT NOTES:
|
||||||
- Because of major event remapping changes, all remappings will be reset
|
- Because of major event remapping changes, all remappings will be reset
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
|
stella (6.1-1) stable; urgency=high
|
||||||
|
|
||||||
|
* Version 6.1 release
|
||||||
|
|
||||||
|
-- Stephen Anthony <sa666666@gmail.com> Sun, 22 Mar 2020 17:09:59 -0230
|
||||||
|
|
||||||
|
|
||||||
stella (6.0.2-1) stable; urgency=high
|
stella (6.0.2-1) stable; urgency=high
|
||||||
|
|
||||||
* Version 6.0.2 release
|
* Version 6.0.2 release
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
|
|
||||||
<center><h1>Stella for RetroN 77</h1></center>
|
<center><h1>Stella for RetroN 77</h1></center>
|
||||||
<center><h2>Atari 2600 VCS emulator</h2></center>
|
<center><h2>Atari 2600 VCS emulator</h2></center>
|
||||||
<center>Release 6.1 Beta 1</center>
|
<center>Release 6.1</center>
|
||||||
<center><h2>Quick Navigation Guide</h2></center>
|
<center><h2>Quick Navigation Guide</h2></center>
|
||||||
<br/>
|
<br/>
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
#ifndef STATE_MANAGER_HXX
|
#ifndef STATE_MANAGER_HXX
|
||||||
#define STATE_MANAGER_HXX
|
#define STATE_MANAGER_HXX
|
||||||
|
|
||||||
#define STATE_HEADER "06000008state"
|
#define STATE_HEADER "06010000state"
|
||||||
|
|
||||||
class OSystem;
|
class OSystem;
|
||||||
class RewindManager;
|
class RewindManager;
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
#ifndef VERSION_HXX
|
#ifndef VERSION_HXX
|
||||||
#define VERSION_HXX
|
#define VERSION_HXX
|
||||||
|
|
||||||
#define STELLA_VERSION "6.1_rc1"
|
#define STELLA_VERSION "6.1"
|
||||||
#define STELLA_BUILD "5657"
|
#define STELLA_BUILD "5729"
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -745,7 +745,7 @@ void Console::updateVcenter(Int32 vcenter)
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
void Console::changeScanlineAdjust(int direction)
|
void Console::changeScanlineAdjust(int direction)
|
||||||
{
|
{
|
||||||
Int32 newAdjustVSize = myTIA->adjustVSize();;
|
Int32 newAdjustVSize = myTIA->adjustVSize();
|
||||||
|
|
||||||
if (direction != -1 && direction != +1) return;
|
if (direction != -1 && direction != +1) return;
|
||||||
|
|
||||||
|
|
|
@ -236,7 +236,7 @@ void FrameManager::recalculateMetrics() {
|
||||||
throw runtime_error("frame manager: invalid TV mode");
|
throw runtime_error("frame manager: invalid TV mode");
|
||||||
}
|
}
|
||||||
|
|
||||||
myHeight = BSPF::clamp<uInt32>(roundf(static_cast<float>(baseHeight) * (1.f - myVSizeAdjust / 100.f)), 0, myFrameLines);
|
myHeight = BSPF::clamp<uInt32>(roundf(static_cast<float>(baseHeight) * (1.F - myVSizeAdjust / 100.F)), 0, myFrameLines);
|
||||||
myYStart = BSPF::clamp<uInt32>(ystartBase + (baseHeight - static_cast<Int32>(myHeight)) / 2 - myVcenter, 0, myFrameLines);
|
myYStart = BSPF::clamp<uInt32>(ystartBase + (baseHeight - static_cast<Int32>(myHeight)) / 2 - myVcenter, 0, myFrameLines);
|
||||||
// TODO: why "- 1" here: ???
|
// TODO: why "- 1" here: ???
|
||||||
myMaxVcenter = BSPF::clamp<Int32>(ystartBase + (baseHeight - static_cast<Int32>(myHeight)) / 2 - 1, 0, TIAConstants::maxVcenter);
|
myMaxVcenter = BSPF::clamp<Int32>(ystartBase + (baseHeight - static_cast<Int32>(myHeight)) / 2 - 1, 0, TIAConstants::maxVcenter);
|
||||||
|
|
|
@ -100,7 +100,7 @@ rm -rf $RPM_BUILD_DIR/%{name}-%{version}
|
||||||
%_datadir/icons/large/%{name}.png
|
%_datadir/icons/large/%{name}.png
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* ddd Jan d 2020 Stephen Anthony <sa666666@gmail.com> 6.1-1
|
* Sun Mar 22 2020 Stephen Anthony <sa666666@gmail.com> 6.1-1
|
||||||
- Version 6.1 release
|
- Version 6.1 release
|
||||||
|
|
||||||
* Fri Oct 11 2019 Stephen Anthony <sa666666@gmail.com> 6.0.2-1
|
* Fri Oct 11 2019 Stephen Anthony <sa666666@gmail.com> 6.0.2-1
|
||||||
|
|
Loading…
Reference in New Issue