Skip to content

Commit 06e519d

Browse files
committed
Add Mists support and try to fix automatic versioning based on project version.
1 parent 71786f9 commit 06e519d

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.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

LibDropdown-1.0.toc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
## Interface-Classic: 11403
33
## Interface-BCC: 20504
44
## Interface-Cata: 40402
5+
## Interface-Cata: 50500
56
## X-Curse-Project-ID: 17280
67
## Title: Lib: Dropdown-1.0
78
## Notes: Dropdown library for Ace3 options, extensible to other options formats. Works ok.
89
## Author: Antiarc, NeoTron
9-
## Version: 1.0
10+
## Version: 1.0.@project-date-integer@
1011
## OptionalDeps: Ace3
1112

1213
LibDropdown-1.0\lib.xml

LibDropdown-1.0/LibDropdown-1.0.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
local MAJOR = "LibDropdown-1.0"
2-
local MINOR = 20240724
2+
ocal MINOR = tonumber("@project-date-integer@") or tonumber(date("%Y%m%d%H%M%S"))
33

44
local lib = LibStub:NewLibrary(MAJOR, MINOR)
55
if not lib then return end

0 commit comments

Comments
 (0)