Skip to content

Commit 6580ffa

Browse files
committed
docs(changelog): release version 2.3.1
Removes Option+Shift fine-grained control for brightness due to compatibility issues with macOS native behavior and conflicts with ambient light detection. Volume control functionality remains unaffected.
1 parent a5b9226 commit 6580ffa

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic
66

77
## [Unreleased]
88

9+
## [2.3.1] (2025-11-01)
10+
11+
### Removed
12+
13+
- Removes Option+Shift fine-grained control for brightness. I didn't consider the fact that macOS doesn't even natively support this for brightness adjustments, and attempting to implement it caused significant issues with ambient light detection and other false positives. Option+Shift for volume control remains unchanged and fully functional.
14+
915
## [2.3.0] (2025-11-01)
1016

1117
### Added
@@ -192,7 +198,8 @@ Initial release.
192198
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html
193199

194200
<!-- Versions -->
195-
[unreleased]: https://github.com/dannystewart/volumeHUD/compare/v2.3.0...HEAD
201+
[unreleased]: https://github.com/dannystewart/volumeHUD/compare/v2.3.1...HEAD
202+
[2.3.1]: https://github.com/dannystewart/volumeHUD/compare/v2.3.0...v2.3.1
196203
[2.3.0]: https://github.com/dannystewart/volumeHUD/compare/v2.2.0...v2.3.0
197204
[2.2.0]: https://github.com/dannystewart/volumeHUD/compare/v2.1.0...v2.2.0
198205
[2.1.0]: https://github.com/dannystewart/volumeHUD/compare/v2.0.2...v2.1.0

volumeHUD.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@
266266
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
267267
CODE_SIGN_STYLE = Automatic;
268268
COMBINE_HIDPI_IMAGES = YES;
269-
CURRENT_PROJECT_VERSION = 2.3.0;
269+
CURRENT_PROJECT_VERSION = 2.3.1;
270270
DEAD_CODE_STRIPPING = YES;
271271
DEVELOPMENT_TEAM = PL2FTGT24W;
272272
ENABLE_APP_SANDBOX = YES;
@@ -282,7 +282,7 @@
282282
"$(inherited)",
283283
"@executable_path/../Frameworks",
284284
);
285-
MARKETING_VERSION = 2.3.0;
285+
MARKETING_VERSION = 2.3.1;
286286
PRODUCT_BUNDLE_IDENTIFIER = com.dannystewart.volumehud.loginhelper;
287287
PRODUCT_NAME = "$(TARGET_NAME)";
288288
REGISTER_APP_GROUPS = YES;
@@ -303,7 +303,7 @@
303303
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
304304
CODE_SIGN_STYLE = Automatic;
305305
COMBINE_HIDPI_IMAGES = YES;
306-
CURRENT_PROJECT_VERSION = 2.3.0;
306+
CURRENT_PROJECT_VERSION = 2.3.1;
307307
DEAD_CODE_STRIPPING = YES;
308308
DEVELOPMENT_TEAM = PL2FTGT24W;
309309
ENABLE_APP_SANDBOX = YES;
@@ -319,7 +319,7 @@
319319
"$(inherited)",
320320
"@executable_path/../Frameworks",
321321
);
322-
MARKETING_VERSION = 2.3.0;
322+
MARKETING_VERSION = 2.3.1;
323323
PRODUCT_BUNDLE_IDENTIFIER = com.dannystewart.volumehud.loginhelper;
324324
PRODUCT_NAME = "$(TARGET_NAME)";
325325
REGISTER_APP_GROUPS = YES;
@@ -472,7 +472,7 @@
472472
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
473473
CODE_SIGN_STYLE = Automatic;
474474
COMBINE_HIDPI_IMAGES = YES;
475-
CURRENT_PROJECT_VERSION = 2.3.0;
475+
CURRENT_PROJECT_VERSION = 2.3.1;
476476
DEAD_CODE_STRIPPING = YES;
477477
DEVELOPMENT_TEAM = PL2FTGT24W;
478478
ENABLE_APP_SANDBOX = NO;
@@ -490,7 +490,7 @@
490490
"@executable_path/../Frameworks",
491491
);
492492
MACOSX_DEPLOYMENT_TARGET = 26.0;
493-
MARKETING_VERSION = 2.3.0;
493+
MARKETING_VERSION = 2.3.1;
494494
PRODUCT_BUNDLE_IDENTIFIER = com.dannystewart.volumehud.debug;
495495
PRODUCT_NAME = "$(TARGET_NAME)";
496496
REGISTER_APP_GROUPS = YES;
@@ -512,7 +512,7 @@
512512
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
513513
CODE_SIGN_STYLE = Automatic;
514514
COMBINE_HIDPI_IMAGES = YES;
515-
CURRENT_PROJECT_VERSION = 2.3.0;
515+
CURRENT_PROJECT_VERSION = 2.3.1;
516516
DEAD_CODE_STRIPPING = YES;
517517
DEVELOPMENT_TEAM = PL2FTGT24W;
518518
ENABLE_APP_SANDBOX = NO;
@@ -530,7 +530,7 @@
530530
"@executable_path/../Frameworks",
531531
);
532532
MACOSX_DEPLOYMENT_TARGET = 26.0;
533-
MARKETING_VERSION = 2.3.0;
533+
MARKETING_VERSION = 2.3.1;
534534
PRODUCT_BUNDLE_IDENTIFIER = com.dannystewart.volumehud;
535535
PRODUCT_NAME = "$(TARGET_NAME)";
536536
REGISTER_APP_GROUPS = YES;

0 commit comments

Comments
 (0)