diff --git a/Readme.md b/Readme.md index 5dfc694d..e3d2e328 100644 --- a/Readme.md +++ b/Readme.md @@ -1,4 +1,4 @@ -Arduino HID Project 2.4.4 +Arduino HID Project 2.5.0 ========================= ![Header Picture](header.jpg) @@ -47,6 +47,10 @@ www.nicohood.de Version History =============== ``` +2.5.0 Release (15.09.2018) +* Ported to SAMD architecture #146 +* Fixed bad keyboard report issue #148 + 2.4.4 Release (27.01.2017) * Added releaseAll() to Mouse API * Fix flexible array errors diff --git a/library.properties b/library.properties index b74e139b..362a7284 100644 --- a/library.properties +++ b/library.properties @@ -1,10 +1,10 @@ name=HID-Project -version=2.4.4 +version=2.5.0 author=NicoHood maintainer=NicoHood sentence=Extended HID Functions for Arduino paragraph=Includes BootKeyboard/Mouse, Consumer, System, Gamepad, RawHID and more features. Also compatible with Arduino Uno/Mega via HoodLoader2. category=Communication url=https://github.com/NicoHood/HID -architectures=avr +architectures=* dot_a_linkage=true diff --git a/src/HID-Project.h b/src/HID-Project.h index eb5c88c9..4b37ecbb 100644 --- a/src/HID-Project.h +++ b/src/HID-Project.h @@ -25,7 +25,7 @@ THE SOFTWARE. #pragma once // Software version -#define HID_PROJECT_VERSION 244 +#define HID_PROJECT_VERSION 250 #if ARDUINO < 10607 #error HID Project requires Arduino IDE 1.6.7 or greater. Please update your IDE.