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>2022-01-02 22:44:08 +0300
committerMark Kriegsman <1334634+kriegsman@users.noreply.github.com>2022-01-02 22:44:08 +0300
commit4d73cddfe4bd2b370ee882b6f68769bf7f8309f4 (patch)
tree685a5faf1dfd8a32ae401a8915523989e9fc6fd6
parent016a7215f64ce4fcecdba18500551c1a1758807a (diff)
FastLED Release 3.5.0, with expanded board support, and many other improvements and bug fixes.3.5.0
-rw-r--r--library.json2
-rw-r--r--library.properties2
-rw-r--r--release_notes.md16
-rw-r--r--src/FastLED.h12
4 files changed, 25 insertions, 7 deletions
diff --git a/library.json b/library.json
index fdcde146..067bcadc 100644
--- a/library.json
+++ b/library.json
@@ -33,7 +33,7 @@
"type": "git",
"url": "https://github.com/FastLED/FastLED.git"
},
- "version": "3.4.0",
+ "version": "3.5.0",
"license": "MIT",
"homepage": "http://fastled.io",
"frameworks": "arduino",
diff --git a/library.properties b/library.properties
index fc8d17b1..6694984e 100644
--- a/library.properties
+++ b/library.properties
@@ -1,5 +1,5 @@
name=FastLED
-version=3.4.0
+version=3.5.0
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 e7eb7792..03e48c1d 100644
--- a/release_notes.md
+++ b/release_notes.md
@@ -1,3 +1,16 @@
+FastLED 3.5.0
+=============
+This release incorporates dozens of valuable improvements from FastLED contributors, tested and explored by the world-wide FastLED community of artists, creators, and developers. Thank you for all of your time, energy, and help! Here are some of the most significant changes in FastLED 3.5.0:
+* Greatly improved ESP32 and ESP8266 support
+* Improved board support for Teensy 4, Adafruit MatrixPortal M4, Arduino Nano Every, Partical Photon, and Seeed Wio Terminal
+* Improved and/or sped up: sin8, cos8, blend8, blur2d, scale8, Perlin/simplex noise
+* Improved HSV colors are smoother, richer, and brighter in fill_rainbow and elsewhere
+* Modernized and cleaned up the FastLED examples
+* Added github CI integration to help with automated testing
+* Added a Code of Conduct from https://www.contributor-covenant.org/
+* Released January 2022, with many thanks to FastLED contributors and the FastLED community!
+
+
FastLED 3.4.0
=============
@@ -12,6 +25,9 @@ FastLED 3.4.0
* Many small code cleanups and bug fixes
* Released December 2020, with many thanks to everyone contributing to FastLED!
+We also want to note here that in 2020, Github named FastLED one of the 'Greatest Hits' of Open Source software, and preserved an archived copy of FastLED in the Arctic Code Vault, the Bodleian Library at Oxford University, the Bibliotheca Alexandrina (the Library of Alexandria), and the Stanford University Libraries. https://archiveprogram.github.com/greatest-hits/
+
+
FastLED 3.3.3
=============
diff --git a/src/FastLED.h b/src/FastLED.h
index 042496fc..c6be2b5c 100644
--- a/src/FastLED.h
+++ b/src/FastLED.h
@@ -8,12 +8,14 @@
#define FASTLED_HAS_PRAGMA_MESSAGE
#endif
-#define FASTLED_VERSION 3004000
+#define FASTLED_VERSION 3005000
#ifndef FASTLED_INTERNAL
-# ifdef FASTLED_HAS_PRAGMA_MESSAGE
-# pragma message "FastLED version 3.004.000"
-# else
-# warning FastLED version 3.004.000 (Not really a warning, just telling you here.)
+# ifdef FASTLED_SHOW_VERSION
+# ifdef FASTLED_HAS_PRAGMA_MESSAGE
+# pragma message "FastLED version 3.005.000"
+# else
+# warning FastLED version 3.005.000 (Not really a warning, just telling you here.)
+# endif
# endif
#endif