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
2020-04-07Replace hardcoded pin numbers with variableside-1.9.x-betaJordy
Replace pin numbers "A0" and "A1" with variables "xAxis" and "yAxis". Variables "xAxis" and "yAxis" were created, but never used. I changed the hardcoded pin numbers to these variables to avoid confusion and to make the code more consistent.
2020-04-07Fix ARDUINO-CLI extraction on windowsMartino Facchin
2020-04-07Added arduino-cli to the build (WIP)Cristian Maglie
2020-04-07Deactivate non pluggable discoverersMartino Facchin
2020-04-07Update serial-discovery to 0.0.3Martino Facchin
2020-04-07PluggableDiscovery: add discoverers (alongside the normal ones)Martino Facchin
using https://github.com/arduino/serial-discovery and https://github.com/arduino/mdns-discovery
2020-04-07[BETA] Launch arduino-builder with experimental flagMartino Facchin
2020-04-07Initial implementation of bookmarksMartino Facchin
Toggle on the left, find next with F3
2020-04-07Find/Replace: display on top of the related EditorMartino Facchin
If the editor is focused, acquire alwaysOnTop capabilities but drop them as soon as both the editor and the dialog are out of focus try to implement partial transparency As implemented in Notepad++, a partially transparent search/replace window could make it easier to interact with the editor (particularly in fullscreen contexts, when the "always on top" window could hide the search results). Unfortunately, Java can only apply the transparency to undecorated window, so it's a no-go. Java gurus, please come to the rescue :D Fix find/replace focus on Windows Probably this approach could be adopted by all OSes with a little care on the window lifecycle. [Find/Replace][Win] grab focus when just opened Solves https://github.com/arduino/Arduino/issues/6951#issuecomment-351995084 Use Windows method for all OS
2020-04-07eclipse: fix full ide projectMartino Facchin
2020-04-07[REMOVEME] Add Beta graphics and iconsMartino Facchin
2020-04-07autocomplete: improved rendering of completionsCristian Maglie
2020-04-07autocomplete: extracted ArduinoCompletion to Completion generation methodCristian Maglie
2020-04-07autocompletion: factored filtering of completionsCristian Maglie
2020-04-07Remove autocomplete for macrosMartino Facchin
Was causing NPE on certain cores
2020-04-07Added more debugging output for codecompletion errorsCristian Maglie
2020-04-07Increase debugging info in json parsing from autocompleteCristian Maglie
2020-04-07Refactored notification popupCristian Maglie
2020-04-07autocomplete: restore braces on functionsMartino Facchin
Also make the output more uniform (no differences between templates and funxtions) New format is: functionName (bold) parameters (light grey) : returnType
2020-04-07cache + sort for autocompleteMartino Facchin
2020-04-07eclipse: add autocomplete to classpathMartino Facchin
2020-04-07Windows: add grpc jars to classpathMartino Facchin
2020-04-07Removed unused importCristian Maglie
2020-04-07Calling arduino builder with GPRC API [experimental]Cristian Maglie
2020-04-07Created getAllHardwareFolders and getAllToolsFoldersCristian Maglie
2020-04-07Added method to determine board FQBNCristian Maglie
This simplifies a bit the organization of the arduino-builder calls.
2020-04-07Added missing licensesCristian Maglie
2020-04-07codecompletion: added function parameters support.Cristian Maglie
2020-04-07include autocomplete icons in pde.jarMartino Facchin
2020-04-07Use FunctionCompletion when dealing with function autocompletionsCristian Maglie
2020-04-07Added some more infos in CompletionDetailsCristian Maglie
2020-04-07Added CompletionsRendererCristian Maglie
2020-04-07Testing autocomplete with arduino-preprocessorCristian Maglie
2020-04-07pr-builder: Build linux64 firstCristian Maglie
2020-04-07Introducing arduino-preprocessor (linux64 only for now)Cristian Maglie
2020-04-07fix windows build - add autocomplete libsricardo.jl.rufino@gmail.com
2020-04-07Refactoring autocomplete structurericardo.jl.rufino@gmail.com
2020-04-07Base implementation of autocomplete #849ricardo.jl.rufino@gmail.com
2020-04-07Add symlink support for WindowsMartino Facchin
Fixes https://github.com/arduino/Arduino/issues/6893
2020-04-07Limit selected tab size in case of crowded headerMartino Facchin
2020-04-07[tabs] some heavy lifting on tabs handlingMartino Facchin
The situation is still a shit, but at least better than before.
2020-04-07Implement MouseWheelListener on tabsMartino Facchin
tested with Marlin Firmware, solves #6109 #3601 #1193
2020-04-07Shift tabs if selected one if being painted offscreenMartino Facchin
Implemented using a dry run to get the metrics and the needed shift Fixes #1193 and #6109
2020-04-07Add clickable HTML view of Serial MonitorMartino Facchin
The HTML view only activates if: - the output is steady - the "frame" contains a link - the length of the entire content is < 1KB No performance penalty compared to normal view (in standard conditions)
2020-04-07Extend UpdatableBoardsLibsFakeURLsHandler to handle real linksMartino Facchin
2020-04-07Avoid board change during compilation/uploadMartino Facchin
By threading the boardChange callback we can busy wait until the compilation/upload phase has ended and change the board when done. Fixes #6035
2020-04-07Add watcher on sketch filesMartino Facchin
Reloads sketch content if the Editor is not in foreground and isomething happens in the backing storage files. Note that no confirmation dialog is displayed (same behaviour as SublimeText, differs from other IDEs) Fixes #4551 and #5345
2020-04-07[RecentlyUsedBoards] Fix merge conflictsMartino Facchin
2020-04-07Prepare for LRU persistencyMartino Facchin
2020-04-07Make Recently used boards size configurable from preferencesMartino Facchin