Skip to content

Releases: parnic/LibDogTag-Unit-3.0

v100206.1

15 Apr 22:03
v100206.1
7f9d5db
Compare
Choose a tag to compare

Lib: DogTag-Unit-3.0

v100206.1 (2024-04-15)

Full Changelog Previous Releases

v100205.1

16 Jan 23:23
v100205.1
05afef8
Compare
Choose a tag to compare

Lib

v100205.1 (2024-01-16)

Full Changelog Previous Releases

  • Update TOC
  • Update classic-era TOC

v100200.1

07 Nov 22:39
v100200.1
3576a67
Compare
Choose a tag to compare

Lib

v100200.1 (2023-11-07)

Full Changelog Previous Releases

  • Update TOC
  • Update classic-era TOC

v100107.1

08 Sep 15:27
v100107.1
9e00585
Compare
Choose a tag to compare

Lib: DogTag-Unit-3.0

v100107.1 (2023-09-08)

Full Changelog Previous Releases

  • Update TOC

v100105.1

11 Jul 21:51
v100105.1
dd28e38
Compare
Choose a tag to compare

Lib: DogTag-Unit-3.0

v100105.1 (2023-07-11)

Full Changelog Previous Releases

  • Update TOC
  • Update TOC for Wrath Classic

v100100.1

03 May 23:19
v100100.1
122f129
Compare
Choose a tag to compare

Lib: DogTag-Unit-3.0

v100100.1 (2023-05-03)

Full Changelog Previous Releases

  • Update TOC

v100007.1

01 Apr 20:01
v100007.1
79b632e
Compare
Choose a tag to compare

Lib: DogTag-Unit-3.0

v100007.1 (2023-04-01)

Full Changelog Previous Releases

  • Update TOC

v100005.1

25 Jan 19:38
v100005.1
93696c4
Compare
Choose a tag to compare

Lib: DogTag-Unit-3.0

v100005.1 (2023-01-25)

Full Changelog Previous Releases

  • Update TOCs

v100002.3

07 Jan 15:01
v100002.3
95ad2ad
Compare
Choose a tag to compare

Lib: DogTag-Unit-3.0

v100002.3 (2023-01-05)

Full Changelog Previous Releases

  • Merge pull request #13 from parnic/ascott/12
    #12 - Add workaround to prevent guild roster from resetting scroll
  • #12 - Add workaround to prevent guild roster from resetting scroll every 20 seconds.

v100002.2

20 Dec 07:07
v100002.2
c862c49
Compare
Choose a tag to compare

Lib: DogTag-Unit-3.0

v100002.2 (2022-11-26)

Full Changelog Previous Releases

  • Fix typo
  • Fix FigureNPCGuild on Classic
    This logic was bad when TooltipInfo didn't exist.
  • Fix Guild, Faction, and Zone edge cases
    This is all done via tooltip scanning, so when an NPC doesn't even have a second line on their tooltip, several of these tags would error out assuming there was at least a second line or sometimes third line of text.
    Fixes #11
  • Fix quest title showing as NPC guild
    When an NPC is part of a quest, tooltip line 2 might be the quest name or something else non-Guild-related. Fortunately each line has a type associated with it, so if it's not type None (0), don't treat it like a guild. I could check for types like QuestTitle (17) but since the tooltip lines can contain any arbitrary information, it's best to make sure it's what we want instead of making sure it's not something specific that we don't want.
  • Add ability to specify MP type (#10)
    • Add ability to specify MP type
      This enables asking for MP(type="energy") while in Bear form as a Druid, for example, without having to add Energy-specific tags.
      This should probably turn the Druid and Monk specific tags into aliases, but I don't want to change their behavior since they specifically return nil if you aren't the appropriate class.
    • Address PR feedback