Skip to content

Commit 271413e

Browse files
authored
Merge branch 'v2' into feat/recent-doc
2 parents fc416f3 + 1bb7beb commit 271413e

51 files changed

Lines changed: 567 additions & 198 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
deep-link: patch
3+
deep-link-js: patch
4+
---
5+
6+
Fix broken iOS custom URL schemes
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"opener": patch
3+
"opener-js": patch
4+
---
5+
6+
Fix `revealItemInDir`/`reveal_items_in_dir` can't reveal network paths like `\\wsl.localhost\Ubuntu\etc` on Windows
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
store: patch
3+
store-js: patch
4+
---
5+
6+
Fix a deadlock when calling `Store::set` while exiting (on `RunEvent::Exit`)

Cargo.lock

Lines changed: 16 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This repo and all plugins require a Rust version of at least **1.77.2**
2222
| [log](plugins/log) | Configurable logging. ||||||
2323
| [nfc](plugins/nfc) | Read and write NFC tags on Android and iOS. | ? | ? | ? |||
2424
| [notification](plugins/notification) | Send message notifications (brief auto-expiring OS window element) to your user. Can also be used with the Notification Web API. ||||||
25-
| [opener](plugins/opener) | Open files and URLs using their default application. |||| ? | ? |
25+
| [opener](plugins/opener) | Open files and URLs using their default application. |||| | |
2626
| [os](plugins/os) | Read information about the operating system. ||||||
2727
| [persisted-scope](plugins/persisted-scope) | Persist runtime scope changes on the filesystem. |||| ? | ? |
2828
| [positioner](plugins/positioner) | Move windows to common locations. ||||||

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
"@rollup/plugin-node-resolve": "16.0.3",
1616
"@rollup/plugin-terser": "1.0.0",
1717
"@rollup/plugin-typescript": "12.3.0",
18-
"eslint": "10.1.0",
18+
"eslint": "10.2.0",
1919
"eslint-config-prettier": "10.1.8",
2020
"eslint-plugin-security": "4.0.0",
2121
"prettier": "3.8.1",
2222
"rollup": "4.59.0",
2323
"tslib": "2.8.1",
24-
"typescript": "5.9.3",
25-
"typescript-eslint": "8.57.1"
24+
"typescript": "6.0.3",
25+
"typescript-eslint": "8.58.2"
2626
},
2727
"minimumReleaseAge": 4320,
2828
"pnpm": {

plugins/autostart/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
22
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"rootDir": "guest-js"
5+
},
36
"include": ["guest-js/*.ts"]
47
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
22
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"rootDir": "guest-js"
5+
},
36
"include": ["guest-js/*.ts"]
47
}

plugins/biometric/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
22
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"rootDir": "guest-js"
5+
},
36
"include": ["guest-js/*.ts"]
47
}

plugins/cli/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
22
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"rootDir": "guest-js"
5+
},
36
"include": ["guest-js/*.ts"]
47
}

0 commit comments

Comments
 (0)