Browse Source

Cleanup the other waya round. Reverts a375816c336e679a2bcda47fbd7a42c6f3fb7d4e.

Martijn Laan 3 months ago
parent
commit
6e6fabf59a
4 changed files with 15 additions and 15 deletions
  1. 1 1
      Examples/CodeDownloadFiles.iss
  2. 1 1
      Examples/CodeDownloadFiles2.iss
  3. 8 8
      ISHelp/isetup.xml
  4. 5 5
      whatsnew.htm

+ 1 - 1
Examples/CodeDownloadFiles.iss

@@ -25,7 +25,7 @@ OutputDir=userdocs:Inno Setup Examples Output
 ArchiveExtraction=enhanced/nopassword
 
 [ISSigKeys]
-Name: "mykey"; RuntimeID: "def02"; \
+Name: mykey; RuntimeID: def02; \
   KeyID:   "def020edee3c4835fd54d85eff8b66d4d899b22a777353ca4a114b652e5e7a28"; \
   PublicX: "515dc7d6c16d4a46272ceb3d158c5630a96466ab4d948e72c2029d737c823097"; \
   PublicY: "f3c21f6b5156c52a35f6f28016ee3e31a3ded60c325b81fb7b1f88c221081a61"

+ 1 - 1
Examples/CodeDownloadFiles2.iss

@@ -26,7 +26,7 @@ OutputDir=userdocs:Inno Setup Examples Output
 ArchiveExtraction=enhanced/nopassword
 
 [ISSigKeys]
-Name: "mykey"; RuntimeID: "def02"; \
+Name: mykey; RuntimeID: def02; \
   KeyID:   "def020edee3c4835fd54d85eff8b66d4d899b22a777353ca4a114b652e5e7a28"; \
   PublicX: "515dc7d6c16d4a46272ceb3d158c5630a96466ab4d948e72c2029d737c823097"; \
   PublicY: "f3c21f6b5156c52a35f6f28016ee3e31a3ded60c325b81fb7b1f88c221081a61"

+ 8 - 8
ISHelp/isetup.xml

@@ -2851,13 +2851,13 @@ Name: "MyKey2; \
 
 <precode>
 [ISSigKeys]
-Name: "anna": KeyFile: "anna.ispublickey"; Group: "exesigner"
-Name: "vryan"; KeyFile: "ryan.ispublickey"; Group: "exesigner"
-Name: "ivan"; KeyFile: "ivan.ispublickey"; Group: "docsigner"
+Name: anna: KeyFile: "anna.ispublickey"; Group: exesigner
+Name: ryan; KeyFile: "ryan.ispublickey"; Group: exesigner
+Name: ivan; KeyFile: "ivan.ispublickey"; Group: docsigner
 ; max is trusted for both exe and doc signing
-Name: "max"; KeyFile: "max.ispublickey"; Group: "exesigner docsigner"
+Name: max; KeyFile: "max.ispublickey"; Group: exesigner docsigner
 ; the boss also has a key
-Name: "bosskey"; KeyFile: "boss.ispublickey"
+Name: bosskey; KeyFile: "boss.ispublickey"
 </precode>
 
 <p>See the <i>Remarks</i> section at the bottom of this topic for some important notes.</p>
@@ -2869,13 +2869,13 @@ Name: "bosskey"; KeyFile: "boss.ispublickey"
 <param name="Name" required="yes">
 <p>The internal name of the key.</p>
 <p>Key names are not stored in the resulting Setup file(s), so you may use personal or non-public information in them, like the names of developers.</p>
-<example><pre>Name: "MyKey"</pre></example>
+<example><pre>Name: MyKey</pre></example>
 </param>
 
 <param name="Group">
 <p>A space separated list of internal group names, specifying how to group the key.</p>
 <p>Group names are not stored in the resulting Setup file(s), so you may use personal or non-public information in them, like the names of developer groups.</p>
-<example><pre>Group: "exesigner docsigner"</pre></example>
+<example><pre>Group: exesigner docsigner</pre></example>
 </param>
 
 <param name="KeyID">
@@ -2905,7 +2905,7 @@ Name: "bosskey"; KeyFile: "boss.ispublickey"
 <param name="RuntimeID">
 <p>Specifies the runtime ID of the key, used by <link topic="isxfunc_ISSigVerify">ISSigVerify</link>.</p>
 <p>Runtime ID's are stored in the resulting Setup file(s), so you should <i>not</i> use personal or non-public information in them.</p>
-<example><pre>RuntimeID: "def01"</pre></example>
+<example><pre>RuntimeID: def01</pre></example>
 </param>
 
 </paramlist>

+ 5 - 5
whatsnew.htm

@@ -115,13 +115,13 @@ Source: "https://jrsoftware.org/download.php/is.exe?dontcount=1"; DestName: "inn
     <li>Key files are human-readable and can be created using Inno Setup Signature Tool (see below).</li>
     <li>Example section:
       <pre>[ISSigKeys]
-Name: "anna": KeyFile: "anna.ispublickey"; Group: "exesigner"
-Name: "vryan"; KeyFile: "ryan.ispublickey"; Group: "exesigner"
-Name: "ivan"; KeyFile: "ivan.ispublickey"; Group: "docsigner"
+Name: anna: KeyFile: "anna.ispublickey"; Group: exesigner
+Name: ryan; KeyFile: "ryan.ispublickey"; Group: exesigner
+Name: ivan; KeyFile: "ivan.ispublickey"; Group: docsigner
 ; max is trusted for both exe and doc signing
-Name: "max"; KeyFile: "max.ispublickey"; Group: "exesigner docsigner"
+Name: max; KeyFile: "max.ispublickey"; Group: exesigner docsigner
 ; the boss also has a key
-Name: "bosskey"; KeyFile: "boss.ispublickey"</pre>
+Name: bosskey; KeyFile: "boss.ispublickey"</pre>
     </li>
   </ul>
   </li>