Compare commits
4 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
295dc15844 | ||
![]() |
e4fdafb12b | ||
![]() |
c05d0f9ddd | ||
![]() |
56162b82c9 |
8 changed files with 21 additions and 7 deletions
|
@ -16,7 +16,8 @@
|
||||||
"MultiActionBar_Update",
|
"MultiActionBar_Update",
|
||||||
"SetActionBarToggles",
|
"SetActionBarToggles",
|
||||||
"SaveBindings",
|
"SaveBindings",
|
||||||
"SlashCmdList"
|
"SlashCmdList",
|
||||||
|
"GetAddOnMetadata"
|
||||||
],
|
],
|
||||||
"runtime.version": "Lua 5.1",
|
"runtime.version": "Lua 5.1",
|
||||||
"type.inferParamType": true,
|
"type.inferParamType": true,
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
local _, u = ...
|
local _, u = ...
|
||||||
u.version = "v0.1.4"
|
u.version = GetAddOnMetadata("ImbusBinds", "Version")
|
||||||
|
|
||||||
-- https://wowpedia.fandom.com/wiki/BindingID
|
-- https://wowpedia.fandom.com/wiki/BindingID
|
||||||
local myBinds = {
|
local myBinds = {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
## Interface: 30300
|
## Interface: 30300
|
||||||
## Title: ImbusBinds
|
## Title: ImbusBinds
|
||||||
## Author: Imbus
|
## Author: Imbus
|
||||||
## Version: 0.1.2
|
## Version: v0.1.5
|
||||||
## Notes: Simple addon for a sane default keybind setup
|
## Notes: Simple addon for a sane default keybind setup
|
||||||
## URL: https://git.silversoft.se/Imbus/ImbusBinds
|
## URL: https://git.silversoft.se/Imbus/ImbusBinds
|
||||||
## IconTexture: Interface\Icons\Inv_qiraj_jewelglyphed
|
## IconTexture: Interface\Icons\Inv_qiraj_jewelglyphed
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
## Interface: 100107
|
## Interface: 100107
|
||||||
## Title: ImbusBinds
|
## Title: ImbusBinds
|
||||||
## Author: Imbus
|
## Author: Imbus
|
||||||
## Version: 0.1.2
|
## Version: v0.1.5
|
||||||
## Notes: Simple addon for a sane default keybind setup
|
## Notes: Simple addon for a sane default keybind setup
|
||||||
## URL: https://git.silversoft.se/Imbus/ImbusBinds
|
## URL: https://git.silversoft.se/Imbus/ImbusBinds
|
||||||
## IconTexture: Interface\Icons\Inv_qiraj_jewelglyphed
|
## IconTexture: Interface\Icons\Inv_qiraj_jewelglyphed
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
## Interface: 11200
|
## Interface: 11200
|
||||||
## Title: ImbusBinds
|
## Title: ImbusBinds
|
||||||
## Author: Imbus
|
## Author: Imbus
|
||||||
## Version: 0.1.2
|
## Version: v0.1.5
|
||||||
## Notes: Simple addon for a sane default keybind setup
|
## Notes: Simple addon for a sane default keybind setup
|
||||||
## URL: https://git.silversoft.se/Imbus/ImbusBinds
|
## URL: https://git.silversoft.se/Imbus/ImbusBinds
|
||||||
## IconTexture: Interface\Icons\Inv_qiraj_jewelglyphed
|
## IconTexture: Interface\Icons\Inv_qiraj_jewelglyphed
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
## Interface: 30300
|
## Interface: 30300
|
||||||
## Title: ImbusBinds
|
## Title: ImbusBinds
|
||||||
## Author: Imbus
|
## Author: Imbus
|
||||||
## Version: 0.1.2
|
## Version: v0.1.5
|
||||||
## Notes: Simple addon for a sane default keybind setup
|
## Notes: Simple addon for a sane default keybind setup
|
||||||
## URL: https://git.silversoft.se/Imbus/ImbusBinds
|
## URL: https://git.silversoft.se/Imbus/ImbusBinds
|
||||||
## IconTexture: Interface\Icons\Inv_qiraj_jewelglyphed
|
## IconTexture: Interface\Icons\Inv_qiraj_jewelglyphed
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
## Interface: 30403
|
## Interface: 30403
|
||||||
## Title: ImbusBinds
|
## Title: ImbusBinds
|
||||||
## Author: Imbus
|
## Author: Imbus
|
||||||
## Version: 0.1.2
|
## Version: v0.1.5
|
||||||
## Notes: Simple addon for a sane default keybind setup
|
## Notes: Simple addon for a sane default keybind setup
|
||||||
## URL: https://git.silversoft.se/Imbus/ImbusBinds
|
## URL: https://git.silversoft.se/Imbus/ImbusBinds
|
||||||
## IconTexture: Interface\Icons\Inv_qiraj_jewelglyphed
|
## IconTexture: Interface\Icons\Inv_qiraj_jewelglyphed
|
||||||
|
|
13
set_version.sh
Normal file
13
set_version.sh
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [[ $# -ne 1 ]]; then
|
||||||
|
echo "Usage: $0 <semver>"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
SEMVER="$1"
|
||||||
|
|
||||||
|
# Update all *.toc files
|
||||||
|
sed -i -E "s/^(## Version: ).*/\1$SEMVER/" ./*.toc
|
||||||
|
|
||||||
|
echo "Updated all .toc files with version $SEMVER"
|
Loading…
Add table
Reference in a new issue