|
From: Steve A. <ste...@us...> - 2009-05-01 11:25:20
|
Update of /cvsroot/stella/stella/src/win32 In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv24349/src/win32 Modified Files: stella.iss stella.rc Log Message: Fixed bug in F4SC bankswitching; writes to the BS addresses weren't actually performing a bankswitch. (Hopefully) improved Pitfall2 sound generation. At least it sounds more authentic to me. Updates for the 2.7.7 release. Index: stella.iss =================================================================== RCS file: /cvsroot/stella/stella/src/win32/stella.iss,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** stella.iss 12 Apr 2009 18:04:36 -0000 1.21 --- stella.iss 1 May 2009 11:25:07 -0000 1.22 *************** *** 4,8 **** [Setup] AppName=Stella ! AppVerName=Stella 2.7.6 AppPublisher=Bradford W. Mott and the Stella team AppPublisherURL=http://stella.sourceforge.net --- 4,8 ---- [Setup] AppName=Stella ! AppVerName=Stella 2.7.7 AppPublisher=Bradford W. Mott and the Stella team AppPublisherURL=http://stella.sourceforge.net *************** *** 11,15 **** DefaultDirName={pf}\Stella DefaultGroupName=Stella ! OutputBaseFilename=stella-2.7.6-win32 Compression=lzma SolidCompression=yes --- 11,15 ---- DefaultDirName={pf}\Stella DefaultGroupName=Stella ! OutputBaseFilename=stella-2.7.7-win32 Compression=lzma SolidCompression=yes *************** *** 22,29 **** [Files] ! Source: "..\..\stella-2.7.6\Stella.exe"; DestDir: "{app}"; Flags: ignoreversion ! ;Source: "..\..\stella-2.7.6\zlib1.dll"; DestDir: "{app}"; Flags: ignoreversion ! Source: "..\..\stella-2.7.6\SDL.dll"; DestDir: "{app}"; Flags: ignoreversion ! Source: "..\..\stella-2.7.6\docs\*"; DestDir: "{app}\docs"; Flags: ignoreversion recursesubdirs createallsubdirs ; NOTE: Don't use "Flags: ignoreversion" on any shared system files --- 22,29 ---- [Files] ! Source: "..\..\stella-2.7.7\Stella.exe"; DestDir: "{app}"; Flags: ignoreversion ! ;Source: "..\..\stella-2.7.7\zlib1.dll"; DestDir: "{app}"; Flags: ignoreversion ! Source: "..\..\stella-2.7.7\SDL.dll"; DestDir: "{app}"; Flags: ignoreversion ! Source: "..\..\stella-2.7.7\docs\*"; DestDir: "{app}\docs"; Flags: ignoreversion recursesubdirs createallsubdirs ; NOTE: Don't use "Flags: ignoreversion" on any shared system files Index: stella.rc =================================================================== RCS file: /cvsroot/stella/stella/src/win32/stella.rc,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** stella.rc 12 Apr 2009 15:50:46 -0000 1.22 --- stella.rc 1 May 2009 11:25:07 -0000 1.23 *************** *** 29,34 **** // VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,7,6,0 ! PRODUCTVERSION 2,7,6,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 29,34 ---- // VS_VERSION_INFO VERSIONINFO ! FILEVERSION 2,7,7,0 ! PRODUCTVERSION 2,7,7,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 48,57 **** VALUE "CompanyName", "Bradford W. Mott and the Stella team (http://stella.sourceforge.net)" VALUE "FileDescription", "Stella" ! VALUE "FileVersion", "2.7.6" 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.6" END END --- 48,57 ---- VALUE "CompanyName", "Bradford W. Mott and the Stella team (http://stella.sourceforge.net)" VALUE "FileDescription", "Stella" ! VALUE "FileVersion", "2.7.7" 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.7" END END |