diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 774dd3be9..da9a2cd5c 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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 diff --git a/CHANGELOG_NEW_VERSION.txt b/CHANGELOG_NEW_VERSION.txt index ded89c86a..9ed6b8177 100644 --- a/CHANGELOG_NEW_VERSION.txt +++ b/CHANGELOG_NEW_VERSION.txt @@ -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 \ No newline at end of file + - Add Monk hero talent to dodgebar + - Update some skins + - Added theather event timer bar to objectices tracker \ No newline at end of file diff --git a/changelog.lua b/changelog.lua index 8ddb259c0..2bccb46ae 100644 --- a/changelog.lua +++ b/changelog.lua @@ -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]=]}, diff --git a/mainbar/dodgebar.lua b/mainbar/dodgebar.lua index f0bc68ce3..7e33e81b3 100644 --- a/mainbar/dodgebar.lua +++ b/mainbar/dodgebar.lua @@ -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 diff --git a/social/social.lua b/social/social.lua index 2ff8177e3..68ec0d308 100644 --- a/social/social.lua +++ b/social/social.lua @@ -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)