Merge branch 'master' into dev.
This commit is contained in:
commit
9a4b8b6c86
|
|
@ -38,7 +38,7 @@ PROJECT_NAME = "Arduino MIDI Library"
|
||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = "Version 4.3"
|
PROJECT_NUMBER = "Version 4.3.1"
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||||
# for a project that appears at the top of each page and should give viewer a
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
|
|
||||||
11
library.json
11
library.json
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "MIDI Library",
|
"name": "MIDI Library",
|
||||||
"version": "4.3",
|
"version": "4.3.1",
|
||||||
"keywords": "midi",
|
"keywords": "midi",
|
||||||
"description": "Enables MIDI I/O communications on the Arduino serial ports",
|
"description": "Enables MIDI I/O communications on the Arduino serial ports",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
@ -17,9 +17,12 @@
|
||||||
"url": "https://github.com/FortySevenEffects/arduino_midi_library.git",
|
"url": "https://github.com/FortySevenEffects/arduino_midi_library.git",
|
||||||
"branch": "master"
|
"branch": "master"
|
||||||
},
|
},
|
||||||
"downloadUrl": "https://github.com/FortySevenEffects/arduino_midi_library/releases/tag/4.3",
|
"export": {
|
||||||
"include": "src",
|
"include": [
|
||||||
"examples": "examples/*/*.ino",
|
"src",
|
||||||
|
"examples"
|
||||||
|
]
|
||||||
|
},
|
||||||
"frameworks": "arduino",
|
"frameworks": "arduino",
|
||||||
"platforms": ["atmelavr", "atmelsam", "teensy"]
|
"platforms": ["atmelavr", "atmelsam", "teensy"]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
name=MIDI Library
|
name=MIDI Library
|
||||||
version=4.2.0
|
version=4.3.1
|
||||||
author=Forty Seven Effects
|
author=Forty Seven Effects
|
||||||
maintainer=Francois Best <francois.best@fortyseveneffects.com>
|
maintainer=Francois Best <francois.best@fortyseveneffects.com>
|
||||||
sentence=MIDI I/Os for Arduino
|
sentence=MIDI I/Os for Arduino
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
* @file MIDI.cpp
|
* @file MIDI.cpp
|
||||||
* Project Arduino MIDI Library
|
* Project Arduino MIDI Library
|
||||||
* @brief MIDI Library for the Arduino
|
* @brief MIDI Library for the Arduino
|
||||||
* @version 4.3
|
|
||||||
* @author Francois Best
|
* @author Francois Best
|
||||||
* @date 24/02/11
|
* @date 24/02/11
|
||||||
* @license MIT - Copyright (c) 2015 Francois Best
|
* @license MIT - Copyright (c) 2015 Francois Best
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
* @file MIDI.h
|
* @file MIDI.h
|
||||||
* Project Arduino MIDI Library
|
* Project Arduino MIDI Library
|
||||||
* @brief MIDI Library for the Arduino
|
* @brief MIDI Library for the Arduino
|
||||||
* @version 4.3
|
|
||||||
* @author Francois Best
|
* @author Francois Best
|
||||||
* @date 24/02/11
|
* @date 24/02/11
|
||||||
* @license MIT - Copyright (c) 2015 Francois Best
|
* @license MIT - Copyright (c) 2015 Francois Best
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
* @file MIDI.hpp
|
* @file MIDI.hpp
|
||||||
* Project Arduino MIDI Library
|
* Project Arduino MIDI Library
|
||||||
* @brief MIDI Library for the Arduino - Inline implementations
|
* @brief MIDI Library for the Arduino - Inline implementations
|
||||||
* @version 4.3
|
|
||||||
* @author Francois Best
|
* @author Francois Best
|
||||||
* @date 24/02/11
|
* @date 24/02/11
|
||||||
* @license MIT - Copyright (c) 2015 Francois Best
|
* @license MIT - Copyright (c) 2015 Francois Best
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
* @file midi_Defs.h
|
* @file midi_Defs.h
|
||||||
* Project Arduino MIDI Library
|
* Project Arduino MIDI Library
|
||||||
* @brief MIDI Library for the Arduino - Definitions
|
* @brief MIDI Library for the Arduino - Definitions
|
||||||
* @version 4.3
|
|
||||||
* @author Francois Best
|
* @author Francois Best
|
||||||
* @date 24/02/11
|
* @date 24/02/11
|
||||||
* @license MIT - Copyright (c) 2015 Francois Best
|
* @license MIT - Copyright (c) 2015 Francois Best
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
* @file midi_Message.h
|
* @file midi_Message.h
|
||||||
* Project Arduino MIDI Library
|
* Project Arduino MIDI Library
|
||||||
* @brief MIDI Library for the Arduino - Message struct definition
|
* @brief MIDI Library for the Arduino - Message struct definition
|
||||||
* @version 4.3
|
|
||||||
* @author Francois Best
|
* @author Francois Best
|
||||||
* @date 11/06/14
|
* @date 11/06/14
|
||||||
* @license MIT - Copyright (c) 2015 Francois Best
|
* @license MIT - Copyright (c) 2015 Francois Best
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
* @file midi_Namespace.h
|
* @file midi_Namespace.h
|
||||||
* Project Arduino MIDI Library
|
* Project Arduino MIDI Library
|
||||||
* @brief MIDI Library for the Arduino - Namespace declaration
|
* @brief MIDI Library for the Arduino - Namespace declaration
|
||||||
* @version 4.3
|
|
||||||
* @author Francois Best
|
* @author Francois Best
|
||||||
* @date 24/02/11
|
* @date 24/02/11
|
||||||
* @license MIT - Copyright (c) 2015 Francois Best
|
* @license MIT - Copyright (c) 2015 Francois Best
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
* @file midi_RingBuffer.h
|
* @file midi_RingBuffer.h
|
||||||
* Project Arduino MIDI Library
|
* Project Arduino MIDI Library
|
||||||
* @brief MIDI Library for Arduino - Ring Buffer
|
* @brief MIDI Library for Arduino - Ring Buffer
|
||||||
* @version 4.3
|
|
||||||
* @author Francois Best
|
* @author Francois Best
|
||||||
* @date 10/10/2016
|
* @date 10/10/2016
|
||||||
* @license MIT - Copyright (c) 2016 Francois Best
|
* @license MIT - Copyright (c) 2016 Francois Best
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
* @file midi_RingBuffer.hpp
|
* @file midi_RingBuffer.hpp
|
||||||
* Project Arduino MIDI Library
|
* Project Arduino MIDI Library
|
||||||
* @brief MIDI Library for Arduino - Ring Buffer
|
* @brief MIDI Library for Arduino - Ring Buffer
|
||||||
* @version 4.3
|
|
||||||
* @author Francois Best
|
* @author Francois Best
|
||||||
* @date 10/10/2016
|
* @date 10/10/2016
|
||||||
* @license MIT - Copyright (c) 2016 Francois Best
|
* @license MIT - Copyright (c) 2016 Francois Best
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
* @file midi_Settings.h
|
* @file midi_Settings.h
|
||||||
* Project Arduino MIDI Library
|
* Project Arduino MIDI Library
|
||||||
* @brief MIDI Library for the Arduino - Settings
|
* @brief MIDI Library for the Arduino - Settings
|
||||||
* @version 4.3
|
|
||||||
* @author Francois Best
|
* @author Francois Best
|
||||||
* @date 24/02/11
|
* @date 24/02/11
|
||||||
* @license MIT - Copyright (c) 2015 Francois Best
|
* @license MIT - Copyright (c) 2015 Francois Best
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
* @file midi_UsbDefs.h
|
* @file midi_UsbDefs.h
|
||||||
* Project Arduino MIDI Library
|
* Project Arduino MIDI Library
|
||||||
* @brief MIDI Library for the Arduino - Definitions
|
* @brief MIDI Library for the Arduino - Definitions
|
||||||
* @version 4.3
|
|
||||||
* @author Francois Best
|
* @author Francois Best
|
||||||
* @date 24/02/11
|
* @date 24/02/11
|
||||||
* @license MIT - Copyright (c) 2016 Francois Best
|
* @license MIT - Copyright (c) 2016 Francois Best
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
* @file midi_UsbTransport.h
|
* @file midi_UsbTransport.h
|
||||||
* Project Arduino MIDI Library
|
* Project Arduino MIDI Library
|
||||||
* @brief MIDI Library for the Arduino - Transport layer for USB MIDI
|
* @brief MIDI Library for the Arduino - Transport layer for USB MIDI
|
||||||
* @version 4.3
|
|
||||||
* @author Francois Best
|
* @author Francois Best
|
||||||
* @date 10/10/2016
|
* @date 10/10/2016
|
||||||
* @license MIT - Copyright (c) 2016 Francois Best
|
* @license MIT - Copyright (c) 2016 Francois Best
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
* @file midi_UsbTransport.hpp
|
* @file midi_UsbTransport.hpp
|
||||||
* Project Arduino MIDI Library
|
* Project Arduino MIDI Library
|
||||||
* @brief MIDI Library for the Arduino - Transport layer for USB MIDI
|
* @brief MIDI Library for the Arduino - Transport layer for USB MIDI
|
||||||
* @version 4.3
|
|
||||||
* @author Francois Best
|
* @author Francois Best
|
||||||
* @date 10/10/2016
|
* @date 10/10/2016
|
||||||
* @license MIT - Copyright (c) 2016 Francois Best
|
* @license MIT - Copyright (c) 2016 Francois Best
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue