program


SUBMITTED BY: gatto

DATE: Feb. 17, 2016, 5:14 a.m.

FORMAT: Text only

SIZE: 7.3 kB

HITS: 2786

  1. ARDUINO 1.6.6 - 2015.11.03
  2. [ide]
  3. * Switched to Java 8, which is now both bundled and needed for compiling the IDE
  4. * Added link to unofficial boards support list in preferences
  5. * Limit of possible new sketches in a day raised to 676. Thanks @Chris--A
  6. * Windows: fixed a bug when running username had non ASCII chars
  7. * Lots of fixes
  8. * ArduinoISP examples moved under 11.ArduinoISP folder
  9. * MacOSX: binary is now able to tell the IDE its current working directory. Eases life to those using the IDE from the CLI
  10. * CLI: if specified board doesn't exist, fail instead of using a default one
  11. * Windows: IDE stores its stuff under %LOCALAPPDATA% instead of %APPDATA% (which was a roaming folder). %APPDATA% content is automatically migrated to new location
  12. * Added 74880 baud rate to serial monitor. Thanks @Chris--A
  13. * When changing tab, file name is shown in window title
  14. * IDE groups compiled files into "libraries", "core" and "sketch" folders
  15. * Added Serial Plotter. Thanks @henningpohl
  16. * Editor: triple click selects whole line
  17. * Windows: IDE startup feels faster
  18. * Examples of libraries with a .development flag file in their root folder won't get marked as read-only. See #2619
  19. * Update notifications: when updates are available from either Library or Boards Managers, a popup will be shown
  20. * Introducing arduino-builder, a command line tool that properly calls gcc. Fixes lots of issues about buggy preprocessing.
  21. * Each open sketch gets built in its own folder, allowing the IDE to recycle previous compilations and being much faster
  22. * "Go to line": CTRL+L or Edit > Go to line... will open a dialog where you can type the line number where you want the editor to jump to
  23. * Added boards.local.txt support: like platform.local.txt, allows to enrich a boards.txt definition without modifying the original file. Thanks @Wackerbarth
  24. * Library to library dependencies: when your sketch imports a library, and that library uses another, the IDE will find out without you having to add a useless #include to your sketch
  25. * Allow per-platform keywords.txt. Thanks @PaulStoffregen
  26. * Allow spaces in IDE install path on Linux. Thanks @matthijskooijman
  27. * Fixed a lot of documentation. Thanks to @per1234 @q2dg
  28. * Fixed parsing for SystemProfiler when scanning for available serial ports on Macosx El Capitan
  29. [libraries]
  30. * Bridge: YunClient.connected() returns true if there are bytes available for read. Thanks @RobAtticus
  31. * Bridge: YunClient.stop() now empties all buffers. Thanks @RobAtticus
  32. * Ethernet: Added missing keywords. Thanks @per1234
  33. * Ethernet: Fixed DNSClient.inet_aton() function. Thanks @jhorck
  34. * Ethernet: Expose optional DHCP timout parameters to Ethernet:begin(). Thanks @chaveiro
  35. * Wire: Implemented Wire.end().
  36. * Wire: Fixed bug with repeated START for AVR. Thanks Nate Williams
  37. * Wire: Resolved timing issues on AVR. See #2173 #1477.
  38. * Wire: Fixed bug in repeated start in slave mode on SAM. See #3908
  39. * SD: Change "char *" to "const char *" on methods accepting a string as a parameter. Thanks @Ivan-Perez
  40. * Scheduler: Added support for cortex-M0. Thanks @PeterVH
  41. [core]
  42. * Added new PluggableUSB and HID support. This change introduces a more powerful API for
  43. libraries that wants use advanced features of USB-Device.
  44. Thanks to @obra @NicoHood @matthijskooijman @nospam2000 @weizenspreu
  45. * AVR: fixed wrong turnOffPWM() for TIMER0B. Thanks @gonzoveliki
  46. * AVR: added support for AtmegaXXu2. Thanks @NicoHood
  47. * AVR: a bunch of USB Core bug fix. Thanks @NicoHood
  48. * AVR: Expose serial setting from USB-CDC serial port. Thanks @matthijskooijman
  49. * ArduinoISP is now compatible with every architecture (not only AVR) and is much more stable. Thanks @PeterVH
  50. * Print not aborting on write() failure. Thanks @stickbreaker
  51. * AVR: Faster interrupts patch. Thanks @xxxajk
  52. * AVR: Fixed pulseInLong wrong measurements.
  53. * AVR: Removed a bunch of compiler warnings. Thanks @NicoHood
  54. * Improved variants files for Boards Gemma and Ethernet
  55. ARDUINO 1.6.5-r5 - 2015.08.28
  56. [ide]
  57. * Fixed a but preventing upload on boards that do not supply VID/PID. See #3738
  58. ARDUINO 1.6.5-r4 - 2015.08.27
  59. [ide]
  60. * Added support to Genuino boards
  61. ARDUINO 1.6.5-r3 - 2015.07.20
  62. [ide]
  63. * Fixed Mac signature for OSX >=10.10.4
  64. ARDUINO 1.6.5-r2 - 2015.06.17
  65. [ide]
  66. * Windows: fixed a problem that prevented opening the IDE when double clicking a .ino file
  67. ARDUINO 1.6.5 - 2015.06.15
  68. [ide]
  69. * File, Sketch and Tools menu items are properly handled when switching between different windows
  70. * Sketch > Export compiled Binary: saves the compiled binary (hex, bin) into the sketch folder. Thanks @championswimmer
  71. * New editor, based on RSyntaxTextArea. Thanks @ricardojlrufino
  72. * New keywords. Thanks @Chris--A
  73. * Easier "additional boards manager url" field: a wide text area opens by clicking the added button (right side of the text field)
  74. * Rewritten code of Preferences window: its content is now correctly drawn on every OS
  75. * Fixed a bug that made the IDE notify users of invalid libraries too many times. Thanks @Chris--A
  76. * Removed JNA. Less native stuff and less chances of incurring into an UnsatisfiedLinkError
  77. * Many new and old issues closed. Thanks to many, and @Chris--A in particular
  78. * Faster libraries list update
  79. * Serial monitor stays opened during upload, disabled. Thanks @avishorp and @Wackerbarth
  80. * CLI: --get-pref can now be called without a pref name. If pref name is missing, IDE dumps all preferences
  81. * Holding SHIFT when hovering the save icon will trigger a "Save As"
  82. * Removed proxy settings from File > Preferences: IDE will use system settings
  83. * Linux versions bundle the latest JVM, 1.8.0_45
  84. * Local docs: if your sketch has a "docs" folder, you can add local links to it. For example file://./docs/index.html
  85. will use your browser to open file index.html from the "docs" folder of your sketch
  86. * When using "external editor" mode, sketch code is updated when the IDE gets focused
  87. * Added keyboard shortcuts to IDE menus: ALT+F for File, ALT+E for Edit and so on
  88. * Added support for Dangerous Prototypes Bus Pirate as ISP
  89. * Added "Close" button to Boards/Libs Managers, in order to help linux people with weird Window Managers
  90. * Added File > Open Recent menu, showing the last 5 opened sketches
  91. * Windows: added Arduino Zero drivers
  92. * Tons of minor fixes
  93. [libraries]
  94. * LiquidCrystal fixes. Thanks @newbie15
  95. * Added SPI Transactions to TFT lib
  96. * Stepper: support for 5-phase/5-wires motors. Thanks @rdodesigns
  97. * Stepper: increased precision in timing calculations. Thanks @ekozlenko
  98. * Firmata and Temboo: dropped our vesions, tagged released are downloaded from their respective git repos
  99. [core]
  100. * AVR: delayMicroseconds(..) doesn't hang if called with 0. Thanks @cano64
  101. * AVR: delayMicroseconds(..), added support for 1Mhz, 12Mhz and 24Mhz. Thanks @cano64
  102. * AVR: added missing case in detachInterrupt(). Thanks @leres, @vicatcu
  103. * SAM: added watchdog routine for Due. Thanks @bobc
  104. * AVR+SAM: reworked pulseIn() function to become GCC agnostic
  105. * AVR+SAM: added pulseInLong() (based on micros()) to help getting good results in interrupt-prone environments
  106. * AVR: fixed regression in HardwareSerial.flush(). Thanks @chromhelm

comments powered by Disqus