-
-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathapp-el.js
More file actions
110 lines (93 loc) · 3.33 KB
/
app-el.js
File metadata and controls
110 lines (93 loc) · 3.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
const { app, shell, session, BrowserWindow } = require('electron');
const path = require('path');
const server = require('@gridspace/app-server');
const pkgd = app.isPackaged;
const basDir = __dirname;
const usrDir = app.getPath("userData");
const appDir = path.join(usrDir, 'gapp');
const cnfDir = path.join(appDir, 'conf');
const logDir = path.join(appDir, 'logs');
const datDir = path.join(appDir, 'data');
const debug = process.argv.slice(2).map(v => v.replaceAll('-', '')).indexOf('debugg') >= 0;
const devel = process.argv.slice(2).map(v => v.replaceAll('-', '')).indexOf('devel') >= 0;
process.env.ELECTRON_DISABLE_SECURITY_WARNINGS = true;
// Enable GPU/graphics acceleration for Linux (addresses WebGL issues)
// Equivalent to Chrome flags that fixed the rendering in Chrome browser
if (process.platform === 'linux') {
// CRITICAL: Override GPU blocklist - allows hardware acceleration on blocked GPUs
app.commandLine.appendSwitch('ignore-gpu-blocklist');
// Enable WebGL draft extensions (improves WebGL compatibility)
app.commandLine.appendSwitch('enable-webgl-draft-extensions');
// Force GPU acceleration for 2D/3D rendering
app.commandLine.appendSwitch('enable-gpu-rasterization');
// Optional: Try Vulkan if available (Chromium auto-falls back to OpenGL if not)
// Uncomment if you need Vulkan specifically, but most systems work without it:
app.commandLine.appendSwitch('enable-features', 'Vulkan');
}
server({
port: 5309,
apps: basDir,
data: datDir,
conf: cnfDir,
logs: logDir,
single: true,
electron: true,
pkgd,
debug
});
function createWindow() {
const mainWindow = new BrowserWindow({
width: 1600,
height: 900,
webPreferences: {
// contextIsolation: true,
// nodeIntegration: true,
// sandbox: true,
// preload: undefined
// nodeIntegration: true,
// contextIsolation: false
// preload: path.join(__dirname, 'preload.js')
}
});
const { webContents } = mainWindow;
mainWindow.loadURL('http://localhost:5309/kiri');
// default normal url navigation or page opens to happen outside Electron
webContents.setWindowOpenHandler((details) => {
// console.log('EXTERNAL', details);
shell.openExternal(details.url);
return { action: 'deny' }
});
// prevent "other" urls from opening inside Electron (alerts are problematic)
webContents.on('will-navigate', (event, url) => {
// console.log('DIVERT', url);
if (url.endsWith('/kiri') || url.endsWith('/kiri/')) {
return;
}
if (url.endsWith('/mesh') || url.endsWith('/mesh/')) {
return;
}
if (url.endsWith('/void') || url.endsWith('/void/')) {
return;
}
event.preventDefault();
shell.openExternal(url);
});
webContents.on('did-finish-load', () => {
// console.log('did finish load');
});
if (devel) {
console.log("opening developer tools");
webContents.openDevTools();
}
}
app.on('ready', () => {
session.defaultSession.clearCache().then(createWindow);
});
app.on('window-all-closed', () => {
app.quit();
});
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow();
}
});