Skip to content

Commit e0e0efa

Browse files
committed
Add Mists support and try to fix automatic versioning based on project version.
1 parent 105ff1b commit e0e0efa

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/toc-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: actions/checkout@v4.1.1
1313

1414
- name: Update TOC Interface version
15-
uses: p3lim/toc-interface-updater@v3
15+
uses: p3lim/toc-interface-updater@v4
1616
with:
1717
base: retail # this is default
1818

LibLogger-1.0.toc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
## Interface-Classic: 11403
33
## Interface-BCC: 20504
44
## Interface-Cata: 40402
5+
## Interface-Mists: 50500
56
## X-Curse-Project-ID: 14297
67
## LoadOnDemand: 1
78
## Title: Lib: Logger-1.0
@@ -10,7 +11,7 @@
1011
## eMail: neotron@gmail.com
1112
## X-Category: Library
1213
## X-License: GPLv3
13-
## Version: 1.0.@project-revision@
14+
## Version: 1.0.@project-date-integer@
1415

1516
LibStub.lua
1617
LibLogger-1.0\lib.xml

LibLogger-1.0/LibLogger-1.0.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ local logPrefix = {
8080
}
8181

8282
local MAJOR = "LibLogger-1.0"
83-
local MINOR = 20240724
83+
local MINOR = tonumber("@project-date-integer@") or tonumber(date("%Y%m%d%H%M%S"))
8484

8585
local lib = LibStub:NewLibrary(MAJOR, MINOR)
8686

0 commit comments

Comments
 (0)