mirror of https://github.com/stella-emu/stella.git
Version # updates for the upcoming release.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2787 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
6e5a66a0fb
commit
5d026334d6
24
Announce.txt
24
Announce.txt
|
@ -9,7 +9,7 @@
|
|||
SSSS ttt eeeee llll llll aaaaa
|
||||
|
||||
===========================================================================
|
||||
Release 3.9 for Linux, MacOSX and Windows
|
||||
Release 3.9.1 for Linux, MacOSX and Windows
|
||||
===========================================================================
|
||||
|
||||
The Atari 2600 Video Computer System (VCS), introduced in 1977, was the
|
||||
|
@ -21,28 +21,28 @@ all of your favourite Atari 2600 games again! Stella was originally
|
|||
developed for Linux by Bradford W. Mott, however, it has been ported to a
|
||||
number of other platforms and is currently maintained by Stephen Anthony.
|
||||
|
||||
This is the 3.9 release of Stella for Linux, Mac OSX and Windows. The
|
||||
This is the 3.9.1 release of Stella for Linux, Mac OSX and Windows. The
|
||||
distributions currently available are:
|
||||
|
||||
* Binaries for Windows XP/Vista/7/8 :
|
||||
Stella-3.9-win32.exe (32-bit EXE installer)
|
||||
Stella-3.9-x64.exe (64-bit EXE installer)
|
||||
Stella-3.9-windows.zip (32/64 bit versions)
|
||||
Stella-3.9.1-win32.exe (32-bit EXE installer)
|
||||
Stella-3.9.1-x64.exe (64-bit EXE installer)
|
||||
Stella-3.9.1-windows.zip (32/64 bit versions)
|
||||
|
||||
* Binary distribution for MacOS X 32-bit & 64-bit :
|
||||
Stella-3.9-macosx.dmg (32-bit Universal Binary)
|
||||
Stella-3.9_intel-macosx.dmg (32/64-bit Intel/OSX 10.6+)
|
||||
Stella-3.9.1-macosx.dmg (32-bit Universal Binary)
|
||||
Stella-3.9.1_intel-macosx.dmg (32/64-bit Intel/OSX 10.6+)
|
||||
|
||||
* Binary distribution in 32-bit & 64-bit Ubuntu DEB format :
|
||||
stella_3.9-1_i386.deb
|
||||
stella_3.9-1_amd64.deb
|
||||
stella_3.9.1-1_i386.deb
|
||||
stella_3.9.1-1_amd64.deb
|
||||
|
||||
* Binary distribution in 32-bit & 64-bit RPM format :
|
||||
stella-3.9-2.i386.rpm
|
||||
stella-3.9-2.x86_64.rpm
|
||||
stella-3.9.1-2.i386.rpm
|
||||
stella-3.9.1-2.x86_64.rpm
|
||||
|
||||
* Source code distribution for all platforms :
|
||||
stella-3.9-src.tar.gz
|
||||
stella-3.9.1-src.tar.gz
|
||||
|
||||
|
||||
Distribution Site
|
||||
|
|
|
@ -12,7 +12,10 @@
|
|||
Release History
|
||||
===========================================================================
|
||||
|
||||
3.9 to 3.9.1: (XXXX xx, 2013)
|
||||
3.9 to 3.9.1: (August 14, 2013)
|
||||
|
||||
* Note: because of TIA changes, the state file format has changed again,
|
||||
and old state files will not work with this release.
|
||||
|
||||
* Several bugfixes and improvements to the debugger:
|
||||
- Fixed bug in disassembly when the mirror used for the current
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
stella (3.9.1-1) stable; urgency=high
|
||||
|
||||
* Version 3.9.1 release
|
||||
|
||||
-- Stephen Anthony <stephena@users.sf.net> Sat, 10 Aug 2013 18:03:25 -0230
|
||||
|
||||
|
||||
stella (3.9-1) stable; urgency=high
|
||||
|
||||
* Version 3.9 release
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
#include <cstdlib>
|
||||
|
||||
#define STELLA_VERSION "3.9.1_pre"
|
||||
#define STELLA_VERSION "3.9.1_beta1"
|
||||
#define STELLA_BUILD atoi("$Rev$" + 6)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -58,7 +58,6 @@ class Cartridge : public Device
|
|||
@param image A pointer to the ROM image
|
||||
@param size The size of the ROM image
|
||||
@param md5 The md5sum for the given ROM image (can be updated)
|
||||
@param name The name of the ROM (can be updated)
|
||||
@param dtype The detected bankswitch type of the ROM image
|
||||
@param id Any extra info about the ROM (currently which part
|
||||
of a multiload game is being accessed
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>StLa</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>3.9</string>
|
||||
<string>3.9.1</string>
|
||||
<key>NSMainNibFile</key>
|
||||
<string>SDLMain.nib</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
%define name stella
|
||||
%define version 3.9
|
||||
%define version 3.9.1
|
||||
%define rel 1
|
||||
|
||||
%define enable_gl 1
|
||||
|
@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_DIR/%{name}-%{version}
|
|||
%_datadir/icons/large/%{name}.png
|
||||
|
||||
%changelog
|
||||
* Wed Aug 14 2013 Stephen Anthony <stephena@users.sf.net> 3.9.1-1
|
||||
- Version 3.9.1 release
|
||||
|
||||
* Thu Jun 27 2013 Stephen Anthony <stephena@users.sf.net> 3.9-1
|
||||
- Version 3.9 release
|
||||
|
||||
|
|
|
@ -36,8 +36,8 @@ IDI_ICON ICON "stella.ico"
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 3,9,0,0
|
||||
PRODUCTVERSION 3,9,0,0
|
||||
FILEVERSION 3,9,1,0
|
||||
PRODUCTVERSION 3,9,1,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -55,12 +55,12 @@ BEGIN
|
|||
VALUE "Comments", "The multi-platform Atari 2600 emulator. Stella is released under the GPLv2."
|
||||
VALUE "CompanyName", "The Stella Team (http://stella.sourceforge.net)"
|
||||
VALUE "FileDescription", "Stella"
|
||||
VALUE "FileVersion", "3.9"
|
||||
VALUE "FileVersion", "3.9.1"
|
||||
VALUE "InternalName", "Stella"
|
||||
VALUE "LegalCopyright", "Copyright (C) 1995-2013 The Stella Team"
|
||||
VALUE "OriginalFilename", "Stella.exe"
|
||||
VALUE "ProductName", "Stella"
|
||||
VALUE "ProductVersion", "3.9"
|
||||
VALUE "ProductVersion", "3.9.1"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
Loading…
Reference in New Issue