Skip to content

Commit 3307a58

Browse files
committed
bumped interface version
1 parent 53441b0 commit 3307a58

6 files changed

Lines changed: 29 additions & 6 deletions

File tree

Addon/Group.lua

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,29 @@ local function CreateTrackerFrame()
246246

247247
----------------------------------------
248248

249+
if not LuaDKP_GetData then
250+
caption2:Hide()
251+
caption3:Hide()
252+
label:Hide()
253+
dropdown1:Hide()
254+
dropdown2:Hide()
255+
edit:Hide()
256+
257+
local msg = "The LuaDKP-Data addon appears to be missing!|n|n" ..
258+
"LuaDKP-Core requires groups, settings and raids|n" ..
259+
"from LuaDKP-Data in order to work correctly.|n|n" ..
260+
"Read the instructions to find out how to export|n" ..
261+
"your data from the external manager to WoW."
262+
263+
err = frame:CreateFontString(nil, "BORDER", "GameFontNormal")
264+
err:SetPoint("TOPLEFT", 20, -34)
265+
err:SetJustifyH("LEFT")
266+
err:SetText(msg)
267+
err:SetTextColor(1, 0, 0)
268+
end
269+
270+
----------------------------------------
271+
249272
groups = ADDON.GetGroups()
250273
end
251274

Addon/LuaDKP-Core-BCC.toc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 20501
1+
## Interface: 20502
22
## Title: LuaDKP-Core
33
## SavedVariables: LuaDKP_Settings
44

Addon/LuaDKP-Core.toc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 90005
1+
## Interface: 90100
22
## Title: LuaDKP-Core
33
## SavedVariables: LuaDKP_Settings
44

Manager/Defaults/Config.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ local _, ADDON = ...
1414

1515
local config = {
1616
basedir = "C:/Games/World of Warcraft/_classic_",
17-
interface = "20501",
17+
interface = "20502",
1818
expansion = "tbc",
1919
}
2020

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ How to get help:
2727
Documentation:
2828
- [Introduction to EPGP](docs/Introduction_to_EPGP.md)
2929
- [Why EPGP is the best system](docs/Why_EPGP_is_the_best_system.md)
30-
- [How LuaDKP works](docs/How_LuaDKP_works.md)
30+
- [LuaDKP vs. other addons](docs/LuaDKP_vs_other_addons.md)
3131

3232
Source Install (if you want to contribute):
3333
- Use Git to clone the repository to your computer
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# How LuaDKP works
1+
# LuaDKP vs. other addons
22

33
The way LuaDKP works is quite different compared to other addons. It has an external component that is tightly integrated and **not** optional. The main goal is to get all data out of WoW as quickly as possible. Let me explain...
44

@@ -54,4 +54,4 @@ Reports:
5454
- Ditch ingame score lists! Do not force every raid member to have your addon installed just to view scores.
5555
- Generate single-file HTML reports instead! Upload to Discord! Or a website.
5656

57-
Doing this, you get a fully functional DKP system that has 3,000 lines of code. Compare that to a *certain other* DKP addon that has 18,000 lines of code. ;-)
57+
Doing this, you get a fully functional DKP system that has 3,000 lines of code, making it rather easy to maintain. Compare this to other DKP addons that may have as many as 18,000 lines of code.

0 commit comments

Comments
 (0)