Skip to content

Commit 6e93cb3

Browse files
committed
Updated YML file
1 parent 29bd767 commit 6e93cb3

File tree

3 files changed

+20
-14
lines changed

3 files changed

+20
-14
lines changed

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,28 @@ Although it might seem like overkill to use a Windows installer for fonts, there
1212

1313
## Setup experience
1414

15-
- Uses downloads `(ExeFile).exe` from your repository and double clicks it.
15+
- Uses downloads `(SetupExe).exe` from your repository and double clicks it.
1616
- User sees a *Windows protected your PC* message, clicks on `More info` and selects `Run anyway`.
1717
- **Note:** The appearing *Windows SmartScreen warning* can be safely ignored as it is caused only by the fact that the EXE is not digitally signed. You may want to upload the EXE file to [VirusTotal](http://www.virustotal.com) and link to the report from your repository.
1818
- User asks if the font(s) should be installed
1919
- **SCREENSHOT**
20-
- `(ExeFile).exe` asks the user to perform a restart
20+
- `(SetupExe).exe` asks the user to perform a restart
2121
- Font can be used.
2222

2323
To uninstall, the user goes to the *Add/Remove Programs* applet in Control Panel, selects the entry and clicks on *Remove*.
2424
**SCREENSHOT**
2525

26-
2726
## How to use it
2827

28+
- Clone this repository
29+
- Delete the test fonts included and exchange them for your your own `*.TTF` files (in `/fonts`)
30+
- Update the other files as you see fit (e.g. `License.txt`)
31+
- Update `src/DATA.ini` to match your own data (Your name, copyright etc.)
32+
- **NOTE** Please always remember to update `UniqueID` in `src/DATA.ini`
33+
2934
## AppVeyor
3035

31-
[AppVeyor](https://www.appveyor.com/) is a continuous integration (CI) service that provides a Windows based environment. It can be used to build the EXE file if you do not have access to a Windows installation. It can be freely used for open source projects.
36+
[AppVeyor](https://www.appveyor.com/) is a continuous integration (CI) service that provides a Windows based environment. It can be used to build `SetupExe` if you do not have access to a Windows installation. It can be freely used for open source projects.
3237

3338
To use it, do the following:
3439
- Clone this repository

appveyor.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Appveyor build script for FSCW
22

3-
version: 2.0.{build}
3+
version: 1.0.{build}
44

55
# Do not run when just a tag is pushed
66
skip_tags: true
@@ -9,11 +9,11 @@ branches:
99
except:
1010
- gh-pages
1111

12-
12+
1313
environment:
1414
INNOSETUP_DOWNLOAD_URL: https://github.com/source-foundry/fscw/releases/download/v0.0.1/innosetup.exe
15-
16-
15+
16+
1717
install:
1818
# Create TEMP folder
1919
- md C:\temp
@@ -23,15 +23,16 @@ install:
2323
# Add Inno Setup to PATH so the ISCC command is found
2424
- set PATH="C:\Program Files (x86)\Inno Setup 5";%PATH%
2525

26-
26+
2727
build_script:
2828
- iscc.exe /DEXTERNAL_VERSION=%APPVEYOR_BUILD_VERSION% %APPVEYOR_BUILD_FOLDER%\src\FSCW.iss
29-
30-
29+
30+
3131
artifacts:
3232
- path: 'out\*.exe'
3333
name: SetupExe
34-
34+
35+
3536
#deploy:
3637
# provider: GitHub
3738
# auth_token:
@@ -42,11 +43,11 @@ artifacts:
4243
# release: Version $(appveyor_build_version)
4344
# description: $(APPVEYOR_REPO_COMMIT_MESSAGE) ($(APPVEYOR_REPO_COMMIT_TIMESTAMP))
4445

45-
46+
4647
#notifications:
4748
# - provider: Slack
4849
# auth_token:
4950
# secure: <Yoursecuretoken>
5051
# channel: '#release-info'
51-
52+
5253
#done
File renamed without changes.

0 commit comments

Comments
 (0)