a very good jj gui
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: enable webview zoom hotkeys and permissions

- Add zoomHotkeysEnabled to main window config
- Add core:webview:allow-set-webview-zoom permission

+4 -2
+1
apps/desktop/src-tauri/capabilities/default.json
··· 7 7 ], 8 8 "permissions": [ 9 9 "core:default", 10 + "core:webview:allow-set-webview-zoom", 10 11 "shell:allow-open", 11 12 "dialog:default", 12 13 "store:default",
+1 -1
apps/desktop/src-tauri/gen/schemas/capabilities.json
··· 1 - {"default":{"identifier":"default","description":"Default permissions for the application","local":true,"windows":["main"],"permissions":["core:default","shell:allow-open","dialog:default","store:default","sql:default","deep-link:default"]}} 1 + {"default":{"identifier":"default","description":"Default permissions for the application","local":true,"windows":["main"],"permissions":["core:default","core:webview:allow-set-webview-zoom","shell:allow-open","dialog:default","store:default","sql:default","deep-link:default"]}}
+2 -1
apps/desktop/src-tauri/tauri.conf.json
··· 20 20 "width": 1200, 21 21 "height": 800, 22 22 "resizable": true, 23 - "fullscreen": false 23 + "fullscreen": false, 24 + "zoomHotkeysEnabled": true 24 25 } 25 26 ], 26 27 "security": {