Fixed major bug in ROM Audit functionality; files were being renamed

without any extensions.

Bumped version number to 2.7.2.


git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1662 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2009-01-26 21:16:06 +00:00
parent a1aac4c11a
commit edcbb7c1a7
10 changed files with 48 additions and 34 deletions

View File

@ -9,7 +9,7 @@
SSSS ttt eeeee llll llll aaaaa
===============================================================================
Release 2.7.1 for Linux, Mac OSX and Windows
Release 2.7.2 for Linux, Mac OSX and Windows
===============================================================================
The Atari 2600 Video Computer System (VCS), introduced in 1977, was the most
@ -21,25 +21,25 @@ of your favorite 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.
This is the 2.7.1 release of Stella for Linux, Mac OSX, Windows and GP2X.
This is the 2.7.2 release of Stella for Linux, Mac OSX, Windows and GP2X.
Distributions for other operating systems will appear as they become available.
The distributions currently available are:
* Binary distribution in 32-bit RPM format for Linux (stella-2.7.1-1.i586.rpm)
* Binary distribution in 32-bit RPM format for Linux (stella-2.7.2-1.i586.rpm)
* Binary distribution in 32-bit Ubuntu DEB format (stella_2.7.1-1_i386.deb)
* Binary distribution in 32-bit Ubuntu DEB format (stella_2.7.2-1_i386.deb)
* Binary distribution in 64-bit Ubuntu DEB format (stella_2.7.1-1_amd64.deb)
* Binary distribution in 64-bit Ubuntu DEB format (stella_2.7.2-1_amd64.deb)
* Binary distribution for Mac OSX (StellaOSX2.7.1.dmg.gz)
* Binary distribution for Mac OSX (StellaOSX2.7.2.dmg.gz)
* Binary installer (exe) for Windows (stella-2.7.1-win32.exe)
* Binary installer (exe) for Windows (stella-2.7.2-win32.exe)
* Binary zip for Windows (stella-2.7.1-win32.zip)
* Binary zip for Windows (stella-2.7.2-win32.zip)
* Binary zip for 64-bit Windows (stella-2.7.1-win64.zip)
* Binary zip for 64-bit Windows (stella-2.7.2-win64.zip)
* Source code distribution for all platforms (stella-2.7.1-src.tar.gz)
* Source code distribution for all platforms (stella-2.7.2-src.tar.gz)
PLEASE DO NOT WRITE ASKING FOR ROM IMAGES TO USE WITH STELLA! ALL SUCH
REQUESTS WILL BE IGNORED!

View File

@ -12,6 +12,14 @@
Release History
===============================================================================
2.7.1 to 2.7.2: (Jan. 27, 2009)
* Fixed major bug in ROM Audit functionality; renaming ROMs would create
files without an extension.
-Have fun!
2.7 to 2.7.1: (Jan. 26, 2009)
* Partial workaround for sound not working in OpenGL video mode in
@ -58,8 +66,6 @@
You can no longer optionally turn off HMOVE blanking; it is always
enabled when necessary.
-Have fun!
2.6.1 to 2.7: (Jan. 19, 2009)

View File

@ -1,4 +1,4 @@
This is release 2.7.1 of Stella. Stella is a multi-platform Atari 2600 VCS
This is release 2.7.2 of Stella. Stella is a multi-platform Atari 2600 VCS
emulator which allows you to play all of your favorite Atari 2600 games
on your PC. You'll find the Stella Users Manual in the docs subdirectory.
If you'd like to verify that you have the latest release of Stella visit
@ -9,4 +9,4 @@ the Stella Website at:
Enjoy,
The Stella Team
January 26, 2009
January 27, 2009

View File

@ -10,7 +10,7 @@
<br><br>
<center><h2><b>A multi-platform Atari 2600 VCS emulator</b></h2></center>
<center><h4><b>Release 2.7.1</b></h4></center>
<center><h4><b>Release 2.7.2</b></h4></center>
<br><br>
<center><h2><b>User's Guide</b></h2></center>

View File

@ -13,13 +13,13 @@
// See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
//
// $Id: Version.hxx,v 1.48 2009-01-26 15:05:25 stephena Exp $
// $Id: Version.hxx,v 1.49 2009-01-26 21:16:05 stephena Exp $
//============================================================================
#ifndef VERSION_HXX
#define VERSION_HXX
#define STELLA_BASE_VERSION "2.7.2_cvs"
#define STELLA_BASE_VERSION "2.7.2"
#ifdef NIGHTLY_BUILD
#define STELLA_VERSION STELLA_BASE_VERSION "pre-" NIGHTLY_BUILD

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
//
// $Id: LauncherFilterDialog.cxx,v 1.2 2009-01-20 18:01:56 stephena Exp $
// $Id: LauncherFilterDialog.cxx,v 1.3 2009-01-26 21:16:06 stephena Exp $
//
// Based on code from ScummVM - Scumm Interpreter
// Copyright (C) 2002-2004 The ScummVM project
@ -148,11 +148,16 @@ bool LauncherFilterDialog::isValidRomName(const string& name, string& ext)
string::size_type idx = name.find_last_of('.');
if(idx != string::npos)
{
const char* ext = name.c_str() + idx + 1;
const char* e = name.c_str() + idx + 1;
for(uInt32 i = 0; i < 5; ++i)
if(BSPF_strcasecmp(ext, ourRomTypes[1][i]) == 0)
{
if(BSPF_strcasecmp(e, ourRomTypes[1][i]) == 0)
{
ext = e;
return true;
}
}
}
return false;
}

View File

@ -33,7 +33,7 @@
<key>CFBundleExecutable</key>
<string>StellaOSX</string>
<key>CFBundleGetInfoString</key>
<string>StellaOSX 2.7.1</string>
<string>StellaOSX 2.7.2</string>
<key>CFBundleHelpBookFolder</key>
<string>docs</string>
<key>CFBundleHelpBookName</key>
@ -45,13 +45,13 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>StellaOSX 2.7.1</string>
<string>StellaOSX 2.7.2</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>StLa</string>
<key>CFBundleVersion</key>
<string>StellaOSX 2.7.1</string>
<string>StellaOSX 2.7.2</string>
<key>NSMainNibFile</key>
<string>SDLMain.nib</string>
<key>NSPrincipalClass</key>

View File

@ -1,5 +1,5 @@
%define name stella
%define version 2.7.1
%define version 2.7.2
%define rel 1
%define enable_gl 1
@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_DIR/%{name}-%{version}
%_datadir/icons/large/%{name}.png
%changelog
* Tue Jan 27 2009 Stephen Anthony <stephena@users.sf.net> 2.7.2-1
- Version 2.7.2 release
* Mon Jan 26 2009 Stephen Anthony <stephena@users.sf.net> 2.7.1-1
- Version 2.7.1 release

View File

@ -3,14 +3,14 @@
[Setup]
AppName=Stella
AppVerName=Stella 2.7.1
AppVerName=Stella 2.7.2
AppPublisher=Bradford W. Mott and the Stella team
AppPublisherURL=http://stella.sourceforge.net
AppSupportURL=http://stella.sourceforge.net
AppUpdatesURL=http://stella.sourceforge.net
DefaultDirName={pf}\Stella
DefaultGroupName=Stella
OutputBaseFilename=stella-2.7.1-win32
OutputBaseFilename=stella-2.7.2-win32
Compression=lzma
SolidCompression=yes
@ -21,10 +21,10 @@ Name: "eng"; MessagesFile: "compiler:Default.isl"
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
[Files]
Source: "..\..\stella-2.7.1\Stella.exe"; DestDir: "{app}"; Flags: ignoreversion
;Source: "..\..\stella-2.7.1\zlib1.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "..\..\stella-2.7.1\SDL.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "..\..\stella-2.7.1\docs\*"; DestDir: "{app}\docs"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "..\..\stella-2.7.2\Stella.exe"; DestDir: "{app}"; Flags: ignoreversion
;Source: "..\..\stella-2.7.2\zlib1.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "..\..\stella-2.7.2\SDL.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "..\..\stella-2.7.2\docs\*"; DestDir: "{app}\docs"; Flags: ignoreversion recursesubdirs createallsubdirs
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
[Icons]

View File

@ -36,8 +36,8 @@ IDI_ICON ICON "stella.ico"
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,7,1,0
PRODUCTVERSION 2,7,1,0
FILEVERSION 2,7,2,0
PRODUCTVERSION 2,7,2,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 GPL."
VALUE "CompanyName", "Bradford W. Mott and the Stella team (http://stella.sourceforge.net)"
VALUE "FileDescription", "Stella"
VALUE "FileVersion", "2.7.1"
VALUE "FileVersion", "2.7.2"
VALUE "InternalName", "Stella"
VALUE "LegalCopyright", "Copyright (C) 1995-2009 B. Mott & the Stella team"
VALUE "OriginalFilename", "Stella.exe"
VALUE "ProductName", "Stella"
VALUE "ProductVersion", "2.7.1"
VALUE "ProductVersion", "2.7.2"
END
END
BLOCK "VarFileInfo"