Skip to content

Commit 3fd36ed

Browse files
authored
Merge branch 'v2' into ws-patch
2 parents 4a86210 + d402c38 commit 3fd36ed

File tree

28 files changed

+126
-153
lines changed

28 files changed

+126
-153
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"sql": "patch"
3+
---
4+
5+
Allow blocking on async code without creating a nested runtime.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"eslint-config-prettier": "9.1.0",
2222
"eslint-plugin-security": "3.0.1",
2323
"prettier": "3.3.3",
24-
"rollup": "4.25.0",
24+
"rollup": "4.26.0",
2525
"tslib": "2.8.1",
2626
"typescript": "5.6.3",
2727
"typescript-eslint": "8.14.0"

plugins/autostart/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// SPDX-License-Identifier: Apache-2.0
33
// SPDX-License-Identifier: MIT
44

5-
//! [![](https://github.com/tauri-apps/plugins-workspace/raw/v2/plugins/autostart/banner.png)](https://github.com/tauri-apps/plugins-workspace/tree/v2/plugins/autostart)
6-
//!
75
//! Automatically launch your application at startup. Supports Windows, Mac (via AppleScript or Launch Agent), and Linux.
86
97
#![doc(

plugins/cli/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// SPDX-License-Identifier: Apache-2.0
33
// SPDX-License-Identifier: MIT
44

5-
//! [![](https://github.com/tauri-apps/plugins-workspace/raw/v2/plugins/cli/banner.png)](https://github.com/tauri-apps/plugins-workspace/tree/v2/plugins/cli)
6-
//!
75
//! Parse arguments from your Command Line Interface.
86
//!
97
//! - Supported platforms: Windows, Linux and macOS.

plugins/clipboard-manager/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// SPDX-License-Identifier: Apache-2.0
33
// SPDX-License-Identifier: MIT
44

5-
//! [![](https://github.com/tauri-apps/plugins-workspace/raw/v2/plugins/clipboard-manager/banner.png)](https://github.com/tauri-apps/plugins-workspace/tree/v2/plugins/clipboard-manager)
6-
//!
75
//! Read and write to the system clipboard.
86
97
#![doc(

plugins/dialog/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// SPDX-License-Identifier: Apache-2.0
33
// SPDX-License-Identifier: MIT
44

5-
//! [![](https://github.com/tauri-apps/plugins-workspace/raw/v2/plugins/dialog/banner.png)](https://github.com/tauri-apps/plugins-workspace/tree/v2/plugins/dialog)
6-
//!
75
//! Native system dialogs for opening and saving files along with message dialogs.
86
97
#![doc(

plugins/fs/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// SPDX-License-Identifier: Apache-2.0
33
// SPDX-License-Identifier: MIT
44

5-
//! [![](https://github.com/tauri-apps/plugins-workspace/raw/v2/plugins/fs/banner.png)](https://github.com/tauri-apps/plugins-workspace/tree/v2/plugins/fs)
6-
//!
75
//! Access the file system.
86
97
#![doc(

plugins/geolocation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ import {
100100
requestPermissions,
101101
getCurrentPosition,
102102
watchPosition
103-
} from '@tauri-apps/plugin-log'
103+
} from '@tauri-apps/plugin-geolocation'
104104

105105
let permissions = await checkPermissions()
106106
if (

plugins/global-shortcut/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// SPDX-License-Identifier: Apache-2.0
33
// SPDX-License-Identifier: MIT
44

5-
//! [![](https://github.com/tauri-apps/plugins-workspace/raw/v2/plugins/global-shortcut/banner.png)](https://github.com/tauri-apps/plugins-workspace/tree/v2/plugins/global-shortcut)
6-
//!
75
//! Register global shortcuts.
86
//!
97
//! - Supported platforms: Windows, Linux and macOS.

plugins/http/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// SPDX-License-Identifier: Apache-2.0
33
// SPDX-License-Identifier: MIT
44

5-
//! [![](https://github.com/tauri-apps/plugins-workspace/raw/v2/plugins/http/banner.png)](https://github.com/tauri-apps/plugins-workspace/tree/v2/plugins/http)
6-
//!
75
//! Access the HTTP client written in Rust.
86
97
pub use reqwest;

0 commit comments

Comments
 (0)