diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt index 399c4e708..8779ca2b8 100644 --- a/docs/CHANGES.txt +++ b/docs/CHANGES.txt @@ -7,7 +7,7 @@ Various contributors (see below, and AUTHORS.txt) https://tuxpaint.org/ -2023.March.6 (0.9.29) +2023.March.7 (0.9.29) * Improvements to "Stamp" tool: ----------------------------- * Stamps may now be rotated. @@ -60,7 +60,6 @@ https://tuxpaint.org/ * [WIP] "Saturate" & "Desaturate" - Increase or decrease color saturation. Bill Kendrick - - need icons - need sound effects * [WIP] "Keep Color" & "Remove Color" - Completely desaturate @@ -69,7 +68,6 @@ https://tuxpaint.org/ while "Remove" desaturates parts of the image that match the chosen color. Bill Kendrick - - need icons - need sound effects * [WIP] "Kaleido-4", "-6", and "-8" -- Kaleidoscopic lens effects. diff --git a/magic/icons/desaturate.png b/magic/icons/desaturate.png new file mode 100644 index 000000000..1f6411449 Binary files /dev/null and b/magic/icons/desaturate.png differ diff --git a/magic/icons/keep_color.png b/magic/icons/keep_color.png new file mode 100644 index 000000000..d1b6d91fa Binary files /dev/null and b/magic/icons/keep_color.png differ diff --git a/magic/icons/remove_color.png b/magic/icons/remove_color.png new file mode 100644 index 000000000..1f697a7dc Binary files /dev/null and b/magic/icons/remove_color.png differ diff --git a/magic/icons/saturate.png b/magic/icons/saturate.png new file mode 100644 index 000000000..f9ed14b51 Binary files /dev/null and b/magic/icons/saturate.png differ diff --git a/magic/src/fade_darken.c b/magic/src/fade_darken.c index 0e47a7dad..7a76ef101 100644 --- a/magic/src/fade_darken.c +++ b/magic/src/fade_darken.c @@ -23,7 +23,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA (See COPYING.txt) - Last updated: February 28, 2023 + Last updated: March 7, 2023 */ #include @@ -82,19 +82,19 @@ char * tool_descriptions[NUM_TOOLS][2] = { char * sfx_filenames[NUM_TOOLS] = { "fade.wav", "darken.wav", - "fade.wav", // FIXME - "darken.wav", // FIXME - "darken.wav", // FIXME - "darken.wav", // FIXME + "desaturate.wav", + "saturate.wav", + "remove_color.wav", + "keep_color.wav", }; char * icon_filenames[NUM_TOOLS] = { "fade.png", "darken.png", - "fade.png", // FIXME - "darken.png", // FIXME - "darken.png", // FIXME - "darken.png", // FIXME + "desaturate.png", + "saturate.png", + "remove_color.png", + "keep_color.png", }; static Mix_Chunk *snd_effects[NUM_TOOLS];