diff --git a/.pkgmeta b/.pkgmeta
index 864aa26..17498d8 100644
--- a/.pkgmeta
+++ b/.pkgmeta
@@ -3,7 +3,6 @@ enable-nolib-creation: no
externals:
Libs/LibStub: https://repos.wowace.com/wow/ace3/trunk/LibStub
Libs/CallbackHandler-1.0: https://repos.wowace.com/wow/ace3/trunk/CallbackHandler-1.0
- Libs/LibToast-1.0: https://hg.curseforge.com/wow/libtoast-1-0
Libs/AceGUI-3.0: https://repos.wowace.com/wow/ace3/trunk/AceGUI-3.0
Libs/AceConfigDialog-3.0: https://repos.wowace.com/wow/ace3/trunk/AceConfig-3.0/AceConfigDialog-3.0
Libs/AceConfigRegistry-3.0: https://repos.wowace.com/wow/ace3/trunk/AceConfig-3.0/AceConfigRegistry-3.0
@@ -17,6 +16,3 @@ ignore:
- README.md
- .luacheckrc
- Libs/CallbackHandler-1.0/CallbackHandler-1.0.xml
- - Libs/LibToast-1.0/LibStub
- - Libs/LibToast-1.0/LibToast-1.0.toc
- - Libs/LibToast-1.0/lib.xml
diff --git a/Embeds.xml b/Embeds.xml
index ec28743..fdd76ad 100644
--- a/Embeds.xml
+++ b/Embeds.xml
@@ -2,7 +2,6 @@
-
diff --git a/REPorter.lua b/REPorter.lua
index f859991..43dc023 100644
--- a/REPorter.lua
+++ b/REPorter.lua
@@ -1,7 +1,6 @@
local _G = _G
local _, RE = ...
local L = LibStub("AceLocale-3.0"):GetLocale("REPorter")
-local TOAST = LibStub("LibToast-1.0")
local TIMER = LibStub("AceTimer-3.0")
_G.REPorter = RE
@@ -628,12 +627,6 @@ function RE:OnEvent(self, event, ...)
RE:CreatePOI(i)
end
- TOAST:Register("REPorterToastInfo", function(toast, ...)
- toast:SetFormattedTitle("|cFF74D06CRE|r|cFFFFFFFFPorter|r")
- toast:SetFormattedText(...)
- toast:SetIconTexture([[Interface\Challenges\ChallengeMode_Medal_Bronze]])
- end)
-
RE.IsSkinned = _G.AddOnSkins and _G.AddOnSkins[1]:CheckOption("REPorter") or false
self:UnregisterEvent("ADDON_LOADED")
@@ -643,7 +636,7 @@ function RE:OnEvent(self, event, ...)
if REMessageEx[1] == "Version" then
if not RE.FoundNewVersion and tonumber(REMessageEx[2]) > RE.AddonVersionCheck then
- TOAST:Spawn("REPorterToastInfo", L["New version released!"])
+ print("\124cFF74D06C[REPorter]\124r "..L["New version released!"])
RE.FoundNewVersion = true
end
end