Skip to content

Commit 342b139

Browse files
committed
Extend message center
1 parent 1c16b09 commit 342b139

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1540
-159
lines changed

package-lock.json

+48-31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
"@tauri-apps/plugin-http": "^2.4.3",
7171
"@tauri-apps/plugin-log": "^2.3.1",
7272
"@tauri-apps/plugin-notification": "^2.2.2",
73+
"@tauri-apps/plugin-opener": "^2.2.6",
7374
"@tauri-apps/plugin-process": "^2.2.1",
7475
"@tauri-apps/plugin-shell": "^2.2.1",
7576
"@tauri-apps/plugin-store": "^2.2.0",
@@ -111,7 +112,7 @@
111112
"@angular-eslint/schematics": "^18.0.1",
112113
"@angular-eslint/template-parser": "^18.0.1",
113114
"@angular/build": "^19.2.7",
114-
"@angular/cli": "^19.2.7",
115+
"@angular/cli": "^19.2.9",
115116
"@angular/compiler-cli": "^19.2.6",
116117
"@protobuf-ts/plugin": "^2.9.0",
117118
"@tauri-apps/cli": "^2.5.0",
@@ -155,4 +156,4 @@
155156
"git add"
156157
]
157158
}
158-
}
159+
}

src-core/Cargo.lock

+92-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-core/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ windows-sys = { version = "0.36.1", features = [
102102
] }
103103
winreg = "0.55.0"
104104
dirs = "6.0.0"
105+
tauri-plugin-opener = "2"
105106

106107
[dependencies.ipgeolocate]
107108
git = "https://github.com/Raphiiko/ipgeolocate_oyasumi.git"

src-core/capabilities/main.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
"shell:default",
7373
"deep-link:default",
7474
"log:default",
75-
"aptabase:allow-track-event"
75+
"aptabase:allow-track-event",
76+
"opener:default"
7677
]
77-
}
78+
}

src-core/gen/schemas/acl-manifests.json

+1-1
Large diffs are not rendered by default.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"main":{"identifier":"main","description":"permissions that were migrated from v1","local":true,"windows":["main"],"permissions":["core:default","fs:allow-read-file","fs:allow-write-file","fs:allow-read-dir","fs:allow-exists",{"identifier":"fs:scope","allow":["$HOME/AppData/LocalLow/VRChat/**/*","$RESOURCE/*"]},"core:window:allow-maximize","core:window:allow-unmaximize","core:window:allow-minimize","core:window:allow-unminimize","core:window:allow-show","core:window:allow-hide","core:window:allow-close","core:window:allow-start-dragging","core:window:allow-set-focus","core:window:allow-toggle-maximize","core:app:allow-default-window-icon","shell:allow-execute","shell:allow-open","dialog:allow-open","dialog:allow-save","dialog:allow-message",{"identifier":"http:default","allow":[{"url":"https://*/"},{"url":"http://*/"}]},"notification:default","updater:default","global-shortcut:default","global-shortcut:allow-is-registered","global-shortcut:allow-register","global-shortcut:allow-register-all","global-shortcut:allow-unregister","global-shortcut:allow-unregister-all","process:allow-restart","process:allow-exit","clipboard-manager:allow-write-text","http:default","clipboard-manager:default","store:default","dialog:default","notification:default","process:default","fs:default","shell:default","deep-link:default","log:default","aptabase:allow-track-event"]},"splashscreen":{"identifier":"splashscreen","description":"permissions that were migrated from v1","local":true,"windows":["splashscreen"],"permissions":["core:default"]}}
1+
{"main":{"identifier":"main","description":"permissions that were migrated from v1","local":true,"windows":["main"],"permissions":["core:default","fs:allow-read-file","fs:allow-write-file","fs:allow-read-dir","fs:allow-exists",{"identifier":"fs:scope","allow":["$HOME/AppData/LocalLow/VRChat/**/*","$RESOURCE/*"]},"core:window:allow-maximize","core:window:allow-unmaximize","core:window:allow-minimize","core:window:allow-unminimize","core:window:allow-show","core:window:allow-hide","core:window:allow-close","core:window:allow-start-dragging","core:window:allow-set-focus","core:window:allow-toggle-maximize","core:app:allow-default-window-icon","shell:allow-execute","shell:allow-open","dialog:allow-open","dialog:allow-save","dialog:allow-message",{"identifier":"http:default","allow":[{"url":"https://*"},{"url":"http://*"},{"url":"http://*:*"},{"url":"https://*:*"}]},"notification:default","updater:default","global-shortcut:default","global-shortcut:allow-is-registered","global-shortcut:allow-register","global-shortcut:allow-register-all","global-shortcut:allow-unregister","global-shortcut:allow-unregister-all","process:allow-restart","process:allow-exit","clipboard-manager:allow-write-text","http:default","clipboard-manager:default","store:default","dialog:default","notification:default","process:default","fs:default","shell:default","deep-link:default","log:default","aptabase:allow-track-event","opener:default"]},"splashscreen":{"identifier":"splashscreen","description":"permissions that were migrated from v1","local":true,"windows":["splashscreen"],"permissions":["core:default"]}}

0 commit comments

Comments
 (0)