Skip to content

Commit

Permalink
CL
Browse files Browse the repository at this point in the history
  • Loading branch information
Nils89 committed Oct 2, 2024
1 parent c1d4cab commit 91f7f40
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 24 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
7.6.0
NEW
- Add option to shorten healtglobe shield values
- Add option to hide player frame at party grid
- Add option to hide class icons at grids, if no class color is used

FIXES
- Fix drawn layer of lfg accept button
- Fix BigWigs integration

CHANGES
- Add Monk hero talent to dodgebar
- Update some skins
- Added theather event timer bar to objectices tracker

7.5.0
NEW
- Add option to shorten values, like health values or damage text
Expand Down
32 changes: 9 additions & 23 deletions CHANGELOG_NEW_VERSION.txt
Original file line number Diff line number Diff line change
@@ -1,28 +1,14 @@
7.5.0
7.6.0
NEW
- Add option to shorten values, like health values or damage text
- Option to shorten healtglobe shield values
- Add option to hide player frame at party grid
- Add option to hide class icons at grids, if no class color is used

FIXES
- Fix new font settings
- fix LSM with new fonts

7.4.0
NEW
- New Font system
- You can now select between multiple different font styles (to select the font like before this update, use 'GW2 Legacy')
- You can select your own fonts for texts and header texts
- You can adjust the font size for: Big Headers, Header, Normal and Small texts
- Tooltips gets font size option for all 3 types
- Added TWW events to the event tracker
- Added auction house skin
- Added fx animation to the dynamic hud (not all classes yet)
- Added remaning live to delve tracker
- Find an small easter agg with the GW2 settings splash screen

FIXES
- Fix barber shop skin
- Fix drawn layer of lfg accept button
- Fix BigWigs integration

CHANGES
- Add DK hero talent to dodgebar
- Update some textures
- Update some skins
- Add Monk hero talent to dodgebar
- Update some skins
- Added theather event timer bar to objectices tracker
10 changes: 10 additions & 0 deletions changelog.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@ AddChange(string addonVersion, table changeList)
}
]]

addChange("7.6.0",{
{ct.feature, [=[Add option to shorten healtglobe shield values]=]},
{ct.feature, [=[Add option to hide player frame at party grid]=]},
{ct.feature, [=[Add option to hide class icons at grids, if no class color is used]=]},
{ct.bug, [=[Fix drawn layer of lfg accept button]=]},
{ct.bug, [=[Fix BigWigs integration]=]},
{ct.change, [=[Add Monk hero talent to dodgebar]=]},
{ct.change, [=[Added theather event timer bar to objectices tracker]=]},
{ct.change, [=[Update some skins]=]},
})

addChange("7.5.0",{
{ct.feature, [=[Add option to shorten values, like health values or damage text]=]},
Expand Down
2 changes: 1 addition & 1 deletion mainbar/dodgebar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ DODGEBAR_SPELLS["SHAMAN"] = "[spec:2] 58875,2645" -- Spirit Walk if Enhance
DODGEBAR_SPELLS["MAGE"] = "[talent:2/2] 212653; 1953" -- Shimmer if talented, else Blink
DODGEBAR_SPELLS_ATTR["MAGE"] = "1953" -- use Blink instead of Shimmer for the button attr
DODGEBAR_SPELLS["WARLOCK"] = "48020" -- Demonic Circle: Teleport; TODO disable when Demonic Circle buff not active
DODGEBAR_SPELLS["MONK"] = "[talent:2/2] 115008; 109132" -- Chi Torpedo if talented, else Roll
DODGEBAR_SPELLS["MONK"] = "115008; 109132" -- Chi Torpedo if talented, else Roll
DODGEBAR_SPELLS_ATTR["MONK"] = "109132" -- use Roll instead of Chi Torpedo for the button attr
DODGEBAR_SPELLS["DRUID"] = "[talent:2/1] 252216; [talent:2/3,form:1] 16979; [talent:2/3,form:2] 49376; [talent:2/3,form:3,swimming] 102416; [talent:2/3,form:3] 102417; [talent:2/3,form:4] 102383; [talent:2/3] 102401; 1850" -- Tiger Dash if talented, else Wild Charge if talented (with all its sub-details for different forms), else Dash
DODGEBAR_SPELLS_ATTR["DRUID"] = "[talent:2/3] 102401; 1850" -- use Dash (instead of Tiger Dash) and Wild Charge baseline(instead of form-specific talents) for the button attr
Expand Down
23 changes: 23 additions & 0 deletions social/social.lua
Original file line number Diff line number Diff line change
Expand Up @@ -446,6 +446,29 @@ local function loadBaseFrame()
-- set binding change handlers
fmGSW.secure:HookScript("OnEvent", click_OnEvent)
fmGSW.secure:RegisterEvent("UPDATE_BINDINGS")

fmGSW.backgroundMask = UIParent:CreateMaskTexture()
fmGSW.backgroundMask:SetPoint("TOPLEFT", fmGSW, "TOPLEFT", -64, 64)
fmGSW.backgroundMask:SetPoint("BOTTOMRIGHT", fmGSW, "BOTTOMLEFT",-64, 0)
fmGSW.backgroundMask:SetTexture("Interface/AddOns/GW2_UI/textures/masktest", "CLAMPTOBLACKADDITIVE", "CLAMPTOBLACKADDITIVE")
fmGSW.background:AddMaskTexture(fmGSW.backgroundMask)

fmGSW:HookScript("OnShow", function()
GW.AddToAnimation("SOCIALPANEL_ONSHOW",
0,
1,
GetTime(),
GW.WINDOW_FADE_DURATION,
function(p)
fmGSW:SetAlpha(p)
fmGSW.backgroundMask:SetPoint("BOTTOMRIGHT", fmGSW.background, "BOTTOMLEFT", GW.lerp(-64, fmGSW.background:GetWidth(), p) , 0)
end,
1,
function()
fmGSW.backgroundMask:SetPoint("BOTTOMRIGHT", fmGSW.background, "BOTTOMLEFT", fmGSW.background:GetWidth() + 200, 0)
end
)
end)
end
GW.AddForProfiling("social", "loadBaseFrame", loadBaseFrame)

Expand Down

0 comments on commit 91f7f40

Please sign in to comment.