* feat: adjust default window size * feat: save window state * feat: add window state plugin * feat: add search * feat: use negentropy for newsfeed * feat: live feeds * feat: add search user
40 lines
836 B
JSON
40 lines
836 B
JSON
{
|
|
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Lume",
|
|
"label": "main",
|
|
"titleBarStyle": "Overlay",
|
|
"width": 1045,
|
|
"height": 800,
|
|
"minWidth": 500,
|
|
"minHeight": 800,
|
|
"hiddenTitle": true,
|
|
"windowEffects": {
|
|
"state": "followsWindowActiveState",
|
|
"effects": [
|
|
"underWindowBackground"
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"title": "Lume Panel",
|
|
"label": "panel",
|
|
"url": "/panel",
|
|
"width": 350,
|
|
"height": 500,
|
|
"fullscreen": false,
|
|
"resizable": false,
|
|
"visible": false,
|
|
"decorations": false,
|
|
"windowEffects": {
|
|
"effects": [
|
|
"popover"
|
|
]
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|