Skip to content

Commit

Permalink
v0.4.0 update
Browse files Browse the repository at this point in the history
  • Loading branch information
Nigh committed Sep 27, 2023
1 parent 8d5fbb3 commit f3f5fa1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ Then the script would download the file and check if there is newer version. If

- set `version`
- set `ahkFilename` to your script name, it would compile `%ahkFilename%.ahk` to `%binaryFilename%.exe`
- set `downloadUrl` to your github release URL
- ~~set `downloadUrl` to your github release URL~~
- set your GitHub id(`GitHubID`) and Repo name (`repoName`)

### `tray.ahk`

Expand Down
10 changes: 5 additions & 5 deletions meta.ahk
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FileEncoding("UTF-8")
appName := "auto upgrader"
version := "0.3.4"
version := "0.4.0"
versionFilename := "version.txt"
ahkFilename := "app.ahk"
binaryFilename := "app.exe"
downloadFilename := "app.zip"
downloadUrl := "/Nigh/ahk-autoupdate-template/releases/latest/download/"
GitHubID := "Nigh"
repoName := "ahk-autoupdate-template"
downloadUrl := "/" GitHubID "/" repoName "/releases/latest/download/"
update_log := "
(
Replaced compiler binary source
Removed dead GitHub mirror
Fixed property set in the compiled executable's version information
Rewrite updater.ahk with C, that will reduce the compiled binary by half.
)"

0 comments on commit f3f5fa1

Please sign in to comment.