Skip to content

Commit

Permalink
add other platform configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Puyodead1 committed Sep 15, 2023
1 parent 38fbee9 commit 963bf24
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,5 +94,5 @@
"tauri:android:build": "tauri android build"
},
"type": "module",
"version": "0.1.0"
"version": "0.1.1"
}
13 changes: 13 additions & 0 deletions src-tauri/tauri.ios.conf.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"tauri": {
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "Spacebar",
"maximized": true,
"label": "main"
}
]
}
}
22 changes: 22 additions & 0 deletions src-tauri/tauri.linux.conf.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"tauri": {
"windows": [
{
"width": 400,
"height": 200,
"decorations": false,
"center": true,
"url": "splashscreen.html",
"label": "splashscreen"
},
{
"fullscreen": false,
"resizable": true,
"title": "Spacebar",
"maximized": true,
"visible": false,
"label": "main"
}
]
}
}
22 changes: 22 additions & 0 deletions src-tauri/tauri.macos.conf.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"tauri": {
"windows": [
{
"width": 400,
"height": 200,
"decorations": false,
"center": true,
"url": "splashscreen.html",
"label": "splashscreen"
},
{
"fullscreen": false,
"resizable": true,
"title": "Spacebar",
"maximized": true,
"visible": false,
"label": "main"
}
]
}
}

0 comments on commit 963bf24

Please sign in to comment.