Skip to content

Commit 3edf8c2

Browse files
committed
chore: update version to v1.1.1
1 parent 7320421 commit 3edf8c2

4 files changed

Lines changed: 24 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [Unreleased]
88

9+
## [1.1.1] - 2026-02-27
10+
11+
### Fixes
12+
13+
- Fix HUD window double-release crash on screen configuration changes
14+
- Fix race condition in VolumeMonitor listener cleanup causing listener leaks on device switch
15+
- Disable implicit CALayer animations in volume blocks for instant visual updates
16+
- Cancel in-flight fade-out animation when showing HUD to prevent flicker
17+
- Sort output devices by name length (shortest first)
18+
19+
### Improvements
20+
21+
- Add `@MainActor` to StatusBarController for stricter concurrency safety
22+
- Reuse VolumeMonitor's AudioDeviceManager for device switching
23+
924
## [1.1.0] - 2025-12-12
1025

1126
### Features

VolumeGrid.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@
334334
CODE_SIGN_ENTITLEMENTS = VolumeGrid/VolumeGrid.entitlements;
335335
CODE_SIGN_STYLE = Automatic;
336336
COMBINE_HIDPI_IMAGES = YES;
337-
CURRENT_PROJECT_VERSION = 11;
337+
CURRENT_PROJECT_VERSION = 12;
338338
DISPLAY_NAME = "Volume Grid";
339339
ENABLE_APP_SANDBOX = YES;
340340
ENABLE_PREVIEWS = YES;
@@ -343,7 +343,7 @@
343343
INFOPLIST_KEY_CFBundleDisplayName = "$(DISPLAY_NAME)";
344344
INFOPLIST_KEY_NSHumanReadableCopyright = "";
345345
LD_RUNPATH_SEARCH_PATHS = "";
346-
MARKETING_VERSION = 1.1.0;
346+
MARKETING_VERSION = 1.1.1;
347347
PRODUCT_BUNDLE_IDENTIFIER = one.eux.volumegrid;
348348
PRODUCT_NAME = "Volume Grid";
349349
REGISTER_APP_GROUPS = YES;
@@ -363,7 +363,7 @@
363363
CODE_SIGN_ENTITLEMENTS = VolumeGrid/VolumeGrid.entitlements;
364364
CODE_SIGN_STYLE = Automatic;
365365
COMBINE_HIDPI_IMAGES = YES;
366-
CURRENT_PROJECT_VERSION = 11;
366+
CURRENT_PROJECT_VERSION = 12;
367367
DISPLAY_NAME = "Volume Grid";
368368
ENABLE_APP_SANDBOX = YES;
369369
ENABLE_PREVIEWS = YES;
@@ -375,7 +375,7 @@
375375
"$(inherited)",
376376
"@executable_path/../Frameworks",
377377
);
378-
MARKETING_VERSION = 1.1.0;
378+
MARKETING_VERSION = 1.1.1;
379379
PRODUCT_BUNDLE_IDENTIFIER = one.eux.volumegrid;
380380
PRODUCT_NAME = "Volume Grid";
381381
REGISTER_APP_GROUPS = YES;

VolumeGrid/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
<key>CFBundlePackageType</key>
1818
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.1.0</string>
20+
<string>1.1.1</string>
2121
<key>CFBundleVersion</key>
22-
<string>11</string>
22+
<string>12</string>
2323
<key>LSMinimumSystemVersion</key>
2424
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
2525
<key>NSMainStoryboardFile</key>

build-dmg.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
set -e
44

5-
VERSION="v1.1.0"
6-
TIMESTAMP="202512121212"
7-
TIMESTAMP_DATE="12/12/2025 12:12:12"
5+
VERSION="v1.1.1"
6+
TIMESTAMP="202602272027"
7+
TIMESTAMP_DATE="02/27/2026 22:22:22"
88

99
IDENTITY=$(security find-identity -p codesigning -v | grep "Apple Development" | head -n 1 | awk -F\" '{print $2}')
1010

0 commit comments

Comments
 (0)