Replies: 2 comments
|
Hi @timfayz, thanks for starting this discussion! 👋 The Theia community will take a look soon. In the meantime, you might find helpful information in: 💙 Eclipse Theia is built and maintained by a community of contributors and sponsors. If Theia is valuable to your work, consider sponsoring the project. For professional support, training, or consulting services, learn more about available options. |
|
Hi @timfayz! The path A couple of things to double-check:
If after a |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Question
Hey! I'm trying to experiment with
theia.frontend.preferencesnamespace inelectron-app/package.json. No matter what I change, nothing applies after I rebuild and restart the app. I work from Windows (the same issue happens on Linux). Before each test I delete Theia settings in%USERDATA%\.theia\*and Electron cache in%APPDATA%\IDE_NAME\*.This question related to the previous one but since the entire
preferencething doesn't work, I opened a new discussion. Theia version is1.72.1.I'm using a monorepo setup. Here is the content of
packages/application-electron/package.json:{ "private": true, "name": "@ns/application-electron", "version": "0.0.1", "main": "lib/backend/electron-main.js", "dependencies": { "@theia/core": "1.72.1", "@theia/editor": "1.72.1", "@theia/electron": "1.72.1", "@theia/filesystem": "1.72.1", "@theia/monaco": "1.72.1", "@theia/navigator": "1.72.1", "@theia/preferences": "1.72.1", "@theia/terminal": "1.72.1", "@theia/workspace": "1.72.1", "@vscode/ripgrep": "1.14.2", "@abak/extension-template": "*" }, "devDependencies": { "@theia/cli": "1.72.1", "electron": "39.8.7", "electron-builder": "^26.8.1" }, "scripts": { "clean": "theia clean && rimraf lib", "clean:settings-win": "rimraf \"%APPDATA%\\IDE\" \"%USERPROFILE%\\.theia\"", "clean:settings-linux": "rimraf \"$HOME/.theia/*\" \"$HOME/.config/IDE/*\"", "build": "theia build --mode development", "rebuild": "theia rebuild:electron --cacheRoot ..", "watch": "npm run rebuild && theia build --watch --mode development", "start": "theia start", "dist-linux": "electron-builder --linux", "dist-win": "electron-builder --win --x64" }, "theia": { "target": "electron", "frontend": { "config": { "applicationName": "IDE", "preferences": { "window.titleBarStyle": "native" } } } } }Changing
window.titleBarStyleonly works when I modify the settings inside the Theia app itself (Ctrl+,). What's wrong here?All reactions