diff --git a/docs/AUTHORS.txt b/docs/AUTHORS.txt
index 933a62204..823b725f9 100644
--- a/docs/AUTHORS.txt
+++ b/docs/AUTHORS.txt
@@ -6,7 +6,7 @@ Copyright (c) 2002-2023
Various contributors (see below, and CHANGES.txt)
https://tuxpaint.org/
-June 17, 2002 - January 28, 2023
+June 17, 2002 - January 29, 2023
* Design and Coding:
@@ -115,11 +115,12 @@ June 17, 2002 - January 28, 2023
(https://freesound.org/people/SpliceSound/sounds/369834/)
Creative Commons 0 by Julian Evans
- Circles and Rays magic tools and artwork
+ Circles, Rays, and Fur magic tools and artwork
by Bill Kendrick
Inspired by "Night Sky Scene [Pen Parallax]" Scratch Project
by -HexaScape- .
- Sound effect based on Richard Wagner's "Ride of the Valkyries"
+
+ Circles & Rays sound effect based on Richard Wagner's "Ride of the Valkyries"
licensed as Creative Commons Attribution 3.0 Unported (CC BY 3.0)
(https://creativecommons.org/licenses/by/3.0/)
by https://pmmusic.pro/; conducted by Philip Milman.
diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt
index 1b35d7aef..41540b0f0 100644
--- a/docs/CHANGES.txt
+++ b/docs/CHANGES.txt
@@ -7,7 +7,7 @@ Various contributors (see below, and AUTHORS.txt)
https://tuxpaint.org/
-2022.January.28 (0.9.29)
+2022.January.29 (0.9.29)
* Improvements to "Stamp" tool:
-----------------------------
* Stamps may now be rotated.
@@ -16,30 +16,35 @@ https://tuxpaint.org/
* New Magic Tools:
----------------
- * "Googly Eyes"; place eyeballs in your drawing.`
+ * "Googly Eyes"; place eyeballs in your drawing.
Bill Kendrick
(Sound effect licensed as Creative Commons 0 by
https://freesound.org/people/MrFossy/)
- * [WIP] "Rivulet"; apply rivulets of water to the canvas
- - needs better icon
- - needs sound effect
- - effect needs improvement
- Bill Kendrick
-
* "Maze"; draw a maze pattern over part or all of your drawing.
Bill Kendrick
(Sound effect licensed as Creative Commons 0 by
Julian Evans, https://www.julianevans.info/)
- * "Circles" and "Rays"; convert the image into circular or ray
- brushstrokes.
+ * "Circles" and "Rays" -- convert the image into circular or ray
+ brushstrokes, and [WIP] "Fur" -- add fur to a picture.
Bill Kendrick
(Inspired by "Night Sky Scene [Pen Parallax]" Scratch Project
by -HexaScape- )
- (Sound effect based on Richard Wagner's "Ride of the Valkyries"
- licensed as Creative Commons Attribution 3.0 Unported (CC BY 3.0)
- by https://pmmusic.pro/; conducted by Philip Milman)
+
+ [WIP] - Fur sound effect needed
+ [WIP] - Fur sound icon needed
+
+ ("Circles" and "Rays" sound effects based on Richard Wagner's
+ "Ride of the Valkyries", recording licensed as Creative Commons
+ Attribution 3.0 Unported (CC BY 3.0), and conducted by,
+ Philip Milman )
+
+ * [WIP] "Rivulet"; apply rivulets of water to the canvas
+ - needs better icon
+ - needs sound effect
+ - effect needs improvement
+ Bill Kendrick
* Improvements to Magic Tools:
----------------------------
diff --git a/magic/src/swirls.c b/magic/src/swirls.c
index 66eca4fcd..7b420ab4d 100644
--- a/magic/src/swirls.c
+++ b/magic/src/swirls.c
@@ -162,7 +162,11 @@ char *swirls_get_name(magic_api * api ATTRIBUTE_UNUSED,
int swirls_get_group(magic_api * api ATTRIBUTE_UNUSED,
int which ATTRIBUTE_UNUSED)
{
- return MAGIC_TYPE_DISTORTS;
+ if (which == SWIRL_TOOL_FUR) {
+ return MAGIC_TYPE_PAINTING;
+ } else {
+ return MAGIC_TYPE_DISTORTS;
+ }
}
char *swirls_get_description(magic_api * api ATTRIBUTE_UNUSED,