|
| 1 | +;DATA file (INI based) for the Inno Setup based installer |
| 2 | + |
| 3 | +[ID] |
| 4 | +;Internal ID for this setup, never displayed. |
| 5 | +;Whitespaces are NOT allowed, only a-z, A-Z, 0-9. |
| 6 | +UniqueID=HackTestWinInstaller |
| 7 | +;IMPORTANT: DO NOT CHANGE THIS VALUE *EVER* ONCE YOU HAVE SET IT |
| 8 | +; AND THE INSTALLER HAS BEEN USED BY USERS! |
| 9 | + |
| 10 | + |
| 11 | +[Version] |
| 12 | +;Version of the Setup (*NOT* for the Font release). |
| 13 | +Version=1.0.0 |
| 14 | +;This value can be overwritten by an CI tool during build like this (param EXTERNAL_VERSION): |
| 15 | +;iscc.exe /DEXTERNAL_VERSION=%APPVEYOR_BUILD_VERSION% src/YourScriptFile.iss |
| 16 | + |
| 17 | +;Version of FONT release |
| 18 | +FontVersion=2.020 |
| 19 | +;This value can be overwritten by an CI tool during build like this (param EXTERNAL_FONT_VERSION): |
| 20 | +;iscc.exe /DEXTERNAL_FONT_VERSION=%MY_FONT_BUILD_VERSION% src/YourScriptFile.iss |
| 21 | + |
| 22 | + |
| 23 | +[About] |
| 24 | +;Name of the font release. Will be displayed during setup like this: |
| 25 | +;Setup is now ready to install the {#FontName} v{#FontVersion} on your system. |
| 26 | +FontName=Hack TEST fonts |
| 27 | + |
| 28 | +;The entity that releases the font and the setup |
| 29 | +Publisher=Michael Hex / Source Foundry |
| 30 | + |
| 31 | +;Copyright for the font/setup. |
| 32 | +Copyright=Copyright © 2016 Michael Hex / Source Foundry |
| 33 | + |
| 34 | +;This URL will be created as web shortcut [Website.lnk} in the destination folder and |
| 35 | +;also displayed in the Add/Remove Programs applet. |
| 36 | +Website=http://sourcefoundry.org/hack/ |
| 37 | +;Internal notice: |
| 38 | +;In the old setup, Add/Remove Programs -> Support (AppSupportURL) pointed to https://github.com/source-foundry/Hack-windows-installer' |
| 39 | +;File Hack Homepage.lnk (Section ICONS) pointed to http://sourcefoundry.org/hack/ |
| 40 | + |
| 41 | + |
| 42 | +[General] |
| 43 | +;Name of the installer, can be changed at any time and is displayed to the user during setup. |
| 44 | +;This is also the name that is displayed inside the Add/Remove Programs Applet. |
| 45 | +Name=Hack Test Win Installer |
| 46 | + |
| 47 | +;Name of the resulting EXE file. |
| 48 | +;*DO NOT* add the extension (.exe), this will be done by the script. |
| 49 | +ExeFile=HackTestWinInstaller |
| 50 | + |
| 51 | +;Folder name generated in C:\Program Files\. |
| 52 | +;This is required as the uninstall information and the log files needs to be stored somewhere. |
| 53 | +DestinationFolder=Hack Test Win Installer |
| 54 | + |
| 55 | +;Icon that will be applied to the resulting setup exe and displayed in Add/Remove Programs applet. |
| 56 | +;Can be empty. |
| 57 | +Icon= |
| 58 | + |
| 59 | +;The license file(s) that will be copied to the destination folder (optional, but highly recommended). |
| 60 | +;Can be a single file: |
| 61 | + ;LicenseFile=License.txt |
| 62 | +;A single file from a sub folder: |
| 63 | + ;LicenseFile=lic\License.md |
| 64 | +;Several files at once by using wildcards: |
| 65 | + ;LicenseFile=license*.* |
| 66 | +LicenseFile=license*.* |
| 67 | + |
| 68 | + |
| 69 | +;This section defines which fonts should be installed. |
| 70 | +[InstallFonts] |
| 71 | +;In which sub folder are the font files located (as seen from the base path). |
| 72 | +SourceFolder=testfonts |
| 73 | + |
| 74 | +;How many fonts are in this section we should install. |
| 75 | +;This must be number of the last File.X and Name.X entry |
| 76 | +Count=4 |
| 77 | + |
| 78 | +;For Name.X *DO NOT* append "(TrueType)" - The setup will add it automatically. |
| 79 | +File.1=Hack-Bold-DEV.ttf |
| 80 | +Name.1=Hack Bold |
| 81 | + |
| 82 | +;For any font that is named "Regular", *DO NOT* add "Regular". Windows assumes "Regular" to not be used. |
| 83 | +File.2=Hack-Regular-DEV.ttf |
| 84 | +Name.2=Hack |
| 85 | + |
| 86 | +File.3=Hack-BoldItalic-DEV.ttf |
| 87 | +Name.3=Hack Bold Italic |
| 88 | + |
| 89 | +File.4=Hack-Italic-DEV.ttf |
| 90 | +Name.4=Hack Italic |
| 91 | + |
| 92 | + |
| 93 | +;Use this section to remove fonts upon installation, e.g. old versions of your files |
| 94 | +;that had different file names or font names. The Count for this section can be zero. |
| 95 | +[RemoveFonts] |
| 96 | +Count=4 |
| 97 | + |
| 98 | +;These files are left overs from Hack 2.10 which used different names for italic |
| 99 | + |
| 100 | +;Again, *DO NOT* append "(TrueType)" for any Name.X entry |
| 101 | +File.1=Hack-BoldOblique.ttf |
| 102 | +Name.1=Hack Bold Oblique |
| 103 | + |
| 104 | +File.2=Hack-RegularOblique.ttf |
| 105 | +Name.2=Hack Oblique |
| 106 | + |
| 107 | +File.3=Hack-BoldOblique.otf |
| 108 | +Name.3=Hack Bold Oblique |
| 109 | + |
| 110 | +File.4=Hack-RegularOblique.otf |
| 111 | +Name.4=Hack Oblique |
| 112 | + |
| 113 | + |
| 114 | + |
0 commit comments