Skip to content

Commit b056b5a

Browse files
committed
Default install folder changed to "Hack Fonts"
1 parent 53fe698 commit b056b5a

File tree

4 files changed

+18
-14
lines changed

4 files changed

+18
-14
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ This installer addresses nearly all of the [commonly obeserved issues](https://g
99

1010
## Usage
1111

12-
- Download `HackWindowsInstaller.exe` from [Releases](https://github.com/source-foundry/Hack-windows-installer/releases/latest)
13-
- Double click `HackWindowsInstaller.exe`
12+
- Download `HackFontsWindowsInstaller.exe` from [Releases](https://github.com/source-foundry/Hack-windows-installer/releases/latest)
13+
- Double click `HackFontsWindowsInstaller.exe`
1414
- If you see a *Windows protected your PC* message, click on `More info` and select `Run anyway`. This *Windows SmartScreen warning* can be safely ignored, the installer is virus and addware free (see VirusTotal report for each release)
1515
- Follow the installation instructions
1616
- If a font file was installed or removed, the installer will request a reboot
@@ -28,16 +28,16 @@ We release the compiled installer with its SHA256 hash digest and [VirusTotal](h
2828

2929
To install silently, use the following command:
3030

31-
``start /wait HackWindowsInstaller.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /CLOSEAPPLICATIONS /NORESTARTAPPLICATIONS``
31+
``start /wait HackFontsWindowsInstaller.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /CLOSEAPPLICATIONS /NORESTARTAPPLICATIONS``
3232

3333
To remove it silently:
3434

35-
``C:\Program Files\Hack Windows Installer\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART``
35+
``C:\Program Files\Hack Fonts\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART``
3636

3737

3838
## Troubleshooting
3939

40-
The installer creates a log file on the path `C:\Users\ (Username) \AppData\Local\Temp\Setup Log (Year-Month-Day) #XXX.txt` with full information, as well as `C:\Program Files\Hack Windows Installer\Log-FontData.txt`. The later only contains a subset of the first.
40+
The installer creates a log file on the path `C:\Users\ (Username) \AppData\Local\Temp\Setup Log (Year-Month-Day) #XXX.txt` with full information, as well as `C:\Program Files\Hack Fonts\Log-FontData.txt`. The later only contains a subset of the first.
4141

4242
If you are using EMET: If the "Only trusted fonts" option is activated, you need to declare Hack as trusted or it will not be usable.
4343

@@ -48,7 +48,7 @@ Any constructive contribution is very welcome!
4848

4949
In order to fix a bug you have encountered, we require the log file. To view this log file, do the following:
5050

51-
- Open the folder `C:\Program Files\Hack Windows Installer`
51+
- Open the folder `C:\Program Files\Hack Fonts` (or `C:\Program Files\Hack Windows Installer` if you installed it before 1.6.0)
5252
- Locate the file called `Log-FontData.txt`
5353
- Open a new [issue](https://github.com/source-foundry/Hack-windows-installer/issues/new)
5454
- Paste the entire text of the log file

img/Hack-win-installer-crunch.ico

105 KB
Binary file not shown.

src/Data.ini

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ UniqueID=HackWindowsInstaller
1010

1111
[Version]
1212
;Version of the Setup (*NOT* for the Font release).
13-
Version=1.5.2
13+
Version=1.5.3
1414
;This value can be overwritten by an CI tool during build like this (param EXTERNAL_VERSION):
1515
;iscc.exe /DEXTERNAL_VERSION=%APPVEYOR_BUILD_VERSION% src/YourScriptFile.iss
1616

@@ -23,13 +23,13 @@ FontVersion=3.002
2323
[About]
2424
;Name of the font release. Will be displayed during setup like this:
2525
;Setup is now ready to install the {#FontName} v{#FontVersion} on your system.
26-
FontName=Hack fonts
26+
FontName=Hack Fonts
2727

2828
;The entity that releases the font and the setup
2929
Publisher=Michael Hex / Source Foundry
3030

3131
;Copyright for the font/setup.
32-
Copyright=Copyright © 2016-2017 Michael Hex / Source Foundry
32+
Copyright=Copyright (c) 2016-2017 Michael Hex / Source Foundry
3333

3434
;This URL will be created as web shortcut [Website.lnk] in the destination folder and
3535
;also displayed in the Add/Remove Programs applet.
@@ -42,19 +42,19 @@ Website=http://sourcefoundry.org/hack/
4242
[General]
4343
;Name of the installer, can be changed at any time and is displayed to the user during setup.
4444
;This is also the name that is displayed inside the Add/Remove Programs Applet.
45-
Name=Hack Windows Installer
45+
Name=Hack Fonts
4646

4747
;Name of the resulting EXE file.
4848
;*DO NOT* add the extension (.exe), this will be done by the script.
49-
ExeFile=HackWindowsInstaller
49+
ExeFile=HackFontsWindowsInstaller
5050

5151
;Folder name generated in C:\Program Files\.
5252
;This is required as the uninstall information and the log files needs to be stored somewhere.
53-
DestinationFolder=Hack Windows Installer
53+
DestinationFolder=Hack Fonts
5454

5555
;Icon that will be applied to the resulting setup exe and displayed in Add/Remove Programs applet.
5656
;Can be empty.
57-
Icon=img\Hack-installer-icon.ico
57+
Icon=img\Hack-win-installer-crunch.ico
5858

5959
;The license file(s) that will be copied to the destination folder (optional, but highly recommended).
6060
;Can be a single file:

src/HackWindowsInstaller.iss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//
99
//--------------------------------------------------------
1010
//Version of this installer script. Please do not change.
11-
#define public ScriptVersion '2.10'
11+
#define public ScriptVersion '2.11'
1212
//--------------------------------------------------------
1313

1414

@@ -1350,6 +1350,10 @@ begin
13501350
AfterInstallAction();
13511351
end;
13521352
1353+
if CurStep=ssDone then begin
1354+
LogAsImportant('Setup finished');
1355+
end;
1356+
13531357
end;
13541358
13551359

0 commit comments

Comments
 (0)