Skip to content

Commit

Permalink
RightClick menus fixed - Reorganized addon files
Browse files Browse the repository at this point in the history
* RightClick menus fixed - root cause: renamed frames from previous release
* Re-origanized addon files
  • Loading branch information
Dyaxler committed Feb 9, 2018
1 parent 320f789 commit 386141b
Show file tree
Hide file tree
Showing 35 changed files with 30 additions and 26 deletions.
45 changes: 22 additions & 23 deletions Altoholic/Altoholic.toc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## Notes-zhTW: 讓你即時撿閱你所有角色的資料
## Notes-zhCN: 能让你全面掌握你的所有角色的信息。
## Author: Dyaxler
## Version: 1.0.8
## Version: 1.0.9
## OptionalDeps: Ace2, LibBabble-Zone-3.0, LibBabble-Boss-3.0, LibBabble-Inventory-3.0, LibBabble-Faction-3.0, LibBabble-Class-3.0, DewdropLib, FuBarPlugin-2.0
## SavedVariables: AltoholicDB, AltoholicFuDB
## X-Category: Interface Enhancements
Expand All @@ -20,7 +20,6 @@ Libs\AceDB-2.0\AceDB-2.0.lua
Libs\AceEvent-2.0\AceEvent-2.0.lua
Libs\AceLocale-2.2\AceLocale-2.2.lua
Libs\AceHook-2.1\AceHook-2.1.lua

Libs\LibBabble-Boss-3.0\LibBabble-Boss-3.0.lua
Libs\LibBabble-Zone-3.0\LibBabble-Zone-3.0.lua
Libs\LibBabble-Class-3.0\LibBabble-Class-3.0.lua
Expand All @@ -30,30 +29,30 @@ Libs\Dewdrop-2.0\Dewdrop-2.0.lua
Libs\Gratuity-2.0\Gratuity-2.0.lua
Libs\Tablet-2.0\Tablet-2.0.lua

localization_enUS.lua
localization_frFR.lua
localization_deDE.lua
localization_zhTW.lua
localization_zhCN.lua
Locale\localization_enUS.lua
Locale\localization_frFR.lua
Locale\localization_deDE.lua
Locale\localization_zhTW.lua
Locale\localization_zhCN.lua

AltoholicTemplates.xml
Core.lua
Loots.lua
Suggestions.lua
Suggestions_zhCN.lua
Suggestions_zhTW.lua
Items\Loots.lua
Items\Suggestions.lua
Items\Suggestions_zhCN.lua
Items\Suggestions_zhTW.lua
Altoholic.lua
Altoholic.xml

Frames\AccountSummary.xml
Frames\AuctionHouse.xml
Frames\BagUsage.xml
Frames\Containers.xml
Frames\Equipment.xml
Frames\Mails.xml
Frames\Options.xml
Frames\Reputations.xml
Frames\Recipes.xml
Frames\Quests.xml
Frames\Search.xml
Frames\Skills.xml
Modules\AccountSummary.xml
Modules\AuctionHouse.xml
Modules\BagUsage.xml
Modules\Containers.xml
Modules\Equipment.xml
Modules\Mails.xml
Modules\Options.xml
Modules\Reputations.xml
Modules\Recipes.xml
Modules\Quests.xml
Modules\Search.xml
Modules\Skills.xml
2 changes: 1 addition & 1 deletion Altoholic/Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Altoholic.CharacterInfo = {}
Altoholic.BagIndices = {}
Altoholic.MenuCache = {}
Altoholic.vars = {}
Altoholic.vars.version = "v1.0.8"
Altoholic.vars.version = "v1.0.9"
local G = AceLibrary("Gratuity-2.0")
local L = AceLibrary("AceLocale-2.2"):new("Altoholic")
local V = Altoholic.vars
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ function Altoholic_AccountSummaryLevel_OnClick(button, id)
end
if button == "RightButton" then
V.CharInfoLine = line -- line containing info about the alt on which action should be taken (delete, ..)
ToggleDropDownMenu(1, nil, AccountSummaryRightClickMenu, this:GetName(), 0, -5);
ToggleDropDownMenu(1, nil, AltoSummaryRightClickMenu, this:GetName(), 0, -5);
return
elseif button == "LeftButton" then
V.CurrentFaction, V.CurrentRealm = Altoholic:GetCharacterInfo(line)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ function Altoholic_Equipment_OnClick()
if button == "RightButton" then
V.UpgradeItemID = Altoholic:GetIDFromLink(link) -- item ID of the item to find an upgrade for
V.CharacterClass = Altoholic.Classes[ r.char[this.CharName].class ]
ToggleDropDownMenu(1, nil, EquipmentRightClickMenu, this:GetName(), 0, -5);
ToggleDropDownMenu(1, nil, AltoEquipmentRightClickMenu, this:GetName(), 0, -5);
return
end

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions Altoholic/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
****************************************************************************************************
* Altaholic for Vanilla WoW: Change Log *
****************************************************************************************************
v1.0.9
- RightClick menus fixed - root cause: renamed frames from previous release

- Re-origanized addon files
****************************************************************************************************
v1.0.8
- Renamed all frames to something less generic to avoid global collisions. The recent fix
Expand Down

0 comments on commit 386141b

Please sign in to comment.