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

Commit d12c978

Browse files
authored
Merge pull request #1 from Myrroddin/main
Update to latest APIs and other fixes
2 parents a964274 + 23ffc64 commit d12c978

File tree

6 files changed

+20
-22
lines changed

6 files changed

+20
-22
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,12 @@ 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

3939
# once cloned, we just run the GitHub Action for the packager project
4040
- name: Package and release
41-
uses: BigWigsMods/packager@v2
41+
uses: BigWigsMods/packager@v2
42+
with:
43+
args: -m pkgmeta.yaml

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2017-2021 Britt W. Yazel
3+
Copyright (c) 2017-2024 Britt W. Yazel
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

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_VERSION = 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_VERSION or 110000,
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

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
Masque: Neuron
2-
==============
1+
# Masque: Neuron
32

43
This is the default Neuron skin for the Masque World of Warcraft add-on. It is updated for Masque 9.0+
54

65
This add-on skin is meant to compliment the Neuron action bar add-on, and is mostly just a simple implementation of what Soyier prefers his buttons to look like. It features a rounded square design with a dark bloom effect in the middle. The idea with this theme was to be **simple**, **tasteful**, and **elegant**.
76

8-
![](https://media.forgecdn.net/attachments/262/702/masqueneuron.jpg "Masque: Neuron Demo")
7+
![masqueneuron](https://github.com/user-attachments/assets/ecc94c5a-0b07-4670-98f5-5b9edd45927c)
8+
9+
10+
## Masque:
911

10-
### Masque:
1112
This add-on requires Masque in order to function. Soyier has no part in the development of Masque, but is thankful to StormFX for his work on Masque over the years.
1213

13-
### Credits:
14-
This add-on was inspired by Masque: Renaitre "Beveled", though is only meant to be an inspiration of that style, not a recreation.
14+
## Credits:
15+
16+
This add-on was inspired by Masque: Renaitre "Beveled", though is only meant to be an inspiration of that style, not a recreation.

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)