Download
(15MB)
Download
Updated: 01-26-20 06:22 AM
Pictures
File Info
Compatibility:
Visions of N'Zoth (8.3.0)
Updated:01-26-20 06:22 AM
Created:09-11-11 11:24 AM
Downloads:109,438
Favorites:167
MD5:

MiirGui Texture Pack [Blue]  Popular! (More than 5000 hits)

Version: 8.3.0-0002
by: Neza [More]



This is the blue texture pack for MiirGui [Core]. It contains only textures and is meant to be used with MiirGui [Core].

There is a optional Icon Pack.



When updating from an older version delete all files created by this texture pack in
your interface folder.


Alternativly, you can read the changelog and just delete the single files which were removed in an update.

Then proceed to paste the content of the zip file into the interface folder.



If you find any missmatching graphics, please use the comment section of this page.



Copyright © 2011-2018 Miiru

The contents of this addon, excluding third-party resources, are
copyrighted to its authors with all rights reserved.

## Changes in 8.2.0-0002 ##

Addes support for 2x ui scale

## Changes in 8.2.0-0001 ##

Updated for 8.2.0

## Changes in 8.0.1-0002 ##

Removed all old Microbutton files
Skinned questframe/Talkingheadframe.BLP for island invasions
Gave UI-DungeonDifficulty-Button.blp a try ;)
Added Garrison/LegionMission.BLP
Added Garrison/TalenTreeAlliance.BLP
Added Garrison/TalentTreeAlliance2.BLP
Added Garrison/TalenTreeHorde.BLP
Added Garrison/TalenTreeHorde2.BLP
Added Tooltips/UI-Tooltip-Border-Azerite.blp
Modified Challenges/ChallengeMode.BLP
Fixed macroframe/MacroPopup.BLP
Added worldstateframe/WORLDSTATEFINALSCORE-HIGHLIGHT.BLP

## Changes in 8.0.1-0001 ##

Updated for BFA

## Changes in 4.0.45 ##

slight adjustement to UI-EncounterJournalTextures.blp
slight changes to common/whiteiconframe.blp
slight changes to Garrison/quality.blp
added various calendar images
added UI-EJ-LOREBG-TombOfSargeras
added UI-EJ-LOREBG-CathedralOfEternalNight

## Changes in 4.0.39 ##

fixed WorldQuest.BLP
fixed PvPHonorSystem.blp
changed UI-ActionButton-Border.blp to now correctly show the quality of items(reported by Trasan)
added TransmogSetsVendor.blp

## Changes in 4.0.35 ##

added UI-Debuff-Overlays.blp (reported by Axiphel)
added UI-Debuff-Border.blp (reported by Axiphel)

## Changes in 4.0.33 ##

fixed LootTab.blp (reported by Axiphel)
added loottab-item-background.blp (reported by Axiphel)

## Changes in 4.0.31 ##

added SocialQueuingToast.blp
modified WorldQuest.blp
modified Token.blp

## Changes in 4.0.28 ##

added UI-EJ-LOREBG-TrialofValor
added CancelButton-Down
added CancelButton-Highlight
added CancelButton-Up
slightly changed UI-Panel-QuestHideButton
added UI-EJ-LOREBG-ReturntoKarazhan
modified UI-AuctionPost-Background

## Changes in 4.0.21 ##

fixed groupfinder.blp

## Changes in 4.0.20 ##

edited all files to work with 7.1
Modified bags.blp
sligthly modified BonusObjectives.BLP
added UI-EJ-LOREBG-TrialofValor.blp
modified ChallengeModeHud.blp
modified PvPHonorSystem.blp
modified PvPHonorSystemHorizontal.blp
modified Collections.blp
modified GroupFinder.BLP (legacy burning crusade raids were missing)

## Changes in 4.0.12 ##

modified UI-VEHICLE-FRAME.blp slightly
Added QuestFrame/WorldQuest.blp

## Changes in 4.0.10 ##

Added Collections/Collections.blp
Added questframe/QuestBackgroundHordeAlliance.blp
Added questframe/QuestBG.blp
Optional Files (1)
File Name
Version
Size
Author
Date
Type
8.2.0-0001
49MB
07-21-19 04:19 AM
Patch


Post A Reply Comment Options
Unread 12-02-11, 07:12 PM  
NeuronRider
A Murloc Raider
 
NeuronRider's Avatar

Forum posts: 7
File comments: 42
Uploads: 0
No luck at this point (I'm not super familiar with the WoW API...so...yeah).

I tried the AddOn_Loaded event, but that has issues of it's own. Namely, it appears to only be called the first time an inspect is performed per session.

You might be able to find a solution by digging through another addon; perhaps InspectFix over at Curse can help. I've taken a quick look over it, but haven't delved in too deeply to see how it's handling essentially blocking updates to the inspect frame while it's open.

Hope my detective work helped at least. If I come up with a solution, I'll post it here.
Report comment to moderator  
Reply With Quote
Unread 12-02-11, 06:14 PM  
NeuronRider
A Murloc Raider
 
NeuronRider's Avatar

Forum posts: 7
File comments: 42
Uploads: 0
Ok, in my case, I've narrowed it down to my tooltip addon (TipTop); however, my UF addon (Shadowed UF) doesn't display talent info. I can imagine any addon that tries to get talent info is going to create this issue.

Basically, anything making a NotifyInspect(unit) call will result in the InspectReady event firing (when talents are available for inspection), meaning any of a number of addons could cause this event to fire. Since that's the event you're registering, and the InspectFrame itself isn't up, the class icon is defaulting to the UIParent frame.

I'm not sure why you sometimes see all class icons and sometimes just the one you're targeting; perhaps class icon doesn't return for those units (pet or something), or perhaps something else is happening.

I'm digging around the API events now to look for a better event to register. Basically need an event that happens when the InspectFrame is actually created, and not otherwise.
Report comment to moderator  
Reply With Quote
Unread 12-02-11, 05:58 PM  
NeuronRider
A Murloc Raider
 
NeuronRider's Avatar

Forum posts: 7
File comments: 42
Uploads: 0
Originally Posted by Neza
The texture should only load if you inspect somebody and parent to the InspectFrame.
It also (from the LUA file) doesn't appear to parent to InspectFrame under whatever conditions it's conflicting with. It parents correctly without tooltip/UF addons enabled. CreateFrame defaults to UIParent when it can't find the parent frame specified (and isn't specifically passed a nil argument). So, that's why it's showing up where it is.

I just turned off both my tooltip and Unit Frame addons, and the error is not happening. Now to find out which is the culprit. It definitely seems to be tied to another addon calling for inspect info (talents in particular).

I was thinking it was a local v. global variable conflict...but I don't think so now.

You could also try parenting to InspectPaperDollFrame, but I seriously doubt that would make any difference in this case.
Report comment to moderator  
Reply With Quote
Unread 12-02-11, 05:48 PM  
NeuronRider
A Murloc Raider
 
NeuronRider's Avatar

Forum posts: 7
File comments: 42
Uploads: 0
Originally Posted by acidic-e-
Originally Posted by Gallahead
i get the following error everytime i join a group/raid:

Getting this exact same error on a clean install also. the screenshot from the guy below me looks like it might be from Tukui which I run a modded version of Tuk (ElvUI v3)
I haven't tried disabling everything else yet, but it does seem to be coming up regardless of actually inspecting a target. I get the class icon from simply selecting a target. I've also gotten the grouping of all class icons (smaller) like in the other screen shots, but haven't narrowed that one down.

Trying disabling stuff and pinpointing any addon conflicts.

One thing to note though is that it looks like the event you're registering (Inspect_Ready) to create that frame "fires once the inspected unit's talent information can be retrieved using Talent APIs". My thoughts go toward tooltip/unit frame addons and whatnot that try to retrieve talent info on target/mouseover for their own display use.
Report comment to moderator  
Reply With Quote
Unread 12-02-11, 04:27 PM  
acidic-e-
A Kobold Labourer

Forum posts: 0
File comments: 19
Uploads: 0
Originally Posted by Gallahead
i get the following error everytime i join a group/raid:

Getting this exact same error on a clean install also. the screenshot from the guy below me looks like it might be from Tukui which I run a modded version of Tuk (ElvUI v3)
Last edited by acidic-e- : 12-02-11 at 04:29 PM.
Report comment to moderator  
Reply With Quote
Unread 12-02-11, 08:41 AM  
Miiru
A Flamescale Wyrmkin
 
Miiru's Avatar
AddOn Author - Click to view AddOns

Forum posts: 138
File comments: 419
Uploads: 6
Thats weird indeed.

The texture should only load if you inspect somebody and parent to the InspectFrame.

I just noticed that in the latest release, i put the miirgui addon in the wrong folder, which is Addon/miirgui. It should be addons/miirgui of course, which could potentially be the source of your problem.

edit: Just tried with a clean install, caused no problems, maybe its a conflict with another addon.
Last edited by Miiru : 12-02-11 at 08:49 AM.
Report comment to moderator  
Reply With Quote
Unread 12-02-11, 07:29 AM  
Gallahead
A Defias Bandit
 
Gallahead's Avatar
AddOn Compiler - Click to view compilations

Forum posts: 2
File comments: 199
Uploads: 1
i get the following error everytime i join a group/raid:

Report comment to moderator  
Reply With Quote
Unread 12-01-11, 03:45 AM  
Miiru
A Flamescale Wyrmkin
 
Miiru's Avatar
AddOn Author - Click to view AddOns

Forum posts: 138
File comments: 419
Uploads: 6
FYI i excluded the icons with the newest update, icons is roughly 20mb of size and not updated that often so you dont need to always download em and save same bandwidth.
Report comment to moderator  
Reply With Quote
Unread 11-30-11, 05:02 PM  
Raazee
A Kobold Labourer

Forum posts: 0
File comments: 9
Uploads: 0
Yep that worked thanks.
Report comment to moderator  
Reply With Quote
Unread 11-30-11, 08:35 AM  
Miiru
A Flamescale Wyrmkin
 
Miiru's Avatar
AddOn Author - Click to view AddOns

Forum posts: 138
File comments: 419
Uploads: 6
Originally Posted by Raazee
Getting the following error upon logging in with the latest update.

88x miirGui-1.0.0\inspect-Inspect.lua:8: attempt to index global "Test" (a function value)
miirGui-1.0.0\inspect-Inspect.lua:8: in function <miirGui\inspect.lua:3>

Locals:

Cheers
can you try to change in inspect.lua line 7: CreateFrame("Frame","Test",InspectFrame) to local Test = CreateFrame("Frame","Test",InspectFrame) and tell me if it works?
Report comment to moderator  
Reply With Quote
Unread 11-30-11, 07:30 AM  
Raazee
A Kobold Labourer

Forum posts: 0
File comments: 9
Uploads: 0
Getting the following error upon logging in with the latest update.

88x miirGui-1.0.0\inspect-Inspect.lua:8: attempt to index global "Test" (a function value)
miirGui-1.0.0\inspect-Inspect.lua:8: in function <miirGui\inspect.lua:3>

Locals:

Cheers
Report comment to moderator  
Reply With Quote
Unread 11-28-11, 03:17 AM  
Miiru
A Flamescale Wyrmkin
 
Miiru's Avatar
AddOn Author - Click to view AddOns

Forum posts: 138
File comments: 419
Uploads: 6
Update for 4.3

Version 1.10 for World of Warcraft Patch 4.3.0.
+Added Void Storage Frame
+Added new Reforging Frame
+Added Transmogrify Frame
+Changed backpack slightly to fit the new search button
+Added new patch 4.3 icons and fixed a few old icons
+Fixed Encounter Journal because blizzard went fubar and changed the position of
5 textures inside a file -.-
+Added Looking for Raid Frame and Looking for Raid Minimap Icon
+Fixed a few Qlook things
+Made the chatbubble slightly brighter
+Recoded the miirgui addon to make the code clearer
+Added various icons to frames such as an inspect class-icon
+Various style fixes (Achievement window bars)
I recommend deleting the miirgui addon completely before updating because of various file and code changes in order to have it work from the beginning. This update will also work with 4.2, but you will have some graphical error in tbe encounterjournal and maybe a few more issues.

However it should'nt create any lua errors.

I'd still recommend to not update until the patch hits with would be tuesday for us servers and wednesday for eu servers.

Bug Reports are welcome.
Last edited by Miiru : 11-28-11 at 10:23 AM.
Report comment to moderator  
Reply With Quote
Unread 11-23-11, 01:43 AM  
Miiru
A Flamescale Wyrmkin
 
Miiru's Avatar
AddOn Author - Click to view AddOns

Forum posts: 138
File comments: 419
Uploads: 6
Yes, it's normal the icon bugs on the ptr, because they changed the way the encounter Journal works.

I can however ensure you, that i already have an 4.3 version ready which of course fixes this bug and changes the new windows like voide storage and many more.

As far as im aware, they encounterjournal itself should also bug to a certain extend (showing wrong pictures etc)
Last edited by Miiru : 11-23-11 at 01:44 AM.
Report comment to moderator  
Reply With Quote
Unread 11-22-11, 09:29 PM  
saphirre12
A Fallenroot Satyr

Forum posts: 27
File comments: 28
Uploads: 0
PTR US client

Temporary fix : go to your Interface folder and do a search on journal . Rename journal.blp to something else like journal1.blp
Last edited by saphirre12 : 11-22-11 at 09:35 PM.
Report comment to moderator  
Reply With Quote
Unread 11-22-11, 05:09 PM  
Raazee
A Kobold Labourer

Forum posts: 0
File comments: 9
Uploads: 0
Re: the screenshot below I got the same image on the ptr a few days ago on the US client.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump:

Support AddOn Development!

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.