Skip to content

Commit 58d1104

Browse files
author
pngmn
committed
ToC update
1 parent 744439c commit 58d1104

File tree

6 files changed

+15
-22
lines changed

6 files changed

+15
-22
lines changed

.github/workflows/release.yml

+4-15
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@ name: Release
33
on:
44
push:
55
tags:
6-
- '**'
7-
8-
env:
9-
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}
6+
- '*'
107

118
jobs:
129
release:
@@ -22,14 +19,6 @@ jobs:
2219
output: RECENT_CHANGES.md
2320

2421
- name: Create Retail Package
25-
uses: BigWigsMods/packager@master
26-
27-
# - name: Create Classic Package
28-
# uses: BigWigsMods/packager@master
29-
# with:
30-
# args: -g classic
31-
32-
# - name: Create BCC Package
33-
# uses: BigWigsMods/packager@master
34-
# with:
35-
# args: -g bcc
22+
uses: BigWigsMods/packager@v1
23+
env:
24+
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}

.pkgmeta

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,7 @@ externals:
55

66
manual-changelog:
77
filename: RECENT_CHANGES.md
8-
markup-type: markdown
8+
markup-type: markdown
9+
10+
ignore:
11+
- "*.md"

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
SyLevel Continued | 1.4.0
2+
-------------------------
3+
- ToC update for 9.2.0
4+
15
SyLevel Continued | 1.3.0
26
-------------------------
37
- Reworked cache and tooltip scanning

SyLevel_Continued.toc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 90105
1+
## Interface: 90200
22
## Title: SyLevel Continued
33
## Author: pngmn
44
## Version: @project-version@

filters/itemlevel.lua

+1-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,9 @@ local ilevelThreshold, qualityThreshold
22

33
local function ilevel(itemLink, id, i)
44
local ilvl = -1
5-
local itemQuality
5+
local itemQuality = -1
66
if (itemLink) then
77
ilvl, itemQuality = SyLevel:GetItemLevel(itemLink, id, i)
8-
if not ilvl then
9-
ilvl = -1
10-
end
118
end
129

1310
if ilvl and (ilvl >= ilevelThreshold) and (itemQuality >= qualityThreshold) then

itemlevel.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ end
9292

9393
function SyLevel:GetItemLevel(itemString, id, slot)
9494
if type(itemString) ~= "string" then
95-
return nil, false
95+
return
9696
end
9797
local itemLink = CachedGetItemInfo(itemString)
9898
local ilevel, quality, bind = ScanTip(itemLink, id, slot)

0 commit comments

Comments
 (0)