1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-11-30 11:24:12 +01:00
Commit Graph

155 Commits

Author SHA1 Message Date
Cristian Maglie
812265f1c0 Removed useless defaults in platform. Remove useless boards.txt/*.platform keys. Renamed some method to a more meaningful name 2012-01-02 17:39:43 +01:00
Cristian Maglie
8157ebf25a Makeup-only: fixed some indentation and file headers 2012-01-02 16:45:01 +01:00
Cristian Maglie
5ad4422fc7 Merge remote-tracking branch 'arduino/master' into platforms-b 2011-12-31 17:29:36 +01:00
Cristian Maglie
a417455d5a Platform is now implicit when referring to other packages, e.g. 'arduino:avr:arduino' becomes 'arduino:arduino' 2011-12-31 15:23:54 +01:00
Cristian Maglie
770c8dfe35 Compiler class refactoring: toolchain path, build path and preferences are now class members. 2011-12-31 15:07:59 +01:00
Cristian Maglie
abe41d805d platforms.txt recipes now have symbolic variables instead of indexes ({0},{1},etc.)
Recipes arguments are splitted with spaces instead of |. Single argument containing spaces
should be placed between "double quotes".
Refactored and formatted Compiler class, removed all unused code in comments.
2011-12-31 14:32:48 +01:00
David A. Mellis
b5c21fcefb Removing console logs (stdout.txt and stderr.txt) on exit. (Paul Stoffregen)
http://code.google.com/p/arduino/issues/detail?id=701
2011-12-30 10:17:06 -05:00
Cristian Maglie
1b3ae5fa63 Created second level in hardware folder: hardware/PACKAGE/PLATFORM/...
Made some helper class for files filtering.
platforms.txt now contains only one platform at a time.
Some cleanup in Compiler and AvrDudeUploader classes.
2011-12-30 15:46:04 +01:00
Cristian Maglie
dc616601cd Various cleanups. Introduced class PreferencesMap to replace/simplify Map<String, String>. 2011-12-28 20:00:07 +01:00
Cristian Maglie
e63c2d1429 Various post-merge refinements. 2011-12-22 13:07:39 +01:00
Cristian Maglie
65c15d93eb Merge commit 'fcbbf8f4b4960bae1091c0cd9dc58b4a1885baf6' into platforms-b
Conflicts:
	app/src/processing/app/Base.java
	app/src/processing/app/debug/Compiler.java
	build/build.xml
	hardware/arduino/boards.txt
2011-12-22 00:35:33 +01:00
David A. Mellis
24a0dfdf00 Refactoring compile and upload to speed-up compilation, too. 2011-12-16 19:51:07 -05:00
David A. Mellis
a29866f7da Removing delete previous applet folder on export preference. 2011-12-16 19:05:06 -05:00
David A. Mellis
1a7fe19348 Removing per-board compilation speedup checks. 2011-12-16 18:49:43 -05:00
David A. Mellis
b0ae6e764d Compilation speed-up patch (only compile modify files). (Paul Stoffregen)
http://code.google.com/p/arduino/issues/detail?id=638
2011-12-16 18:20:22 -05:00
Shigeru KANEMOTO
7b8888a93a Fix for full-width space bug.
Imported from Processing development r6687 on
http://code.google.com/p/processing
Close #1
2011-12-07 01:45:13 +09:00
Shigeru KANEMOTO
541a7b3575 UI i18n and the Japanese text catalog.
Wrapped the every string literals with _(...) function.
The _() function resides in "app/src/processing/app/I18n.java",
which translates the UI texts using "Resources_XX.properties" file
where XX is the locale code.

I provided the properties file for the ja (Japanese) locale.
I created this file using "xgettext" and "msgcat" commands.
"i18n_update.{py,sh}" files are the tool I used to do that.

Change in "app/build.xml" is to include the properties files
in jar file.
2011-12-07 01:45:13 +09:00
David A. Mellis
fa4ab4f6ab Adding --relax flag for linking of ATmega2560 code. (arducopter)
http://code.google.com/p/arduino/issues/detail?id=729
2011-12-05 17:21:05 -05:00
David A. Mellis
10aba52ab8 Making editor font size apply to serial monitor and console (Paul Stoffregen)
http://code.google.com/p/arduino/issues/detail?id=550
2011-12-03 16:27:11 -05:00
David A. Mellis
fe243801a4 Fixing "auto-associate" preference text (.pde -> .ino).
http://code.google.com/p/arduino/issues/detail?id=699
2011-10-29 17:47:17 -04:00
David A. Mellis
b14a3c501e Lock / unlock fuses and hex file now optional for burn bootloader command.
This allows the "burn bootloader" command to be used, for example, to set the fuses on a microcontroller without actually loading a bootloader onto it.

http://code.google.com/p/arduino/issues/detail?id=683
http://code.google.com/p/arduino/issues/detail?id=684
2011-10-21 18:25:14 -04:00
David A. Mellis
a2235e3cdc Showing compilation warnings when verbose output is enabled.
http://code.google.com/p/arduino/issues/detail?id=664
2011-10-01 17:05:21 -04:00
David A. Mellis
d49c8e2c13 Restore .pde sketches too (not just .ino ones).
http://code.google.com/p/arduino/issues/detail?id=652
2011-09-25 10:01:36 -04:00
David A. Mellis
43fa225724 Dialog and preference about renaming .pde to .ino files on save.
The new extension (.ino) is used by default for all new sketches (whether created with new or save as).  It's possible, however, to control the behavior on save.  The first time you save a sketch with a .pde file, you're prompted to rename it or cancel the save.  There's a preference that allow selecting whether or not .pde files are renamed on save.

http://code.google.com/p/arduino/issues/detail?id=644
2011-09-16 13:30:50 -04:00
David A. Mellis
026794f1eb Don't rename read-only files in sketch on save (which becomes save-as).
http://code.google.com/p/arduino/issues/detail?id=639
2011-09-16 12:45:24 -04:00
Cristian Maglie
131f7898b6 Removed dialog box warning when auto-renaming from .pde to .ino.
Now both .pde and .ino ext are hidden in IDE tabs.
2011-09-11 23:45:12 +02:00
Cristian Maglie
5d97d467c8 File renamed from .pde to .ino during save. 2011-09-10 01:16:24 +02:00
David A. Mellis
0b09a8edd9 Adding custom error messages for some 1.0 changes.
Also, changing the logic of the code a bit to correctly place errors even when substituting custom error messages.
2011-09-08 18:10:29 -04:00
David A. Mellis
c9d4630d2b Fallback on system avrdude if Arduino avrdude isn't present (Linux). 2011-09-07 20:00:06 +02:00
David A. Mellis
551b8e85ac Don't use the low-res icon on Mac OS X.
http://code.google.com/p/arduino/issues/detail?id=612
2011-08-31 15:29:54 -04:00
Cristian Maglie
15b28b415d Mouse change cursor shape when is moved over a URL. 2011-08-30 23:22:59 +02:00
David A. Mellis
4553cee443 Fixes to compile under Java 1.5 (on my Linux machine). 2011-08-27 00:01:08 +02:00
David Mellis
bd6c90e5b8 Setting Arduino icon for serial monitor window.
http://code.google.com/p/arduino/issues/detail?id=564
2011-08-24 11:57:58 -04:00
David A. Mellis
0020105283 Also updating serial port display from "Serial port not found" dialog. 2011-08-24 11:55:24 -04:00
David A. Mellis
91a94cbe7e Removing "board: " prefix from line status bar. 2011-08-24 11:50:02 -04:00
David A. Mellis
365d4acf6e Merge remote-tracking branch 'cmaglie/port-on-statusbar' into new-extension 2011-08-24 11:46:18 -04:00
David A. Mellis
d501a9ba0e Single-click to open a URL / link (rather than double-click). 2011-08-24 11:35:12 -04:00
David A. Mellis
8ea35d4e6d Merge remote-tracking branch 'cmaglie/schematics-view' into new-extension 2011-08-24 11:32:19 -04:00
Cristian Maglie
71dd5dd534 Selected board and serial port on status bar. 2011-08-24 16:53:57 +02:00
Cristian Maglie
0fca78cc7e Fixed position of the Label of command buttons. 2011-08-24 11:36:14 +02:00
Cristian Maglie
88794ec1d6 Double-click now opens URL (right-click still shows "Open URL" in popup
menù).
2011-08-24 10:42:58 +02:00
David A. Mellis
d00f0949ed Renaming pins/ directory to the more generic variants/
http://code.google.com/p/arduino/issues/detail?id=588
2011-08-23 17:07:39 -04:00
Cristian Maglie
303b2e5103 Removed arrow. 2011-08-23 19:29:36 +02:00
Cristian Maglie
f233861a4c URL right-clickable and underlined. 2011-08-23 19:21:42 +02:00
Cristian Maglie
6886910f3d Serial button on the right. 2011-08-22 18:24:13 +02:00
Cristian Maglie
d60c42e5ed Clickable url are now searched with a good regexp and highlighted. 2011-08-19 22:32:34 +02:00
Cristian Maglie
a6c8753a80 Schematic URL. Actually tag is "@schematics <url>" that should be put
inside code comments.
2011-08-19 19:51:02 +02:00
David A. Mellis
ac3f093b76 Revert "Added Schematic view (from wiring)."
This reverts commit ccb318c2ab.
2011-08-18 14:54:42 -04:00
David A. Mellis
fc90fa7d9d Showing progress during compilation as well as upload. 2011-08-16 17:51:19 -04:00
Cristian Maglie
ccb318c2ab Added Schematic view (from wiring). 2011-08-16 20:38:23 +02:00