Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/arduino/Arduino.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-05-12Updated changelogCristian Maglie
2021-05-12Merge pull request #11519 from per1234/update-examplesCristian Maglie
Use 1.9.1 release of built-in examples
2021-05-12Fix mac installation link on README (#11520)Aarav Borthakur
2021-05-12Use 1.9.1 release of built-in examplesper1234
2021-05-11Updated translationsCristian Maglie
2021-05-11Merge pull request #11096 from facchinm/loose_filter_on_boardsCristian Maglie
Board Manager: searching returns also near matches
2021-05-11Filter ContributedPlatformReleases after fully building themCristian Maglie
2021-05-11Board Manager: searching returns also near matchesMartino Facchin
The original filter would only populate the contribution list with perfect matches. Previously, if a core was installed but didn't match the search it wouldn't appear in the results (due to a board being added or the description changed); the user could then install (not upgrade) the core, triggering a confusing situation. When moving to arduino-cli backend we should take care of this issue, at least visually (the cli logic would correctly update/downgrade the core)
2021-05-11Updated arduino-builder to 1.6.0Cristian Maglie
2021-05-10Merge pull request #11508 from cmaglie/deprecation_fieldCristian Maglie
Added basic "deprecation" support for platforms
2021-05-10Typo in SerialPlotter.javaQuocViet Le
2021-05-10Show maintainer instead of author in lib managerCristian Maglie
2021-05-10Merge pull request #11496 from cmaglie/wifi-firmware-updater-0.11.0Cristian Maglie
Updated WiFi101-Firmware-Updater to v0.11.0
2021-05-10Added 'deprecated' labelCristian Maglie
2021-05-10Deprioritize deprecated contributionsCristian Maglie
2021-05-10Propagate deprecated flag in ContributedPlatformReleasesCristian Maglie
2021-05-10Added deprecated field in index parsingCristian Maglie
2021-05-10Fixed some trivial warningsCristian Maglie
2021-05-07add a release version batch in README.mdatharwa_24
the user can see the latest release version at their first glance
2021-05-07Updated WiFi101-Firmware-Updater to v0.11.0Cristian Maglie
2021-05-07Merge pull request #11487 from cmaglie/do-not-delete-unused-packages-indexCristian Maglie
Do not delete unused 3rd party index files
2021-05-06Do not delete unused 3rd party index filesCristian Maglie
2021-04-30Merge pull request #11425 from facchinm/scrollable_custommenusCristian Maglie
Make Custom menus scrollable
2021-04-26Preserve all menu items for restoring when the menu is closedCristian Maglie
2021-04-12Make Custom menus scrollableMartino Facchin
Fixes #11416 The patch on MenuScroller.java is needed to avoid a clash between custom menus with the same label. This behaviour artificially increases the amount of objects that the scroller will calculate. Eg. if two boards share the same custom menu, that menu will contain the properties for both the boards (since it's parsed twice).
2021-04-09Merge pull request #11414 from cmaglie/i18n-updateCristian Maglie
Some small URL fix and updates to translations
2021-04-09Optimize applyFilter() to Avoid Redundant String Operations (#11284)Adrian Hughes
if 'showingHint' == true, then many potentially expensive String operations are being executed on an empty string. This change wraps these operations in an if block which will only run them when needed.
2021-04-08Updated all translationsCristian Maglie
2021-04-08Removed translation and updated some URLsCristian Maglie
2021-04-08Fixed wrong translationCristian Maglie
2021-04-08Downloaded new translations from transifexCristian Maglie
2021-04-08Update links to troubleshooting guides in error messagesper1234
When the compiled size of a sketch exceeds the available flash or RAM on the board, the error message includes a link to a troubleshooting guide: Sketch uses 16110 bytes (112%) of program storage space. Maximum is 14336 bytes. Global variables use 685 bytes (66%) of dynamic memory, leaving 339 bytes for local variables. Maximum is 1024 bytes. Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for tips on reducing it. When an upload fails, the error message includes a link to a troubleshooting guide: Problem uploading to board. See http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions. http://www.arduino.cc/en/Guide/Troubleshooting was recently replaced with the Arduino Help Center. Even though that URL redirects to the Help Center, it only goes to the home page, leaving the user to hunt for the relevant article. A better user experience is provided by linking directly to the relevant content in the Help Center.
2021-03-09Merge pull request #11331 from per1234/security-disclosure-policyper1234
Add security policy link to readme
2021-03-09Add security policy link to readmeper1234
2021-01-29Update WiFi Firmware Updater to 0.10.13Martino Facchin
2021-01-27Update arduino-builder to 1.5.6Cristian Maglie
2021-01-26update changelogCristian Maglie
2021-01-26Merge pull request #11200 from magedrifaat/linestatusbugCristian Maglie
Fix status bar custom board preferences disappearing
2021-01-24Fix status bar custom board preferences disappearingmaged
2020-12-15update arduino-builder to 1.5.5jenkins
2020-12-04Merge pull request #11028 from ↵Martino Facchin
n-elia/add-shift-click-to-serial-monitor-button-on-toolbar Add Shift+click on serial monitor toolbar button to open serial plotter
2020-12-03Add shift+click to serial monitor button on the toolbar to open serial plotterNicola Elia
2020-12-01Merge pull request #10922 from matthijskooijman/fix-no-board-null-pointerMartino Facchin
rebuildProgrammerMenu: Handle no current board
2020-11-05rebuildProgrammerMenu: Handle no current boardMatthijs Kooijman
This can happen happen in some unlikely cases (such as when renaming a platform in a way that breaks the "select a board when none is selected logic"). Even though a board should always be selected, code should still handle no selected board gracefully (rather than raising a NullPointerException like this used to do). See #10887 for the underlying issue that caused no board to be selected.
2020-10-09Merge pull request #10844 from per1234/fix-build-systemCristian Maglie
Fix built-in examples update during build
2020-10-09Fix built-in examples update during buildper1234
Previously, the built-in examples assembly step of the build system set the `final_folder` parameter of the `unzip` target to the true final installation location of the examples. The behavior of the `unzip` target is to only unzip the archive if `final_folder` doesn't exist. Because that folder will exist any time a previous build has been done and `ant clean` was not run, the archive will not be unzipped. This causes the build to fail after an update to the built-in examples version when it attempts to copy the examples from the version-dependent extraction staging folder to the final location. The fix is to set the `final_folder` parameter to the version-dependent staging folder location, which will cause the extraction to happen every time the examples version is updated, but to be skipped when there was no update.
2020-09-23Merge pull request #10734 from per1234/remove-built-in-examplesCristian Maglie
Move built-in examples to dedicated repository
2020-09-14Merge pull request #10747 from cmaglie/fix_mac_ssl_errorsCristian Maglie
Fix increase in ssl error for MacOS users
2020-09-11Update appbundler to 1.0ea-arduino9Cristian Maglie
2020-09-07Move built-in examples to dedicated repositoryper1234
A dedicated repository for the examples will make it easier for them to be built in to arbitrary development tools. It will make it easier to use them for compilation testing of boards platforms. It provides a dedicated location for issue reports and pull requests that are specific to the examples. It continues the work done by moving the AVR and SAM boards platforms and built-in libraries towards making the arduino/Arduino repository solely a place to host the GUI code of the Arduino IDE.