Skip to content
This repository was archived by the owner on Oct 4, 2025. It is now read-only.

Commit 4efe350

Browse files
committed
[All] Commit fixes
1 parent a964274 commit 4efe350

File tree

4 files changed

+8
-14
lines changed

4 files changed

+8
-14
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
# we first have to clone the AddOn project, this is a required step
3434
- name: Clone project
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v4
3636
with:
3737
fetch-depth: 0 # gets git history for changelogs
3838

Masque_Neuron.lua

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
-- Masque: Neuron is a World of Warcraft® user interface addon.
2-
-- Copyright (c) 2017-2021 Britt W. Yazel
2+
-- Copyright (c) 2017-2024 Britt W. Yazel
33
-- This code is licensed under the MIT license (see LICENSE for details)
44

5-
local MASQUE = LibStub("Masque", true)
5+
local MASQUE, MSQ_API = LibStub("Masque", true)
66
if not MASQUE then
77
return
88
end
99

10-
local AddOn, _ = ...
10+
local AddOn = ...
1111

12-
--declare our theme
12+
-- Declare our theme
1313

1414
--[[ Default ]]
1515
MASQUE:AddSkin("Neuron: Default", {
16-
API_VERSION = 90002,
16+
API_VERSION = MSQ_API,
1717
Shape = "Square",
1818

1919
-- Info
2020
Description = "The default Masque skin for the Neuron World of Warcraft add-on.",
2121
Author = "Soyier",
22-
Version = GetAddOnMetadata(AddOn, "Version"),
22+
Version = C_AddOns.GetAddOnMetadata(AddOn, "Version"),
2323
Websites = {
2424
"https://www.curseforge.com/wow/addons/masque-neuron",
2525
"https://github.com/brittyazel/Masque_Neuron",

Masque_Neuron.toc

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
## Interface: 100007
2-
## Interface-Classic: 11403
3-
## Interface-BCC: 20504
4-
## Interface-Wrath: 30401
1+
## Interface: 11503, 40400, 110002
52
## Title: Masque: Neuron
63
## Notes: The default Masque skin for the Neuron World of Warcraft add-on
74
## Author: Britt W. Yazel

pkgmeta.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
package-as: Masque_Neuron
22

3-
enable-nolib-creation: no
4-
enable-toc-creation: yes
5-
63
required-dependencies:
74
- masque
85

0 commit comments

Comments
 (0)