Skip to content

Commit 05a9e53

Browse files
committed
v2.7.1 proper
1 parent ce2c115 commit 05a9e53

File tree

3 files changed

+22
-17
lines changed

3 files changed

+22
-17
lines changed

.vscode/settings.json

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,22 @@
4141
],
4242
"Lua.runtime.version": "Lua 5.1",
4343
"Lua.runtime.builtin": {
44-
"basic": "enable",
45-
"debug": "enable",
46-
"io": "enable",
47-
"math": "enable",
48-
"os": "enable",
49-
"package": "enable",
50-
"string": "enable",
51-
"table": "enable",
52-
"utf8": "enable"
44+
"basic": "disable",
45+
"debug": "disable",
46+
"io": "disable",
47+
"math": "disable",
48+
"os": "disable",
49+
"package": "disable",
50+
"string": "disable",
51+
"table": "disable",
52+
"utf8": "disable"
5353
},
5454
"Lua.workspace.library": [
55-
"~\\.vscode\\extensions\\ketho.wow-api-0.20.8\\Annotations\\Core"
56-
]
55+
"${addons}/busted/module/library",
56+
"${3rd}/luassert/library",
57+
"${addons}/luassert/module/library",
58+
"~\\.vscode\\extensions\\ketho.wow-api-0.20.8\\Annotations\\Core",
59+
"~\\.vscode\\extensions\\ketho.wow-api-0.20.8\\Annotations\\FrameXML"
60+
],
61+
"Lua.workspace.checkThirdParty": false
5762
}

RCLootCouncil_GroupGear.toc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#@end-non-retail@
99
## Notes: An RCLootCouncil module for viewing your groups' gear.
1010
## Title: RCLootCouncil - Group Gear
11-
## Version: 2.7.0
11+
## Version: 2.7.1
1212
## SavedVariables: RCGroupGearDB
1313
## X-Curse-Project-ID: 102435
1414

core.lua

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ local addon =
88
WOW_PROJECT_ID == WOW_PROJECT_MAINLINE
99
and "RCLootCouncil"
1010
or "RCLootCouncil_Classic")
11-
11+
1212
--- @class GroupGear : AceAddon-3.0, AceConsole-3.0, AceTimer-3.0
1313
local GroupGear = addon:NewModule("RCGroupGear", "AceConsole-3.0", "AceTimer-3.0")
1414
-- local L = LibStub("AceLocale-3.0"):GetLocale("RCLootCouncil")
@@ -107,11 +107,11 @@ function GroupGear:SetupColumns()
107107
self.colNameToIndex.gear = 4
108108
self.colNameToIndex.refresh = 5
109109
return {
110-
{ name = "", width = 20, DoCellUpdate = addon.SetCellClassIcon, }, -- class icon
111-
{ name = _G.NAME, width = 120 }, -- Player name
112-
{ name = _G.ITEM_LEVEL_ABBR, width = 55, align = "CENTER" }, -- ilvl
110+
{ name = "", width = 20, DoCellUpdate = addon.SetCellClassIcon, }, -- class icon
111+
{ name = _G.NAME, width = 120 }, -- Player name
112+
{ name = _G.ITEM_LEVEL_ABBR, width = 55, align = "CENTER" }, -- ilvl
113113
{ name = "Gear", width = ROW_HEIGHT * num_display_gear + num_display_gear, align = "CENTER", sortnext = 3 }, -- Gear
114-
{ name = "", width = 20, DoCellUpdate = GroupGear.SetCellRefresh, }, -- Refresh icon
114+
{ name = "", width = 20, DoCellUpdate = GroupGear.SetCellRefresh, }, -- Refresh icon
115115
}
116116
end
117117

0 commit comments

Comments
 (0)