Skip to content

Commit 5e3cfb9

Browse files
Set desktop app default zoom to 120%
Change the default zoom level from 100% to 120% for better readability. The zoom reset function also now resets to 120%.
1 parent 3da6489 commit 5e3cfb9

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"name": "vibora",
99
"source": "./plugins/vibora",
1010
"description": "Task orchestration for Claude Code",
11-
"version": "2.6.1"
11+
"version": "2.6.2"
1212
}
1313
]
1414
}

desktop/neutralino.config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/neutralinojs/neutralinojs/main/schemas/neutralino.config.schema.json",
33
"applicationId": "io.vibora.desktop",
4-
"version": "2.6.1",
4+
"version": "2.6.2",
55
"defaultMode": "window",
66
"port": 0,
77
"documentRoot": "/resources/",
@@ -26,7 +26,7 @@
2626
],
2727
"globalVariables": {
2828
"APP_NAME": "Vibora",
29-
"APP_VERSION": "2.6.1"
29+
"APP_VERSION": "2.6.2"
3030
},
3131
"modes": {
3232
"window": {

desktop/resources/js/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const UPDATE_CHECK_INTERVAL = 24 * 60 * 60 * 1000; // Check daily (24 hours)
2222
let serverUrl = null;
2323
let isShuttingDown = false;
2424
let desktopSettings = null;
25-
let currentZoom = 1.0;
25+
let currentZoom = 1.2;
2626
let currentRoute = { pathname: '/', search: '' }; // Track current SPA route from iframe
2727
let isDevMode = false;
2828
let logFilePath = null;
@@ -344,7 +344,7 @@ function setZoom(level, skipSave = false) {
344344
// Global zoom functions for button onclick handlers
345345
window.zoomIn = () => setZoom(currentZoom + 0.1);
346346
window.zoomOut = () => setZoom(currentZoom - 0.1);
347-
window.zoomReset = () => setZoom(1.0);
347+
window.zoomReset = () => setZoom(1.2);
348348

349349
/**
350350
* Load the Vibora app in an iframe

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vibora",
33
"private": true,
4-
"version": "2.6.1",
4+
"version": "2.6.2",
55
"description": "The Vibe Engineer's Cockpit",
66
"license": "PolyForm-Shield-1.0.0",
77
"type": "module",

plugins/vibora/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vibora",
33
"description": "Vibora task orchestration for Claude Code",
4-
"version": "2.6.1",
4+
"version": "2.6.2",
55
"author": {
66
"name": "Vibora"
77
},

0 commit comments

Comments
 (0)