Compare commits

..

No commits in common. "master" and "v0.1.4" have entirely different histories.

8 changed files with 7 additions and 21 deletions

View file

@ -16,8 +16,7 @@
"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,

View file

@ -1,5 +1,5 @@
local _, u = ... local _, u = ...
u.version = GetAddOnMetadata("ImbusBinds", "Version") u.version = "v0.1.4"
-- https://wowpedia.fandom.com/wiki/BindingID -- https://wowpedia.fandom.com/wiki/BindingID
local myBinds = { local myBinds = {

View file

@ -1,7 +1,7 @@
## Interface: 30300 ## Interface: 30300
## Title: ImbusBinds ## Title: ImbusBinds
## Author: Imbus ## Author: Imbus
## Version: v0.1.5 ## Version: 0.1.2
## 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

View file

@ -1,7 +1,7 @@
## Interface: 100107 ## Interface: 100107
## Title: ImbusBinds ## Title: ImbusBinds
## Author: Imbus ## Author: Imbus
## Version: v0.1.5 ## Version: 0.1.2
## 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

View file

@ -1,7 +1,7 @@
## Interface: 11200 ## Interface: 11200
## Title: ImbusBinds ## Title: ImbusBinds
## Author: Imbus ## Author: Imbus
## Version: v0.1.5 ## Version: 0.1.2
## 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

View file

@ -1,7 +1,7 @@
## Interface: 30300 ## Interface: 30300
## Title: ImbusBinds ## Title: ImbusBinds
## Author: Imbus ## Author: Imbus
## Version: v0.1.5 ## Version: 0.1.2
## 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

View file

@ -1,7 +1,7 @@
## Interface: 30403 ## Interface: 30403
## Title: ImbusBinds ## Title: ImbusBinds
## Author: Imbus ## Author: Imbus
## Version: v0.1.5 ## Version: 0.1.2
## 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

View file

@ -1,13 +0,0 @@
#!/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"