Skip to content

Commit a436d0d

Browse files
committed
- Updated changelog for release
- Version bump - Some fixes
1 parent e2ba61e commit a436d0d

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Pally Power Lite
22

3+
## 1.0.6
4+
5+
- Added Free assignment option
6+
- Added Righteous Fury button in overlay (for prot spec)
7+
- Added addon options (some useful display options)
8+
- Some bug fixes
9+
10+
## 1.0.5
11+
12+
- Alpha work around free assignment, new overlay features and addon options
13+
314
## 1.0.4
415

516
- Fixed error caused on pally with Pally Power leave the party/raid (pallys roster update)

PallyPowerLite.toc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Title: PallyPower Lite
2-
## Version: 1.0.5
2+
## Version: 1.0.6
33
## Author: freegman
44
## Interface: 40400
55
## Notes: Helper for Paladins assignment and tracking buffs and auras in Raid/Party

PallyPowerLiteOptions.lua

+4-1
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,15 @@ PallyPowerLite.options = {
5858
overlay_header = {
5959
name = "Overlay Options",
6060
type = "header",
61-
order = 4
61+
order = 4,
62+
hidden = function(info) return select(2, UnitClass("player")) ~= "PALADIN" end
6263
},
6364
overlay_rf_button = {
6465
name = "Enable RF Button",
6566
desc = "Enables/Disables showing Righteous Fury button in overlay (showing only in tank spec)",
6667
type = "toggle",
6768
order = 5,
69+
hidden = function(info) return select(2, UnitClass("player")) ~= "PALADIN" end,
6870
set = function(info, val)
6971
PallyPowerLite.prof.overlayShowRF = not PallyPowerLite.prof.overlayShowRF
7072
PallyPowerLite:UpdateOverlayLayout()
@@ -76,6 +78,7 @@ PallyPowerLite.options = {
7678
desc = "Resets overlay position (if you lost it)",
7779
type = "execute",
7880
order = 5,
81+
hidden = function(info) return select(2, UnitClass("player")) ~= "PALADIN" end,
7982
func = function(info)
8083
PallyPowerLite.prof.overlayPos.x = 0;
8184
PallyPowerLite.prof.overlayPos.y = 0;

0 commit comments

Comments
 (0)