diff --git a/README.md b/README.md index 72f7643..2848a22 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ accel [![Build Status](https://travis-ci.org/shalecraig/accel.png?branch=master)](https://travis-ci.org/shalecraig/accel) ===== -[alpha] C gesture recognition library from accelerometers, written with the Pebble in mind. Currently version 0.1.0a. +[beta] C gesture recognition library from accelerometers, written with the Pebble in mind. Currently version 1.0.0b. ### TODO: -- V0.2.0a: +- V1.1.0: - [ ] Decide on having callbacks instead of (or) `accel_find_most_likely_gesture` - Maybe needs a const for the values? - [ ] Implement a `public` reset gesture method diff --git a/sample/simple-accelerometer/src/accel.h b/sample/simple-accelerometer/src/accel.h index 36287ae..c601b21 100644 --- a/sample/simple-accelerometer/src/accel.h +++ b/sample/simple-accelerometer/src/accel.h @@ -14,7 +14,7 @@ #define ACCEL_VERSION_GEN(major, minor, point, isBeta, isAlpha) \ (4*(100*((100*major)+minor)+point) + 3 - (isAlpha?2:0) - (isBeta?1:0)) -#define ACCEL_VERSION_CODE ACCEL_VERSION_GEN(0, 1, 0, false, true) +#define ACCEL_VERSION_CODE ACCEL_VERSION_GEN(1, 0, 0, true, false) struct internalAccelState; diff --git a/src/accel.h b/src/accel.h index a2273a3..e968fb1 100644 --- a/src/accel.h +++ b/src/accel.h @@ -12,7 +12,7 @@ #define ACCEL_VERSION_GEN(major, minor, point, isBeta, isAlpha) \ (4*(100*((100*major)+minor)+point) + 3 - (isAlpha?2:0) - (isBeta?1:0)) -#define ACCEL_VERSION_CODE ACCEL_VERSION_GEN(0, 1, 0, false, true) +#define ACCEL_VERSION_CODE ACCEL_VERSION_GEN(1, 0, 0, true, false) struct internalAccelState;