Doc'ing Fur magic tool in CHANGES & AUTHORS

Also, moving to "Paint" group (the other two remain in "Distorts")
This commit is contained in:
Bill Kendrick 2023-01-29 22:18:59 -08:00
parent 034cbf5b5a
commit 6161ebe59a
3 changed files with 27 additions and 17 deletions

View file

@ -6,7 +6,7 @@ Copyright (c) 2002-2023
Various contributors (see below, and CHANGES.txt) Various contributors (see below, and CHANGES.txt)
https://tuxpaint.org/ https://tuxpaint.org/
June 17, 2002 - January 28, 2023 June 17, 2002 - January 29, 2023
* Design and Coding: * Design and Coding:
@ -115,11 +115,12 @@ June 17, 2002 - January 28, 2023
(https://freesound.org/people/SpliceSound/sounds/369834/) (https://freesound.org/people/SpliceSound/sounds/369834/)
Creative Commons 0 by Julian Evans <https://www.julianevans.info/> Creative Commons 0 by Julian Evans <https://www.julianevans.info/>
Circles and Rays magic tools and artwork Circles, Rays, and Fur magic tools and artwork
by Bill Kendrick <bill@newbreedsoftware.com> by Bill Kendrick <bill@newbreedsoftware.com>
Inspired by "Night Sky Scene [Pen Parallax]" Scratch Project Inspired by "Night Sky Scene [Pen Parallax]" Scratch Project
by -HexaScape- <https://scratch.mit.edu/users/-HexaScape->. by -HexaScape- <https://scratch.mit.edu/users/-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) licensed as Creative Commons Attribution 3.0 Unported (CC BY 3.0)
(https://creativecommons.org/licenses/by/3.0/) (https://creativecommons.org/licenses/by/3.0/)
by https://pmmusic.pro/; conducted by Philip Milman. by https://pmmusic.pro/; conducted by Philip Milman.

View file

@ -7,7 +7,7 @@ Various contributors (see below, and AUTHORS.txt)
https://tuxpaint.org/ https://tuxpaint.org/
2022.January.28 (0.9.29) 2022.January.29 (0.9.29)
* Improvements to "Stamp" tool: * Improvements to "Stamp" tool:
----------------------------- -----------------------------
* Stamps may now be rotated. * Stamps may now be rotated.
@ -16,30 +16,35 @@ https://tuxpaint.org/
* New Magic Tools: * New Magic Tools:
---------------- ----------------
* "Googly Eyes"; place eyeballs in your drawing.` * "Googly Eyes"; place eyeballs in your drawing.
Bill Kendrick <bill@newbreedsoftware.com> Bill Kendrick <bill@newbreedsoftware.com>
(Sound effect licensed as Creative Commons 0 by (Sound effect licensed as Creative Commons 0 by
https://freesound.org/people/MrFossy/) 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 <bill@newbreedsoftware.com>
* "Maze"; draw a maze pattern over part or all of your drawing. * "Maze"; draw a maze pattern over part or all of your drawing.
Bill Kendrick <bill@newbreedsoftware.com> Bill Kendrick <bill@newbreedsoftware.com>
(Sound effect licensed as Creative Commons 0 by (Sound effect licensed as Creative Commons 0 by
Julian Evans, https://www.julianevans.info/) Julian Evans, https://www.julianevans.info/)
* "Circles" and "Rays"; convert the image into circular or ray * "Circles" and "Rays" -- convert the image into circular or ray
brushstrokes. brushstrokes, and [WIP] "Fur" -- add fur to a picture.
Bill Kendrick <bill@newbreedsoftware.com> Bill Kendrick <bill@newbreedsoftware.com>
(Inspired by "Night Sky Scene [Pen Parallax]" Scratch Project (Inspired by "Night Sky Scene [Pen Parallax]" Scratch Project
by -HexaScape- <https://scratch.mit.edu/users/-HexaScape->) by -HexaScape- <https://scratch.mit.edu/users/-HexaScape->)
(Sound effect based on Richard Wagner's "Ride of the Valkyries"
licensed as Creative Commons Attribution 3.0 Unported (CC BY 3.0) [WIP] - Fur sound effect needed
by https://pmmusic.pro/; conducted by Philip Milman) [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 <https://pmmusic.pro/>)
* [WIP] "Rivulet"; apply rivulets of water to the canvas
- needs better icon
- needs sound effect
- effect needs improvement
Bill Kendrick <bill@newbreedsoftware.com>
* Improvements to Magic Tools: * Improvements to Magic Tools:
---------------------------- ----------------------------

View file

@ -162,7 +162,11 @@ char *swirls_get_name(magic_api * api ATTRIBUTE_UNUSED,
int swirls_get_group(magic_api * api ATTRIBUTE_UNUSED, int swirls_get_group(magic_api * api ATTRIBUTE_UNUSED,
int which 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, char *swirls_get_description(magic_api * api ATTRIBUTE_UNUSED,