Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support visionOS. #8755

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .changes/beta.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
"tauri": major:feat
"tauri-plugin": major:feat
"tauri-build": major:feat
"tauri-utils": major:feat
"tauri-codegen": major:feat
"tauri-macros": major:feat
"tauri-runtime": major:feat
"tauri-runtime-wry": major:feat
"tauri-cli": major:feat
"@tauri-apps/api": major:feat
"@tauri-apps/cli": major:feat
'tauri': major:feat
'tauri-plugin': major:feat
'tauri-build': major:feat
'tauri-utils': major:feat
'tauri-codegen': major:feat
'tauri-macros': major:feat
'tauri-runtime': major:feat
'tauri-runtime-wry': major:feat
'tauri-cli': major:feat
'@tauri-apps/api': major:feat
'@tauri-apps/cli': major:feat
---

Move to beta!
2 changes: 1 addition & 1 deletion .changes/fix-process-ipc-message-fn.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"tauri": patch:bug
'tauri': patch:bug
---

Fix regression on the JavaScript code that processes the IPC message.
5 changes: 1 addition & 4 deletions .changes/pre.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"tag": "beta",
"changes": [
".changes/beta.md",
".changes/fix-process-ipc-message-fn.md"
]
"changes": [".changes/beta.md", ".changes/fix-process-ipc-message-fn.md"]
}
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

Tauri is a framework for building tiny, blazingly fast binaries for all major desktop platforms. Developers can integrate any front-end framework that compiles to HTML, JS and CSS for building their user interface. The backend of the application is a rust-sourced binary with an API that the front-end can interact with.

The user interface in Tauri apps currently leverages [`tao`](https://docs.rs/tao) as a window handling library on macOS, Windows, Linux, Android and iOS. To render your application, Tauri uses [WRY](https://github.com/tauri-apps/wry), a library which provides a unified interface to the system webview, leveraging WKWebView on macOS & iOS, WebView2 on Windows, WebKitGTK on Linux and Android System WebView on Android.
The user interface in Tauri apps currently leverages [`tao`](https://docs.rs/tao) as a window handling library on macOS, Windows, Linux, Android, visionOS and iOS. To render your application, Tauri uses [WRY](https://github.com/tauri-apps/wry), a library which provides a unified interface to the system webview, leveraging WKWebView on macOS, iOS, and visionOS. WebView2 on Windows, WebKitGTK on Linux and Android System WebView on Android.

To learn more about the details of how all of these pieces fit together, please consult this [ARCHITECTURE.md](https://github.com/tauri-apps/tauri/blob/dev/ARCHITECTURE.md) document.

Expand Down Expand Up @@ -50,6 +50,7 @@ Tauri currently supports development and distribution on the following platforms
| Linux | webkit2gtk 4.0 for Tauri v1 (for example Ubuntu 18.04). webkit2gtk 4.1 for Tauri v2 (for example Ubuntu 22.04). |
| iOS/iPadOS (alpha) | 9 and above |
| Android (alpha) | 7 and above |
| visionOS (indev) | 1 and above |

## Contributing

Expand Down