Skip to content

Commit 688e750

Browse files
committed
Merge branch 'development'
2 parents ee4d54d + 1cc55c2 commit 688e750

File tree

9 files changed

+368
-189
lines changed

9 files changed

+368
-189
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.0.6
2+
* Changed bar updates to be buffered to make several consequential gains update properly.
3+
* Fixed percentage showing remaining number instead of current value when using current & max value text mode.
4+
* Fixed text not updating when resetting experience session.
5+
16
## 2.0.5
27
* Clamp drop down menu within screen area.
38
* Fixed experience bar for when expansion releases (to work without relogin or reload, obviously untested though).

Experiencer.toc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
## Title: Experiencer
33
## Notes: Simple and Advanced Experience and Reputation Progress Bar
44
## Author: Sonaza
5-
## Version: 2.0.5
5+
## Version: 2.0.6
66
## OptionalDeps: Ace3
77
## SavedVariables: ExperiencerDB, ExperiencerDB_module_experience, ExperiencerDB_module_reputation, ExperiencerDB_module_artifact, ExperiencerDB_module_honor
88

Frame.xml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,25 @@
5959
<Frame name="$parentBars" parentKey="bars" setAllPoints="true" hidden="true">
6060
<Frames>
6161
<StatusBar name="$parentRested" parentKey="rested" inherits="ExperiencerBarTemplate" hidden="true"/>
62-
<StatusBar name="$parentVisual" parentKey="visual" inherits="ExperiencerBarTemplate" hidden="true">
62+
<StatusBar name="$parentVisualPrimary" parentKey="visualPrimary" inherits="ExperiencerBarTemplate" hidden="true">
6363
<BarTexture file="Interface\AddOns\Experiencer\Media\BarTextureStriped" horizTile="true" alphaMode="ADD"/>
6464
</StatusBar>
65+
<StatusBar name="$parentVisualSecondary" parentKey="visualSecondary" inherits="ExperiencerBarTemplate" hidden="true">
66+
<BarTexture file="Interface\AddOns\Experiencer\Media\BarTextureStripedOpposite" horizTile="true" alphaMode="ADD"/>
67+
</StatusBar>
6568
<StatusBar name="$parentChange" parentKey="change" inherits="ExperiencerBarTemplate">
6669
<BarTexture file="Interface\AddOns\Experiencer\Media\BarTexture" alphaMode="ADD"/>
6770
<Animations>
6871
<AnimationGroup parentKey="fadegain" setToFinalAlpha="true">
69-
<Alpha fromAlpha="0" toAlpha="1" duration="0.4" order="1" smoothing="IN_OUT"/>
70-
<Alpha fromAlpha="1" toAlpha="0" duration="0.6" order="2" smoothing="IN_OUT"/>
72+
<Alpha fromAlpha="0" toAlpha="1" duration="0.15" order="1" smoothing="IN_OUT"/>
73+
<Alpha fromAlpha="1" toAlpha="0" duration="0.8" order="2" smoothing="IN_OUT"/>
74+
</AnimationGroup>
75+
<AnimationGroup parentKey="fadegain_in" setToFinalAlpha="true">
76+
<Alpha fromAlpha="0" toAlpha="1" duration="0.25" order="1" smoothing="IN_OUT"/>
77+
<Alpha fromAlpha="1" toAlpha="1" duration="1.00" order="2" smoothing="IN_OUT"/>
78+
</AnimationGroup>
79+
<AnimationGroup parentKey="fadegain_out" setToFinalAlpha="true">
80+
<Alpha fromAlpha="1" toAlpha="0" duration="0.8" order="1" smoothing="IN_OUT"/>
7181
</AnimationGroup>
7282
<AnimationGroup parentKey="fadeloss" setToFinalAlpha="true">
7383
<Alpha fromAlpha="1" toAlpha="1" duration="0.15" order="1" smoothing="IN_OUT"/>

Media/BarTextureStripedOpposite.tga

236 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)