Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
feat: use Arduino CLI 1.3.1
  • Loading branch information
giacomocusinato committed Nov 5, 2025
commit c8c492855d093d6c9d8829bff32ca3a4544606a8
2 changes: 1 addition & 1 deletion arduino-ide-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
],
"arduino": {
"arduino-cli": {
"version": "1.2.0"
"version": "1.3.1"
},
"arduino-fwuploader": {
"version": "2.4.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1139,4 +1139,5 @@ export enum LibraryLocation {
LIBRARY_LOCATION_PLATFORM_BUILTIN = 2,
LIBRARY_LOCATION_REFERENCED_PLATFORM_BUILTIN = 3,
LIBRARY_LOCATION_UNMANAGED = 4,
LIBRARY_LOCATION_PROFILE = 5,
}
Original file line number Diff line number Diff line change
Expand Up @@ -8652,7 +8652,8 @@ proto.cc.arduino.cli.commands.v1.LibraryLocation = {
LIBRARY_LOCATION_USER: 1,
LIBRARY_LOCATION_PLATFORM_BUILTIN: 2,
LIBRARY_LOCATION_REFERENCED_PLATFORM_BUILTIN: 3,
LIBRARY_LOCATION_UNMANAGED: 4
LIBRARY_LOCATION_UNMANAGED: 4,
LIBRARY_LOCATION_PROFILE: 5
};

goog.object.extend(exports, proto.cc.arduino.cli.commands.v1);
Loading