Skip to content

Commit

Permalink
Merge branch 'v2' into fix/deb_update
Browse files Browse the repository at this point in the history
  • Loading branch information
jLynx authored Nov 24, 2024
2 parents a6b9da7 + a3b553d commit 9c5eaef
Show file tree
Hide file tree
Showing 100 changed files with 4,256 additions and 1,332 deletions.
10 changes: 10 additions & 0 deletions .changes/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
"dialog",
"fs",
"global-shortcut",
"opener",
"http",
"nfc",
"notification",
Expand All @@ -87,6 +88,7 @@
"dialog-js",
"fs-js",
"global-shortcut-js",
"opener-js",
"http-js",
"nfc-js",
"notification-js",
Expand Down Expand Up @@ -186,6 +188,14 @@
"path": "./plugins/global-shortcut",
"manager": "javascript"
},
"opener": {
"path": "./plugins/opener",
"manager": "rust"
},
"opener-js": {
"path": "./plugins/opener",
"manager": "javascript"
},
"haptics": {
"path": "./plugins/haptics",
"manager": "rust"
Expand Down
6 changes: 6 additions & 0 deletions .changes/fix-fs-scope-escape-paths.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
fs: minor
persisted-scope: minor
---

**Breaking Change:** Replaced the custom `tauri_plugin_fs::Scope` struct with `tauri::fs::Scope`.
6 changes: 6 additions & 0 deletions .changes/fs-perf.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"fs": "patch"
"fs-js": "patch"
---

Improve performance of `readTextFile` and `readTextFileLines` APIs
7 changes: 7 additions & 0 deletions .changes/fs-readable-stream.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"fs": "patch"
"fs-js": "patch"
---

Add support for using `ReadableStream<Unit8Array>` with `writeFile` API.

5 changes: 5 additions & 0 deletions .changes/http-tracing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"http": "patch"
---

Add tracing logs for requestes and responses behind `tracing` feature flag.
6 changes: 6 additions & 0 deletions .changes/opener-initial.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"opener": "major"
"opener-js": "major"
---

Initial Release
6 changes: 6 additions & 0 deletions .changes/positioner-move-window-constrained-js.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"positioner-js": minor
---

Add `moveWindowConstrained` function that is similar to `moveWindow` but constrains the window to the screen dimensions in case of tray icon positions.

6 changes: 6 additions & 0 deletions .changes/positioner-move-window-constrained.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"positioner": minor
---

Add `WindowExt::move_window_constrained` method that is similar to `WindowExt::move_window` but constrains the window to the screen dimensions in case of tray icon positions.

4 changes: 4 additions & 0 deletions .github/workflows/check-generated-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ jobs:
- .github/workflows/check-generated-files.yml
- plugins/global-shortcut/guest-js/**
- plugins/global-shortcut/src/api-iife.js
opener:
- .github/workflows/check-generated-files.yml
- plugins/opener/guest-js/**
- plugins/opener/src/api-iife.js
haptics:
- .github/workflows/check-generated-files.yml
- plugins/haptics/guest-js/**
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/lint-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ jobs:
tauri-plugin-global-shortcut:
- .github/workflows/lint-rust.yml
- plugins/global-shortcut/**
tauri-plugin-opener:
- .github/workflows/lint-rust.yml
- plugins/opener/**
tauri-plugin-haptics:
- .github/workflows/lint-rust.yml
- plugins/haptics/**
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ jobs:
- .github/workflows/test-rust.yml
- Cargo.toml
- plugins/global-shortcut/**
tauri-plugin-opener:
- .github/workflows/test-rust.yml
- Cargo.toml
- plugins/opener/**
tauri-plugin-haptics:
- .github/workflows/test-rust.yml
- Cargo.toml
Expand Down
Loading

0 comments on commit 9c5eaef

Please sign in to comment.