Skip to content

Compare: Arduino IDE 1.5: Library specification

Showing with 2 additions and 2 deletions.
  1. +2 −2 Arduino-IDE-1.5:-Library-specification.md
4 changes: 2 additions & 2 deletions Arduino-IDE-1.5:-Library-specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ This file will allow the future *Library Manager* to search and install a librar

The library.properties file is a key=value properties list. Every field in this file is UTF-8 encoded. The available fields are:

* **name** - the name of the library
* **version** - version of the library. Version should be [semver](http://semver.org/) compliant. 1.2.0 is correct; 1.2 is accepted; r5, 003, 1.1c are invalid
* **name** - the name of the library. Library names must contain only basic letters and numbers. (ASCII only and no spaces, and it cannot start with a number)
* **version** - version of the library. Version should be [semver](http://semver.org/) compliant. 1.2.0 is correct; 1.2 is accepted; r5, 003, 1.1c are invalid
* **author** - name/nickname of the authors and their email addresses (not mandatory) separated by comma ","
* **maintainer** - name and email of the maintainer
* **sentence** - a sentence explaining the purpose of the library
Expand Down