mirror of
https://github.com/ckaczor/TillerTracker.git
synced 2026-01-14 01:25:42 -05:00
Compare commits
6 Commits
9.0.2-alph
...
10.0.1
| Author | SHA1 | Date | |
|---|---|---|---|
| a80d3ded01 | |||
| 5b441d1dee | |||
| 6afc62a355 | |||
| 3fd9daf009 | |||
| c30f0fe3ae | |||
| 7ed4da43cd |
2
.pkgmeta
2
.pkgmeta
@@ -11,7 +11,7 @@ externals:
|
||||
url: https://repos.wowace.com/wow/libqtip-1-0
|
||||
tag: latest
|
||||
Libs/LibDataBroker-1.1:
|
||||
url: git://github.com/tekkub/libdatabroker-1-1.git
|
||||
url: https://github.com/tekkub/libdatabroker-1-1
|
||||
tag: latest
|
||||
Libs/AceLocale-3.0:
|
||||
url: https://repos.wowace.com/wow/ace3/trunk/AceLocale-3.0
|
||||
|
||||
@@ -34,7 +34,7 @@ L["Need"] = true
|
||||
|
||||
L["Gather:"] = true
|
||||
L["Done"] = true
|
||||
L["Disabled until level 90"] = true
|
||||
L["Disabled until level 10"] = true
|
||||
|
||||
L["Best Friends with everyone"] = true
|
||||
|
||||
|
||||
@@ -363,13 +363,17 @@ local function SetSort(cell, sort)
|
||||
private.db.global.sort_dir = "ASC"
|
||||
end
|
||||
|
||||
if not private.loaded then
|
||||
return
|
||||
end
|
||||
|
||||
TillerTracker:UpdateData()
|
||||
TillerTracker:UpdateTooltip()
|
||||
end
|
||||
|
||||
function TillerTracker:ReputationDone(reputationId)
|
||||
-- Get the reputation information
|
||||
local _, friendRep = GetFriendshipReputation(reputationId)
|
||||
local friendRep = C_GossipInfo.GetFriendshipReputation(reputationId).standing
|
||||
|
||||
-- Done if over exalted
|
||||
return (friendRep > 42000)
|
||||
@@ -648,6 +652,10 @@ function LDB.OnEnter(self)
|
||||
end
|
||||
|
||||
function TillerTracker:QUEST_LOG_UPDATE()
|
||||
if not private.loaded then
|
||||
return
|
||||
end
|
||||
|
||||
TillerTracker:UpdateData()
|
||||
TillerTracker:UpdateText()
|
||||
|
||||
@@ -659,6 +667,10 @@ function TillerTracker:QUEST_LOG_UPDATE()
|
||||
end
|
||||
|
||||
function TillerTracker:BAG_UPDATE()
|
||||
if not private.loaded then
|
||||
return
|
||||
end
|
||||
|
||||
TillerTracker:UpdateData()
|
||||
TillerTracker:UpdateText()
|
||||
|
||||
@@ -718,6 +730,10 @@ end
|
||||
function TillerTracker:SetPlanAhead(value)
|
||||
private.db.global.plan_ahead = value
|
||||
|
||||
if not private.loaded then
|
||||
return
|
||||
end
|
||||
|
||||
TillerTracker:UpdateData()
|
||||
TillerTracker:UpdateText()
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
## Interface: 90001
|
||||
## Interface: 100000
|
||||
## Title: Tiller Tracker
|
||||
## Version: 9.0.2
|
||||
## Version: 10.0.1
|
||||
## Notes: Helps with the daily Tiller food quests ("A Dish for...") by keeping track of what quests have been completed that day, how many dishes need to be cooked, and what materials are required.
|
||||
## Author: Amanoa
|
||||
## SavedVariables: TillerTrackerDB
|
||||
|
||||
Reference in New Issue
Block a user