-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump version and releases for multiple game version includes Wrath cl…
…assic (#12) * rename pkgmeta.yml to .pkgmeta, setup CI packager * luacheck * update desc
- Loading branch information
Showing
51 changed files
with
245 additions
and
12,353 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Package and release | ||
on: | ||
push: | ||
tags: | ||
- '**' | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
env: | ||
CF_API_KEY: ${{ secrets.CF_API_KEY }} | ||
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install and run Luacheck | ||
uses: nebularg/actions-luacheck@v1 | ||
with: | ||
args: "--no-color -q" | ||
annotate: warning | ||
|
||
- name: Package and release | ||
uses: BigWigsMods/packager@v2 | ||
with: | ||
args: -S |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,182 @@ | ||
std = "lua51" | ||
max_line_length = false | ||
|
||
ignore = { | ||
"212", -- Unused argument | ||
"213", -- Unused loop variable | ||
"214", -- unused hint | ||
} | ||
|
||
globals = { | ||
"_G", | ||
"LibStub", | ||
"SlashCmdList", | ||
"ChatFrame_AddMessageEventFilter", | ||
"DEFAULT_CHAT_FRAME", | ||
"SLASH_ROMAJI2KANA1", | ||
"SLASH_ROMAJI2KANA2", | ||
"ROMAJI2KANA_STOPWORDS", | ||
|
||
"abs", | ||
"acos", | ||
"asin", | ||
"assert", | ||
"atan", | ||
"atan2", | ||
"bit.arshift", | ||
"bit.band", | ||
"bit.bnot", | ||
"bit.bor", | ||
"bit.bxor", | ||
"bit.lshift", | ||
"bit.mod", | ||
"bit.rshift", | ||
"ceil", | ||
"collectgarbage", | ||
"coroutine.create", | ||
"coroutine.resume", | ||
"coroutine.running", | ||
"coroutine.status", | ||
"coroutine.wrap", | ||
"coroutine.yield", | ||
"cos", | ||
"date", | ||
"debugbreak", | ||
"debugdump", | ||
"debuginfo", | ||
"debugload", | ||
"debuglocals", | ||
"debugprint", | ||
"debugprofilestart", | ||
"debugprofilestop", | ||
"debugstack", | ||
"debugtimestamp", | ||
"deg", | ||
"difftime", | ||
"error", | ||
"exp", | ||
"fastrandom", | ||
"floor", | ||
"forceinsecure", | ||
"foreach", | ||
"foreachi", | ||
"format", | ||
"frexp", | ||
"gcinfo", | ||
"geterrorhandler", | ||
"getfenv", | ||
"getmetatable", | ||
"getn", | ||
"gmatch", | ||
"gsub", | ||
"hooksecurefunc", | ||
"ipars", | ||
"issecure", | ||
"issecurevariable", | ||
"ldexp", | ||
"loadstring", | ||
"log", | ||
"log10", | ||
"math.abs", | ||
"math.acos", | ||
"math.asin", | ||
"math.atan", | ||
"math.atan2", | ||
"math.ceil", | ||
"math.cos", | ||
"math.cosh", | ||
"math.deg", | ||
"math.exp", | ||
"math.floor", | ||
"math.fmod", | ||
"math.frexp", | ||
"math.ldexp", | ||
"math.log", | ||
"math.log10", | ||
"math.max", | ||
"math.min", | ||
"math.modf", | ||
"math.pow", | ||
"math.rad", | ||
"math.random", | ||
"math.sin", | ||
"math.sinh", | ||
"math.sqrt", | ||
"math.tan", | ||
"math.tanh", | ||
"max", | ||
"min", | ||
"mod", | ||
"newproxy", | ||
"next", | ||
"pairs", | ||
"pcall", | ||
"rad", | ||
"random", | ||
"rawequal", | ||
"rawget", | ||
"rawset", | ||
"scrub", | ||
"securecall", | ||
"select", | ||
"seterrorhandler", | ||
"setfenv", | ||
"setmetatable", | ||
"sin", | ||
"sort", | ||
"sqrt", | ||
"strbyte", | ||
"strchar", | ||
"strcmputf8i", | ||
"strconcat", | ||
"strfind", | ||
"string.byte", | ||
"string.char", | ||
"string.find", | ||
"string.format", | ||
"string.gfind", | ||
"string.gmatch", | ||
"string.gsub", | ||
"string.join", | ||
"string.len", | ||
"string.lower", | ||
"string.match", | ||
"string.rep", | ||
"string.reverse", | ||
"string.split", | ||
"string.sub", | ||
"string.trim", | ||
"string.upper", | ||
"strjoin", | ||
"strlen", | ||
"strlenutf8", | ||
"strlower", | ||
"strmatch", | ||
"strrep", | ||
"strrev", | ||
"strsplit", | ||
"strsub", | ||
"strtrim", | ||
"strupper", | ||
"table.concat", | ||
"table.foreach", | ||
"table.foreachi", | ||
"table.getn", | ||
"table.insert", | ||
"table.maxn", | ||
"table.remove", | ||
"table.removemulti", | ||
"table.setn", | ||
"table.sort", | ||
"table.wipe", | ||
"tan", | ||
"time", | ||
"tinsert", | ||
"tonumber", | ||
"tostring", | ||
"tremove", | ||
"type", | ||
"unpack", | ||
"wipe", | ||
"xpcall", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package-as: Romaji2Kana | ||
|
||
externals: | ||
libs/LibStub: https://repos.curseforge.com/wow/libstub/trunk | ||
libs/CallbackHandler-1.0: https://repos.wowace.com/wow/callbackhandler/trunk/CallbackHandler-1.0 | ||
libs/AceAddon-3.0: https://repos.wowace.com/wow/ace3/trunk/AceAddon-3.0 | ||
libs/AceDB-3.0: https://repos.wowace.com/wow/ace3/trunk/AceDB-3.0 | ||
libs/AceDBOptions-3.0: https://repos.wowace.com/wow/ace3/trunk/AceDBOptions-3.0 | ||
libs/AceGUI-3.0: https://repos.wowace.com/wow/ace3/trunk/AceGUI-3.0 | ||
libs/AceConfig-3.0: https://repos.wowace.com/wow/ace3/trunk/AceConfig-3.0 | ||
|
||
enable-nolib-creation: no | ||
enable-toc-creation: yes | ||
|
||
ignore: | ||
- README.md | ||
- images |
Oops, something went wrong.