Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

feat: removed non-official themes from the settings dialog #1994

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
kittaakos merged 2 commits into main from #1283
Apr 14, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: location of possible drop-in folder for VSIX
Closes #1851
Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
  • Loading branch information
Akos Kitta committed Apr 14, 2023
commit 3676960d4bb40bade9d9d666d23b5441235155ce
14 changes: 10 additions & 4 deletions electron/build/scripts/arduino-ide-electron-main.js
View file Open in desktop
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
const os = require('os');
const path = require('path');
// Enables the discovery of the VS Code extensions in the embedded `plugins` folder in the final app.
process.env.THEIA_DEFAULT_PLUGINS = `local-dir:${path.resolve(__dirname, '..', 'plugins')}`;
process.env.THEIA_DEFAULT_PLUGINS = `local-dir:${path.resolve(
__dirname,
'..',
'plugins'
)}`;
process.env.THEIA_PLUGINS = [
process.env.THEIA_PLUGINS,
`local-dir:${path.resolve(os.homedir(), '.arduinoProIDE', 'plugins')}`
].filter(Boolean).join(',');
process.env.THEIA_PLUGINS,
`local-dir:${path.resolve(os.homedir(), '.arduinoIDE', 'plugins')}`,
]
.filter(Boolean)
.join(',');
require('../src-gen/frontend/electron-main.js');

AltStyle によって変換されたページ (->オリジナル) /