Skip to content

Commit

Permalink
5.2.152-RC
Browse files Browse the repository at this point in the history
  • Loading branch information
Goldpaw committed Jan 4, 2024
1 parent bedb985 commit 0a0f094
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AzeriteUI/Libs/oUF_Plugins/oUF_PriorityDebuff.lua
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ local function UpdateDispelTypes(self, event, unit, ...)
-- A 'change' of -1 indicates one used (learning a talent)
-- A 'change' of 1 indicates one gained (leveling)
local change = ...
if (change > 0) then return end
if (change and change > 0) then return end -- sometimes this can be nil, for some reason.
end

local dispelTypes
Expand Down
2 changes: 1 addition & 1 deletion AzeriteUI/Options/Options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ end

Options.OpenOptionsMenu = function(self)
if (AceConfigRegistry:GetOptionsTable(Addon)) then
AceConfigDialog:SetDefaultSize(Addon, 880, 960)
AceConfigDialog:SetDefaultSize(Addon, 880, 720)
AceConfigDialog:Open(Addon)
end
end
Expand Down
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,19 @@ All notable changes to this project will be documented in this file. Be aware th
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased] 2023-12-23
## [Unreleased] 2024-01-04
- The features listed here are not yet available in the public builds, nor directly accessible even through the GitHub development versions. They are listed here primarily as a preview of what's to come.

### Added
- Added an alternate version of the player unit frame with its own options and position. Accessible by first disabling the player unit frame, then enabling this element. Currently only available through git version with development mode enabled.
- Started work on export/import functionality for the options menu and movable frame panel. The goal is to allow both complete profile copies, select modules or settings, or just copy a set of movable frame positions/scales. Will take a little time and work to finish!

## [5.2.152-RC] 2024-01-04
### Added
- Added an alternate version of the player unit frame with its own options and position. Accessible by first disabling the player unit frame, then enabling this element. Currently only available through git version with development mode enabled.

### Fixed
- Fixed an issue where changes to a character's talent points sometimes would cause an error.

## [5.2.151-RC] 2023-12-22
### Added
- You can now lock frames to specific anchor points from within the `/lock` interface, keeping them always relative to your selection portion of the screen. This feature is a part of the preparation for the upcoming profile and layout sharing features, where having the ability to lock frames to specific anchor points will make the layouts far more compatible with multiple screen setups.
Expand Down

0 comments on commit 0a0f094

Please sign in to comment.