Skip to content

Commit 9868ae3

Browse files
committed
v7.1.16
1 parent 3861367 commit 9868ae3

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
66

77
## [Unreleased]
88

9+
## [7.1.16] - 2025-10-07
10+
### Changed
11+
- Preliminary support for macOS Tahoe (mostly for Apple Silicon) [#2634](https://github.com/koekeishiya/yabai/issues/2634) [#2680](https://github.com/koekeishiya/yabai/issues/2680)
12+
913
## [7.1.15] - 2025-05-18
1014
### Changed
1115
- Fetching NSRunningApplication for some processes will fail randomly; delay and retry when this happens [#2595](https://github.com/koekeishiya/yabai/issues/2595)
@@ -760,7 +764,8 @@ The *window_destroyed* signal is now triggered for windows that are implicitly d
760764
### Added
761765
- First official release
762766

763-
[Unreleased]: https://github.com/koekeishiya/yabai/compare/v7.1.15...HEAD
767+
[Unreleased]: https://github.com/koekeishiya/yabai/compare/v7.1.16...HEAD
768+
[7.1.16]: https://github.com/koekeishiya/yabai/compare/v7.1.15...v7.1.16
764769
[7.1.15]: https://github.com/koekeishiya/yabai/compare/v7.1.14...v7.1.15
765770
[7.1.14]: https://github.com/koekeishiya/yabai/compare/v7.1.13...v7.1.14
766771
[7.1.13]: https://github.com/koekeishiya/yabai/compare/v7.1.12...v7.1.13

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Make sure you fulfil all of them before filing an issue.
4747
|Requirement|Note|
4848
|-:|:-|
4949
|Operating System Intel x86-64|Big Sur 11.0.0+, Monterey 12.0.0+, Ventura 13.0.0+, Sonoma 14.0.0+, and Sequoia 15.0+ is supported.|
50-
|Operating System Apple Silicon|Monterey 12.0.0+, Ventura 13.0.0+, Sonoma 14.0.0+, and Sequoia 15.0+ is supported.|
50+
|Operating System Apple Silicon|Monterey 12.0.0+, Ventura 13.0.0+, Sonoma 14.0.0+, Sequoia 15.0+, and Tahoe 26.0+ is supported.|
5151
|Accessibility API|yabai must be given permission to utilize the Accessibility API and will request access upon launch. The application must be restarted after access has been granted.|
5252
|Screen Recording|yabai must be given Screen Recording permission if and only if you want to enable window animations, and will request access when necessary. The application must be restarted after access has been granted.|
5353
|System Preferences (macOS 11.x, 12.x)|In the Mission Control pane, the setting "Displays have separate Spaces" must be enabled.|

scripts/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ fi
5757

5858
AUTHOR="koekeishiya"
5959
NAME="yabai"
60-
VERSION="7.1.15"
61-
EXPECTED_HASH="865009aa5c1c52635b5b6805634ce574080cd581101dea4ef1280739c34b8f02"
60+
VERSION="7.1.16"
61+
EXPECTED_HASH="c4d5e31ad18afc8b46aa4cdaf5639088f044c72b3852787e9633db12d31a606b"
6262
TMP_DIR="./${AUTHOR}-${NAME}-v${VERSION}-installer"
6363

6464
mkdir $TMP_DIR

src/yabai.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
#define MAJOR 7
2424
#define MINOR 1
25-
#define PATCH 15
25+
#define PATCH 16
2626

2727
struct signal *g_signal_event[SIGNAL_TYPE_COUNT];
2828
struct process_manager g_process_manager;

0 commit comments

Comments
 (0)