You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@ Release: dd.mm.yyyy
10
10
11
11
-**Breaking:** Phoenix now requires macOS Big Sur (11) or higher (required by Xcode 16).
12
12
-**Breaking:** Function `App#launch(...)` is now asynchronous and the function does not return the app. Pass a callback function as the third argument to receive the app after launching.
13
+
-**Breaking:** Moving windows between spaces is not anymore supported if you have macOS 13.6+, 14.5+ or 15.0+ ([#354](https://github.com/kasper/phoenix/issues/354)).
13
14
- Upgrade Sparkle to 2.7.1.
14
15
- Xcode 16 is now required for building.
15
16
@@ -19,6 +20,10 @@ Release: dd.mm.yyyy
19
20
20
21
- Change: Function `launch(...)` is now asynchronous and the function does not return the app. Pass a callback function as the third argument to receive the app after launching.
21
22
23
+
### Space
24
+
25
+
- Deprecation: Function `Space#moveWindows` is not anymore supported if you have macOS 13.6+, 14.5+ or 15.0+. Apple has restricted the access for 3rd party apps to call the relevant APIs ([#354](https://github.com/kasper/phoenix/issues/354)).
Copy file name to clipboardExpand all lines: docs/docs/api/space.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ Use the Space to control spaces. *These features are only supported on El Capita
6
6
You can switch to a space by focusing on a window in that space. By default, macOS also supports the keyboard shortcut <kbd>Control</kbd> + <kbd>←/→</kbd> to navigate between spaces.
7
7
:::
8
8
9
+
:::warning Moving Windows Between Spaces
10
+
Moving windows between spaces is not anymore supported if you have macOS 13.6+, 14.5+ or 15.0+. Apple has restricted the access for 3rd party apps to call the relevant APIs.
11
+
:::
12
+
9
13
## Interface
10
14
11
15
```javascript
@@ -41,7 +45,7 @@ end
41
45
42
46
### 3.0.0+
43
47
44
-
-`moveWindows(Array<Window> windows)` moves the given windows to the space (macOS 10.13+)
48
+
-`moveWindows(Array<Window> windows)` moves the given windows to the space (macOS 10.13+, <13.6, <14.5, <15.0)
0 commit comments