From a95aad33d0ced902bb7bc573c1efa7742ce7fb31 Mon Sep 17 00:00:00 2001 From: koekeishiya Date: Wed, 22 Jan 2025 23:19:28 +0100 Subject: [PATCH] v7.1.6 --- CHANGELOG.md | 9 ++++++--- scripts/install.sh | 4 ++-- src/yabai.c | 2 +- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 848f60f4..216dfe35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,14 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [7.1.6] - 2025-01-22 ### Added - New config option `window_insertion_point` to specify where new windows are inserted [#2510](https://github.com/koekeishiya/yabai/issues/2510) ### Changed -- Update scripting addition for macOS Sonoma 14.7.2 [#2497](https://github.com/koekeishiya/yabai/issues/2497) -- Maybe fix issue with patching macOS space switching animation on macOS 14.7 Intel x86-64 [#2440](https://github.com/koekeishiya/yabai/issues/2440) +- Update scripting addition for macOS Sonoma 14.7.2 and Sequoia 15.3 [#2497](https://github.com/koekeishiya/yabai/issues/2497) +- Fix issue with patching macOS space switching animation on macOS 14.7 Intel x86-64 [#2440](https://github.com/koekeishiya/yabai/issues/2440) - Config *global setting* `split_type` is now categorized as a *space setting* instead [#2479](https://github.com/koekeishiya/yabai/issues/2479) - Additional options `x-axis` and `y-axis` can now be used with `config auto_balance` command [#190](https://github.com/koekeishiya/yabai/issues/190) - Minor adjustment to screen-padding and window-gap [#2502](https://github.com/koekeishiya/yabai/issues/2502) @@ -711,7 +713,8 @@ The *window_destroyed* signal is now triggered for windows that are implicitly d ### Added - First official release -[Unreleased]: https://github.com/koekeishiya/yabai/compare/v7.1.5...HEAD +[Unreleased]: https://github.com/koekeishiya/yabai/compare/v7.1.6...HEAD +[7.1.6]: https://github.com/koekeishiya/yabai/compare/v7.1.5...v7.1.6 [7.1.5]: https://github.com/koekeishiya/yabai/compare/v7.1.4...v7.1.5 [7.1.4]: https://github.com/koekeishiya/yabai/compare/v7.1.3...v7.1.4 [7.1.3]: https://github.com/koekeishiya/yabai/compare/v7.1.2...v7.1.3 diff --git a/scripts/install.sh b/scripts/install.sh index ac6f8e04..81b9bef1 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -57,8 +57,8 @@ fi AUTHOR="koekeishiya" NAME="yabai" -VERSION="7.1.5" -EXPECTED_HASH="53e8739318494c10c3585e1ee229db5b3ee5682895ebd947086950b79d162214" +VERSION="7.1.6" +EXPECTED_HASH="1d2b99f53c24056814cb4912ceba89ea54d095a32dabb1096771650c59f6df5c" TMP_DIR="./${AUTHOR}-${NAME}-v${VERSION}-installer" mkdir $TMP_DIR diff --git a/src/yabai.c b/src/yabai.c index d8774676..d809129e 100644 --- a/src/yabai.c +++ b/src/yabai.c @@ -22,7 +22,7 @@ #define MAJOR 7 #define MINOR 1 -#define PATCH 5 +#define PATCH 6 struct signal *g_signal_event[SIGNAL_TYPE_COUNT]; struct process_manager g_process_manager;