Skip to content

Commit

Permalink
fix displey version (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
Neogeekmo authored Nov 22, 2022
1 parent 9855c9e commit 670d727
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions APR-Core/APR-Core.toc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@

## Title: |cffff7d0aAzeroth Pilot Reloaded|r
## Notes: Continuation, optimization, and rewrite of Azeroth Auto Pilot.
## Author: Rycia, Willowsmate, zyrrael, Neogeekmo
## Version: 15
## Author: Rycia, Deathmessinger, zyrrael, Neogeekmo

## SavedVariables: APR1, APR2, APR3, APRQuestNames, APR_HoldZoneVar, APR_Transport, APR_Custom, APR_ZoneComplete, APR_TaxiTimers
lib\HereBeDragons\LibStub\LibStub.lua
Expand Down
2 changes: 1 addition & 1 deletion APR-Core/Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ APR.RegisterChat = C_ChatInfo.RegisterAddonMessagePrefix("APRChat")
APR.LastSent = 0
APR.GroupListSteps = {}
APR.GroupListStepsNr = 1
APR.Version = tonumber(GetAddOnMetadata("APR-Core", "Version"))
APR.Version = GetAddOnMetadata("APR", "Version")
local CoreLoadin = 0
APR.AfkTimerVar = 0
APR.QuestListLoadin = 0
Expand Down
6 changes: 3 additions & 3 deletions APR-Core/OptionsPanel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ APR_panel.title:SetWidth(500)
APR_panel.title:SetHeight(20)
APR_panel.title:SetPoint("TOPLEFT", APR.APR_panel, 0,-30)

APR_panel.title:SetText("Azeroth Pilot Reloaded - v" .. APR.Version) -- Header text of the options menu
APR_panel.title:SetText("Azeroth Pilot Reloaded - " .. APR.Version) -- Header text of the options menu

APR_panel.Button1 = CreateFrame("Button", "ZPButton2", APR.APR_panel)
APR_panel.Button1:SetPoint("TOPLEFT", APR.APR_panel, "TOPLEFT", 120, -100)
Expand Down Expand Up @@ -106,10 +106,10 @@ APR.OptionsFrame.MainFrame.Options.texture = t
APR.OptionsFrame.FontString1 = APR.OptionsFrame.MainFrame:CreateFontString("APRSettingsFS1","ARTWORK", "ChatFontNormal")
APR.OptionsFrame.FontString1:SetParent(APR.OptionsFrame.MainFrame)
APR.OptionsFrame.FontString1:SetPoint("TOP",APR.OptionsFrame.MainFrame,"TOP",0,0)
APR.OptionsFrame.FontString1:SetWidth(240)
APR.OptionsFrame.FontString1:SetText("Azeroth Pilot Reloaded - " .. APR.Version)
APR.OptionsFrame.FontString1:SetWidth(APR.OptionsFrame.FontString1:GetStringWidth() * 1.5)
APR.OptionsFrame.FontString1:SetHeight(20)
APR.OptionsFrame.FontString1:SetFontObject("GameFontHighlightLarge")
APR.OptionsFrame.FontString1:SetText("Azeroth Pilot Reloaded - v" .. APR.Version)
APR.OptionsFrame.FontString1:SetTextColor(1, 1, 0)
-------------------- Quest Options ----------------------------------------
APR.OptionsFrame.MainFrame.OptionsB1 = CreateFrame("frame", "APR_OptionsMainFrame_QuestOptions", APR_OptionsMainFrame)
Expand Down
2 changes: 1 addition & 1 deletion APR.toc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Title: Azeroth Pilot Reloaded
## Notes: Continuation, optimization, and rewrite of Azeroth Auto Pilot.
## Author: Rycia, Willowsmate, zyrrael, Neogeekmo
## Author: Rycia, Deathmessinger, zyrrael, Neogeekmo
## Version: @project-version@

## X-License: All Rights Reserved: You are free to fork and modify on GitHub, please ask us about anything else.
Expand Down

0 comments on commit 670d727

Please sign in to comment.