Skip to content

Commit

Permalink
v7.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
koekeishiya committed Mar 30, 2024
1 parent 82727a2 commit 14cd639
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ 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.0.4] - 2024-03-30
### Changed
- Consecutive window resize operations would not work correctly because it used a cached value for the window frame [#2182](https://github.com/koekeishiya/yabai/issues/2182)
- Fix weird delay caused by interaction between macOS System APIs on Sonoma when using `--insert` in combination with other commands in rapid succession [#2188](https://github.com/koekeishiya/yabai/issues/2188)
Expand Down Expand Up @@ -655,7 +657,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.0.3...HEAD
[Unreleased]: https://github.com/koekeishiya/yabai/compare/v7.0.4...HEAD
[7.0.4]: https://github.com/koekeishiya/yabai/compare/v7.0.3...v7.0.4
[7.0.3]: https://github.com/koekeishiya/yabai/compare/v7.0.2...v7.0.3
[7.0.2]: https://github.com/koekeishiya/yabai/compare/v7.0.1...v7.0.2
[7.0.1]: https://github.com/koekeishiya/yabai/compare/v7.0.0...v7.0.1
Expand Down
4 changes: 2 additions & 2 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ fi

AUTHOR="koekeishiya"
NAME="yabai"
VERSION="7.0.3"
EXPECTED_HASH="6fe869fa40272eab258e3c2d83b4725ae2974fa0f6d85be7a8490fa8b51918ab"
VERSION="7.0.4"
EXPECTED_HASH="73ef776109c9b7d4d08fba6363cc75d59730db9ad0c21fe51e386159aa94d21b"
TMP_DIR="./${AUTHOR}-${NAME}-v${VERSION}-installer"

mkdir $TMP_DIR
Expand Down
2 changes: 1 addition & 1 deletion src/yabai.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#define MAJOR 7
#define MINOR 0
#define PATCH 3
#define PATCH 4

struct signal *g_signal_event[SIGNAL_TYPE_COUNT];
struct process_manager g_process_manager;
Expand Down

0 comments on commit 14cd639

Please sign in to comment.