diff --git a/bin/History.txt b/bin/History.txt index d4dbe89b..d5f9454c 100644 --- a/bin/History.txt +++ b/bin/History.txt @@ -8,6 +8,15 @@ https://github.com/AppleWin/AppleWin/issues/new Tom Charlesworth +1.29.0.0 - 8 Jul 2019 +--------------------- +. [Change #544] Support for .woz disk images. + - WOZ1 and WOZ2 formats supported. + - read-only: images forced to write-protected (so 'Stickybear Town Builder' doesn't work). + - only 5.25" (not 3.5"). + - known issues: 'Wizardry III' not booting. + + 1.28.8.0 - 28 Jun 2019 ---------------------- . [Change #648] Support 50Hz(PAL) video refresh rate and implicitly PAL 1.016MHz. diff --git a/help/CommandLine.html b/help/CommandLine.html index aca64edb..fee1b3f2 100644 --- a/help/CommandLine.html +++ b/help/CommandLine.html @@ -98,7 +98,11 @@
  • Or: Allow the emulated Apple II to read the Enter key state when Alt (Open Apple key) is pressed. -rgb-card-invert-bit7
    - Force the RGB card (in "Color (RGB Monitor)" video mode) to invert bit7 in MIX mode. Enables the correct rendering for Dragon Wars. + Force the RGB card (in "Color (RGB Monitor)" video mode) to invert bit7 in MIX mode. Enables the correct rendering for Dragon Wars.

    + -50hz
    + Support 50Hz(PAL) video refresh rate and implicitly PAL 1.016MHz.

    + -60hz
    + Support 60Hz(PAL) video refresh rate and implicitly PAL 1.020MHz (default).

    Debug arguments: diff --git a/help/cfg-config.html b/help/cfg-config.html index 17daf96e..f954ce6a 100644 --- a/help/cfg-config.html +++ b/help/cfg-config.html @@ -78,6 +78,11 @@ processor speed from half-speed to as fast as your PC can emulate.

    + 50Hz video:
    + When checked, this option will run the emulated machine with a 50Hz(PAL) video refresh rate. + The default is unchecked, for 60Hz(NTSC).
    +
    + Benchmark Emulator:
    This will run a benchmark test that will show how fast your PC can emulate an Apple //e system with this emulator. In order to run the benchmark, the diff --git a/help/ddi-formats.html b/help/ddi-formats.html index 0b197b37..b16c688d 100644 --- a/help/ddi-formats.html +++ b/help/ddi-formats.html @@ -57,7 +57,7 @@ successfully detect the format. Otherwise, it will revert to DOS order, which is by far the most common format. To force ProDOS order, give the file an extension of ".PO".

    -

    Nibble Images :

    +

    Nibble Images:

    Nibble images contain all of the data on a disk; not just the data in sectors but also the sector headers @@ -66,13 +66,18 @@ that would be recorded on a real disk's surface. At 232,960 bytes, nibble images are bigger than other images, but they can be useful for making images of copy protected software.

    -

    2mg Images :

    +

    2mg Images:

    2mg (or 2img) images are a wrapper around DOS, ProDOS or Nibble images. They contain extra meta-data describing for example, DOS volume number and write-protection.

    +

    WOZ Images:

    + +

    The WOZ Disk Image format is an offshoot of the Applesauce project. Capturing highly accurate bit data is of no use if you don't have a container to hold the data. The WOZ format was designed to be able to contain every possible Apple ][ disk structure and layout. It can be so accurate that even copy protected software can't tell that it isn't an original disk. +

    +

    Compressed Images :

    All of the above can optionally be either gzip'ed or zipped. If a zip archive @@ -80,8 +85,8 @@ contains multiple files, then AppleWin only supports using the first file. For b with hard disk images, uncompress first, as writing back to the image requires a full image re-compression after every block write. Examples of typical extensions are:

    diff --git a/help/img/config.png b/help/img/config.png index c4e0b941..d35785ca 100644 Binary files a/help/img/config.png and b/help/img/config.png differ diff --git a/resource/version.h b/resource/version.h index bb51944c..327790e8 100644 --- a/resource/version.h +++ b/resource/version.h @@ -1,4 +1,4 @@ -#define APPLEWIN_VERSION 1,28,8,0 +#define APPLEWIN_VERSION 1,29,0,0 #define xstr(a) str(a) #define str(a) #a