Skip to content

Commit

Permalink
2.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hypehuman committed Dec 1, 2011
1 parent 2a12672 commit 53833ad
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion SuperDuperMacro/SuperDuperMacro.toc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## Title : Super Duper Macro
## Notes: Enables creation of incredibly long macros.
## Author: hypehuman
## Version: 2.4.2
## Version: 2.4.3
## SavedVariables: sdm_version, sdm_listFilters, sdm_iconSize, sdm_mainContents, sdm_macros
SuperDuperMacro_Core.lua
SuperDuperMacro_Interface.lua
Expand Down
6 changes: 3 additions & 3 deletions SuperDuperMacro/SuperDuperMacro_Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ sdm_eventFrame:SetScript("OnEvent", function (self, event, ...)
-- SDM uses this event for two things. Whenever you log into the game, UPDATE_MACROS is fired twice. After the second firing, the macros are loaded. This is when SDM deletes extraneous macros that it has created before. This generally happens if you use different computers or if you don't use SDM for a while. Whenever you log in, SDM makes sure that your macro list jives with the info in SavedVariables.
if sdm_countUpdateMacrosEvents == 0 then
sdm_countUpdateMacrosEvents = 1
elseif sdm_countUpdateMacrosEvents==1 then
elseif sdm_countUpdateMacrosEvents == 1 then
sdm_countUpdateMacrosEvents = 2
local killOnSight = {}
local macrosToDelete = {}
Expand Down Expand Up @@ -114,8 +114,8 @@ sdm_eventFrame:SetScript("OnEvent", function (self, event, ...)
sdm_SetUpMacro(sdm_macros[i])
end
end
end
if sdm_countUpdateMacroEvents==2 then
end
if sdm_countUpdateMacrosEvents == 2 then
-- If the macros are loaded, update the number of button macros on the SDM frame
local numAccountMacros, numCharacterMacros = GetNumMacros()
sdm_macroLimitText:SetText("Global macros: "..numAccountMacros.."/36\nCharacter-specific macros: "..numCharacterMacros.."/18")
Expand Down
7 changes: 4 additions & 3 deletions SuperDuperMacro/sdm Readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Super Duper Macro
version 2.4.2
version 2.4.3
by hypehuman

Check for updates at http://www.wowinterface.com/downloads/info10496
Expand All @@ -17,14 +17,15 @@ Suggestions and bug reports are always welcome. You can post comments on the wo

Special thanks to:
� SuperMacro, which inspired the idea for this addon.
� Behaviors, from which I shamelessly copied many UI elements.
��All the regulars on the UI & Macro forums, who have been guiding me through this process.
� survivorx and ambro, who patched this addon while I was AWOL



Change Log

2.4.3 (11/30/11)
��Re-enabled the text that shows how many more button macros you can create

2.4.2 (11/30/11)
��Fixed a minor error that occurs when running SDM for the first time
��When attempting to pick up a macro during combat, you will get an error message created by SDM instead of Blizzard's "Interface action failed due to an addon".
Expand Down

0 comments on commit 53833ad

Please sign in to comment.