ソースを参照

Tweak headers.

Martijn Laan 3 ヶ月 前
コミット
9fa238aea2
2 ファイル変更4 行追加13 行削除
  1. 1 11
      Examples/CodeDownloadFiles.iss
  2. 3 2
      Examples/DownloadFiles.iss

+ 1 - 11
Examples/CodeDownloadFiles.iss

@@ -3,17 +3,7 @@
 ; SEE DOWNLOADFILES.ISS FIRST!
 ;
 ; This script shows how the CreateDownloadPage support function can be used to
-; download files and archives while showing the download and extraction
-; progress to the user.
-;
-; To verify the downloaded files and archives, this script shows two methods:
-; -For innosetup-latest.exe and MyProg-ExtraReadmes.7z: using Inno Setup
-;  Signature Tool, the [ISSigKeys] section, and the AddWithISSigVerify support
-;  function
-; -For iscrypt.dll: using a simple SHA-256 hash check
-; Using the Inno Setup Signature Tool has the benefit that the script does not
-; need to be changed when the downloaded file or archive changes, so any
-; installers built will also keep working (they are "evergreen")
+; download and verify files while showing the download progress to the user.
 
 [Setup]
 AppName=My Program

+ 3 - 2
Examples/DownloadFiles.iss

@@ -1,7 +1,8 @@
 ; -- DownloadFiles.iss --
 ;
-; This script shows how the [Files] section can be used to download files and
-; archives while showing the download and extraction progress to the user.
+; This script demonstrates how to download files and archives, extract
+; downloaded archives, and verify the integrity of downloaded files and
+; archives, all without using [Code].
 ;
 ; Archives will be downloaded to temporary copy at the start of the Preparing
 ; To Install step. Other files will be downloaded directly to their destination