Minor help file updates

Added AppleSingle note to "archive info" help page.
Added a missing pop-up help entry.
Added a README with instructions for regenerating help.
This commit is contained in:
Andy McFadden 2015-01-13 17:45:17 -08:00
parent e7e2459e5e
commit b40054bf26
5 changed files with 25 additions and 2 deletions

Binary file not shown.

View File

@ -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.

13
app/Help/README.txt Normal file
View File

@ -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.

View File

@ -52,6 +52,11 @@
<P STYLE="margin-top:0;margin-bottom:0;"><FONT FACE="Symbol" SIZE="2">&nbsp;</FONT></P>
<P STYLE="margin-top:0;margin-bottom:0;text-indent:-17pt;margin-left:17pt;"><SPAN STYLE="margin-left:-17pt;text-indent:0pt;width: 17pt"><FONT FACE="Symbol" SIZE="2"><B> </FONT></span><FONT FACE="MS Sans Serif" SIZE="2">Filename:</B> the name of the file that is currently open.</FONT></P>
<P STYLE="margin-top:0;margin-bottom:0;text-indent:-17pt;margin-left:17pt;"><SPAN STYLE="margin-left:-17pt;text-indent:0pt;width: 17pt"><FONT FACE="Symbol" SIZE="2"><B> </FONT></span><FONT FACE="MS Sans Serif" SIZE="2">Records:</B> the number of entries in the ACU archive.</FONT></P>
<P STYLE="margin-top:0;margin-bottom:0;"><FONT FACE="MS Sans Serif" SIZE="3">&nbsp;</FONT></P>
<P STYLE="margin-top:0;margin-bottom:0;"><FONT FACE="MS Sans Serif" SIZE="3"><B>AppleSingle file</B></FONT></P>
<P STYLE="margin-top:0;margin-bottom:0;"><FONT FACE="Symbol" SIZE="2">&nbsp;</FONT></P>
<P STYLE="margin-top:0;margin-bottom:0;text-indent:-17pt;margin-left:17pt;"><SPAN STYLE="margin-left:-17pt;text-indent:0pt;width: 17pt"><FONT FACE="Symbol" SIZE="2"><B> </FONT></span><FONT FACE="MS Sans Serif" SIZE="2">Filename:</B> the name of the file that is currently open.</FONT></P>
<P STYLE="margin-top:0;margin-bottom:0;text-indent:-17pt;margin-left:17pt;"><SPAN STYLE="margin-left:-17pt;text-indent:0pt;width: 17pt"><FONT FACE="Symbol" SIZE="2"><B> </FONT></span><FONT FACE="MS Sans Serif" SIZE="2">Info:</B> a few facts about the file.</FONT></P>
<P STYLE="margin-top:0;margin-bottom:0;">
</P>
</BODY></HTML>

View File

@ -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;
}