Skip to content

Commit f95d193

Browse files
authored
Merge branch 'master' into copy_directory_on_open_only_if_needed_master
2 parents 54adc00 + b551bf5 commit f95d193

File tree

788 files changed

+14451
-197174
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

788 files changed

+14451
-197174
lines changed

.classpath

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<classpathentry kind="src" path="app/test"/>
55
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
66
<classpathentry kind="lib" path="app/lib/apple.jar"/>
7-
<classpathentry kind="lib" path="app/lib/ecj.jar"/>
87
<classpathentry kind="lib" path="app/test-lib/junit-4.11.jar"/>
98
<classpathentry kind="lib" path="app/test-lib/fest-assert-1.2.jar"/>
109
<classpathentry kind="lib" path="app/test-lib/fest-reflect-1.2.jar"/>
@@ -16,17 +15,18 @@
1615
<classpathentry kind="lib" path="app/lib/commons-httpclient-3.1.jar"/>
1716
<classpathentry kind="lib" path="app/lib/commons-logging-1.0.4.jar"/>
1817
<classpathentry kind="lib" path="app/lib/commons-net-3.3.jar"/>
19-
<classpathentry kind="lib" path="app/lib/jmdns-3.5.1.jar"/>
18+
<classpathentry kind="lib" path="app/lib/jmdns-3.5.3.jar"/>
2019
<classpathentry kind="lib" path="app/lib/slf4j-api-1.7.22.jar"/>
2120
<classpathentry kind="lib" path="app/lib/jsch-0.1.50.jar"/>
22-
<classpathentry kind="lib" path="app/lib/jssc-2.8.0.jar"/>
21+
<classpathentry kind="lib" path="app/lib/jssc-2.8.0-arduino3.jar"/>
2322
<classpathentry kind="lib" path="app/lib/bcpg-jdk15on-152.jar"/>
2423
<classpathentry kind="lib" path="app/lib/bcprov-jdk15on-152.jar"/>
2524
<classpathentry kind="lib" path="app/lib/jackson-core-2.9.5.jar"/>
2625
<classpathentry kind="lib" path="app/lib/jackson-databind-2.9.5.jar"/>
2726
<classpathentry kind="lib" path="app/lib/jackson-module-mrbean-2.9.5.jar"/>
2827
<classpathentry kind="lib" path="app/lib/jackson-annotations-2.9.5.jar"/>
2928
<classpathentry kind="lib" path="app/lib/commons-compress-1.8.jar"/>
29+
<classpathentry kind="lib" path="app/lib/commons-lang3-3.8.1.jar"/>
3030
<classpathentry combineaccessrules="false" kind="src" path="/arduino-core"/>
3131
<classpathentry kind="output" path="app/bin"/>
3232
</classpath>

CONTRIBUTING.md

+70-102
Original file line numberDiff line numberDiff line change
@@ -1,102 +1,70 @@
1-
## Contributing guide
2-
This document serves as a checklist before contributing to this repository. It includes includes links to read up on if topics are unclear to you.
3-
4-
This guide mainly focuses on the proper use of Git. It has some overlap with the more general information found in the [Development Policy File](https://github.com/arduino/Arduino/wiki/Development-Policy).
5-
6-
### 1. Before using the issue tracker
7-
To report a bug or a small enhancement please use the [issue tracker](http://github.com/arduino/Arduino/issues). But check the following boxes before posting an issue:
8-
9-
- [ ] `Your issue is NOT a question about an Arduino sketch.` Sketch questions are handled on the [Arduino Forum](http://forum.arduino.cc/).
10-
- [ ] `Check if your issue has already been resolved in the` [hourly build](http://www.arduino.cc/en/Main/Software#hourly)
11-
- [ ] `Your issue is not a duplicate.` So search for similar open and closed issues and pull-requests.
12-
- [ ] `Make sure you are working on the right repository. See the table below.`
13-
14-
| Repositories | Projects |
15-
|---|---|
16-
|[Arduino](https://github.com/arduino/Arduino) | Arduino IDE, arduino.cc (but not the Arduino Playground), Library Manager |
17-
|[Arduino Playground](http://forum.arduino.cc/index.php?board=24.0) | This is a publicly editable wiki. Please either make the edit yourself or create a post |
18-
|[Arduino Forum](https://github.com/arduino/forum-issues) | Issues about the Arduino Forum |
19-
| [Libraries for Arduino IDE](https://github.com/arduino-libraries) | Changing libraries for the IDE |
20-
| [Arduino-builder](https://github.com/arduino/arduino-builder)| |
21-
|[Arduino Web Editor](https://github.com/arduino/arduino-create-agent) | |
22-
|[Arduino SAMD Boards](https://github.com/arduino/ArduinoCore-samd)|Zero, MKR1000, MKRZero, etc. |
23-
|[Arduino SAM Boards](https://github.com/arduino/ArduinoCore-sam)| Due |
24-
|[Arduino AVR Boards toolchain (avr-gcc)](https://github.com/arduino/toolchain-avr)| |
25-
|[Arduino's build of AVRDUDE](https://github.com/arduino/avrdude-build-script)||
26-
|Third party repository | for third party libraries, hardware packages or sketches |
27-
28-
### 2. Posting the issue
29-
When you have checked the previous boxes. Please consider the following points before posting the issue.
30-
31-
- [ ] `Describe the issue based on the behaviour you were expecting`
32-
- [ ] `Post complete error messages using markdown code fencing:` [Markdown Code Fencing Example](https://guides.github.com/features/mastering-markdown/#examples)
33-
- [ ] `Provide a full set of steps necessary to reproduce the issue`
34-
- [ ] `Demonstration code should be complete, correct and the minimum amount necessary to reproduce the issue`
35-
- [ ] `Library Manager submissions: make sure your library meets all the requirements listed in the` [Library Manager FAQ](https://github.com/arduino/Arduino/wiki/Library-Manager-FAQ)
36-
37-
### 3. Pull Requests
38-
Before starting to work on bigger topics like modifying the API or changes with backward compatibility trade-offs please discuss them in the [mailing list](https://groups.google.com/a/arduino.cc/forum/#!forum/developers) first.
39-
40-
### 4. Commit messages
41-
An easy to read pull request will speed up the merging process. Your commit messages need to be logically separate. And containing enough information on their own. When this is done consistently your pull request will have an easy to read log of changes.
42-
43-
Your commits need to be [atomic](https://www.freshconsulting.com/atomic-commits/) which allows the repository to remain flexible after merging.
44-
45-
If you did not read the following 7 points before or just want to fresh up. Please read up on them on this [website](https://chris.beams.io/posts/git-commit) by Chris Beams.
46-
47-
1. Separate subject from body with a blank line
48-
2. Limit the subject line (first line) to 50 characters
49-
3. Capitalize the subject line
50-
4. Do not end the subject line with a period `(.)`
51-
5. Use the imperative mood in the subject line.
52-
This should be in the written as giving an instruction for example "Fixed save-as bug" (it shows what the PR achieves when merging it)
53-
6. Wrap body at 72 characters
54-
7. Use the body to explain what, why and how
55-
56-
If your pull request fixes, closes or resolves an issue please reference it in the body with the following [syntax](https://help.github.com/articles/closing-issues-via-commit-messages/). Also see the last lines of the following example.
57-
58-
A general example with these 7 guidelines in mind is shown below (from the same website of [Chris Beams](https://chris.beams.io/posts/git-commit)):
59-
```
60-
Summarize changes in around 50 characters or less
61-
62-
More detailed explanatory text, if necessary. Wrap it to about 72
63-
characters or so. In some contexts, the first line is treated as the
64-
subject of the commit and the rest of the text as the body. The
65-
blank line separating the summary from the body is critical (unless
66-
you omit the body entirely); various tools like `log`, `shortlog`
67-
and `rebase` can get confused if you run the two together.
68-
69-
Explain the problem that this commit is solving. Focus on why you
70-
are making this change as opposed to how (the code explains that).
71-
Are there side effects or other unintuitive consequences of this
72-
change? Here's the place to explain them.
73-
74-
Further paragraphs come after blank lines.
75-
76-
- Bullet points are okay, too
77-
78-
- Typically a hyphen or asterisk is used for the bullet, preceded
79-
by a single space, with blank lines in between, but conventions
80-
vary here
81-
82-
If you use an issue tracker, put references to them at the bottom,
83-
like this:
84-
85-
Resolves: #123
86-
See also: #456, #789
87-
```
88-
89-
### 5. Rebasing pull requests
90-
When different people are working on the Arduino project simultaneously, pull requests can go stale quickly. A "stale" pull request is one that is no longer up to date with the latest merges in the project. It needs to be updated before it can be merged.
91-
92-
Most often pull requests become stale when merge conflicts occur. This happens when two pull requests both modify similar lines in the same file and one gets merged, the unmerged request will now have a merge conflict and needs updating.
93-
94-
When your pull request is stale, you will need to rebase your branch on the current master branch before you can merge it without conflicts.
95-
96-
More information about rebasing can be found at the repository of [edX](https://github.com/edx/edx-platform/wiki/How-to-Rebase-a-Pull-Request).
97-
98-
### 6. Merged!
99-
When your pull request is merged please update the documentation if the changes require it:
100-
101-
- [ ] Edit appropiate [Wiki pages](https://github.com/arduino/Arduino/wiki/_pages)
102-
- [ ] Submit an [issue report](https://github.com/arduino/Arduino/issues/new) requesting changes to the [arduino.cc reference pages](https://www.arduino.cc/en/Reference/HomePage)
1+
# Contributing Rules
2+
Thanks for your interest in contributing to this free open source project! Arduino welcomes help from the community. There are several ways you can get involved:
3+
4+
| Type of contribution | Contribution method |
5+
|-|-|
6+
| - Support request<br/>- Question<br/>- Problem with your Arduino<br/>- Discussion | Post on the [Arduino Forum](http://forum.arduino.cc) |
7+
| - Bug report<br/>- [Arduino website](https://www.arduino.cc/) issue or improvement<br/>- Feature request | Issue report (read the [issue guidelines](#issues)) |
8+
| - Bug fix<br/>- Enhancement | Pull Request (read the [pull request guidelines](#pull-requests)) |
9+
| Translations for the Arduino IDE | [transifex](https://www.transifex.com/mbanzi/arduino-ide-15/) |
10+
| Translations for the [Language Reference](https://www.arduino.cc/reference) | [Reference repositories](https://github.com/arduino?q=reference-) |
11+
| Monetary | - [Donate](https://www.arduino.cc/en/Main/Contribute)<br/>- [Buy official products](https://store.arduino.cc) |
12+
13+
14+
## Issues
15+
- Do you need help or have a question about using Arduino? Support requests should be made to the appropriate section of the [Arduino forum](http://forum.arduino.cc) rather than an issue report. **Issue reports are to be used to report bugs or make feature requests only.**
16+
- Check if your issue has already been resolved in the [hourly build](http://www.arduino.cc/en/Main/Software#hourly).
17+
- Submit issue reports to the correct repository:
18+
19+
| Issue topic | Report at |
20+
|-|-|
21+
| Arduino IDE, Arduino AVR Boards, arduino.cc (but not the Arduino Forum), Library Manager additions | [arduino/Arduino](https://github.com/arduino/Arduino/issues) |
22+
| [Language Reference](https://www.arduino.cc/reference) | [Reference repositories](https://github.com/arduino?q=reference-) |
23+
| Arduino Forum | [arduino/forum-issues](https://github.com/arduino/forum-issues/issues) |
24+
| Arduino libraries | [arduino-libraries](https://github.com/arduino-libraries) |
25+
| arduino-builder | [arduino/arduino-builder](https://github.com/arduino/arduino-builder/issues) |
26+
| [Arduino Web Editor](https://create.arduino.cc/editor) | [**Create > Editor** section of the Arduino Forum](http://forum.arduino.cc/index.php?board=101.0) |
27+
| Arduino AVR Boards (Uno, Mega, Leonardo, etc.) | [arduino/ArduinoCore-avr](https://github.com/arduino/ArduinoCore-avr/issues) |
28+
| Arduino SAMD Boards (Zero, MKR1000, MKRZero, etc.) | [arduino/ArduinoCore-samd](https://github.com/arduino/ArduinoCore-samd/issues) |
29+
| Arduino SAM Boards (Due) | [arduino/ArduinoCore-sam](https://github.com/arduino/ArduinoCore-sam/issues) |
30+
| AVR Toolchain for Arduino | [arduino/toolchain-avr](https://github.com/arduino/toolchain-avr/issues) |
31+
| Arduino's build of AVRDUDE | [arduino/avrdude-build-script](https://github.com/arduino/avrdude-build-script/issues) |
32+
| Security vulnerability | See: [Coordinated Vulnerability Disclosure Policy](https://github.com/arduino/arduino-cvd-policy) |
33+
| 3rd party libraries, hardware, or sketches | Report issues to the author of the software, *not* Arduino. |
34+
35+
When you're not sure where your issue belongs, report it at [arduino/Arduino](https://github.com/arduino/Arduino) and we'll move it to where it belongs (but remember: Only bug reports and feature requests, do not ask for help with your own code there).
36+
37+
- Search [existing pull requests and issues](https://github.com/arduino/Arduino/issues?q=) to be sure it hasn't already been reported. If you have additional information to provide about an existing issue then please comment on that issue. If you simply want to express your support then use the [Reactions feature](https://github.com/blog/2119-add-reactions-to-pull-requests-issues-and-comments).
38+
- State the newest version of the Arduino IDE you have verified the issue with and which operating system you are using.
39+
- The issue title should be concise yet descriptive. Vague titles make it difficult to know the purpose of the issue when looking through the list of reports and may cause your issue to not be given proper attention.
40+
- Describe the issue and what behavior you were expecting. Post complete error messages using [Markdown code fencing](https://guides.github.com/features/mastering-markdown/#examples).
41+
- Provide a full set of steps necessary to reproduce the issue. Demonstration code should be complete, correct, and simplified to the minimum amount of code necessary to reproduce the issue. Please use [Markdown code fencing](https://guides.github.com/features/mastering-markdown/#examples) when posting code.
42+
- Be responsive. We may need you to provide more information, please respond as soon as possible.
43+
- If you find a solution to your problem update your issue report with an explanation of how you were able to fix it and close the issue.
44+
- Library Manager submissions: make sure your library meets all the requirements listed in the [Library Manager FAQ](https://github.com/arduino/Arduino/wiki/Library-Manager-FAQ).
45+
46+
47+
## Pull Requests
48+
Pull requests are an easy and effective way to submit a proposal for a change to the content of one of Arduino's repositories. The Arduino team can merge your change with a single click! You can find more information about pull requests [here](https://help.github.com/articles/creating-a-pull-request/).
49+
- Big changes, changes to the API, or changes with backward compatibility trade-offs should be first discussed in the [Arduino Developers Mailing List](https://groups.google.com/a/arduino.cc/forum/#!forum/developers).
50+
- Search [existing pull requests](https://github.com/arduino/Arduino/pulls?q=) to see if one has already been submitted for this change. Search the [issues](https://github.com/arduino/Arduino/issues?q=is%3Aissue) to see if there has been a discussion on this topic and whether your pull request can close any issues.
51+
- Code formatting should be consistent with the style used in the existing code.
52+
- Don't leave commented out code. A record of this code is already preserved in the commit history.
53+
- Note that the Arduino core libraries support many boards and processors. When fixing or adding functionality for one of them, it's easy to break something on the others. Please test your changes on as many processors as possible. Even if you don't have a particular board, try compiling your patch for it to make sure that you haven't introduced any errors.
54+
- All commits must be atomic. This means that the commit completely accomplishes a single task. Each commit should result in fully functional code. Multiple tasks should not be combined in a single commit, but a single task should not be split over multiple commits (e.g. one commit per file modified is not a good practice). For more information see http://www.freshconsulting.com/atomic-commits.
55+
- Each pull request should address a single bug fix or enhancement. This may consist of multiple commits. If you have multiple, unrelated fixes or enhancements to contribute, submit them as separate pull requests.
56+
- Commit messages:
57+
- Use the [imperative mood](http://chris.beams.io/posts/git-commit/#imperative) in the title. For example: "Apply editor.indent preference"
58+
- Capitalize the title.
59+
- Do not end the title with a period.
60+
- Separate title from the body with a blank line. If you're committing via GitHub or GitHub Desktop this will be done automatically.
61+
- Wrap body at 72 characters.
62+
- Completely explain the purpose of the commit. Include a rationale for the change, any caveats, side-effects, etc.
63+
- If your pull request fixes an issue in the issue tracker, use the [closes/fixes/resolves syntax](https://help.github.com/articles/closing-issues-via-commit-messages) in the body to indicate this.
64+
- See http://chris.beams.io/posts/git-commit for more tips on writing good commit messages.
65+
- Pull request title and description should follow the same guidelines as commit messages.
66+
- Rebasing pull requests is OK and encouraged. After submitting your pull request some changes may be requested. Rather than adding unnecessary extra commits to the pull request, you can squash these changes into the existing commit and then do a force push to your fork. When you do a force push to your fork, the PR will be updated with your new changes, so there is no need to open a new PR to make changes. Leave a comment on the pull request thread to explain that the history has been changed. This will help to keep the commit history of the repository clean.
67+
- After your pull request is merged please update the documentation if the changes require it:
68+
- Edit appropriate [Wiki pages](https://github.com/arduino/Arduino/wiki/_pages).
69+
- Submit an [issue report](https://github.com/arduino/Arduino/issues/new) requesting changes to the [arduino.cc reference pages](https://www.arduino.cc/en/Reference/HomePage).
70+
- For more contributing guidelines, see the [Arduino Development Policy](https://github.com/arduino/Arduino/wiki/Development-Policy).

ISSUE_TEMPLATE.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Please read the Issues section of the Contributing Rules at the "Contributing" link to the right before submitting an issue report.

PULL_REQUEST_TEMPLATE.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
### All Submissions:
2+
3+
* [ ] Have you followed the guidelines in our Contributing document?
4+
* [ ] Have you checked to ensure there aren't other open [Pull Requests](https://github.com/arduino/Arduino/pulls?q=) for the same update/change?
5+
6+
<!-- You can erase any parts of this template not applicable to your Pull Request. -->
7+
8+
### New Feature Submissions:
9+
10+
1. [ ] Does your submission pass tests?
11+
2. [ ] Have you lint your code locally prior to submission?
12+
13+
### Changes to Core Features:
14+
15+
* [ ] Have you added an explanation of what your changes do and why you'd like us to include them?
16+
* [ ] Have you written new tests for your core changes, as applicable?
17+
* [ ] Have you successfully ran tests with your changes

0 commit comments

Comments
 (0)