Skip to content

Commit 33cc4a6

Browse files
authored
Merge pull request #3 from arduino/app-scheme-windows
Register app scheme on Windows and Linux
2 parents caf06e1 + a4d26ed commit 33cc4a6

7 files changed

+47
-17
lines changed

css/status-bar.css

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.3s ease;
1212
}
1313

14+
.status-bar .close-button {
15+
cursor: pointer;
16+
}
17+
1418
.status-bar.visible {
1519
display: flex;
1620
max-height: 480px;

forge.config.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ module.exports = {
8282
ignore: filesToExclude,
8383
prune: true,
8484
derefSymlinks: true,
85-
protocols: [ {
85+
protocols: [ {
86+
// Register custom URL scheme on macOS
8687
name: 'micropython-package-installer',
8788
schemes: ['micropython-package-installer']
8889
}],
@@ -134,6 +135,11 @@ module.exports = {
134135
{
135136
name: '@electron-forge/maker-deb',
136137
platforms: ['linux'],
138+
config: {
139+
options: {
140+
mimeType: ['x-scheme-handler/micropython-package-installer']
141+
}
142+
}
137143
},
138144
],
139145
publishers: [

index.html

+6
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ <h2>Packages</h2>
6969
<div id="status-bar" class="status-bar hidden">
7070
<span id="status-message"></span>
7171
<div class="loading-spinner small hidden"></div>
72+
<div id="status-bar-close" class="close-button">
73+
<!-- Close button SVG -->
74+
<svg id="close-icon" width="10" height="10" viewBox="0 0 10 10" fill="#eee" xmlns="http://www.w3.org/2000/svg">
75+
<path d="M10 0.707107L9.29289 0L5 4.29289L0.707107 0L0 0.707107L4.29289 5L0 9.29289L0.707107 10L5 5.70711L9.29289 10L10 9.29289L5.70711 5L10 0.707107Z" fill="#eee"/>
76+
</svg>
77+
</div>
7278
</div>
7379

7480
<!-- Divider -->

main.js

+13-5
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,30 @@ if (require('electron-squirrel-startup')) return;
22
const { app, BrowserWindow, ipcMain, shell } = require('electron');
33
const path = require('path');
44

5+
const APP_SCHEME_NAME = 'micropython-package-installer';
6+
const ARDUINO_VID = 0x2341;
7+
58
// Handle events from windows squirrel installer
69
if (process.platform === "win32" && handleSquirrelEvent()) {
710
// squirrel event handled and app will exit in 1000ms, so don't do anything else
811
return;
912
}
1013

14+
// On macOS the scheme is already registered through the app bundle metadata
15+
// but on Windows and Linux we need to register it manually
16+
if (process.platform !== "darwin" && !app.isDefaultProtocolClient(APP_SCHEME_NAME)) {
17+
if(!app.setAsDefaultProtocolClient(APP_SCHEME_NAME)) {
18+
console.error('Failed to register custom URL scheme', APP_SCHEME_NAME);
19+
}
20+
}
21+
1122
const { updateElectronApp } = require('update-electron-app')
1223
updateElectronApp()
1324

1425
let mainWindow;
1526
let upyPackage;
1627
let packageManager;
1728
let deviceManager;
18-
const ARDUINO_VID = 0x2341;
1929

2030
function createWindow() {
2131
mainWindow = new BrowserWindow({
@@ -45,9 +55,7 @@ app.on('ready', async() => {
4555
});
4656

4757
app.on('window-all-closed', () => {
48-
if (process.platform !== 'darwin') {
49-
app.quit();
50-
}
58+
app.quit();
5159
});
5260

5361
app.on('activate', () => {
@@ -95,7 +103,7 @@ ipcMain.handle('install-package', async (event, aPackage, serialPort, compileFil
95103
return { success: true };
96104
} catch (error) {
97105
let packageDesignator = aPackage.name || aPackage.url;
98-
console.error(`Failed to install package ${packageDesignator}:`, error);
106+
console.error(`Failed to install package ${packageDesignator}:`, error.message);
99107

100108
// Check if error contains "Resource busy" and return a more user-friendly message
101109
if(error.message.includes('Resource busy') || error.message.includes('Access denied')) {

package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "micropython-package-installer",
3-
"version": "1.0.0",
3+
"version": "1.0.1-beta.1",
44
"description": "A tool to install MicroPython packages onto supported Arduino boards.",
55
"main": "main.js",
66
"scripts": {
@@ -40,6 +40,6 @@
4040
"dependencies": {
4141
"electron-squirrel-startup": "^1.0.1",
4242
"update-electron-app": "^3.0.0",
43-
"upy-package": "github:arduino/upy-package#v1.0.0"
43+
"upy-package": "github:arduino/upy-package#v1.0.1"
4444
}
4545
}

renderer.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ let customURLplaceholders = ['github:janedoe/button-mpy',
88
];
99

1010
const statusBar = document.getElementById('status-bar');
11+
const statusBarCloseButton = document.getElementById('status-bar-close');
1112
const statusMessage = document.getElementById('status-message');
1213
const deviceSelectionList = document.querySelector(".item-selection-list");
1314
const reloadDeviceListLink = document.getElementById("reload-link");
@@ -52,6 +53,8 @@ document.addEventListener('DOMContentLoaded', async () => {
5253
setInstallButtonsEnabled(true);
5354
});
5455

56+
statusBarCloseButton.addEventListener('click', hideStatus);
57+
5558
reloadDeviceListLink.addEventListener('click', async () => {
5659
await reloadDeviceList();
5760
});
@@ -248,6 +251,8 @@ function toggleUserInteraction(enabled) {
248251
searchField.disabled = !enabled;
249252
githubUrlInput.disabled = !enabled;
250253
manualInstallButton.disabled = !enabled;
254+
compileFilesCheckbox.disabled = !enabled;
255+
overwriteExistingCheckbox.disabled = !enabled;
251256
reloadDeviceListLink.style.pointerEvents = enabled ? 'auto' : 'none';
252257
boardItems.forEach(board => board.style.pointerEvents = enabled ? 'auto' : 'none');
253258

@@ -335,6 +340,9 @@ function showStatus(message, displayLoader = false, duration = null) {
335340
statusMessage.textContent = message;
336341
statusBar.classList.remove('hidden');
337342
statusBarLoadingSpinner.classList.toggle('hidden', !displayLoader);
343+
344+
// Hide close button when loader is displayed
345+
statusBarCloseButton.classList.toggle('hidden', displayLoader);
338346

339347
// Add the visible class to trigger the slide down effect
340348
setTimeout(() => {
@@ -348,14 +356,12 @@ function showStatus(message, displayLoader = false, duration = null) {
348356
}
349357

350358
function hideStatus() {
351-
const statusBar = document.getElementById('status-bar');
352-
353359
// Remove the visible class to trigger the slide-up effect
354360
statusBar.classList.remove('visible');
355361

356362
// After the transition ends, hide the element
357363
setTimeout(() => {
358-
statusBar.style.display = 'none';
364+
statusBar.classList.add('hidden');
359365
}, 500); // Match this duration with the CSS transition duration
360366
}
361367

0 commit comments

Comments
 (0)