├── .github └── ISSUE_TEMPLATE │ ├── 1_bug_report.yml │ ├── 2_feature_request.yml │ ├── 3_other_issue.yml │ └── config.yml ├── LICENSE ├── README.md ├── TipTac ├── TipTac.toc ├── TipTac_Cata.toc ├── TipTac_Vanilla.toc ├── archive │ ├── changelog.txt │ └── readme.txt ├── embeds.xml ├── libs │ ├── AceHook-3.0 │ │ ├── AceHook-3.0.lua │ │ └── AceHook-3.0.xml │ ├── CallbackHandler-1.0 │ │ ├── CallbackHandler-1.0.lua │ │ └── CallbackHandler-1.0.xml │ ├── LibDBIcon-1.0 │ │ ├── CHANGES.txt │ │ ├── CallbackHandler-1.0 │ │ │ └── CallbackHandler-1.0.lua │ │ ├── LibDBIcon-1.0.toc │ │ ├── LibDBIcon-1.0 │ │ │ ├── LibDBIcon-1.0.lua │ │ │ └── lib.xml │ │ ├── LibDataBroker-1.1 │ │ │ └── LibDataBroker-1.1.lua │ │ ├── LibStub │ │ │ └── LibStub.lua │ │ └── embeds.xml │ ├── LibDataBroker-1.1 │ │ └── LibDataBroker-1.1.lua │ ├── LibFroznFunctions-1.0 │ │ ├── LibFroznFunctions-1.0.lua │ │ ├── LibStub │ │ │ └── LibStub.lua │ │ ├── lib.xml │ │ └── tables │ │ │ ├── LFF_ENCHANTID_TO_SPELLID_LOOKUP.CataC.lua │ │ │ ├── LFF_ENCHANTID_TO_SPELLID_LOOKUP.ClassicEra.lua │ │ │ ├── LFF_ENCHANTID_TO_SPELLID_LOOKUP.TWW.lua │ │ │ ├── LFF_GLOBAL_STRINGS.deDE.lua │ │ │ ├── LFF_GLOBAL_STRINGS.enUS.lua │ │ │ ├── LFF_GLOBAL_STRINGS.esES.lua │ │ │ ├── LFF_GLOBAL_STRINGS.esMX.lua │ │ │ ├── LFF_GLOBAL_STRINGS.frFR.lua │ │ │ ├── LFF_GLOBAL_STRINGS.itIT.lua │ │ │ ├── LFF_GLOBAL_STRINGS.koKR.lua │ │ │ ├── LFF_GLOBAL_STRINGS.ptBR.lua │ │ │ ├── LFF_GLOBAL_STRINGS.ruRU.lua │ │ │ ├── LFF_GLOBAL_STRINGS.zhCN.lua │ │ │ ├── LFF_GLOBAL_STRINGS.zhTW.lua │ │ │ ├── LFF_ITEMID_TO_MOUNTID_LOOKUP.CataC.lua │ │ │ ├── LFF_ITEMID_TO_MOUNTID_LOOKUP.ClassicEra.lua │ │ │ ├── LFF_ITEMID_TO_MOUNTID_LOOKUP.TWW.lua │ │ │ ├── LFF_MAWPOWERID_TO_MAWPOWER_LOOKUP.lua │ │ │ ├── LFF_SPELLID_TO_MOUNTID_LOOKUP.CataC.lua │ │ │ ├── LFF_SPELLID_TO_MOUNTID_LOOKUP.ClassicEra.lua │ │ │ └── LFF_SPELLID_TO_MOUNTID_LOOKUP.TWW.lua │ └── LibStub │ │ └── LibStub.lua ├── media │ ├── AzeriteTooltip.BLP │ ├── CommonIcons.BLP │ ├── QuestLegendaryMapIcons.BLP │ ├── Talents.BLP │ ├── curseforge.tga │ ├── github.tga │ ├── gradient.tga │ ├── tiptac_logo.tga │ ├── unit_reaction_caution.tga │ ├── unit_reaction_exalted.tga │ ├── unit_reaction_friendly.tga │ ├── unit_reaction_honored.tga │ ├── unit_reaction_hostile.tga │ ├── unit_reaction_neutral.tga │ └── unit_reaction_revered.tga ├── modules │ ├── ttAuras.lua │ ├── ttBars.lua │ ├── ttHyperlink.lua │ ├── ttIcons.lua │ └── ttStyle.lua └── ttCore.lua ├── TipTacItemRef ├── TipTacItemRef.toc ├── TipTacItemRef_Cata.toc ├── TipTacItemRef_Vanilla.toc ├── changelog.txt ├── embeds.xml ├── libs │ ├── AceHook-3.0 │ │ ├── AceHook-3.0.lua │ │ └── AceHook-3.0.xml │ ├── LibFroznFunctions-1.0 │ │ ├── LibFroznFunctions-1.0.lua │ │ ├── LibStub │ │ │ └── LibStub.lua │ │ ├── lib.xml │ │ └── tables │ │ │ ├── LFF_ENCHANTID_TO_SPELLID_LOOKUP.CataC.lua │ │ │ ├── LFF_ENCHANTID_TO_SPELLID_LOOKUP.ClassicEra.lua │ │ │ ├── LFF_ENCHANTID_TO_SPELLID_LOOKUP.TWW.lua │ │ │ ├── LFF_GLOBAL_STRINGS.deDE.lua │ │ │ ├── LFF_GLOBAL_STRINGS.enUS.lua │ │ │ ├── LFF_GLOBAL_STRINGS.esES.lua │ │ │ ├── LFF_GLOBAL_STRINGS.esMX.lua │ │ │ ├── LFF_GLOBAL_STRINGS.frFR.lua │ │ │ ├── LFF_GLOBAL_STRINGS.itIT.lua │ │ │ ├── LFF_GLOBAL_STRINGS.koKR.lua │ │ │ ├── LFF_GLOBAL_STRINGS.ptBR.lua │ │ │ ├── LFF_GLOBAL_STRINGS.ruRU.lua │ │ │ ├── LFF_GLOBAL_STRINGS.zhCN.lua │ │ │ ├── LFF_GLOBAL_STRINGS.zhTW.lua │ │ │ ├── LFF_ITEMID_TO_MOUNTID_LOOKUP.CataC.lua │ │ │ ├── LFF_ITEMID_TO_MOUNTID_LOOKUP.ClassicEra.lua │ │ │ ├── LFF_ITEMID_TO_MOUNTID_LOOKUP.TWW.lua │ │ │ ├── LFF_MAWPOWERID_TO_MAWPOWER_LOOKUP.lua │ │ │ ├── LFF_SPELLID_TO_MOUNTID_LOOKUP.CataC.lua │ │ │ ├── LFF_SPELLID_TO_MOUNTID_LOOKUP.ClassicEra.lua │ │ │ └── LFF_SPELLID_TO_MOUNTID_LOOKUP.TWW.lua │ ├── LibItemString.lua │ └── LibStub │ │ └── LibStub.lua ├── media │ ├── tiptac_logo.tga │ └── wow_flavor │ │ ├── bc_logo.tga │ │ ├── bfa_logo.tga │ │ ├── cata_logo.tga │ │ ├── df_logo.tga │ │ ├── legion_logo.tga │ │ ├── mop_logo.tga │ │ ├── sl_logo.tga │ │ ├── tww_logo.tga │ │ ├── wod_logo.tga │ │ ├── wotlk_logo.tga │ │ └── wow_logo.tga ├── readme.txt └── ttItemRef.lua ├── TipTacOptions ├── Libs │ ├── AzDropDown.lua │ ├── AzOptionsFactory.lua │ ├── CallbackHandler-1.0 │ │ ├── CallbackHandler-1.0.lua │ │ └── CallbackHandler-1.0.xml │ ├── LibDeflate │ │ ├── LICENSE.txt │ │ ├── LibDeflate.lua │ │ ├── LibDeflate.toc │ │ ├── LibStub │ │ │ ├── LibStub.lua │ │ │ ├── LibStub.toc │ │ │ └── tests │ │ │ │ ├── test.lua │ │ │ │ ├── test2.lua │ │ │ │ ├── test3.lua │ │ │ │ └── test4.lua │ │ ├── README.md │ │ ├── changelog.md │ │ ├── docs │ │ │ ├── README.md │ │ │ ├── benchmark.md │ │ │ ├── config.ld │ │ │ ├── examples │ │ │ │ └── example.lua.html │ │ │ ├── index.html │ │ │ ├── ldoc.css │ │ │ ├── source │ │ │ │ └── LibDeflate.lua.html │ │ │ └── topics │ │ │ │ ├── benchmark.md.html │ │ │ │ ├── changelog.md.html │ │ │ │ └── readme.md.html │ │ ├── examples │ │ │ └── example.lua │ │ ├── lib.xml │ │ └── libdeflate-1.0.2-1.rockspec │ ├── LibFroznFunctions-1.0 │ │ ├── LibFroznFunctions-1.0.lua │ │ ├── LibStub │ │ │ └── LibStub.lua │ │ ├── lib.xml │ │ └── tables │ │ │ ├── LFF_ENCHANTID_TO_SPELLID_LOOKUP.CataC.lua │ │ │ ├── LFF_ENCHANTID_TO_SPELLID_LOOKUP.ClassicEra.lua │ │ │ ├── LFF_ENCHANTID_TO_SPELLID_LOOKUP.TWW.lua │ │ │ ├── LFF_GLOBAL_STRINGS.deDE.lua │ │ │ ├── LFF_GLOBAL_STRINGS.enUS.lua │ │ │ ├── LFF_GLOBAL_STRINGS.esES.lua │ │ │ ├── LFF_GLOBAL_STRINGS.esMX.lua │ │ │ ├── LFF_GLOBAL_STRINGS.frFR.lua │ │ │ ├── LFF_GLOBAL_STRINGS.itIT.lua │ │ │ ├── LFF_GLOBAL_STRINGS.koKR.lua │ │ │ ├── LFF_GLOBAL_STRINGS.ptBR.lua │ │ │ ├── LFF_GLOBAL_STRINGS.ruRU.lua │ │ │ ├── LFF_GLOBAL_STRINGS.zhCN.lua │ │ │ ├── LFF_GLOBAL_STRINGS.zhTW.lua │ │ │ ├── LFF_ITEMID_TO_MOUNTID_LOOKUP.CataC.lua │ │ │ ├── LFF_ITEMID_TO_MOUNTID_LOOKUP.ClassicEra.lua │ │ │ ├── LFF_ITEMID_TO_MOUNTID_LOOKUP.TWW.lua │ │ │ ├── LFF_MAWPOWERID_TO_MAWPOWER_LOOKUP.lua │ │ │ ├── LFF_SPELLID_TO_MOUNTID_LOOKUP.CataC.lua │ │ │ ├── LFF_SPELLID_TO_MOUNTID_LOOKUP.ClassicEra.lua │ │ │ └── LFF_SPELLID_TO_MOUNTID_LOOKUP.TWW.lua │ ├── LibSerialize │ │ ├── .pkgmeta │ │ ├── LICENSE │ │ ├── LibSerialize.lua │ │ ├── LibSerialize.toc │ │ ├── README.md │ │ ├── archive │ │ │ ├── LibSerialize-v1-0-0.lua │ │ │ ├── LibSerialize-v1-1-0.lua │ │ │ ├── LibSerialize-v1-1-2.lua │ │ │ └── LibSerialize-v1-1-3.lua │ │ ├── buildreadme.lua │ │ ├── lib.xml │ │ └── tests.lua │ ├── LibSharedMedia-3.0 │ │ ├── CHANGES.txt │ │ ├── CallbackHandler-1.0 │ │ │ └── CallbackHandler-1.0.lua │ │ ├── LibSharedMedia-3.0.toc │ │ ├── LibSharedMedia-3.0 │ │ │ ├── LibSharedMedia-3.0.lua │ │ │ └── lib.xml │ │ ├── LibStub │ │ │ └── LibStub.lua │ │ └── lib.xml │ └── LibStub │ │ └── LibStub.lua ├── TipTacOptions.toc ├── TipTacOptions_Cata.toc ├── TipTacOptions_Vanilla.toc ├── embeds.xml ├── media │ └── tiptac_logo.tga ├── ttLayouts.lua └── ttOptions.lua └── TipTacTalents ├── TipTacTalents.toc ├── TipTacTalents_Cata.toc ├── TipTacTalents_Vanilla.toc ├── changelog.txt ├── embeds.xml ├── libs ├── LibFroznFunctions-1.0 │ ├── LibFroznFunctions-1.0.lua │ ├── LibStub │ │ └── LibStub.lua │ ├── lib.xml │ └── tables │ │ ├── LFF_ENCHANTID_TO_SPELLID_LOOKUP.CataC.lua │ │ ├── LFF_ENCHANTID_TO_SPELLID_LOOKUP.ClassicEra.lua │ │ ├── LFF_ENCHANTID_TO_SPELLID_LOOKUP.TWW.lua │ │ ├── LFF_GLOBAL_STRINGS.deDE.lua │ │ ├── LFF_GLOBAL_STRINGS.enUS.lua │ │ ├── LFF_GLOBAL_STRINGS.esES.lua │ │ ├── LFF_GLOBAL_STRINGS.esMX.lua │ │ ├── LFF_GLOBAL_STRINGS.frFR.lua │ │ ├── LFF_GLOBAL_STRINGS.itIT.lua │ │ ├── LFF_GLOBAL_STRINGS.koKR.lua │ │ ├── LFF_GLOBAL_STRINGS.ptBR.lua │ │ ├── LFF_GLOBAL_STRINGS.ruRU.lua │ │ ├── LFF_GLOBAL_STRINGS.zhCN.lua │ │ ├── LFF_GLOBAL_STRINGS.zhTW.lua │ │ ├── LFF_ITEMID_TO_MOUNTID_LOOKUP.CataC.lua │ │ ├── LFF_ITEMID_TO_MOUNTID_LOOKUP.ClassicEra.lua │ │ ├── LFF_ITEMID_TO_MOUNTID_LOOKUP.TWW.lua │ │ ├── LFF_MAWPOWERID_TO_MAWPOWER_LOOKUP.lua │ │ ├── LFF_SPELLID_TO_MOUNTID_LOOKUP.CataC.lua │ │ ├── LFF_SPELLID_TO_MOUNTID_LOOKUP.ClassicEra.lua │ │ └── LFF_SPELLID_TO_MOUNTID_LOOKUP.TWW.lua └── LibStub │ └── LibStub.lua ├── media └── tiptac_logo.tga ├── readme.txt └── ttTalents.lua /.github/ISSUE_TEMPLATE/1_bug_report.yml: -------------------------------------------------------------------------------- 1 | name: Bug report 2 | description: Create a report to help improve TipTac Reborn 3 | labels: 1_bug 4 | body: 5 | - type: textarea 6 | id: description 7 | attributes: 8 | label: Describe the bug 9 | placeholder: A clear and concise description of what the bug is. If applicable, add screenshots to help explain your problem. 10 | validations: 11 | required: true 12 | - type: textarea 13 | id: steps-to-reproduce 14 | attributes: 15 | label: Steps to Reproduce 16 | placeholder: | 17 | Steps to reproduce the behavior: 18 | 1. Go to '...' 19 | 2. Click on '....' 20 | 3. Scroll down to '....' 21 | 4. See error 22 | - type: textarea 23 | id: expected-behavior 24 | attributes: 25 | label: Expected behavior 26 | placeholder: A clear and concise description of what you expected to happen. 27 | - type: textarea 28 | id: additional-context 29 | attributes: 30 | label: Additional context 31 | placeholder: Add any other context about the problem here. 32 | - type: textarea 33 | id: version-tiptac 34 | attributes: 35 | label: Version of TipTac Reborn 36 | placeholder: e.g. 25.06.19, visible on top right in TipTac Reborn's config options (accessible with `/tiptac`) 37 | validations: 38 | required: true 39 | - type: textarea 40 | id: version-wow 41 | attributes: 42 | label: Flavor/Version of WoW 43 | placeholder: | 44 | Flavor [e.g. Retail, CataC, Classic Era] 45 | - or - 46 | Version [e.g. 11.1.7, 4.4.2, 1.15.7, visible on top right in TipTac Reborn's config options (accessible with `/tiptac`)] 47 | validations: 48 | required: true 49 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_feature_request.yml: -------------------------------------------------------------------------------- 1 | name: Feature request 2 | description: Suggest an idea for TipTac Reborn 3 | labels: 1_enhancement 4 | body: 5 | - type: textarea 6 | id: description-problem 7 | attributes: 8 | label: Is your feature request related to a problem? Please describe. 9 | placeholder: A clear and concise description of what the problem is, e.g. I'm always frustrated when [...] 10 | validations: 11 | required: true 12 | - type: textarea 13 | id: description-solution 14 | attributes: 15 | label: Describe the solution you'd like 16 | placeholder: A clear and concise description of what you want to happen. 17 | - type: textarea 18 | id: description-alternatives 19 | attributes: 20 | label: Describe alternatives you've considered 21 | placeholder: A clear and concise description of any alternative solutions or features you've considered. 22 | - type: textarea 23 | id: additional-context 24 | attributes: 25 | label: Additional context 26 | placeholder: Add any other context about the problem here. 27 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3_other_issue.yml: -------------------------------------------------------------------------------- 1 | name: Other issue 2 | description: Individual topic for TipTac Reborn 3 | body: 4 | - type: textarea 5 | id: description 6 | attributes: 7 | label: Describe the individual topic 8 | placeholder: Please describe. 9 | validations: 10 | required: true 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /TipTac/TipTac.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 110107 2 | ## Version: 25.06.20 3 | ## IconTexture: Interface\AddOns\TipTac\media\tiptac_logo 4 | ## Title: TipTac 5 | ## Author: Aezay (Earthen Ring EU), Frozn45 6 | ## Notes: Highly Customizable Tooltip Enhancement Addon 7 | ## Category-enUS: User Interface 8 | ## Category-deDE: Benutzerinterface 9 | ## Category-esES: Interfaz de usuario 10 | ## Category-esMX: Interfaz de usuario 11 | ## Category-frFR: Interface utilisateur 12 | ## Category-itIT: Interfaccia utente 13 | ## Category-koKR: 사용자 인터페이스 14 | ## Category-ptBR: Interface do usuário 15 | ## Category-ruRU: Интерфейс пользователя 16 | ## Category-zhCN: 用户界面 17 | ## Category-zhTW: 使用者介面 18 | ## SavedVariables: TipTac_Config 19 | ## AddonCompartmentFunc: TipTac_OnAddonCompartmentClick 20 | ## AddonCompartmentFuncOnEnter: TipTac_OnAddonCompartmentEnter 21 | ## AddonCompartmentFuncOnLeave: TipTac_OnAddonCompartmentLeave 22 | ## X-Category: Tooltip 23 | ## X-Website: https://www.curseforge.com/wow/addons/tiptac-reborn 24 | ## X-Curse-Project-ID: 695153 25 | 26 | # embeds 27 | embeds.xml 28 | 29 | # core 30 | ttCore.lua 31 | 32 | # modules 33 | modules\ttAuras.lua 34 | modules\ttBars.lua 35 | modules\ttIcons.lua 36 | modules\ttHyperlink.lua 37 | modules\ttStyle.lua -------------------------------------------------------------------------------- /TipTac/TipTac_Cata.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 40402 2 | ## Version: 25.06.20 3 | ## IconTexture: Interface\AddOns\TipTac\media\tiptac_logo 4 | ## Title: TipTac 5 | ## Author: Aezay (Earthen Ring EU), Frozn45 6 | ## Notes: Highly Customizable Tooltip Enhancement Addon 7 | ## SavedVariables: TipTac_Config 8 | ## Category-enUS: User Interface 9 | ## Category-deDE: Benutzerinterface 10 | ## Category-esES: Interfaz de usuario 11 | ## Category-esMX: Interfaz de usuario 12 | ## Category-frFR: Interface utilisateur 13 | ## Category-itIT: Interfaccia utente 14 | ## Category-koKR: 사용자 인터페이스 15 | ## Category-ptBR: Interface do usuário 16 | ## Category-ruRU: Интерфейс пользователя 17 | ## Category-zhCN: 用户界面 18 | ## Category-zhTW: 使用者介面 19 | ## AddonCompartmentFunc: TipTac_OnAddonCompartmentClick 20 | ## AddonCompartmentFuncOnEnter: TipTac_OnAddonCompartmentEnter 21 | ## AddonCompartmentFuncOnLeave: TipTac_OnAddonCompartmentLeave 22 | ## X-Category: Tooltip 23 | ## X-Website: https://www.curseforge.com/wow/addons/tiptac-reborn 24 | ## X-Curse-Project-ID: 695153 25 | 26 | # embeds 27 | embeds.xml 28 | 29 | # core 30 | ttCore.lua 31 | 32 | # modules 33 | modules\ttAuras.lua 34 | modules\ttBars.lua 35 | modules\ttIcons.lua 36 | modules\ttHyperlink.lua 37 | modules\ttStyle.lua -------------------------------------------------------------------------------- /TipTac/TipTac_Vanilla.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 11507 2 | ## Version: 25.06.20 3 | ## IconTexture: Interface\AddOns\TipTac\media\tiptac_logo 4 | ## Title: TipTac 5 | ## Author: Aezay (Earthen Ring EU), Frozn45 6 | ## Notes: Highly Customizable Tooltip Enhancement Addon 7 | ## SavedVariables: TipTac_Config 8 | ## Category-enUS: User Interface 9 | ## Category-deDE: Benutzerinterface 10 | ## Category-esES: Interfaz de usuario 11 | ## Category-esMX: Interfaz de usuario 12 | ## Category-frFR: Interface utilisateur 13 | ## Category-itIT: Interfaccia utente 14 | ## Category-koKR: 사용자 인터페이스 15 | ## Category-ptBR: Interface do usuário 16 | ## Category-ruRU: Интерфейс пользователя 17 | ## Category-zhCN: 用户界面 18 | ## Category-zhTW: 使用者介面 19 | ## AddonCompartmentFunc: TipTac_OnAddonCompartmentClick 20 | ## AddonCompartmentFuncOnEnter: TipTac_OnAddonCompartmentEnter 21 | ## AddonCompartmentFuncOnLeave: TipTac_OnAddonCompartmentLeave 22 | ## X-Category: Tooltip 23 | ## X-Website: https://www.curseforge.com/wow/addons/tiptac-reborn 24 | ## X-Curse-Project-ID: 695153 25 | 26 | # embeds 27 | embeds.xml 28 | 29 | # core 30 | ttCore.lua 31 | 32 | # modules 33 | modules\ttAuras.lua 34 | modules\ttBars.lua 35 | modules\ttIcons.lua 36 | modules\ttHyperlink.lua 37 | modules\ttStyle.lua -------------------------------------------------------------------------------- /TipTac/archive/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozn/TipTac/ca01e67df0f40161f6aa6e5f61efd8da01713fa0/TipTac/archive/changelog.txt -------------------------------------------------------------------------------- /TipTac/archive/readme.txt: -------------------------------------------------------------------------------- 1 | TipTac - An Advanced Tooltip Addon 2 | ---------------------------------- 3 | TipTac is a tooltip enchancement addon, it allows you to configure various aspects of the tooltip, such as moving where it's shown, the font, the scale of tips, plus many more features. 4 | 5 | To open the option dialog, just use "/tip" without any parameters. Use "/tip anchor" to show the anchor frame and position it as you want. 6 | 7 | You can always get the latest release of this addon on Curse or WoWInterface. 8 | Please post your comments, questions and suggestions for this addon there. 9 | 10 | Current Features 11 | ---------------- 12 | - Shows the buffs and debuffs of the target with cooldown models. Has options to make it only show the ones you cast. 13 | - When in a raid or party, there is an option to show who from the group is targeting the unit. 14 | - Vast anchoring options allows you to change between Normal, Mouse and Parent anchor, this is configurable for both unit and non-unit tips on a frame or non-frames. 15 | - Anchoring frame lets you decide exactly where you want tips with the normal anchoring option. 16 | - Able to change the font face and size for all tips in the User Interface. Uses "LibSharedMedia" if installed. 17 | - Can show a Health, Mana, Energy, Rage, Runic Power or Focus bar inside the tip, which can be enabled or disabled as you prefer. 18 | - Configurable fading options, both a prefade and fadeout time can be set. They can also be set to zero if you prefer the tips to just hide instantly. 19 | - Allows for you to change the background and border color of the tooltips. 20 | 21 | Layout Templates 22 | ---------------- 23 | Currently TipTac comes with a few presets, these are a collection of preset settings. You can find the presets in the options. 24 | I am looking for more layout presets to include in future releases of TipTac. So feel free to send me your saved settings. 25 | 26 | Special Tip Modification 27 | ------------------------ 28 | TipTac does not only configure the tip for units, you can also use TipTac to modify other tips in the WoW Interface. 29 | The way they are getting modified are both in scale and appearance. The border and background of the modified tips can be changed to colors of your desire. 30 | You can disable this appearance change by disabling the option "Hook Special Tips" under the General tab of the options dialog. 31 | Currently these tips are getting modified, but you can add more if you wish by editing the "TipTac\core.lua" file, look for the "TT_TipsToModify" table. 32 | GameTooltip, ShoppingTooltip1, ShoppingTooltip2, ShoppingTooltip3, ItemRefTooltip, WorldMapTooltip, AtlasLootTooltip and QuestHelperTooltip. 33 | 34 | Other TipTac Addons 35 | ------------------- 36 | There are two other addons, included in the TipTac package, which improves tip functionality in WoW. 37 | First one is "TipTacTalents", which will show player talents in the tip. 38 | The second addon is "TipTacItemRef", which improves the look of the ItemRefTooltip, which is the one shown when clicking on an item, spell or achievement link in the chat. 39 | Please refer to each addon's readme.txt file for more information regarding their functionality. 40 | 41 | Saving Settings Per Character 42 | ----------------------------- 43 | If you prefer to have TipTac configured differently on each of your characters, you will have to manually edit the "TipTac.toc" file. 44 | In this file, you will have to locate "SavedVariables", and change it into "SavedVariablesPerCharacter". You must restart WoW for it to take effect, and it will wipe your current settings. 45 | 46 | Upgraded Item Does Not Show the Correct ItemLevel 47 | ------------------------------------------------- 48 | Preface: It's possible to avoid this issue alltogether by turning off the TipTacItemRef feature to "Show Item Level & ID". 49 | Unfortunately there is no API function to request the upgraded itemLevel of an item, the base itemLevel is always returned. 50 | This is an issue that I've tried to mend, by detecting the upgradeID on the item, and adding the upgraded levels manually. 51 | As new patches gets developed and items are added, new upgrades are introduced, which causes this detection to require an update as well. 52 | If you find an upgraded item that does not show the correct itemLevel, please do the following and report the chat output as well as the correct itemLevel. 53 | /dump 54 | Notice: It's possible that you do not have an addon installed which adds the /dump function to your interface. In such case, it becomes too complicated to explain here how to obtain the upgradeID. 55 | 56 | Lacking Features, Ideas & Problems 57 | ---------------------------------- 58 | - There is an issue with the Chat Frame Hyperlink hooking. 59 | - Add glyph and npc support for the TipTacItemRef addon. 60 | - Colorblind mode does not work properly with owned combat pets with a custom name. 61 | - ItemRefTooltip: Does not support "archaeology". The "currency" type should be supported now, but need verification. 62 | - ItemRefTooltip does not position well if scaled below 1. 63 | - Add hover tips to "GuildBankMessageFrame". 64 | - Add more slash command to change settings, this will allow people to reconfigure TipTac on the fly, without opening the config window. Great for multiple specs etc. 65 | - Sometimes tips may not fade for a mage's mirror images. This happens because GTT:GetUnit() does not return a unit token when you mouse over them. 66 | - Even with the option "Instantly Hide World Frame Tips", some tips still fades out, this is because TipTac uses a "mouse cursor change" event to find out when to instantly hide world tips. 67 | But since not all world objects change the mouse cursor, you wont see tips fading out instantly for them. 68 | - Change the font of the "GameTooltipMoneyFrame" texts. 69 | - Adding a castbar in addition to the already existing health and power bar. 70 | 71 | Solved or Invalid Issues 72 | ------------------------ 73 | - Remove font size delta, add slider for each font size. 74 | - Move the GTT resize code from the OnShow HOOK into the OnUpdate HOOK. Might need to be duplicated, it still need to be in OnShow I think? 75 | - Look into scaling the tooltip height by adding texture lines like "|T:1:30|t". Only issue is that it needs to remain the last line, if another addon adds more lines, it will cause issues. 76 | - Currently doesn't work well with the Russian client, because it is unable to find the level line using the "TT_LevelMatch" pattern. 77 | There is a fix here: http://wow.curseforge.com/addons/tip-tac/tickets/3-overachiever-ru-ru-compatibility/ -------------------------------------------------------------------------------- /TipTac/embeds.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 |