Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kriegsman <1334634+kriegsman@users.noreply.github.com>2020-02-03 07:25:05 +0300
committerMark Kriegsman <1334634+kriegsman@users.noreply.github.com>2020-02-03 07:25:05 +0300
commitfefc5f563a33963b9998f0475ad050813b30adcb (patch)
tree9d6c9765ab9228711277c2203f7ae5dd9e339c1b
parentced802e5a418e4b3e5f9f5e7872d9c66e42b5d8d (diff)
Rev. 3.3.3 to improve board support, add example animations, fix bugs, and to pass the torch.3.3.3
-rw-r--r--FastLED.h4
-rw-r--r--library.json17
-rw-r--r--library.properties2
-rw-r--r--release_notes.md10
4 files changed, 29 insertions, 4 deletions
diff --git a/FastLED.h b/FastLED.h
index 05e8530c..d7b6375a 100644
--- a/FastLED.h
+++ b/FastLED.h
@@ -11,9 +11,9 @@
#define FASTLED_VERSION 3003002
#ifndef FASTLED_INTERNAL
# ifdef FASTLED_HAS_PRAGMA_MESSAGE
-# pragma message "FastLED version 3.003.002"
+# pragma message "FastLED version 3.003.003"
# else
-# warning FastLED version 3.003.002 (Not really a warning, just telling you here.)
+# warning FastLED version 3.003.003 (Not really a warning, just telling you here.)
# endif
#endif
diff --git a/library.json b/library.json
index c7075be7..bcb24070 100644
--- a/library.json
+++ b/library.json
@@ -12,13 +12,28 @@
"name": "Mark Kriegsman",
"url": "https://github.com/kriegsman",
"maintainer": true
+ },
+ {
+ "name": "Sam Guyer",
+ "url": "https://github.com/samguyer",
+ "maintainer": true
+ },
+ {
+ "name": "Jason Coon",
+ "url": "https://github.com/jasoncoon",
+ "maintainer": true
+ },
+ {
+ "name": "Josh Huber",
+ "url": "https://github.com/uberjay",
+ "maintainer": true
}
],
"repository": {
"type": "git",
"url": "https://github.com/FastLED/FastLED.git"
},
- "version": "3.3.2",
+ "version": "3.3.3",
"license": "MIT",
"homepage": "http://fastled.io",
"frameworks": "arduino",
diff --git a/library.properties b/library.properties
index 1cb2d08a..2ebea658 100644
--- a/library.properties
+++ b/library.properties
@@ -1,5 +1,5 @@
name=FastLED
-version=3.3.2
+version=3.3.3
author=Daniel Garcia
maintainer=Daniel Garcia <dgarcia@fastled.io>
sentence=Multi-platform library for controlling dozens of different types of LEDs along with optimized math, effect, and noise functions.
diff --git a/release_notes.md b/release_notes.md
index cf9ce1a3..9c38eedf 100644
--- a/release_notes.md
+++ b/release_notes.md
@@ -1,3 +1,13 @@
+FastLED 3.3.3
+=============
+
+* Improved support for ESP32, Teensy4, ATmega16, nRF52, and ARM STM32.
+* Added animation examples: "TwinkleFox" holiday lights, "Pride2015" moving rainbows, and "Pacifica" gentle ocean waves
+* Fixed a few bugs including a rare divide-by-zero crash
+* Cleaned up code and examples a bit
+* Said our sad farwells to FastLED founder Daniel Garcia, who we lost in a tragic accident on September 2nd, 2019. Dan's beautiful code and warm kindness have been at the heart of the library, and our community, for ten years. FastLED will continue with help from all across the FastLED world, and Dan's spirit will be with us whenever the lights shine and glow. Thank you, Dan, for everything.
+
+
FastLED 3.3.2
=============