Commit graph

38 commits

Author SHA1 Message Date
NoM0Re
05f060140a
5.21.0
(cherry picked from commit 0b28c5780e55ac544c1acace487aad0a8d8faf28)
2026-02-16 11:43:44 -07:00
NoM0Re
83c8ebe861
5.20.7
(cherry picked from commit 384e558df3ea25bab143ccc4043b91b5e7454e62)
2026-02-16 08:28:24 -07:00
NoM0Re
205567502a
5.20.6
(cherry picked from commit eab1d48d6c69b02d61644eaaa837cbb2c4b021e8)
2026-02-16 08:20:31 -07:00
NoM0Re
7c7fafe5a8
5.20.5 2025-10-09 21:17:44 +02:00
NoM0Re
6b4787d32b 5.20.4 2025-09-14 20:42:51 +02:00
NoM0Re
348bcce594
5.20.3 2025-09-13 18:02:26 +02:00
NoM0Re
32cab1aa27
5.20.2 2025-08-15 22:05:16 +02:00
NoM0Re
727747ad1d
5.20.1 2025-08-06 01:44:29 +02:00
NoM0Re
d6ae3e020b
5.20.0 2025-07-22 16:49:18 +02:00
NoM0Re
6286e86931
5.19.12 2025-06-18 20:06:36 +02:00
NoM0Re
758dfdce86
5.19.11 2025-06-09 01:19:48 +02:00
NoM0Re
0c528b2607
5.19.10-10-g7ac7dc8 2025-06-08 22:27:10 +02:00
NoM0Re
bda851552d
5.19.10 2025-05-31 22:54:39 +02:00
NoM0Re
709671d706 5.19.9
forgot locales
2025-04-25 19:46:09 +02:00
NoM0Re
51bac56479
5.19.8 2025-04-13 16:03:55 +02:00
NoM0Re
a595ef2a4a 5.19.7 2025-04-04 09:55:04 +02:00
NoM0Re
6cdfcac1b1
5.19.6 2025-04-03 21:03:11 +02:00
NoM0Re
3c574cb4a6
5.19.5
No new features this release, just fixes to some minor bugs.
2025-03-14 00:48:30 +01:00
NoM0Re
7c7869494e
5.19.3
Add methods to the states/allstates table that helps with creating,
updating or remove states in an optimized way

## Advantage of using this function instead of doing a states[key] = {
... }

- If already created, update existing state, and return true if any
value was changed, this can help reduce amount of resources an aura use

- Automatically `return true` when using these functions and any change
was made

## Examples

```Lua
function(states, event, ...)
    if event == "PLAYER_TARGET_CHANGED" then
        if UnitExists("target") then
            -- if state exists it's updated, not replaced
            -- show & changed fields can be skipped
            states:Update("", {
                    name = UnitName("target"),
                    duration = 5,
                    expirationTime = GetTime() + 5,
                    progressType = "timed",
                    autoHide = true
            })
        else
            -- wipe
            states:RemoveAll()
        end
    end
    -- no need to return true
end
```

with clones

```Lua
function(states, event, ...)
    local currentEssence = UnitPower("player", Enum.PowerType.Essence)
    local maxEssence = UnitPowerMax("player", Enum.PowerType.Essence)
    for i = 1, 6 do
        if i > maxEssence then
            states:Remove(i) -- wipe allstates[6]
        else
            local value = currentEssence >= i and 1 or 0
            local newState = {
                progressType = "static",
                value = value,
                total = 1
            }
            states:Update(i, newState)
        end
    end
    -- no need to return true
end
```
2025-02-24 22:10:45 +01:00
NoM0Re
ac56d8816a Version Bump to 5.19.2, Introduce Talent Widget in Load, Rework Talent Known Trigger 2025-02-23 01:21:25 +01:00
NoM0Re
d3c8a9bf3e Make LibGroupTalents work now, but still requires regressions
Arguments might still shut be shared from the original call for custom auras.
More functions need to be added to prototypes.
Documentation is needed soon.
2025-02-06 21:31:45 +01:00
NoM0Re
95a13c6896 fix libs not loading, use libgrouptalents, but still not working 2025-02-01 20:17:50 +01:00
NoM0Re
dcd0f833ac from retail 2025-01-26 12:33:16 +01:00
NoM0Re
794d8eef84 from retail 2025-01-11 20:23:49 +01:00
NoM0Re
65383b8664 from retail 2025-01-11 18:24:34 +01:00
NoM0Re
7a185106f2 from retail 2025-01-06 19:47:37 +01:00
NoM0Re
8375cfa0a7 from retail 2025-01-06 12:53:01 +01:00
NoM0Re
13f734038d
Multientry (#7)
* from retail

* from retail

* from retail

* from retail

* from retail

* from retail

* remove new threat functions as they are not well implemented for now
2024-11-27 12:09:02 +01:00
NoM0Re
eb8221cf89 add missing locales of f85f2dc1ef 2024-10-12 15:33:27 +02:00
ManneN
f85f2dc1ef
Backport event TRIGGER:x support from mainline
3ab97ddce4 (diff-06c2316487fbaca0f482a162e763ad96ce5624a012a6d5417653b2068d144dfdR119)
2024-10-06 20:14:40 +02:00
NoM0Re
1bf07b7fea fix of 048a400 location localisation in wrong addon 2024-07-06 18:12:27 +02:00
NoM0Re
048a400c34 adding location trigger/load options 2024-07-06 18:05:30 +02:00
NoM0Re
9bc27cada2 add handling for non awesome_wotlk user 2024-07-01 19:37:29 +02:00
Bunny67
e7e789686a from retail 2022-05-19 22:04:17 +03:00
Artur
db2b53766a locales: update ruRU 2021-06-17 00:21:22 +03:00
Bunny67
6e530142d3 from retail 2021-03-07 19:42:16 +03:00
Bunny67
7cbc40c959 beta 2020-11-15 23:43:10 +03:00
Bunny67
f2e1a0928d init 2020-06-02 23:40:06 +03:00