Skip to content

Commit 61883bc

Browse files
committed
Renamed Website to Homepage
1 parent ab015f0 commit 61883bc

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

src/DATA.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; DATA.ini for Font Setup Creator for Windows (FSCW)
1+
; DATA.ini for Font Setup Creator for Windows (FSCW)
22
; Copyright (C) 2016 Michael 'Tex' Hex / Source Foundry
33
; Licensed under the MIT License
44
; https://github.com/source-foundry/fscw
@@ -35,9 +35,9 @@ Publisher=Michael Hex / Source Foundry
3535
; Copyright for the font
3636
Copyright=Copyright © 2016 Michael Hex / Source Foundry
3737

38-
; This URL will be created as web shortcut (Website.lnk) in the destination folder and
38+
; This URL will be created as web shortcut (Homepage.lnk) in the destination folder and
3939
; is also displayed in the Add/Remove Programs applet.
40-
Website=http://sourcefoundry.org/hack/
40+
Homepage=http://sourcefoundry.org/hack/
4141

4242

4343
[General]

src/FSCW.iss

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//https://github.com/source-foundry/fscw
55
//--------------------------------------------------------
66
//Version of this installer script. Please do not change.
7-
#define public ScriptVersion '2.04'
7+
#define public ScriptVersion '2.05'
88
//--------------------------------------------------------
99

1010

@@ -129,10 +129,10 @@
129129
#error 'DestinationFolder is empty'
130130
#endif
131131

132-
//Retrieve Website
133-
#define public Website GetDataIniValue(SectionAbout, 'Website')
134-
#if len(Website)==0
135-
#error 'Website is empty'
132+
//Retrieve Homepage
133+
#define public Homepage GetDataIniValue(SectionAbout, 'Homepage')
134+
#if len(Homepage)==0
135+
#error 'Homepage is empty'
136136
#endif
137137

138138
//Retrieve license file(s)
@@ -303,7 +303,7 @@ AppCopyright={#Copyright}
303303
;Information displayed in Control Panel -> Add/Remove Programs applet
304304
;---------------------------------------------------
305305
;Displayed as "Help link:"
306-
AppSupportURL={#Website}
306+
AppSupportURL={#Homepage}
307307
;Should also be displayed there, but I was unable to verify this
308308
AppContact={#Publisher}
309309
;Displayed as "Comments"
@@ -386,7 +386,7 @@ ReadyLabel2b=Setup is now ready to install the {#FontName} v{#FontVersion} on yo
386386
Name: "{app}\Fonts Applet"; Filename: "control.exe"; Parameters: "/name Microsoft.Fonts"; WorkingDir: "{win}";
387387

388388
;Link to the homepage for this font
389-
Name: "{app}\Website"; Filename: "{#Website}";
389+
Name: "{app}\Homepage"; Filename: "{#Homepage}";
390390

391391

392392
[Files]
@@ -431,35 +431,35 @@ Name: "{app}\Website"; Filename: "{#Website}";
431431
;------------------------
432432
;Remove old font files during install
433433
#define public i 0
434-
#sub Sub_InstallDeleteRemove
434+
#sub Sub_InstallDeleteRemoveOldFonts
435435
Type: files; Name: "{fonts}\{#remove_font_files[i]}";
436436
#endsub
437-
#for {i = 0; i < remove_font_count; i++} Sub_InstallDeleteRemove
437+
#for {i = 0; i < remove_font_count; i++} Sub_InstallDeleteRemoveOldFonts
438438
#undef i
439439
;------------------------
440440

441-
;Delete old log files that were use prior to FSCW
441+
;Delete old log files that were used prior to FSCW
442442
Type: files; Name: "{app}\Log-FontData*.txt"
443443

444444

445445
[Registry]
446446
;------------------------
447447
;Remove old font names during install
448448
#define public i 0
449-
#sub Sub_RegistyDelete
449+
#sub Sub_RegistyDeleteOldFonts
450450
Root: HKLM; Subkey: "SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts"; ValueName: "{#remove_font_names[i]} {#TrueType}"; ValueType: none; Flags: deletevalue;
451451
#endsub
452-
#for {i = 0; i < remove_font_count; i++} Sub_RegistyDelete
452+
#for {i = 0; i < remove_font_count; i++} Sub_RegistyDeleteOldFonts
453453
#undef i
454454
;------------------------
455455

456456
;------------------------
457457
;Delete any entry found in FontSubsitutes for each of the fonts that will be installed
458458
#define public i 0
459-
#sub Sub_DeleteRegistryFontSubstitutes
459+
#sub Sub_RegistryDeleteFontSubstitutes
460460
Root: HKLM; Subkey: "SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes"; ValueName: "{#font_names[i]} {#TrueType}"; ValueType: none; Flags: deletevalue;
461461
#endsub
462-
#for {i = 0; i < install_font_count; i++} Sub_DeleteRegistryFontSubstitutes
462+
#for {i = 0; i < install_font_count; i++} Sub_RegistryDeleteFontSubstitutes
463463
#undef i
464464
;------------------------
465465

src/zz_FSCW_Preprocessed.iss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ ReadyLabel2b=Setup is now ready to install the Ten Gallon Hat fonts v1.02 on you
225225
Name: "{app}\Fonts Applet"; Filename: "control.exe"; Parameters: "/name Microsoft.Fonts"; WorkingDir: "{win}";
226226

227227
;Link to the homepage for this font
228-
Name: "{app}\Website"; Filename: "http://sourcefoundry.org/hack/";
228+
Name: "{app}\Homepage"; Filename: "http://sourcefoundry.org/hack/";
229229

230230

231231
[Files]
@@ -265,7 +265,7 @@ Name: "{app}\Website"; Filename: "http://sourcefoundry.org/hack/";
265265
Type: files; Name: "{fonts}\Hack-RegularOblique-DEV.otf";
266266
;------------------------
267267

268-
;Delete old log files that were use prior to FSCW
268+
;Delete old log files that were used prior to FSCW
269269
Type: files; Name: "{app}\Log-FontData*.txt"
270270

271271

@@ -672,7 +672,7 @@ begin
672672
673673
LogAsImportant('--------------------------------');
674674
LogAsImportant('Font name.....: Ten Gallon Hat fonts');
675-
LogAsImportant('Script version: 2.04');
675+
LogAsImportant('Script version: 2.05');
676676
LogAsImportant('Setup version.: 1.0.0');
677677
LogAsImportant('Font version..: 1.02');
678678
LogAsImportant('Local time....: ' + GetDateTimeString('yyyy-dd-mm hh:nn', '-', ':'));

0 commit comments

Comments
 (0)