mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-12-29 08:30:04 +00:00
1.27.7: Bump version & update History.txt & update docs for new switches
This commit is contained in:
parent
bd7a96ce6e
commit
74c0ca2cde
@ -8,6 +8,15 @@ https://github.com/AppleWin/AppleWin/issues/new
|
||||
|
||||
Tom Charlesworth
|
||||
|
||||
1.27.7.0 - 6 Aug 2018
|
||||
---------------------
|
||||
. [Bug #564] Fixed 'Save State on Exit' not working correctly when there's a Configuration change to the hardware.
|
||||
. [Bug #556] Reverted default so that ALT+TAB is not hooked (#556)
|
||||
- Support new command line switch: -hook-alt-tab to support hooking ALT+TAB.
|
||||
. [Bug #558] Reverted default so that ALT GR's fake LEFT CONTROL is not hooked (#558)
|
||||
- Support new command line switch: -hook-altgr-control to suppess ALR GR's fake LEFT CONTROL.
|
||||
|
||||
|
||||
1.27.6.0 - 28 Jul 2018
|
||||
----------------------
|
||||
. [Bug #570] Fixed lag when repeat-stepping in debugger.
|
||||
|
@ -43,7 +43,14 @@
|
||||
-no-printscreen-key<br>
|
||||
Prevent the PrintScreen key from being registered<br><br>
|
||||
-no-hook-system-key<br>
|
||||
Prevent certain system key combinations from being hooked (to prevent the emulator from trapping ALT+ESC, ALT+SPACE, ALT+TAB and CTRL+ESC). This means that the equivalent Open Apple+<key> combinations won't work within the emulator.<br><br>
|
||||
Prevent certain system key combinations from being hooked (to prevent the emulator from trapping ALT+ESC, ALT+SPACE, ALT+TAB and CTRL+ESC). This means that the equivalent Open Apple+<key> combinations won't work within the emulator.<br>
|
||||
NB. This switch takes precedence over -hook-alt-tab and -hook-altgr-control.<br><br>
|
||||
-hook-alt-tab<br>
|
||||
By default the emulator doesn't hook ALT+TAB. Use this to allow Open Apple+TAB to be readable by the emulated machine.<br><br>
|
||||
-hook-altgr-control<br>
|
||||
By default the emulator doesn't suppress ALT GR's (Right Alt's) fake LEFT CONTROL. Use this to suppress this fake LEFT CONTROL to allow Closed Apple+CTRL+<key> to be readable by the emulated machine.<br>
|
||||
NB. Suppressing this fake LEFT CONTROL seems to prevent international keyboards from being able to type certain keys.
|
||||
<br><br>
|
||||
-use-real-printer<br>
|
||||
Enables Advanced configuration control to allow dumping to a real printer<br><br>
|
||||
-noreg<br>
|
||||
|
@ -29,7 +29,7 @@
|
||||
The Solid Apple key was introduced on the Apple //e and later renamed to the
|
||||
Option key. This key is emulated with the PC's
|
||||
<span style="font-style: italic;">Right Alt</span>
|
||||
key, which is in the same position as the Solid Apple key on the original //e.
|
||||
key (or <span style="font-style: italic;">Alt Gr</span> key), which is in the same position as the Solid Apple key on the original //e.
|
||||
</p>
|
||||
<p><span style="font-weight: bold;">Numeric Keypad:</span><br>
|
||||
The numeric keypad, introduced on the Extended Keyboard //e, is emulated
|
||||
|
@ -13,7 +13,8 @@
|
||||
<p>The complete<sub style="FONT-WEIGHT: bold">1</sub> Apple //e state can be saved
|
||||
to a PC file at any time. This can be useful for continuity across AppleWin
|
||||
sessions or to help with games that don't have a save option.</p>
|
||||
<p>This is controlled by the AppleWin Configuration tab labelled <em>Advanced</em>.</p>
|
||||
<p>The state can optionally be automatically saved on AppleWin exit, and (automatically) restored on AppleWin restart.</p>
|
||||
<p>This is all controlled by the AppleWin <a href="cfg-advanced.html">Configuration</a> tab labeled <em>Advanced</em>.</p>
|
||||
<p style="FONT-WEIGHT: bold">Details:</p>
|
||||
<p>The entire Apple //e state is saved to a human-readable (.yaml) file.</p>
|
||||
<p><span style="FONT-WEIGHT: bold">1</span>
|
||||
@ -28,6 +29,7 @@
|
||||
<li>Mouse card</li>
|
||||
<li>CP/M SoftCard</li>
|
||||
<li>Parallel Printer card</li>
|
||||
<li>Super Serial card</li>
|
||||
</ul>
|
||||
The following are not yet persisted to the file:
|
||||
<ul>
|
||||
|
@ -252,8 +252,8 @@ DISK_ICON ICON "DISK.ICO"
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,27,6,0
|
||||
PRODUCTVERSION 1,27,6,0
|
||||
FILEVERSION 1,27,7,0
|
||||
PRODUCTVERSION 1,27,7,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
@ -271,12 +271,12 @@ BEGIN
|
||||
VALUE "Comments", "https://github.com/AppleWin"
|
||||
VALUE "CompanyName", "AppleWin"
|
||||
VALUE "FileDescription", "Apple //e Emulator for Windows"
|
||||
VALUE "FileVersion", "1, 27, 6, 0"
|
||||
VALUE "FileVersion", "1, 27, 7, 0"
|
||||
VALUE "InternalName", "APPLEWIN"
|
||||
VALUE "LegalCopyright", " 1994-2018 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, 27, 6, 0"
|
||||
VALUE "ProductVersion", "1, 27, 7, 0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
Loading…
Reference in New Issue
Block a user