diff --git a/Changes.txt b/Changes.txt index 69d36b3bc..a495d860f 100644 --- a/Changes.txt +++ b/Changes.txt @@ -12,7 +12,7 @@ Release History =========================================================================== -4.5 to 4.6: (March xx, 2015) +4.5 to 4.6: (March 21, 2015) * Finally fixed fullscreen rendering issues on some OpenGL implementations in Linux (mostly Intel-specific). Basically, the diff --git a/debian/changelog b/debian/changelog index 5dc6f0dff..189a93a52 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,7 +2,7 @@ stella (4.6-1) stable; urgency=high * Version 4.6 release - -- Stephen Anthony + -- Stephen Anthony Fri, 20 Mar 2015 21:17:06 -0230 stella (4.5-1) stable; urgency=high diff --git a/docs/index.html b/docs/index.html index adc65aaed..6618abd32 100644 --- a/docs/index.html +++ b/docs/index.html @@ -54,7 +54,7 @@


-
February 1999 - January 2015
+
February 1999 - March 2015
The Stella Team
Stella Homepage
@@ -335,8 +335,7 @@
  • OpenGL capable video card
  • Other architectures (MIPS, PPC, PPC64, etc) have been confirmed to work, but aren't as well tested as i386/x86_64
  • -
  • GNU g++ v/4.9 or Clang v/3.3 (with C++11 support) and the make utility are required for compiling - the Stella source code
  • +
  • GNU g++ v/4.8 or Clang v/3.3 (with C++11 support) and the make utility are required for compiling the Stella source code
  • diff --git a/src/common/FrameBufferSDL2.cxx b/src/common/FrameBufferSDL2.cxx index 67f92c724..4dfde322a 100644 --- a/src/common/FrameBufferSDL2.cxx +++ b/src/common/FrameBufferSDL2.cxx @@ -38,8 +38,7 @@ FrameBufferSDL2::FrameBufferSDL2(OSystem& osystem) : FrameBuffer(osystem), myWindow(nullptr), myRenderer(nullptr), - myDirtyFlag(true), - myDblBufferedFlag(true) + myDirtyFlag(true) { // Initialize SDL2 context if(SDL_Init(SDL_INIT_VIDEO | SDL_INIT_TIMER | SDL_INIT_JOYSTICK) < 0) @@ -210,12 +209,7 @@ bool FrameBufferSDL2::setVideoMode(const string& title, const VideoMode& mode, } SDL_RendererInfo renderinfo; if(SDL_GetRendererInfo(myRenderer, &renderinfo) >= 0) - { myOSystem.settings().setValue("video", renderinfo.name); - // For now, accelerated renderers imply double buffering - // Eventually, SDL may be updated to query this from the render backend - myDblBufferedFlag = renderinfo.flags & SDL_RENDERER_ACCELERATED; - } return true; } diff --git a/src/common/FrameBufferSDL2.hxx b/src/common/FrameBufferSDL2.hxx index 5f829161a..c9cdac7a6 100644 --- a/src/common/FrameBufferSDL2.hxx +++ b/src/common/FrameBufferSDL2.hxx @@ -181,9 +181,6 @@ class FrameBufferSDL2 : public FrameBuffer // Indicates that the renderer has been modified, and should be redrawn bool myDirtyFlag; - - // Indicates whether the render backend is using double buffering - bool myDblBufferedFlag; }; #endif diff --git a/src/common/Version.hxx b/src/common/Version.hxx index c989e8290..0cd9c444d 100644 --- a/src/common/Version.hxx +++ b/src/common/Version.hxx @@ -22,7 +22,7 @@ #include -#define STELLA_VERSION "4.6_svn" +#define STELLA_VERSION "4.6" #define STELLA_BUILD atoi("$Rev$" + 6) #endif diff --git a/src/unix/stella.spec b/src/unix/stella.spec index 1c483165b..c46dc9e55 100644 --- a/src/unix/stella.spec +++ b/src/unix/stella.spec @@ -101,7 +101,7 @@ rm -rf $RPM_BUILD_DIR/%{name}-%{version} %_datadir/icons/large/%{name}.png %changelog -* XXX Feb xx 2015 Stephen Anthony 4.6-1 +* Sat Mar 21 2015 Stephen Anthony 4.6-1 - Version 4.6 release * Thu Jan 1 2015 Stephen Anthony 4.5-1