Skip to content

Commit

Permalink
v1.5.1 warn new events
Browse files Browse the repository at this point in the history
  • Loading branch information
Serkan Yazıcıoğlu committed Jul 25, 2024
1 parent e43b01a commit dab18af
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,9 @@ function GOW:OnInitialize()
end

StaticPopupDialogs["NEW_EVENT_FOUND"] = {
text = "There are events not registered on calendar!\r\nDo you want to view upcoming events?",
button1 = "Yes",
button2 = "No",
text = "There are events not registered on calendar!\r\nDo you wish to view Guilds of WoW upcoming events?",
button1 = YES,
button2 = NO,
button3 = "Don't ask again",
OnAccept = function(self, data)
containerFrame:Show();
Expand Down Expand Up @@ -1506,7 +1506,7 @@ function Core:CheckEventInvites()
GOW.DB.profile.guilds[guildKey].eventsRefreshTime = GetServerTime();

Core:PrintSuccessMessage("Event invites have been completed. Number of events processed: " ..
tostring(processedEvents:count()));
tostring(processedEvents:count()) .. "/" .. ns.UPCOMING_EVENTS.totalEvents);

if (containerFrame:IsShown()) then
Core:CreateUpcomingEvents();
Expand Down
2 changes: 1 addition & 1 deletion GuildsOfWoW-Cata.toc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Notes: Guilds of WoW guild herald for Classic Progression servers
## X-Website: https://guildsofwow.com
## Author: Nhea
## Version: 1.5.0
## Version: 1.5.1
## SavedVariables: GoWDB
## IconTexture: Interface\Icons\vas_guildfactionchange

Expand Down
2 changes: 1 addition & 1 deletion GuildsOfWoW-Classic.toc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Notes: Guilds of WoW guild herald for Classic Era servers
## X-Website: https://guildsofwow.com
## Author: Nhea
## Version: 1.5.0
## Version: 1.5.1
## SavedVariables: GoWDB

embed.xml
Expand Down
2 changes: 1 addition & 1 deletion GuildsOfWoW.toc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Notes: Guilds of WoW guild herald for retail World of Warcraft
## X-Website: https://guildsofwow.com
## Author: Nhea
## Version: 1.5.0
## Version: 1.5.1
## SavedVariables: GoWDB
## OptionalDeps: AstralKeys
## AddonCompartmentFunc: GuildsOfWow_OnAddonButtonClick
Expand Down
2 changes: 1 addition & 1 deletion Options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ local optionsTable = {
type = "toggle",
order = 2,
name = "Warn new events",
desc = "Display a warning when new events that are not on the in-game calendar are found",
desc = "Display a warning when new events that are not on the in-game calendar are found.",
width = "full",
get = function(info) return GOW.DB.profile.warnNewEvents end,
set = function(info, value)
Expand Down

0 comments on commit dab18af

Please sign in to comment.