Skip to content

Commit

Permalink
v1.5.6
Browse files Browse the repository at this point in the history
Update standard ilvl for NAXX
  • Loading branch information
jpxthu committed Dec 1, 2020
1 parent 03e7469 commit de286d9
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### v1.5.6 (2020.12.2)

- Standard ilvl update for NAXX.

### v1.5.2 (2020.9.14)

- Remind to enable combatlog. Default off.
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.zhCN.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### v1.5.6 (2020.12.2)

- 针对 NAXX 开放,提高 Standard ilvl 建议。

### v1.5.2 (2020.9.14)

- 提醒开启战斗日志,默认关闭。
Expand Down
4 changes: 2 additions & 2 deletions EPGP-Classic.toc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
## Interface: 11305
## Interface: 11306
## X-Min-Interface: 11302
## Title: EPGP Classic
## Notes: Effort Points/Gear Points Loot System
## Author: jpxthu (Maintainer)
## Version: v1.5.5
## Version: v1.5.6
## SavedVariables: EPGP_DB
## OptionalDeps: LibRealmInfo
## X-Category: Guild
Expand Down
7 changes: 6 additions & 1 deletion LibGearPoints-1.3.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,16 @@ function lib:GetRecommendIlvlParams(version, levelCap)
standardIlvlLastTier = nil
standardIlvlNextTier = 76
ilvlDenominator = 10
elseif version < 20200 then
elseif version < 11306 then
standardIlvl = 76
standardIlvlLastTier = 66
standardIlvlNextTier = 86
ilvlDenominator = 10
elseif version < 20200 then
standardIlvl = 86
standardIlvlLastTier = 76
standardIlvlNextTier = nil
ilvlDenominator = 10
-- elseif version < 40200 then
-- standardIlvl = 359
-- elseif version < 40300 then
Expand Down
11 changes: 6 additions & 5 deletions popups.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
local L = LibStub("AceLocale-3.0"):GetLocale("EPGP")
local GP = LibStub("LibGearPoints-1.3")
local DLG = LibStub("LibDialog-1.0")
local GP = LibStub("LibGearPoints-1.3")
local L = LibStub("AceLocale-3.0"):GetLocale("EPGP")
local LE = LibStub("AceLocale-3.0"):GetLocale("LibEncounters")

DLG:Register("EPGP_CONFIRM_GP_CREDIT", {
text = "Unknown Item",
Expand Down Expand Up @@ -349,10 +350,10 @@ DLG:Register("EPGP_LOOTMASTER_ASK_TRACKING", {
DLG:Register("EPGP_NEW_VERSION", {
text = "|cFFFFFF00EPGP " .. EPGP.version .. "|r\n" ..
L["You can now check your epgp standings and loot on the web: http://www.epgpweb.com"] .. "\n\n" ..
L["NEW_VERSION_INTRO_1_5_0"]:format(_G.UIOPTIONS_MENU, _G.ADDONS, _G.BOSS, _G.UIOPTIONS_MENU, _G.ADDONS, L["Logs"]),
-- L["NEW_VERSION_INTRO_1_5_0"]:format(_G.UIOPTIONS_MENU, _G.ADDONS, _G.BOSS, _G.UIOPTIONS_MENU, _G.ADDONS, L["Logs"]),
-- L["Some 3rd-party EPGP system were launched. Details in: EPGP -> %s -> %s"]:format(L["Logs"], L["Export Detail"]),
-- L["%s %s"]:format(L["[%s] is comming!"]:format(L["Blackwing Lair"]), L["You should probably: increase standard_ilvl, reset or rescale GP."]) .. "\n" ..
-- string.format("(%s -> %s -> EPGP -> %s / %s)", _G.UIOPTIONS_MENU, _G.ADDONS, L["Gear Points"], L["Rescale GP"]), -- /script EPGP.db.profile.last_version = nil
L["%s %s"]:format(L["[%s] is comming!"]:format(LE["Naxxramas"]), L["You should probably: increase standard_ilvl, reset or rescale GP."]) .. "\n" ..
string.format("(%s -> %s -> EPGP -> %s / %s)", _G.UIOPTIONS_MENU, _G.ADDONS, L["Gear Points"], L["Rescale GP"]), -- /script EPGP.db.profile.last_version = nil
icon = [[Interface\DialogFrame\UI-Dialog-Icon-AlertNew]],
buttons = {
{
Expand Down

0 comments on commit de286d9

Please sign in to comment.