Bumped version to 1.15.0 for CP/M beta support
Made PrintScrn support conditional on _DEBUG
This commit is contained in:
parent
6a2c6b6363
commit
d6eb91be7e
3 changed files with 17 additions and 6 deletions
|
@ -17,6 +17,15 @@ Restrictions/bugs:
|
|||
- SSI263 emulation is very basic: there is no attempt to emulate rate, inflection or filters.
|
||||
- During Mockingboard playback, Speaker emulation isn't precise
|
||||
|
||||
1.15.0 - 24 Aug 2008
|
||||
--------------------
|
||||
Changes:
|
||||
. Beta: CP/M support (Microsoft CP/M SoftCard in slot-5)
|
||||
- No save-state support
|
||||
- No Z80 debugging support
|
||||
|
||||
Fixes:
|
||||
. '~' displayed instead of '^'
|
||||
|
||||
1.14.2.0 - 23 Jun 2008
|
||||
----------------------
|
||||
|
|
|
@ -230,8 +230,8 @@ DISK_ICON ICON "DISK.ICO"
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,14,2,0
|
||||
PRODUCTVERSION 1,14,2,0
|
||||
FILEVERSION 1,15,0,0
|
||||
PRODUCTVERSION 1,15,0,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -249,12 +249,12 @@ BEGIN
|
|||
VALUE "Comments", "http://applewin.berlios.de"
|
||||
VALUE "CompanyName", "Michael O'Brien, Oliver Schmidt, Tom Charlesworth"
|
||||
VALUE "FileDescription", "Apple //e Emulator for Windows"
|
||||
VALUE "FileVersion", "1, 14, 2, 0"
|
||||
VALUE "FileVersion", "1, 15, 0, 0"
|
||||
VALUE "InternalName", "APPLEWIN"
|
||||
VALUE "LegalCopyright", "© 1994-2008 Michael O'Brien, Oliver Schmidt, Tom Charlesworth, Michael Pohoreski, Nick Westgate, Linards Ticmanis"
|
||||
VALUE "OriginalFilename", "APPLEWIN.EXE"
|
||||
VALUE "ProductName", "Apple //e Emulator"
|
||||
VALUE "ProductVersion", "1, 14, 2, 0"
|
||||
VALUE "ProductVersion", "1, 15, 0, 0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
|
@ -565,7 +565,7 @@ void RegisterExtensions ()
|
|||
}
|
||||
|
||||
//===========================================================================
|
||||
void ApppleWin_RegisterHotKeys()
|
||||
void AppleWin_RegisterHotKeys()
|
||||
{
|
||||
BOOL bStatus = RegisterHotKey(
|
||||
g_hFrameWindow , // HWND hWnd
|
||||
|
@ -792,7 +792,9 @@ int APIENTRY WinMain (HINSTANCE passinstance, HINSTANCE, LPSTR lpCmdLine, int)
|
|||
MemInitialize();
|
||||
VideoInitialize();
|
||||
FrameCreateWindow();
|
||||
ApppleWin_RegisterHotKeys(); // needs valid g_hFrameWindow
|
||||
#ifdef _DEBUG
|
||||
AppleWin_RegisterHotKeys(); // needs valid g_hFrameWindow
|
||||
#endif
|
||||
|
||||
// Need to test if it's safe to call ResetMachineState(). In the meantime, just call DiskReset():
|
||||
DiskReset(); // Switch from a booting A][+ to a non-autostart A][, so need to turn off floppy motor
|
||||
|
|
Loading…
Add table
Reference in a new issue