Skip to content

Commit 5e9a016

Browse files
committed
docs: Contributions
1 parent d600656 commit 5e9a016

File tree

2 files changed

+30
-3
lines changed

2 files changed

+30
-3
lines changed

CONTRIBUTING.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,29 @@
1+
# Contributing Guidelines
2+
3+
First, thanks for your help ! :+1:
4+
5+
## Branches
6+
7+
Please base your Pull Requests off the `master` branch.
8+
19
## Requirements
210

311
Requirements to build and run the unit tests:
4-
- CMake 2.8 or later
5-
- GCC / Clang with C++11 support
12+
13+
- CMake 2.8 or later
14+
- GCC / Clang with C++11 support (GCC 4.8 or higher)
615

716
## Setup
817

918
Pull Google Test / Google Mock subrepository:
19+
1020
```
1121
$ git submodule init
1222
$ git submodule update
1323
```
1424

1525
Create build directory, run CMake, build and run unit tests:
26+
1627
```
1728
$ mkdir build && cd build
1829
$ cmake ..

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ This library adds MIDI I/O communications to an Arduino board.
99

1010
### Features
1111

12-
- **New** : USB MIDI Device support with [`MIDIUSB`](https://github.com/arduino-libraries/MIDIUSB).
12+
- **New** : MIDI over USB, Bluetooth & IP (see [Transports](#other-transport-mechanisms)).
13+
- **New** : Active Sensing support
1314
- Compatible with all Arduino boards (and clones with an AVR processor).
1415
- Simple and fast way to send and receive every kind of MIDI message (including all System messages, SysEx, Clock, etc..).
1516
- OMNI input reading (read all channels).
@@ -112,6 +113,21 @@ To report a bug, contribute, discuss on usage, or simply request support, please
112113

113114
You can also contact me on Twitter: [@fortysevenfx](https://twitter.com/fortysevenfx).
114115

116+
## Contributors
117+
118+
Special thanks to all who have contributed to this open-source project !
119+
120+
- [@lathoub](https://github.com/lathoub)
121+
- [@jarosz](https://github.com/jarosz)
122+
- [@ivankravets](https://github.com/ivankravets)
123+
- [@insolace](https://github.com/insolace)
124+
- [@softegg](https://github.com/softegg)
125+
- [@per1234](https://github.com/per1234)
126+
- [@LnnrtS](https://github.com/LnnrtS)
127+
- [@DavidMenting](https://github.com/DavidMenting)
128+
129+
You want to help ? Check out the [contribution guidelines](./CONTRIBUTING.md).
130+
115131
## License
116132

117133
MIT © 2009 - present [Francois Best](https://francoisbest.com)

0 commit comments

Comments
 (0)