Skip to content

Commit c4c8c03

Browse files
committed
Switch to machine-overridable scope for all settings
Signed-off-by: paulober <[email protected]>
1 parent e6ef377 commit c4c8c03

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

package.json

+12-11
Original file line numberDiff line numberDiff line change
@@ -330,31 +330,31 @@
330330
"properties": {
331331
"micropico.autoConnect": {
332332
"type": "boolean",
333-
"scope": "resource",
333+
"scope": "machine-overridable",
334334
"default": true,
335335
"title": "Autoconnect on USB",
336336
"description": "Ignores any 'device address' setting and automatically connects to the top item in the serialport list.",
337337
"order": 2
338338
},
339339
"micropico.manualComDevice": {
340340
"type": "string",
341-
"scope": "resource",
341+
"scope": "machine-overridable",
342342
"default": "",
343343
"title": "Manual COM device",
344344
"description": "If autoConnect is set to false MicroPico will automatically connect to the serial port specified here.",
345345
"order": 3
346346
},
347347
"micropico.syncFolder": {
348348
"type": "string",
349-
"scope": "resource",
349+
"scope": "machine-overridable",
350350
"default": "",
351351
"title": "Sync Folder",
352352
"description": "This folder will be uploaded to the pyboard when using the sync button. Leave empty to sync the complete project. (only allows folders within the project). Use a path relative to the project you opened in vscode, without leading or trailing slash",
353353
"order": 4
354354
},
355355
"micropico.additionalSyncFolders": {
356356
"type": "array",
357-
"scope": "resource",
357+
"scope": "machine-overridable",
358358
"items": {
359359
"type": "string",
360360
"uniqueItems": true
@@ -366,15 +366,15 @@
366366
},
367367
"micropico.syncAllFileTypes": {
368368
"type": "boolean",
369+
"scope": "machine-overridable",
369370
"default": false,
370-
"scope": "resource",
371371
"title": "Upload all file types",
372372
"description": "If enabled, all files will be uploaded no matter the file type. The list of file types below will be ignored",
373373
"order": 6
374374
},
375375
"micropico.syncFileTypes": {
376376
"type": "array",
377-
"scope": "resource",
377+
"scope": "machine-overridable",
378378
"items": {
379379
"type": "string",
380380
"uniqueItems": true
@@ -396,7 +396,7 @@
396396
},
397397
"micropico.pyIgnore": {
398398
"title": "Pyignore list",
399-
"scope": "resource",
399+
"scope": "machine-overridable",
400400
"markdownDescription": "Comma separated list of files and folders to ignore when uploading relative to syncFolder (no wildcard or regular expressions supported except `**/<file/folder>` to exclude an item by its name in every sub folder). Use `<additionalSyncFolder>:file/to/exclude.py` to create sync folder exclusive exclusion rules (all other rules will always be applied relative to the selected sync folder). Replace `additionalSyncFolder` with a value from your `micropico.additionalSyncFolders` setting or the value from `micropico.syncFolder`.",
401401
"type": "array",
402402
"items": {
@@ -427,8 +427,8 @@
427427
},
428428
"micropico.statusbarButtons": {
429429
"type": "array",
430+
"scope": "machine-overridable",
430431
"title": "Statusbar buttons",
431-
"scope": "resource",
432432
"description": "Select which buttons to show in the statusbar",
433433
"items": {
434434
"type": "string",
@@ -468,30 +468,31 @@
468468
},
469469
"micropico.softResetAfterUpload": {
470470
"type": "boolean",
471+
"scope": "machine-overridable",
471472
"default": false,
472-
"scope": "resource",
473473
"title": "Soft-reset after upload",
474474
"description": "Soft-resets your board after any upload action which also reruns main.py and boot.py. Usefull when working with main.py and boot.py.",
475475
"order": 12
476476
},
477477
"micropico.executeOnConnect": {
478478
"type": "string",
479+
"scope": "machine-overridable",
479480
"default": "",
480-
"scope": "resource",
481481
"title": "Script to execute on connect",
482482
"description": "Path to a MicroPython script on the Pico to execute on connect. Leave empty to disable.",
483483
"order": 13
484484
},
485485
"micropico.importOnConnect": {
486486
"type": "string",
487+
"scope": "machine-overridable",
487488
"default": "",
488-
"scope": "resource",
489489
"title": "MicroPython module to import on connect",
490490
"description": "A MicroPython module to import in vREPL on connect. Leave empty to disable.",
491491
"order": 14
492492
},
493493
"micropico.noSoftResetOnRun": {
494494
"type": "boolean",
495+
"scope": "machine-overridable",
495496
"default": false,
496497
"title": "Disable the soft-resets before and after executing a file.",
497498
"description": "Soft-resets are used to clean REPL state so changes in classes and other structs are reflected correctly.",

0 commit comments

Comments
 (0)