Skip to content

Commit

Permalink
refactor: patch version update
Browse files Browse the repository at this point in the history
  • Loading branch information
Jvcon committed Aug 11, 2023
1 parent de41138 commit 5e222d9
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 9 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
## [0.2.1](https://github.com/Jvcon/EhAria2/compare/v0.2.0...v0.2.1) (2023-08-09)
## [0.2.2](https://github.com/Jvcon/EhAria2/compare/0.2.1...v0.2.2) (2023-08-11)


### Bug Fixes

* fix icon resource and language localization ([d0894de](https://github.com/Jvcon/EhAria2/commit/d0894ded99a87963c1436f7edf3a4d28e9d2194a))



## [0.2.1](https://github.com/Jvcon/EhAria2/compare/v0.2.1...0.2.1) (2023-08-09)


### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions EhAria2.ahk
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
; --------------------- COMPILER DIRECTIVES --------------------------

;@Ahk2Exe-SetDescription Enhanced Aria2AHK
;@Ahk2Exe-SetVersion 0.2.1
;@Ahk2Exe-SetVersion 0.2.2
;@Ahk2Exe-SetCopyright Jacques Yip
;@Ahk2Exe-SetMainIcon EhAria2.ico
;@Ahk2Exe-SetOrigFilename EhAria2.exe
Expand Down Expand Up @@ -96,7 +96,7 @@ If (FileRead(CONF_Path) = "") {
CONF.ReadFile()

; --------------------- INITIALIZATION - VARIABLES --------------------------
Global appVersion := "0.2.1"
Global appVersion := "0.2.2"
Global sysThemeMode := RegRead("HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize", "SystemUsesLightTheme")

Global CurrentSpeedName := IniRead(CONF_Path, "Speed", "SpeedName" . CONF.Speed.CurrentSpeed)
Expand Down Expand Up @@ -1037,4 +1037,4 @@ ExitTray(*) {
CONF.WriteFile()
ExitApp
Return
}
}
4 changes: 2 additions & 2 deletions EhAria2Extension.ahk
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
; --------------------- COMPILER DIRECTIVES --------------------------

;@Ahk2Exe-SetDescription Enhanced Aria2Extension
;@Ahk2Exe-SetVersion 0.2.1
;@Ahk2Exe-SetVersion 0.2.2
;@Ahk2Exe-SetCopyright Jacques Yip
;@Ahk2Exe-SetMainIcon EhAria2Extension.ico
;@Ahk2Exe-SetOrigFilename EhAria2Extension.exe
Expand Down Expand Up @@ -280,4 +280,4 @@ PrintLog(type := "", message := "", funcName := "") {
logInfo["taskFileCount"] := fileCount
logInfo["taskFilePath"] := filePath
LogOutput.Write(Jxon_Dump(logInfo) . "`n")
}
}
4 changes: 2 additions & 2 deletions EhAria2Torrent.ahk
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
; --------------------- COMPILER DIRECTIVES --------------------------

;@Ahk2Exe-SetDescription Enhanced Aria2Torrent
;@Ahk2Exe-SetVersion 0.2.1
;@Ahk2Exe-SetVersion 0.2.2
;@Ahk2Exe-SetCopyright Jacques Yip
;@Ahk2Exe-SetMainIcon EhAria2Torrent.ico
;@Ahk2Exe-SetOrigFilename EhAria2Torrent.exe
Expand Down Expand Up @@ -60,4 +60,4 @@ else {

Aria2.addTorrent(TorrentPN, , proxy)
Exitapp
Return
Return
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./build.ps1 %npm_package_version% dev %npm_package_name%",
"version": "concurrently \"npm:setversion\" \"npm:changelog\" ",
"setversion": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./build.ps1 %npm_package_version% version %npm_package_name%",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
"changelog": "@powershell conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"nodemonConfig": {
"ignore": [
Expand Down

0 comments on commit 5e222d9

Please sign in to comment.