diff --git a/app/Help/CiderPress.chm b/app/Help/CiderPress.chm index 5121347..d291752 100644 Binary files a/app/Help/CiderPress.chm and b/app/Help/CiderPress.chm differ diff --git a/app/Help/PopUp.txt b/app/Help/PopUp.txt index c2c4283..c47bae5 100644 --- a/app/Help/PopUp.txt +++ b/app/Help/PopUp.txt @@ -447,6 +447,10 @@ View the disk as a series of 512-byte blocks. Recommended for ProDOS, Pascal, a .topic IDH_DECONF_VIEWASSECTORS View the disk as a collection of tracks and 256-byte sectors. Recommended for DOS 3.2 and 3.3. Not available on odd-sized volumes, e.g. some ProDOS images. +.topic IDH_DECONF_OUTERFORMAT +The outer format of the disk image, e.g. Zip archive. This setting may not be +changed. + .topic IDH_IMAGE_TYPE Basic information about the image. diff --git a/app/Help/README.txt b/app/Help/README.txt new file mode 100644 index 0000000..1e2baa7 --- /dev/null +++ b/app/Help/README.txt @@ -0,0 +1,13 @@ +Updating Help +============= + +Make any edits, then: + +1. Launch HTML Help Workshop +2. Open CiderPress.hhp +3. File > Compile + +This should update the CiderPress.chm in the app/Help directory. You can +copy it into the CiderPress directory, or just rebuild CiderPress to have +it copied automatically. + diff --git a/app/Help/html/t258.htm b/app/Help/html/t258.htm index baede9d..b337c6a 100644 --- a/app/Help/html/t258.htm +++ b/app/Help/html/t258.htm @@ -52,6 +52,11 @@

 

Filename: the name of the file that is currently open.

Records: the number of entries in the ACU archive.

+

 

+

AppleSingle file

+

 

+

Filename: the name of the file that is currently open.

+

Info: a few facts about the file.

diff --git a/app/ImageFormatDialog.cpp b/app/ImageFormatDialog.cpp index 497fb50..6e7a280 100644 --- a/app/ImageFormatDialog.cpp +++ b/app/ImageFormatDialog.cpp @@ -252,8 +252,9 @@ int ImageFormatDialog::ConvComboSel(int boxID, const ConvTable* pTable) ASSERT(enumval == pTable[idx].enumval); } - LOGI(" Returning ev=%d for %d entry '%ls'", - enumval, boxID, pTable[idx].name); + // Note pTable[idx].name is not always correct here, because the generic + // formats may not have been loaded into the combo box. + LOGI(" Returning ev=%d for %d'", enumval, boxID); return enumval; }