Forum: PTR API and Graphics Changes
02-02-19, 11:33 AM
|
Replies: 30
Views: 12,806
8.1.5 ItemButtonTemplate Changes
In 8.1.5 they changed how the item button template works. Instead of being a virtual button that is inherited it is now a new widget type that can be created directly.
Old Way
local button =...
|
Forum: PTR API and Graphics Changes
01-09-19, 02:33 PM
|
Replies: 0
Views: 1,192
|
Forum: Lua/XML Help
12-30-18, 06:58 PM
|
Replies: 6
Views: 1,144
|
Forum: PTR API and Graphics Changes
10-26-18, 11:09 PM
|
Replies: 6
Views: 1,751
I don't blame you. That bug is so old it feels...
I don't blame you. That bug is so old it feels like it should be around forever but they did fix it.
"Affected versions: 7.3.5, 8.0.1. Fixed in: 8.1.0.27934 (PTR): UIDropDownMenu_GetSelectedID only...
|
Forum: PTR API and Graphics Changes
10-26-18, 01:05 AM
|
Replies: 6
Views: 1,751
Dropdown Taint Fixed in 8.1
Looks like they finally fixed the dropdown taint issue in 8.1. If you are using the patch from townlong-yak.com you should be able to remove it once 8.1 goes live. If you aren't fimiliar with the bug...
|
Forum: Lua/XML Help
08-12-18, 03:52 PM
|
Replies: 21
Views: 5,681
A little off topic but you can replace the max...
A little off topic but you can replace the max level bit with IsPlayerAtEffectiveMaxLevel(). They just added it to the api recently. They added that one and a few others.
-- takes into account the...
|
Forum: General Authoring Discussion
08-07-18, 10:03 PM
|
Replies: 0
Views: 668
LibDBIcon Overlap
If you noticed that some of your minimap icons are overlapping the minimap a bit more than normal it is due to some changes in LibDBIcon. I reported it to them but I have no idea if they plan on...
|
Forum: oUF (Otravi Unit Frames)
07-28-18, 11:23 PM
|
Replies: 0
Views: 918
Player Level Not Updating
Has anyone had issues with the player level not updating on ding? I'm using a custom tag so I tested it with the default level tag and it had the same problem.
Edit: Here is a pic so it is clear...
|
Forum: PTR API and Graphics Changes
07-26-18, 06:31 PM
|
Replies: 0
Views: 1,921
Mythic Plus API Documented
The patch that just went out to the beta and ptr (8.0.1.27178) includes documentation for the mythic plus api. This isn't all new but having more information on how something works is always...
|
Forum: Released AddOns
07-26-18, 06:26 PM
|
Replies: 7
Views: 1,916
|
Forum: PTR UI Bugs
07-26-18, 05:52 PM
|
Replies: 3
Views: 1,608
This is a similar issue but not the same. I had...
This is a similar issue but not the same. I had noticed this before when I was doing some stuff with HereBeDragons and I contacted the author because I thought it was a bug with HBD but they tracked...
|
Forum: Site help, bugs, suggestions/questions
07-20-18, 01:36 PM
|
Replies: 2
Views: 450
Security Alert From Link
When I visit the page for the GoFish (https://www.wowinterface.com/downloads/info22270-GoFish.html) addon someone's signature is causing security alerts. Chrome is blaming it on a site called...
|
Forum: PTR API and Graphics Changes
07-02-18, 11:57 PM
|
Replies: 2
Views: 3,600
New AuraUtil Functions
The following functions got added today (7/2) in a new file called AuraUtil.lua in the FrameXML folder. I haven't had time to test them out but I figured I would post this so other people can check...
|
Forum: PTR UI Bugs
06-30-18, 03:41 PM
|
Replies: 0
Views: 785
Calling ToggleCollectionsJournal() in combat.
Not sure if intended or not so I figured I would report this. If an addon tries to use ToggleCollectionsJournal during combat it will cause the following error.
1x [ADDON_ACTION_BLOCKED] AddOn...
|
Forum: PTR UI Bugs
06-30-18, 03:18 PM
|
Replies: 0
Views: 644
Guild UI Sorting Bug
If you try to sort players by name in the guild ui it will ignore the "Show Offline Members" checkbox and show all members.
|
Forum: PTR UI Bugs
06-30-18, 11:13 AM
|
Replies: 0
Views: 693
/Quit not in SecureCmdList
When using /quit or /exit to exit the game it will sometimes cause an error if the user has any addons with a slash command loaded. Logout was previously moved to SecureCmdList but for some reason...
|
Forum: PTR UI Bugs
06-27-18, 07:21 PM
|
Replies: 8
Views: 1,692
|
Forum: PTR UI Bugs
06-25-18, 05:39 AM
|
Replies: 1
Views: 968
Duplicate Function in UIParent.lua
Not really a bug but you have a duplicate function in UIParent.lua starting at line 911.
function ToggleCommunitiesFrame()
Communities_LoadUI();
ToggleFrame(CommunitiesFrame);
end
function...
|
Forum: PTR UI Bugs
06-22-18, 01:22 AM
|
Replies: 8
Views: 1,692
BFA Opening map in combat.
If an addon or macro tries to open the world map using functions like ToggleQuestLog() or ToggleWorldMap() while in combat before the map has been loaded it will cause an error and the map will show...
|
Forum: PTR API and Graphics Changes
06-19-18, 08:22 PM
|
Replies: 0
Views: 975
Map Data Provider Memory Usage PSA
If you have an addon that uses the new map data provider mixins and it looks like it has high memory usage when you mouse over the world map don't worry it isn't your fault. The memory usage is...
|
Forum: PTR API and Graphics Changes
06-19-18, 08:17 PM
|
Replies: 31
Views: 12,827
|
Forum: PTR API and Graphics Changes
06-15-18, 05:39 PM
|
Replies: 31
Views: 12,827
C_Map.GetPlayerMapPosition Memory Usage
Anyone else having memory issues with C_Map.GetPlayerMapPosition? I updated some map coords code to use the new functions and noticed that the addons memory usage grows every update. By commenting...
|
Forum: PTR API and Graphics Changes
06-15-18, 05:13 PM
|
Replies: 54
Views: 15,266
|
Forum: PTR General Discussion
06-12-18, 10:10 PM
|
Replies: 0
Views: 825
Working with map data providers?
Has anyone figured out a clean way to access pins from the new map data providers? I found two ways that work they are both a bit hacky.
I am just trying to hook into the OnClick or OnMouseUp...
|
Forum: PTR API and Graphics Changes
06-10-18, 02:59 AM
|
Replies: 0
Views: 1,076
Color Gradients using CreateColor
I have been updating some of the addons I use and decided to see if I could update the color gradient function that most people use to CreateColor. While it isn't a new thing Blizzard is continuing...
|