Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Atlas Files: Sort names and use line breaks #4856

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .github/scripts/atlas_update.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,22 @@ end
-- print("Found +", name)
--end

local sortedNames = {}
for name in pairs(validNames) do
table.insert(sortedNames, name)
end

table.sort(sortedNames)

local output = io.open(outputFileName, "w+")
output:write("if not WeakAuras.IsLibsOK() then return end\n")
output:write("--- @type string, Private\n")
output:write("local AddonName, Private = ...\n")
output:write("Private.AtlasList = {")
for name in pairs(validNames) do
output:write("Private.AtlasList = {\n")
for i, name in ipairs(sortedNames) do
output:write('"')
output:write(name)
output:write('",')
output:write('",\n')
end
output:write("}\n")
io.close(output)
Expand Down