mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-03 02:09:50 +03:00
c77b40324e
* feat: update to latest wry * wry dev branch [skip ci] * fix linux [skip ci] * refactor(runtime): split webview and window types * split dispatch * implement create_webview * move webview message * wip webview mod * create webview manager, finish webview struct and builder * fix tests and docs * rename WindowUrl to WebviewUrl * update examples * event refactor * update JS API * fix events * update example * add WebviewWindow class on JS * fix macos build * allow creating window+webview on the same runtime call * rename tauri://window-created to tauri://webview-created * Window::add_child * use inner_size from webview on macOS * add multiwebview example * automatically resize webviews on window resize * fix tests * set_position, set_size * position, size getters * set_focus * add close fn * update mock runtime * lint [skip ci] * fix inner_size getter [skip ci] * import hwnd [skip ci] * update webview bound ratios on set_size/set_position * add auto_resize option * fix android * fix build on windows * typo * with_webview isnt desktop only * add WebviewWindow rust struct (and builder) * fix build on android * license header * fix macos/windows * fix macos build * resolve todo * handle window not found * hide unstable features * document unstable feature [skip ci] * webview plugin permissions * hide more stuff * fix doctests * typos * add change files * fix examples * rename hook
44 lines
975 B
JSON
44 lines
975 B
JSON
{
|
|
"$schema": "../../core/tauri-config-schema/schema.json",
|
|
"build": {
|
|
"distDir": ["index.html"],
|
|
"devPath": ["index.html"],
|
|
"beforeDevCommand": "",
|
|
"beforeBuildCommand": ""
|
|
},
|
|
"package": {
|
|
"productName": "MultiWebview",
|
|
"version": "0.1.0"
|
|
},
|
|
"tauri": {
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"identifier": "com.tauri.dev",
|
|
"icon": [
|
|
"../.icons/32x32.png",
|
|
"../.icons/128x128.png",
|
|
"../.icons/128x128@2x.png",
|
|
"../.icons/icon.icns",
|
|
"../.icons/icon.ico"
|
|
],
|
|
"resources": [],
|
|
"externalBin": [],
|
|
"copyright": "",
|
|
"category": "DeveloperTool",
|
|
"shortDescription": "",
|
|
"longDescription": "",
|
|
"deb": {
|
|
"depends": []
|
|
},
|
|
"macOS": {
|
|
"frameworks": [],
|
|
"exceptionDomain": ""
|
|
}
|
|
},
|
|
"security": {
|
|
"csp": "default-src 'self'; connect-src ipc: http://ipc.localhost"
|
|
}
|
|
}
|
|
}
|