mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-08-29 19:50:42 +02:00
fix(Windows): limit window/class names to 15 chars, closes #5
This commit is contained in:
@@ -2,20 +2,20 @@
|
||||
name = "emit-event-app"
|
||||
version = "0.1.0"
|
||||
description = "A Tauri App"
|
||||
authors = [ "You" ]
|
||||
authors = ["You"]
|
||||
repository = ""
|
||||
edition = "2021"
|
||||
rust-version = "1.57"
|
||||
|
||||
[dependencies]
|
||||
serde_json = "1.0"
|
||||
serde = { version = "1.0", features = [ "derive" ] }
|
||||
tauri = { version = "1.0.0", features = ["api-all", "cli"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
tauri = { version = "1", features = ["api-all", "cli"] }
|
||||
tauri-plugin-single-instance = { path = "../../../" }
|
||||
|
||||
[build-dependencies]
|
||||
tauri-build = { version = "1.0.0", features = [] }
|
||||
tauri-build = { version = "1", features = [] }
|
||||
|
||||
[features]
|
||||
default = [ "custom-protocol" ]
|
||||
custom-protocol = [ "tauri/custom-protocol" ]
|
||||
default = ["custom-protocol"]
|
||||
custom-protocol = ["tauri/custom-protocol"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"package": {
|
||||
"productName": "emitEventApp",
|
||||
"productName": "z123456789012345",
|
||||
"version": "0.1.0"
|
||||
},
|
||||
"build": {
|
||||
@@ -12,7 +12,7 @@
|
||||
"bundle": {
|
||||
"active": true,
|
||||
"targets": "all",
|
||||
"identifier": "com.tauri.single-instance-emit",
|
||||
"identifier": "com.tauri.single-instance-emissssssssssssssssssssssssssssssssssssssssssssssssssssssst",
|
||||
"icon": [
|
||||
"icons/32x32.png",
|
||||
"icons/128x128.png",
|
||||
@@ -51,8 +51,7 @@
|
||||
"takesValue": true
|
||||
}
|
||||
],
|
||||
"subcommands": {
|
||||
}
|
||||
"subcommands": {}
|
||||
},
|
||||
"updater": {
|
||||
"active": false
|
||||
@@ -73,4 +72,4 @@
|
||||
"csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user