Skip to content

Commit 361903f

Browse files
committed
Updated download URL in YML
1 parent ad3d5a2 commit 361903f

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ FSCW includes all best practises for font installation on Windows we have learne
1010

1111
Although it might seem like overkill to use a Windows installer for fonts, there is good reason for this on the Windows platform. A number of things can go wrong when one tries to install or update frequently updated fonts manually (see [issue #152](https://github.com/chrissimpkins/Hack/issues/152) and [issue #129](https://github.com/chrissimpkins/Hack/issues/129) in the [Hack repository](https://github.com/chrissimpkins/Hack/)).
1212

13-
## Setup experience
13+
## Setup experience for the generated setup
1414

1515
- Uses downloads `(SetupExe)` from your repository and double clicks it.
1616
- User sees a *Windows protected your PC* message, clicks on `More info` and selects `Run anyway`.
@@ -26,9 +26,9 @@ To uninstall, the user goes to the *Add/Remove Programs* applet in Control Panel
2626
## How to use it
2727

2828
- Clone this repository
29-
- Delete the test fonts included and exchange them for your your own `*.TTF` files (in `/fonts`)
29+
- Delete the test fonts and exchange them for your your own `*.TTF` files (in `/fonts`)
3030
- Update the other files as you see fit (e.g. `License.txt`, icon file etc.)
31-
- Update `src/DATA.ini` to match your own data (Your name, copyright etc.)
31+
- Update `src/DATA.ini` to match your own data (Name, copyright etc.)
3232
- **NOTE** Please always remember to update `UniqueID` in `src/DATA.ini`
3333

3434
## Building on Windows

appveyor.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ install:
1818
# Create TEMP folder
1919
- md C:\temp
2020
# Download and install Inno Setup.
21-
- ps: (new-object net.webclient).DownloadFile(env:INNOSETUP_DOWNLOAD_URL, 'c:\temp\innosetup.exe')
21+
- ps: $env:INNOSETUP_DOWNLOAD_URL
22+
- ps: (new-object net.webclient).DownloadFile($env:INNOSETUP_DOWNLOAD_URL, 'c:\temp\innosetup.exe')
2223
- c:\temp\innosetup.exe TYPE=full /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /CLOSEAPPLICATIONS /NORESTARTAPPLICATIONS
2324
# Add Inno Setup to PATH so the ISCC command is found
2425
- set PATH="C:\Program Files (x86)\Inno Setup 5";%PATH%

src/DATA.ini

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
; FSCW Data File
1+
; DATA.ini for Font Setup Creator for Windows (FSCW)
2+
; Copyright (C) 2016 Michael 'Tex' Hex / Source Foundry
3+
; Licensed under the MIT License
4+
; https://github.com/source-foundry/fscw
5+
6+
27

38
[ID]
49
; Internal ID for this setup, never displayed.

0 commit comments

Comments
 (0)