diff --git a/Makefile b/Makefile index 60f1dd722..25a81bf26 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ # Various contributors (see AUTHORS.txt) # https://tuxpaint.org/ -# June 14, 2002 - April 3, 2023 +# June 14, 2002 - April 9, 2023 # The version number, for release: @@ -17,7 +17,7 @@ ifdef SOURCE_DATE_EPOCH else VER_DATE=$(shell date "+%Y-%m-%d") endif -MAGIC_API_VERSION:=0x00000007 +MAGIC_API_VERSION:=0x00000008 # Need to know the OS diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt index 9f3108c87..198b1d0bc 100644 --- a/docs/CHANGES.txt +++ b/docs/CHANGES.txt @@ -22,6 +22,13 @@ https://tuxpaint.org/ * Slight improvement to shape calculations Bill Kendrick + * Improvements to Magic tools: + ---------------------------- + * WIP Support for sizes in Magic tools via the plugin API. + Closes https://sourceforge.net/p/tuxpaint/feature-requests/220/ + Note: Bumps `TP_MAGIC_API_VERSION` to 0x00000008. + Bill Kendrick + * Localization Updates: --------------------- * Chinese (Simplified) translation diff --git a/docs/en/MAGIC-API.txt b/docs/en/MAGIC-API.txt index ef0bce760..760c62407 100644 --- a/docs/en/MAGIC-API.txt +++ b/docs/en/MAGIC-API.txt @@ -6,7 +6,7 @@ Magic Tool Plugin API Documentation Copyright © 2007-2023 by various contributors; see AUTHORS.txt. https://tuxpaint.org/ - January 25, 2023 + April 9, 2023 +----------------------------------------------------+ |Table of Contents | @@ -295,6 +295,15 @@ Magic Tool Plugin API Documentation Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()"). + int accepted_sizes(magic_api * api, int which) + + Return how many size variations the 'Magic' tool accepts. Return a + '0' if the 'Magic' tool should not offer sizing options. Returning + '1' is the same as returning '0'. + + Note: Called once for each Magic tool your plugin claims to + contain (by your "get_tool_count()"). + void shutdown(magic_api * api) The plugin should do any cleanup here. If you allocated any memory @@ -367,6 +376,20 @@ Magic Tool Plugin API Documentation Note: Changed most recently in Tux Paint 0.9.29; Magic API version 0x00000007. + void set_size(magic_api * api, int which, SDL_Surface * canvas, + SDL_Surface * last, Uint8 size, SDL_Rect * update_rect) + + Tux Paint will call this function to inform the plugin of the + 'Magic' tool size option chosen. (It will be called whenever one + of the plugin's Magic tools that accept sizes becomes active, and + whenever the user picks a new size while such a tool is currently + active.) + + Generally, Magic tools will not alter the canvas in any way when + receiving an updated size, but it is possible. + + Note: Added to Tux Paint 0.9.30; Magic API version 0x00000008. + void click(magic_api * api, int which, int mode, SDL_Surface * snapshot, SDL_Surface * canvas, int x, int y, SDL_Rect * update_rect) diff --git a/docs/en/html/MAGIC-API.html b/docs/en/html/MAGIC-API.html index 3a8438e20..9e9de16f4 100644 --- a/docs/en/html/MAGIC-API.html +++ b/docs/en/html/MAGIC-API.html @@ -102,7 +102,7 @@

- January 25, 2023

+ April 9, 2023

@@ -385,6 +385,14 @@ Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()").

+
int accepted_sizes(magic_api * api, int which)
+
+

+ Return how many size variations the 'Magic' tool accepts. Return a '0' if the 'Magic' tool should not offer sizing options. Returning '1' is the same as returning '0'.

+

+ Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()").

+
+
void shutdown(magic_api * api)

@@ -431,6 +439,16 @@ Note: Changed most recently in Tux Paint 0.9.29; Magic API version 0x00000007.

+
void set_size(magic_api * api, int which, SDL_Surface * canvas, SDL_Surface * last, Uint8 size, SDL_Rect * update_rect)
+
+

+ Tux Paint will call this function to inform the plugin of the 'Magic' tool size option chosen. (It will be called whenever one of the plugin's Magic tools that accept sizes becomes active, and whenever the user picks a new size while such a tool is currently active.)

+

+ Generally, Magic tools will not alter the canvas in any way when receiving an updated size, but it is possible.

+

+ Note: Added to Tux Paint 0.9.30; Magic API version 0x00000008.

+
+
void click(magic_api * api, int which, int mode, SDL_Surface * snapshot, SDL_Surface * canvas, int x, int y, SDL_Rect * update_rect)

diff --git a/docs/es_ES.UTF-8/ADVANCED-STAMPS-HOWTO.txt b/docs/es_ES.UTF-8/ADVANCED-STAMPS-HOWTO.txt index 48de37623..b295218ee 100644 --- a/docs/es_ES.UTF-8/ADVANCED-STAMPS-HOWTO.txt +++ b/docs/es_ES.UTF-8/ADVANCED-STAMPS-HOWTO.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.29 Advanced Stamps 'How-To' + versión 0.9.30 Advanced Stamps 'How-To' Copyright © 2006-2022 by Albert Cahalan and others; see AUTHORS.txt. https://tuxpaint.org/ diff --git a/docs/es_ES.UTF-8/ENVVARS.txt b/docs/es_ES.UTF-8/ENVVARS.txt index ef8507b12..5441d0440 100644 --- a/docs/es_ES.UTF-8/ENVVARS.txt +++ b/docs/es_ES.UTF-8/ENVVARS.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.29 + versión 0.9.30 Environment Variables Documentation Copyright © 2021-2022 by various contributors; see AUTHORS.txt. diff --git a/docs/es_ES.UTF-8/EXTENDING.txt b/docs/es_ES.UTF-8/EXTENDING.txt index 807ab7def..f7acee626 100644 --- a/docs/es_ES.UTF-8/EXTENDING.txt +++ b/docs/es_ES.UTF-8/EXTENDING.txt @@ -1,6 +1,6 @@ Extending Tux Paint - versión 0.9.29 + versión 0.9.30 Copyright © 2002-2023 by various contributors; see AUTHORS.txt. https://tuxpaint.org/ diff --git a/docs/es_ES.UTF-8/FAQ.txt b/docs/es_ES.UTF-8/FAQ.txt index 3eb0365e6..0c5086016 100644 --- a/docs/es_ES.UTF-8/FAQ.txt +++ b/docs/es_ES.UTF-8/FAQ.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.29 Frequently Asked Questions + versión 0.9.30 Frequently Asked Questions Copyright © 2002-2023 by various contributors; see AUTHORS.txt. https://tuxpaint.org/ diff --git a/docs/es_ES.UTF-8/INSTALL.txt b/docs/es_ES.UTF-8/INSTALL.txt index 727841eeb..79efedd91 100644 --- a/docs/es_ES.UTF-8/INSTALL.txt +++ b/docs/es_ES.UTF-8/INSTALL.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.29 + versión 0.9.30 Installation Documentation Copyright © 2002-2023 by various contributors; see AUTHORS.txt. diff --git a/docs/es_ES.UTF-8/MAGIC-API.txt b/docs/es_ES.UTF-8/MAGIC-API.txt index d2fccc6b4..0f4d6a341 100644 --- a/docs/es_ES.UTF-8/MAGIC-API.txt +++ b/docs/es_ES.UTF-8/MAGIC-API.txt @@ -1,12 +1,12 @@ Tux Paint - version 0.9.29 + version 0.9.30 Magic Tool Plugin API Documentation Copyright © 2007-2023 by various contributors; see AUTHORS.txt. https://tuxpaint.org/ - enero 25, 2023 + abril 9, 2023 +----------------------------------------------------+ |Table of Contents | @@ -295,6 +295,15 @@ Magic Tool Plugin API Documentation Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()"). + int accepted_sizes(magic_api * api, int which) + + Return how many size variations the 'Magic' tool accepts. Return a + '0' if the 'Magic' tool should not offer sizing options. Returning + '1' is the same as returning '0'. + + Note: Called once for each Magic tool your plugin claims to + contain (by your "get_tool_count()"). + void shutdown(magic_api * api) The plugin should do any cleanup here. If you allocated any memory @@ -367,6 +376,20 @@ Magic Tool Plugin API Documentation Note: Changed most recently in Tux Paint 0.9.29; Magic API version 0x00000007. + void set_size(magic_api * api, int which, SDL_Surface * canvas, + SDL_Surface * last, Uint8 size, SDL_Rect * update_rect) + + Tux Paint will call this function to inform the plugin of the + 'Magic' tool size option chosen. (It will be called whenever one + of the plugin's Magic tools that accept sizes becomes active, and + whenever the user picks a new size while such a tool is currently + active.) + + Generally, Magic tools will not alter the canvas in any way when + receiving an updated size, but it is possible. + + Note: Added to Tux Paint 0.9.30; Magic API version 0x00000008. + void click(magic_api * api, int which, int mode, SDL_Surface * snapshot, SDL_Surface * canvas, int x, int y, SDL_Rect * update_rect) @@ -518,7 +541,7 @@ Tux Paint Functions and Data char * tp_version A string containing the version of Tux Paint that's running (e.g., - "0.9.29"). + "0.9.30"). int canvas_w int canvas_h @@ -663,7 +686,7 @@ Constant Defintions in "tp_magic_api.h" your plugin is compatible. Note: This version number does not correspond to Tux Paint's own - release number (e.g., "0.9.29"). The API will not change every + release number (e.g., "0.9.30"). The API will not change every time a new version of Tux Paint is released, which means plugins compiled for earlier versions of Tux Paint will often run under newer versions. diff --git a/docs/es_ES.UTF-8/OPTIONS.txt b/docs/es_ES.UTF-8/OPTIONS.txt index 18c92bfbf..3b1e5570a 100644 --- a/docs/es_ES.UTF-8/OPTIONS.txt +++ b/docs/es_ES.UTF-8/OPTIONS.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.29 + versión 0.9.30 Options Documentation diff --git a/docs/es_ES.UTF-8/PNG.txt b/docs/es_ES.UTF-8/PNG.txt index 585eb74d1..53f567b12 100644 --- a/docs/es_ES.UTF-8/PNG.txt +++ b/docs/es_ES.UTF-8/PNG.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.29 + versión 0.9.30 PNG Documentation Copyright © 2007-2022 by various contributors; see AUTHORS.txt. diff --git a/docs/es_ES.UTF-8/SIGNALS.txt b/docs/es_ES.UTF-8/SIGNALS.txt index 915cda2ac..eadcc269d 100644 --- a/docs/es_ES.UTF-8/SIGNALS.txt +++ b/docs/es_ES.UTF-8/SIGNALS.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.29 + versión 0.9.30 Signals Documentation Copyright © 2019-2022 by various contributors; see AUTHORS.txt. diff --git a/docs/es_ES.UTF-8/SVG.txt b/docs/es_ES.UTF-8/SVG.txt index 086d2d431..445265e51 100644 --- a/docs/es_ES.UTF-8/SVG.txt +++ b/docs/es_ES.UTF-8/SVG.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.29 + versión 0.9.30 SVG Documentation Copyright © 2007-2022 by various contributors; see AUTHORS.txt. diff --git a/docs/es_ES.UTF-8/html/ADVANCED-STAMPS-HOWTO.html b/docs/es_ES.UTF-8/html/ADVANCED-STAMPS-HOWTO.html index df5e5428f..d818a506c 100644 --- a/docs/es_ES.UTF-8/html/ADVANCED-STAMPS-HOWTO.html +++ b/docs/es_ES.UTF-8/html/ADVANCED-STAMPS-HOWTO.html @@ -17,7 +17,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29 Advanced Stamps 'How-To' + versión 0.9.30 Advanced Stamps 'How-To'

Copyright © 2006-2022 by Albert Cahalan and others; see AUTHORS.txt.
diff --git a/docs/es_ES.UTF-8/html/ENVVARS.html b/docs/es_ES.UTF-8/html/ENVVARS.html index cb1dc7b6c..77a81db09 100644 --- a/docs/es_ES.UTF-8/html/ENVVARS.html +++ b/docs/es_ES.UTF-8/html/ENVVARS.html @@ -17,7 +17,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29
+ versión 0.9.30
Environment Variables Documentation

diff --git a/docs/es_ES.UTF-8/html/EXTENDING.html b/docs/es_ES.UTF-8/html/EXTENDING.html index e4d91bb6f..e42f5e0c3 100644 --- a/docs/es_ES.UTF-8/html/EXTENDING.html +++ b/docs/es_ES.UTF-8/html/EXTENDING.html @@ -92,7 +92,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29 + versión 0.9.30

Copyright © 2002-2023 by various contributors; see AUTHORS.txt.
diff --git a/docs/es_ES.UTF-8/html/FAQ.html b/docs/es_ES.UTF-8/html/FAQ.html index 2d3ebf298..23c25a42a 100644 --- a/docs/es_ES.UTF-8/html/FAQ.html +++ b/docs/es_ES.UTF-8/html/FAQ.html @@ -17,7 +17,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29 Frequently Asked Questions + versión 0.9.30 Frequently Asked Questions

Copyright © 2002-2023 by various contributors; see AUTHORS.txt.
diff --git a/docs/es_ES.UTF-8/html/INSTALL.html b/docs/es_ES.UTF-8/html/INSTALL.html index f1ee404ca..e6ed89dc7 100644 --- a/docs/es_ES.UTF-8/html/INSTALL.html +++ b/docs/es_ES.UTF-8/html/INSTALL.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29
+ versión 0.9.30
Installation Documentation

diff --git a/docs/es_ES.UTF-8/html/MAGIC-API.html b/docs/es_ES.UTF-8/html/MAGIC-API.html index 209bccc0b..fcdbf3c5e 100644 --- a/docs/es_ES.UTF-8/html/MAGIC-API.html +++ b/docs/es_ES.UTF-8/html/MAGIC-API.html @@ -91,7 +91,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.29 + version 0.9.30

Magic Tool Plugin API Documentation

@@ -102,7 +102,7 @@

- enero 25, 2023

+ abril 9, 2023

@@ -385,6 +385,14 @@ Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()").

+
int accepted_sizes(magic_api * api, int which)
+
+

+ Return how many size variations the 'Magic' tool accepts. Return a '0' if the 'Magic' tool should not offer sizing options. Returning '1' is the same as returning '0'.

+

+ Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()").

+
+
void shutdown(magic_api * api)

@@ -431,6 +439,16 @@ Note: Changed most recently in Tux Paint 0.9.29; Magic API version 0x00000007.

+
void set_size(magic_api * api, int which, SDL_Surface * canvas, SDL_Surface * last, Uint8 size, SDL_Rect * update_rect)
+
+

+ Tux Paint will call this function to inform the plugin of the 'Magic' tool size option chosen. (It will be called whenever one of the plugin's Magic tools that accept sizes becomes active, and whenever the user picks a new size while such a tool is currently active.)

+

+ Generally, Magic tools will not alter the canvas in any way when receiving an updated size, but it is possible.

+

+ Note: Added to Tux Paint 0.9.30; Magic API version 0x00000008.

+
+
void click(magic_api * api, int which, int mode, SDL_Surface * snapshot, SDL_Surface * canvas, int x, int y, SDL_Rect * update_rect)

@@ -557,7 +575,7 @@

char * tp_version
- A string containing the version of Tux Paint that's running (e.g., "0.9.29").
+ A string containing the version of Tux Paint that's running (e.g., "0.9.30").
int canvas_w
@@ -704,7 +722,7 @@

It should be referenced by your magic tool's "api_version()" function, to inform the running copy of Tux Paint whether or not your plugin is compatible.

- Note: This version number does not correspond to Tux Paint's own release number (e.g., "0.9.29"). The API will not change every time a new version of Tux Paint is released, which means plugins compiled for earlier versions of Tux Paint will often run under newer versions.

+ Note: This version number does not correspond to Tux Paint's own release number (e.g., "0.9.30"). The API will not change every time a new version of Tux Paint is released, which means plugins compiled for earlier versions of Tux Paint will often run under newer versions.

diff --git a/docs/es_ES.UTF-8/html/OPTIONS.html b/docs/es_ES.UTF-8/html/OPTIONS.html index 1159c5361..805effbcd 100644 --- a/docs/es_ES.UTF-8/html/OPTIONS.html +++ b/docs/es_ES.UTF-8/html/OPTIONS.html @@ -91,7 +91,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29 + versión 0.9.30

Options Documentation

diff --git a/docs/es_ES.UTF-8/html/PNG.html b/docs/es_ES.UTF-8/html/PNG.html index 0a1433cdc..c2f68e1d2 100644 --- a/docs/es_ES.UTF-8/html/PNG.html +++ b/docs/es_ES.UTF-8/html/PNG.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29
+ versión 0.9.30
PNG Documentation

diff --git a/docs/es_ES.UTF-8/html/SIGNALS.html b/docs/es_ES.UTF-8/html/SIGNALS.html index c3956a946..3fe597c86 100644 --- a/docs/es_ES.UTF-8/html/SIGNALS.html +++ b/docs/es_ES.UTF-8/html/SIGNALS.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29
+ versión 0.9.30
Signals Documentation

diff --git a/docs/es_ES.UTF-8/html/SVG.html b/docs/es_ES.UTF-8/html/SVG.html index c1a73ba0d..2663f020b 100644 --- a/docs/es_ES.UTF-8/html/SVG.html +++ b/docs/es_ES.UTF-8/html/SVG.html @@ -91,7 +91,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29
+ versión 0.9.30
SVG Documentation

diff --git a/docs/fr_FR.UTF-8/ADVANCED-STAMPS-HOWTO.txt b/docs/fr_FR.UTF-8/ADVANCED-STAMPS-HOWTO.txt index ee474f952..57b7d97f1 100644 --- a/docs/fr_FR.UTF-8/ADVANCED-STAMPS-HOWTO.txt +++ b/docs/fr_FR.UTF-8/ADVANCED-STAMPS-HOWTO.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.29 'Guide pratique" pour les tampons de haute qualité + version 0.9.30 'Guide pratique" pour les tampons de haute qualité Copyright © 2006-2022 by Albert Cahalan et d'autres; see AUTHORS.txt. https://tuxpaint.org/ diff --git a/docs/fr_FR.UTF-8/ENVVARS.txt b/docs/fr_FR.UTF-8/ENVVARS.txt index 5929edda6..2e523a2f4 100644 --- a/docs/fr_FR.UTF-8/ENVVARS.txt +++ b/docs/fr_FR.UTF-8/ENVVARS.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.29 + version 0.9.30 Documentation sur les variables d'environnement Copyright © 2021-2022 by divers contributeurs; see AUTHORS.txt. diff --git a/docs/fr_FR.UTF-8/EXTENDING.txt b/docs/fr_FR.UTF-8/EXTENDING.txt index f6eb8323a..3b4695dad 100644 --- a/docs/fr_FR.UTF-8/EXTENDING.txt +++ b/docs/fr_FR.UTF-8/EXTENDING.txt @@ -1,6 +1,6 @@ Extension Tux Paint - version 0.9.29 + version 0.9.30 Copyright © 2002-2023 by divers contributeurs; see AUTHORS.txt. https://tuxpaint.org/ diff --git a/docs/fr_FR.UTF-8/FAQ.txt b/docs/fr_FR.UTF-8/FAQ.txt index 6681587dd..cd1b715d2 100644 --- a/docs/fr_FR.UTF-8/FAQ.txt +++ b/docs/fr_FR.UTF-8/FAQ.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.29 Questions fréquemment posées + version 0.9.30 Questions fréquemment posées Copyright © 2002-2023 by divers contributeurs; see AUTHORS.txt. https://tuxpaint.org/ diff --git a/docs/fr_FR.UTF-8/INSTALL.txt b/docs/fr_FR.UTF-8/INSTALL.txt index 1367f7cd8..9f85cab0e 100644 --- a/docs/fr_FR.UTF-8/INSTALL.txt +++ b/docs/fr_FR.UTF-8/INSTALL.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.29 + version 0.9.30 Documentation sur l'installation Copyright © 2002-2023 by divers contributeurs; see AUTHORS.txt. diff --git a/docs/fr_FR.UTF-8/MAGIC-API.txt b/docs/fr_FR.UTF-8/MAGIC-API.txt index 972ba2216..599ba734d 100644 --- a/docs/fr_FR.UTF-8/MAGIC-API.txt +++ b/docs/fr_FR.UTF-8/MAGIC-API.txt @@ -1,12 +1,12 @@ Tux Paint - version 0.9.29 + version 0.9.30 Magic Tool Plugin API Documentation Copyright © 2007-2023 by various contributors; see AUTHORS.txt. https://tuxpaint.org/ - janvier 25, 2023 + avril 9, 2023 +----------------------------------------------------+ |Table of Contents | @@ -295,6 +295,15 @@ Magic Tool Plugin API Documentation Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()"). + int accepted_sizes(magic_api * api, int which) + + Return how many size variations the 'Magic' tool accepts. Return a + '0' if the 'Magic' tool should not offer sizing options. Returning + '1' is the same as returning '0'. + + Note: Called once for each Magic tool your plugin claims to + contain (by your "get_tool_count()"). + void shutdown(magic_api * api) The plugin should do any cleanup here. If you allocated any memory @@ -367,6 +376,20 @@ Magic Tool Plugin API Documentation Note: Changed most recently in Tux Paint 0.9.29; Magic API version 0x00000007. + void set_size(magic_api * api, int which, SDL_Surface * canvas, + SDL_Surface * last, Uint8 size, SDL_Rect * update_rect) + + Tux Paint will call this function to inform the plugin of the + 'Magic' tool size option chosen. (It will be called whenever one + of the plugin's Magic tools that accept sizes becomes active, and + whenever the user picks a new size while such a tool is currently + active.) + + Generally, Magic tools will not alter the canvas in any way when + receiving an updated size, but it is possible. + + Note: Added to Tux Paint 0.9.30; Magic API version 0x00000008. + void click(magic_api * api, int which, int mode, SDL_Surface * snapshot, SDL_Surface * canvas, int x, int y, SDL_Rect * update_rect) @@ -518,7 +541,7 @@ Tux Paint Functions and Data char * tp_version A string containing the version of Tux Paint that's running (e.g., - "0.9.29"). + "0.9.30"). int canvas_w int canvas_h @@ -663,7 +686,7 @@ Constant Defintions in "tp_magic_api.h" your plugin is compatible. Note: This version number does not correspond to Tux Paint's own - release number (e.g., "0.9.29"). The API will not change every + release number (e.g., "0.9.30"). The API will not change every time a new version of Tux Paint is released, which means plugins compiled for earlier versions of Tux Paint will often run under newer versions. diff --git a/docs/fr_FR.UTF-8/OPTIONS.txt b/docs/fr_FR.UTF-8/OPTIONS.txt index 5ffe9a1cf..7b472b05d 100644 --- a/docs/fr_FR.UTF-8/OPTIONS.txt +++ b/docs/fr_FR.UTF-8/OPTIONS.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.29 + version 0.9.30 Documentation sur les options diff --git a/docs/fr_FR.UTF-8/PNG.txt b/docs/fr_FR.UTF-8/PNG.txt index ee3f37a00..b1c03e75c 100644 --- a/docs/fr_FR.UTF-8/PNG.txt +++ b/docs/fr_FR.UTF-8/PNG.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.29 + version 0.9.30 Documentation sur PNG pour Tux Paint Copyright © 2007-2022 by divers contributeurs; see AUTHORS.txt. diff --git a/docs/fr_FR.UTF-8/SIGNALS.txt b/docs/fr_FR.UTF-8/SIGNALS.txt index f194c98c3..b1996aa97 100644 --- a/docs/fr_FR.UTF-8/SIGNALS.txt +++ b/docs/fr_FR.UTF-8/SIGNALS.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.29 + version 0.9.30 Documentation sur les signaux Copyright © 2019-2022 by divers contributeurs; see AUTHORS.txt. diff --git a/docs/fr_FR.UTF-8/SVG.txt b/docs/fr_FR.UTF-8/SVG.txt index 9846b98e9..93e8e4171 100644 --- a/docs/fr_FR.UTF-8/SVG.txt +++ b/docs/fr_FR.UTF-8/SVG.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.29 + version 0.9.30 Documentation sur SVG Copyright © 2007-2022 by divers contributeurs; see AUTHORS.txt. diff --git a/docs/fr_FR.UTF-8/html/ADVANCED-STAMPS-HOWTO.html b/docs/fr_FR.UTF-8/html/ADVANCED-STAMPS-HOWTO.html index 281ac6153..198309697 100644 --- a/docs/fr_FR.UTF-8/html/ADVANCED-STAMPS-HOWTO.html +++ b/docs/fr_FR.UTF-8/html/ADVANCED-STAMPS-HOWTO.html @@ -17,7 +17,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.29 'Guide pratique" pour les tampons de haute qualité + version 0.9.30 'Guide pratique" pour les tampons de haute qualité

Copyright © 2006-2022 by Albert Cahalan et d'autres; see AUTHORS.txt.
diff --git a/docs/fr_FR.UTF-8/html/ENVVARS.html b/docs/fr_FR.UTF-8/html/ENVVARS.html index 7f32dcba9..8d85055d9 100644 --- a/docs/fr_FR.UTF-8/html/ENVVARS.html +++ b/docs/fr_FR.UTF-8/html/ENVVARS.html @@ -17,7 +17,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.29
+ version 0.9.30
Documentation sur les variables d'environnement

diff --git a/docs/fr_FR.UTF-8/html/EXTENDING.html b/docs/fr_FR.UTF-8/html/EXTENDING.html index 609188278..da1d3e4a9 100644 --- a/docs/fr_FR.UTF-8/html/EXTENDING.html +++ b/docs/fr_FR.UTF-8/html/EXTENDING.html @@ -92,7 +92,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.29 + version 0.9.30

Copyright © 2002-2023 by divers contributeurs; see AUTHORS.txt.
diff --git a/docs/fr_FR.UTF-8/html/FAQ.html b/docs/fr_FR.UTF-8/html/FAQ.html index 60f5aca53..bf7d4fbe2 100644 --- a/docs/fr_FR.UTF-8/html/FAQ.html +++ b/docs/fr_FR.UTF-8/html/FAQ.html @@ -17,7 +17,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.29 Questions fréquemment posées + version 0.9.30 Questions fréquemment posées

Copyright © 2002-2023 by divers contributeurs; see AUTHORS.txt.
diff --git a/docs/fr_FR.UTF-8/html/INSTALL.html b/docs/fr_FR.UTF-8/html/INSTALL.html index 181072da9..152804899 100644 --- a/docs/fr_FR.UTF-8/html/INSTALL.html +++ b/docs/fr_FR.UTF-8/html/INSTALL.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.29
+ version 0.9.30
Documentation sur l'installation

diff --git a/docs/fr_FR.UTF-8/html/MAGIC-API.html b/docs/fr_FR.UTF-8/html/MAGIC-API.html index d1567ba78..d3fa2acc4 100644 --- a/docs/fr_FR.UTF-8/html/MAGIC-API.html +++ b/docs/fr_FR.UTF-8/html/MAGIC-API.html @@ -91,7 +91,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.29 + version 0.9.30

Magic Tool Plugin API Documentation

@@ -102,7 +102,7 @@

- janvier 25, 2023

+ avril 9, 2023

@@ -385,6 +385,14 @@ Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()").

+
int accepted_sizes(magic_api * api, int which)
+
+

+ Return how many size variations the 'Magic' tool accepts. Return a '0' if the 'Magic' tool should not offer sizing options. Returning '1' is the same as returning '0'.

+

+ Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()").

+
+
void shutdown(magic_api * api)

@@ -431,6 +439,16 @@ Note: Changed most recently in Tux Paint 0.9.29; Magic API version 0x00000007.

+
void set_size(magic_api * api, int which, SDL_Surface * canvas, SDL_Surface * last, Uint8 size, SDL_Rect * update_rect)
+
+

+ Tux Paint will call this function to inform the plugin of the 'Magic' tool size option chosen. (It will be called whenever one of the plugin's Magic tools that accept sizes becomes active, and whenever the user picks a new size while such a tool is currently active.)

+

+ Generally, Magic tools will not alter the canvas in any way when receiving an updated size, but it is possible.

+

+ Note: Added to Tux Paint 0.9.30; Magic API version 0x00000008.

+
+
void click(magic_api * api, int which, int mode, SDL_Surface * snapshot, SDL_Surface * canvas, int x, int y, SDL_Rect * update_rect)

@@ -557,7 +575,7 @@

char * tp_version
- A string containing the version of Tux Paint that's running (e.g., "0.9.29").
+ A string containing the version of Tux Paint that's running (e.g., "0.9.30").
int canvas_w
@@ -704,7 +722,7 @@

It should be referenced by your magic tool's "api_version()" function, to inform the running copy of Tux Paint whether or not your plugin is compatible.

- Note: This version number does not correspond to Tux Paint's own release number (e.g., "0.9.29"). The API will not change every time a new version of Tux Paint is released, which means plugins compiled for earlier versions of Tux Paint will often run under newer versions.

+ Note: This version number does not correspond to Tux Paint's own release number (e.g., "0.9.30"). The API will not change every time a new version of Tux Paint is released, which means plugins compiled for earlier versions of Tux Paint will often run under newer versions.

diff --git a/docs/fr_FR.UTF-8/html/OPTIONS.html b/docs/fr_FR.UTF-8/html/OPTIONS.html index ec7594d6a..6f9d0a2ae 100644 --- a/docs/fr_FR.UTF-8/html/OPTIONS.html +++ b/docs/fr_FR.UTF-8/html/OPTIONS.html @@ -91,7 +91,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.29 + version 0.9.30

Documentation sur les options

diff --git a/docs/fr_FR.UTF-8/html/PNG.html b/docs/fr_FR.UTF-8/html/PNG.html index d4998addb..aa5ac4543 100644 --- a/docs/fr_FR.UTF-8/html/PNG.html +++ b/docs/fr_FR.UTF-8/html/PNG.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.29
+ version 0.9.30
Documentation sur PNG pour Tux Paint

diff --git a/docs/fr_FR.UTF-8/html/SIGNALS.html b/docs/fr_FR.UTF-8/html/SIGNALS.html index 81d2eed59..f080a35de 100644 --- a/docs/fr_FR.UTF-8/html/SIGNALS.html +++ b/docs/fr_FR.UTF-8/html/SIGNALS.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.29
+ version 0.9.30
Documentation sur les signaux

diff --git a/docs/fr_FR.UTF-8/html/SVG.html b/docs/fr_FR.UTF-8/html/SVG.html index 7f99a1e94..88fa3ae26 100644 --- a/docs/fr_FR.UTF-8/html/SVG.html +++ b/docs/fr_FR.UTF-8/html/SVG.html @@ -91,7 +91,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.29
+ version 0.9.30
Documentation sur SVG

diff --git a/docs/gl_ES.UTF-8/ADVANCED-STAMPS-HOWTO.txt b/docs/gl_ES.UTF-8/ADVANCED-STAMPS-HOWTO.txt index f1a8c6592..981c7eab0 100644 --- a/docs/gl_ES.UTF-8/ADVANCED-STAMPS-HOWTO.txt +++ b/docs/gl_ES.UTF-8/ADVANCED-STAMPS-HOWTO.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.29 «Como facer» os selos avanzados + versión 0.9.30 «Como facer» os selos avanzados Copyright © 2006-2022 by Albert Cahalan e outros; see AUTHORS.txt. https://tuxpaint.org/ diff --git a/docs/gl_ES.UTF-8/ENVVARS.txt b/docs/gl_ES.UTF-8/ENVVARS.txt index 99a7186b3..bb3f3aa19 100644 --- a/docs/gl_ES.UTF-8/ENVVARS.txt +++ b/docs/gl_ES.UTF-8/ENVVARS.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.29 + versión 0.9.30 Documentación de variábeis de contorno Copyright © 2021-2022 by varios colaboradores; see AUTHORS.txt. diff --git a/docs/gl_ES.UTF-8/EXTENDING.txt b/docs/gl_ES.UTF-8/EXTENDING.txt index bb62fe659..daed340a7 100644 --- a/docs/gl_ES.UTF-8/EXTENDING.txt +++ b/docs/gl_ES.UTF-8/EXTENDING.txt @@ -1,6 +1,6 @@ Ampliar Tux Paint - versión 0.9.29 + versión 0.9.30 Copyright © 2002-2023 by varios colaboradores; see AUTHORS.txt. https://tuxpaint.org/ diff --git a/docs/gl_ES.UTF-8/FAQ.txt b/docs/gl_ES.UTF-8/FAQ.txt index 39eb364ce..1df266a24 100644 --- a/docs/gl_ES.UTF-8/FAQ.txt +++ b/docs/gl_ES.UTF-8/FAQ.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.29 Preguntas máis frecuentes + versión 0.9.30 Preguntas máis frecuentes Copyright © 2002-2023 by varios colaboradores; see AUTHORS.txt. https://tuxpaint.org/ diff --git a/docs/gl_ES.UTF-8/INSTALL.txt b/docs/gl_ES.UTF-8/INSTALL.txt index f374ef51b..d14615fd8 100644 --- a/docs/gl_ES.UTF-8/INSTALL.txt +++ b/docs/gl_ES.UTF-8/INSTALL.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.29 + versión 0.9.30 Documentación da instalación Copyright © 2002-2023 by varios colaboradores; see AUTHORS.txt. diff --git a/docs/gl_ES.UTF-8/MAGIC-API.txt b/docs/gl_ES.UTF-8/MAGIC-API.txt index 3420ee7b4..5aa7e4e39 100644 --- a/docs/gl_ES.UTF-8/MAGIC-API.txt +++ b/docs/gl_ES.UTF-8/MAGIC-API.txt @@ -1,12 +1,12 @@ Tux Paint - version 0.9.29 + version 0.9.30 Magic Tool Plugin API Documentation Copyright © 2007-2023 by various contributors; see AUTHORS.txt. https://tuxpaint.org/ - Xaneiro 25, 2023 + Abril 9, 2023 +----------------------------------------------------+ |Table of Contents | @@ -295,6 +295,15 @@ Magic Tool Plugin API Documentation Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()"). + int accepted_sizes(magic_api * api, int which) + + Return how many size variations the 'Magic' tool accepts. Return a + '0' if the 'Magic' tool should not offer sizing options. Returning + '1' is the same as returning '0'. + + Note: Called once for each Magic tool your plugin claims to + contain (by your "get_tool_count()"). + void shutdown(magic_api * api) The plugin should do any cleanup here. If you allocated any memory @@ -367,6 +376,20 @@ Magic Tool Plugin API Documentation Note: Changed most recently in Tux Paint 0.9.29; Magic API version 0x00000007. + void set_size(magic_api * api, int which, SDL_Surface * canvas, + SDL_Surface * last, Uint8 size, SDL_Rect * update_rect) + + Tux Paint will call this function to inform the plugin of the + 'Magic' tool size option chosen. (It will be called whenever one + of the plugin's Magic tools that accept sizes becomes active, and + whenever the user picks a new size while such a tool is currently + active.) + + Generally, Magic tools will not alter the canvas in any way when + receiving an updated size, but it is possible. + + Note: Added to Tux Paint 0.9.30; Magic API version 0x00000008. + void click(magic_api * api, int which, int mode, SDL_Surface * snapshot, SDL_Surface * canvas, int x, int y, SDL_Rect * update_rect) @@ -518,7 +541,7 @@ Tux Paint Functions and Data char * tp_version A string containing the version of Tux Paint that's running (e.g., - "0.9.29"). + "0.9.30"). int canvas_w int canvas_h @@ -663,7 +686,7 @@ Constant Defintions in "tp_magic_api.h" your plugin is compatible. Note: This version number does not correspond to Tux Paint's own - release number (e.g., "0.9.29"). The API will not change every + release number (e.g., "0.9.30"). The API will not change every time a new version of Tux Paint is released, which means plugins compiled for earlier versions of Tux Paint will often run under newer versions. diff --git a/docs/gl_ES.UTF-8/OPTIONS.txt b/docs/gl_ES.UTF-8/OPTIONS.txt index e65b1d223..1579385ab 100644 --- a/docs/gl_ES.UTF-8/OPTIONS.txt +++ b/docs/gl_ES.UTF-8/OPTIONS.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.29 + versión 0.9.30 Documentación de opcións diff --git a/docs/gl_ES.UTF-8/PNG.txt b/docs/gl_ES.UTF-8/PNG.txt index 7b68df219..1cccefa75 100644 --- a/docs/gl_ES.UTF-8/PNG.txt +++ b/docs/gl_ES.UTF-8/PNG.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.29 + versión 0.9.30 Documentación PNG Copyright © 2007-2022 by varios colaboradores; see AUTHORS.txt. diff --git a/docs/gl_ES.UTF-8/SIGNALS.txt b/docs/gl_ES.UTF-8/SIGNALS.txt index b1e54cf08..5b779823e 100644 --- a/docs/gl_ES.UTF-8/SIGNALS.txt +++ b/docs/gl_ES.UTF-8/SIGNALS.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.29 + versión 0.9.30 Documentación de sinais Copyright © 2019-2022 by varios colaboradores; see AUTHORS.txt. diff --git a/docs/gl_ES.UTF-8/SVG.txt b/docs/gl_ES.UTF-8/SVG.txt index 99b1cd73e..707a3ebe2 100644 --- a/docs/gl_ES.UTF-8/SVG.txt +++ b/docs/gl_ES.UTF-8/SVG.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.29 + versión 0.9.30 Documentación SVG Copyright © 2007-2022 by varios colaboradores; see AUTHORS.txt. diff --git a/docs/gl_ES.UTF-8/html/ADVANCED-STAMPS-HOWTO.html b/docs/gl_ES.UTF-8/html/ADVANCED-STAMPS-HOWTO.html index f75e428b3..fee24585b 100644 --- a/docs/gl_ES.UTF-8/html/ADVANCED-STAMPS-HOWTO.html +++ b/docs/gl_ES.UTF-8/html/ADVANCED-STAMPS-HOWTO.html @@ -17,7 +17,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29 «Como facer» os selos avanzados + versión 0.9.30 «Como facer» os selos avanzados

Copyright © 2006-2022 by Albert Cahalan e outros; see AUTHORS.txt.
diff --git a/docs/gl_ES.UTF-8/html/ENVVARS.html b/docs/gl_ES.UTF-8/html/ENVVARS.html index 532614dd6..02eddc670 100644 --- a/docs/gl_ES.UTF-8/html/ENVVARS.html +++ b/docs/gl_ES.UTF-8/html/ENVVARS.html @@ -17,7 +17,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29
+ versión 0.9.30
Documentación de variábeis de contorno

diff --git a/docs/gl_ES.UTF-8/html/EXTENDING.html b/docs/gl_ES.UTF-8/html/EXTENDING.html index 23bca5265..371d9fdc8 100644 --- a/docs/gl_ES.UTF-8/html/EXTENDING.html +++ b/docs/gl_ES.UTF-8/html/EXTENDING.html @@ -92,7 +92,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29 + versión 0.9.30

Copyright © 2002-2023 by varios colaboradores; see AUTHORS.txt.
diff --git a/docs/gl_ES.UTF-8/html/FAQ.html b/docs/gl_ES.UTF-8/html/FAQ.html index c1b5f7d0a..ce423a14e 100644 --- a/docs/gl_ES.UTF-8/html/FAQ.html +++ b/docs/gl_ES.UTF-8/html/FAQ.html @@ -17,7 +17,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29 Preguntas máis frecuentes + versión 0.9.30 Preguntas máis frecuentes

Copyright © 2002-2023 by varios colaboradores; see AUTHORS.txt.
diff --git a/docs/gl_ES.UTF-8/html/INSTALL.html b/docs/gl_ES.UTF-8/html/INSTALL.html index 76fe25bde..418281fc7 100644 --- a/docs/gl_ES.UTF-8/html/INSTALL.html +++ b/docs/gl_ES.UTF-8/html/INSTALL.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29
+ versión 0.9.30
Documentación da instalación

diff --git a/docs/gl_ES.UTF-8/html/MAGIC-API.html b/docs/gl_ES.UTF-8/html/MAGIC-API.html index fd2600c0c..8c940d22a 100644 --- a/docs/gl_ES.UTF-8/html/MAGIC-API.html +++ b/docs/gl_ES.UTF-8/html/MAGIC-API.html @@ -91,7 +91,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.29 + version 0.9.30

Magic Tool Plugin API Documentation

@@ -102,7 +102,7 @@

- Xaneiro 25, 2023

+ Abril 9, 2023

@@ -385,6 +385,14 @@ Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()").

+
int accepted_sizes(magic_api * api, int which)
+
+

+ Return how many size variations the 'Magic' tool accepts. Return a '0' if the 'Magic' tool should not offer sizing options. Returning '1' is the same as returning '0'.

+

+ Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()").

+
+
void shutdown(magic_api * api)

@@ -431,6 +439,16 @@ Note: Changed most recently in Tux Paint 0.9.29; Magic API version 0x00000007.

+
void set_size(magic_api * api, int which, SDL_Surface * canvas, SDL_Surface * last, Uint8 size, SDL_Rect * update_rect)
+
+

+ Tux Paint will call this function to inform the plugin of the 'Magic' tool size option chosen. (It will be called whenever one of the plugin's Magic tools that accept sizes becomes active, and whenever the user picks a new size while such a tool is currently active.)

+

+ Generally, Magic tools will not alter the canvas in any way when receiving an updated size, but it is possible.

+

+ Note: Added to Tux Paint 0.9.30; Magic API version 0x00000008.

+
+
void click(magic_api * api, int which, int mode, SDL_Surface * snapshot, SDL_Surface * canvas, int x, int y, SDL_Rect * update_rect)

@@ -557,7 +575,7 @@

char * tp_version
- A string containing the version of Tux Paint that's running (e.g., "0.9.29").
+ A string containing the version of Tux Paint that's running (e.g., "0.9.30").
int canvas_w
@@ -704,7 +722,7 @@

It should be referenced by your magic tool's "api_version()" function, to inform the running copy of Tux Paint whether or not your plugin is compatible.

- Note: This version number does not correspond to Tux Paint's own release number (e.g., "0.9.29"). The API will not change every time a new version of Tux Paint is released, which means plugins compiled for earlier versions of Tux Paint will often run under newer versions.

+ Note: This version number does not correspond to Tux Paint's own release number (e.g., "0.9.30"). The API will not change every time a new version of Tux Paint is released, which means plugins compiled for earlier versions of Tux Paint will often run under newer versions.

diff --git a/docs/gl_ES.UTF-8/html/OPTIONS.html b/docs/gl_ES.UTF-8/html/OPTIONS.html index fe80bbce2..99fddee73 100644 --- a/docs/gl_ES.UTF-8/html/OPTIONS.html +++ b/docs/gl_ES.UTF-8/html/OPTIONS.html @@ -91,7 +91,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29 + versión 0.9.30

Documentación de opcións

diff --git a/docs/gl_ES.UTF-8/html/PNG.html b/docs/gl_ES.UTF-8/html/PNG.html index 210f536fe..94fe78dc0 100644 --- a/docs/gl_ES.UTF-8/html/PNG.html +++ b/docs/gl_ES.UTF-8/html/PNG.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29
+ versión 0.9.30
Documentación PNG

diff --git a/docs/gl_ES.UTF-8/html/SIGNALS.html b/docs/gl_ES.UTF-8/html/SIGNALS.html index 1d9394045..1a41da3d1 100644 --- a/docs/gl_ES.UTF-8/html/SIGNALS.html +++ b/docs/gl_ES.UTF-8/html/SIGNALS.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29
+ versión 0.9.30
Documentación de sinais

diff --git a/docs/gl_ES.UTF-8/html/SVG.html b/docs/gl_ES.UTF-8/html/SVG.html index 813bf1bf0..90852bacb 100644 --- a/docs/gl_ES.UTF-8/html/SVG.html +++ b/docs/gl_ES.UTF-8/html/SVG.html @@ -91,7 +91,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.29
+ versión 0.9.30
Documentación SVG

diff --git a/docs/ja_JP.UTF-8/ADVANCED-STAMPS-HOWTO.txt b/docs/ja_JP.UTF-8/ADVANCED-STAMPS-HOWTO.txt index f643625db..e7bc17fd9 100644 --- a/docs/ja_JP.UTF-8/ADVANCED-STAMPS-HOWTO.txt +++ b/docs/ja_JP.UTF-8/ADVANCED-STAMPS-HOWTO.txt @@ -1,5 +1,5 @@ Tux Paint - バージョン 0.9.29 スタンプ作成の詳細について + バージョン 0.9.30 スタンプ作成の詳細について Copyright © 2006-2022 by Albert Cahalan ほか; AUTHORS.txt 参照. https://tuxpaint.org/ diff --git a/docs/ja_JP.UTF-8/ENVVARS.txt b/docs/ja_JP.UTF-8/ENVVARS.txt index 546cd2bad..79325fe76 100644 --- a/docs/ja_JP.UTF-8/ENVVARS.txt +++ b/docs/ja_JP.UTF-8/ENVVARS.txt @@ -1,5 +1,5 @@ Tux Paint - バージョン 0.9.29 + バージョン 0.9.30 Environment Variables Documentation Copyright © 2021-2022 by various contributors; AUTHORS.txt 参照. diff --git a/docs/ja_JP.UTF-8/EXTENDING.txt b/docs/ja_JP.UTF-8/EXTENDING.txt index 930617507..d86fb215a 100644 --- a/docs/ja_JP.UTF-8/EXTENDING.txt +++ b/docs/ja_JP.UTF-8/EXTENDING.txt @@ -1,6 +1,6 @@ Extending Tux Paint - バージョン 0.9.29 + バージョン 0.9.30 Copyright © 2002-2023 by various contributors; AUTHORS.txt 参照. https://tuxpaint.org/ diff --git a/docs/ja_JP.UTF-8/FAQ.txt b/docs/ja_JP.UTF-8/FAQ.txt index b43925733..bc7b0e6b3 100644 --- a/docs/ja_JP.UTF-8/FAQ.txt +++ b/docs/ja_JP.UTF-8/FAQ.txt @@ -1,5 +1,5 @@ Tux Paint - バージョン 0.9.29 Frequently Asked Questions + バージョン 0.9.30 Frequently Asked Questions Copyright © 2002-2023 by various contributors; AUTHORS.txt 参照. https://tuxpaint.org/ diff --git a/docs/ja_JP.UTF-8/INSTALL.txt b/docs/ja_JP.UTF-8/INSTALL.txt index 10290b7fd..3f773891d 100644 --- a/docs/ja_JP.UTF-8/INSTALL.txt +++ b/docs/ja_JP.UTF-8/INSTALL.txt @@ -1,5 +1,5 @@ Tux Paint - バージョン 0.9.29 + バージョン 0.9.30 Installation Documentation Copyright © 2002-2023 by various contributors; AUTHORS.txt 参照. diff --git a/docs/ja_JP.UTF-8/MAGIC-API.txt b/docs/ja_JP.UTF-8/MAGIC-API.txt index 16590fb4b..facf26cd0 100644 --- a/docs/ja_JP.UTF-8/MAGIC-API.txt +++ b/docs/ja_JP.UTF-8/MAGIC-API.txt @@ -1,12 +1,12 @@ Tux Paint - version 0.9.29 + version 0.9.30 Magic Tool Plugin API Documentation Copyright © 2007-2023 by various contributors; see AUTHORS.txt. https://tuxpaint.org/ - 1月 25, 2023 + 4月 9, 2023 +----------------------------------------------------+ |Table of Contents | @@ -295,6 +295,15 @@ Magic Tool Plugin API Documentation Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()"). + int accepted_sizes(magic_api * api, int which) + + Return how many size variations the 'Magic' tool accepts. Return a + '0' if the 'Magic' tool should not offer sizing options. Returning + '1' is the same as returning '0'. + + Note: Called once for each Magic tool your plugin claims to + contain (by your "get_tool_count()"). + void shutdown(magic_api * api) The plugin should do any cleanup here. If you allocated any memory @@ -367,6 +376,20 @@ Magic Tool Plugin API Documentation Note: Changed most recently in Tux Paint 0.9.29; Magic API version 0x00000007. + void set_size(magic_api * api, int which, SDL_Surface * canvas, + SDL_Surface * last, Uint8 size, SDL_Rect * update_rect) + + Tux Paint will call this function to inform the plugin of the + 'Magic' tool size option chosen. (It will be called whenever one + of the plugin's Magic tools that accept sizes becomes active, and + whenever the user picks a new size while such a tool is currently + active.) + + Generally, Magic tools will not alter the canvas in any way when + receiving an updated size, but it is possible. + + Note: Added to Tux Paint 0.9.30; Magic API version 0x00000008. + void click(magic_api * api, int which, int mode, SDL_Surface * snapshot, SDL_Surface * canvas, int x, int y, SDL_Rect * update_rect) @@ -518,7 +541,7 @@ Tux Paint Functions and Data char * tp_version A string containing the version of Tux Paint that's running (e.g., - "0.9.29"). + "0.9.30"). int canvas_w int canvas_h @@ -663,7 +686,7 @@ Constant Defintions in "tp_magic_api.h" your plugin is compatible. Note: This version number does not correspond to Tux Paint's own - release number (e.g., "0.9.29"). The API will not change every + release number (e.g., "0.9.30"). The API will not change every time a new version of Tux Paint is released, which means plugins compiled for earlier versions of Tux Paint will often run under newer versions. diff --git a/docs/ja_JP.UTF-8/OPTIONS.txt b/docs/ja_JP.UTF-8/OPTIONS.txt index fb88b714f..3f9fa163b 100644 --- a/docs/ja_JP.UTF-8/OPTIONS.txt +++ b/docs/ja_JP.UTF-8/OPTIONS.txt @@ -1,5 +1,5 @@ Tux Paint - バージョン 0.9.29 + バージョン 0.9.30 各種設定について diff --git a/docs/ja_JP.UTF-8/PNG.txt b/docs/ja_JP.UTF-8/PNG.txt index 81581d29d..51694486d 100644 --- a/docs/ja_JP.UTF-8/PNG.txt +++ b/docs/ja_JP.UTF-8/PNG.txt @@ -1,5 +1,5 @@ Tux Paint - バージョン 0.9.29 + バージョン 0.9.30 PNG Documentation Copyright © 2007-2022 by various contributors; AUTHORS.txt 参照. diff --git a/docs/ja_JP.UTF-8/SIGNALS.txt b/docs/ja_JP.UTF-8/SIGNALS.txt index 8a9c1029b..4b0591718 100644 --- a/docs/ja_JP.UTF-8/SIGNALS.txt +++ b/docs/ja_JP.UTF-8/SIGNALS.txt @@ -1,5 +1,5 @@ Tux Paint - バージョン 0.9.29 + バージョン 0.9.30 Signals Documentation Copyright © 2019-2022 by various contributors; AUTHORS.txt 参照. diff --git a/docs/ja_JP.UTF-8/SVG.txt b/docs/ja_JP.UTF-8/SVG.txt index c0e77fa4c..0b36e6377 100644 --- a/docs/ja_JP.UTF-8/SVG.txt +++ b/docs/ja_JP.UTF-8/SVG.txt @@ -1,5 +1,5 @@ Tux Paint - バージョン 0.9.29 + バージョン 0.9.30 SVG Documentation Copyright © 2007-2022 by various contributors; AUTHORS.txt 参照. diff --git a/docs/ja_JP.UTF-8/html/ADVANCED-STAMPS-HOWTO.html b/docs/ja_JP.UTF-8/html/ADVANCED-STAMPS-HOWTO.html index c4d23e171..86af32491 100644 --- a/docs/ja_JP.UTF-8/html/ADVANCED-STAMPS-HOWTO.html +++ b/docs/ja_JP.UTF-8/html/ADVANCED-STAMPS-HOWTO.html @@ -17,7 +17,7 @@ width="205" height="210" alt="Tux Paint">
- バージョン 0.9.29 スタンプ作成の詳細について + バージョン 0.9.30 スタンプ作成の詳細について

Copyright © 2006-2022 by Albert Cahalan ほか; AUTHORS.txt 参照.
diff --git a/docs/ja_JP.UTF-8/html/ENVVARS.html b/docs/ja_JP.UTF-8/html/ENVVARS.html index e292982ab..b5b9033e5 100644 --- a/docs/ja_JP.UTF-8/html/ENVVARS.html +++ b/docs/ja_JP.UTF-8/html/ENVVARS.html @@ -17,7 +17,7 @@ width="205" height="210" alt="Tux Paint">
- バージョン 0.9.29
+ バージョン 0.9.30
Environment Variables Documentation

diff --git a/docs/ja_JP.UTF-8/html/EXTENDING.html b/docs/ja_JP.UTF-8/html/EXTENDING.html index 252b906c6..b400c0b11 100644 --- a/docs/ja_JP.UTF-8/html/EXTENDING.html +++ b/docs/ja_JP.UTF-8/html/EXTENDING.html @@ -92,7 +92,7 @@ width="205" height="210" alt="Tux Paint">
- バージョン 0.9.29 + バージョン 0.9.30

Copyright © 2002-2023 by various contributors; AUTHORS.txt 参照.
diff --git a/docs/ja_JP.UTF-8/html/FAQ.html b/docs/ja_JP.UTF-8/html/FAQ.html index aaca72598..b10615656 100644 --- a/docs/ja_JP.UTF-8/html/FAQ.html +++ b/docs/ja_JP.UTF-8/html/FAQ.html @@ -17,7 +17,7 @@ width="205" height="210" alt="Tux Paint">
- バージョン 0.9.29 Frequently Asked Questions + バージョン 0.9.30 Frequently Asked Questions

Copyright © 2002-2023 by various contributors; AUTHORS.txt 参照.
diff --git a/docs/ja_JP.UTF-8/html/INSTALL.html b/docs/ja_JP.UTF-8/html/INSTALL.html index 24f6cac01..5620a1f8d 100644 --- a/docs/ja_JP.UTF-8/html/INSTALL.html +++ b/docs/ja_JP.UTF-8/html/INSTALL.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- バージョン 0.9.29
+ バージョン 0.9.30
Installation Documentation

diff --git a/docs/ja_JP.UTF-8/html/MAGIC-API.html b/docs/ja_JP.UTF-8/html/MAGIC-API.html index 26e047b4a..edeb55682 100644 --- a/docs/ja_JP.UTF-8/html/MAGIC-API.html +++ b/docs/ja_JP.UTF-8/html/MAGIC-API.html @@ -91,7 +91,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.29 + version 0.9.30

Magic Tool Plugin API Documentation

@@ -102,7 +102,7 @@

- 1月 25, 2023

+ 4月 9, 2023

@@ -385,6 +385,14 @@ Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()").

+
int accepted_sizes(magic_api * api, int which)
+
+

+ Return how many size variations the 'Magic' tool accepts. Return a '0' if the 'Magic' tool should not offer sizing options. Returning '1' is the same as returning '0'.

+

+ Note: Called once for each Magic tool your plugin claims to contain (by your "get_tool_count()").

+
+
void shutdown(magic_api * api)

@@ -431,6 +439,16 @@ Note: Changed most recently in Tux Paint 0.9.29; Magic API version 0x00000007.

+
void set_size(magic_api * api, int which, SDL_Surface * canvas, SDL_Surface * last, Uint8 size, SDL_Rect * update_rect)
+
+

+ Tux Paint will call this function to inform the plugin of the 'Magic' tool size option chosen. (It will be called whenever one of the plugin's Magic tools that accept sizes becomes active, and whenever the user picks a new size while such a tool is currently active.)

+

+ Generally, Magic tools will not alter the canvas in any way when receiving an updated size, but it is possible.

+

+ Note: Added to Tux Paint 0.9.30; Magic API version 0x00000008.

+
+
void click(magic_api * api, int which, int mode, SDL_Surface * snapshot, SDL_Surface * canvas, int x, int y, SDL_Rect * update_rect)

@@ -557,7 +575,7 @@

char * tp_version
- A string containing the version of Tux Paint that's running (e.g., "0.9.29").
+ A string containing the version of Tux Paint that's running (e.g., "0.9.30").
int canvas_w
@@ -704,7 +722,7 @@

It should be referenced by your magic tool's "api_version()" function, to inform the running copy of Tux Paint whether or not your plugin is compatible.

- Note: This version number does not correspond to Tux Paint's own release number (e.g., "0.9.29"). The API will not change every time a new version of Tux Paint is released, which means plugins compiled for earlier versions of Tux Paint will often run under newer versions.

+ Note: This version number does not correspond to Tux Paint's own release number (e.g., "0.9.30"). The API will not change every time a new version of Tux Paint is released, which means plugins compiled for earlier versions of Tux Paint will often run under newer versions.

diff --git a/docs/ja_JP.UTF-8/html/OPTIONS.html b/docs/ja_JP.UTF-8/html/OPTIONS.html index 583bf8a45..b160d8a8f 100644 --- a/docs/ja_JP.UTF-8/html/OPTIONS.html +++ b/docs/ja_JP.UTF-8/html/OPTIONS.html @@ -91,7 +91,7 @@ width="205" height="210" alt="Tux Paint">
- バージョン 0.9.29 + バージョン 0.9.30

各種設定について

diff --git a/docs/ja_JP.UTF-8/html/PNG.html b/docs/ja_JP.UTF-8/html/PNG.html index 7631ab362..44f92d054 100644 --- a/docs/ja_JP.UTF-8/html/PNG.html +++ b/docs/ja_JP.UTF-8/html/PNG.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- バージョン 0.9.29
+ バージョン 0.9.30
PNG Documentation

diff --git a/docs/ja_JP.UTF-8/html/SIGNALS.html b/docs/ja_JP.UTF-8/html/SIGNALS.html index 56e7f1241..bfc91fe2c 100644 --- a/docs/ja_JP.UTF-8/html/SIGNALS.html +++ b/docs/ja_JP.UTF-8/html/SIGNALS.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- バージョン 0.9.29
+ バージョン 0.9.30
Signals Documentation

diff --git a/docs/ja_JP.UTF-8/html/SVG.html b/docs/ja_JP.UTF-8/html/SVG.html index cdc8348ba..095346b2e 100644 --- a/docs/ja_JP.UTF-8/html/SVG.html +++ b/docs/ja_JP.UTF-8/html/SVG.html @@ -91,7 +91,7 @@ width="205" height="210" alt="Tux Paint">
- バージョン 0.9.29
+ バージョン 0.9.30
SVG Documentation

diff --git a/magic/magic-docs/es_ES.UTF-8/html/3dglasses.html b/magic/magic-docs/es_ES.UTF-8/html/3dglasses.html index 9d0927432..99a6dc93a 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/3dglasses.html +++ b/magic/magic-docs/es_ES.UTF-8/html/3dglasses.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

This tool horizontally separates your entire picture's red and cyan color channels, letting you create anaglyphic pictures that can be viewed with 3D glasses.

See also: Color Sep. & Double Vision.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/blinds.html b/magic/magic-docs/es_ES.UTF-8/html/blinds.html index 06796a4e2..e9e09e84b 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/blinds.html +++ b/magic/magic-docs/es_ES.UTF-8/html/blinds.html @@ -9,5 +9,5 @@ Pere Pujal i Carabantes <pere@fornol.no-ip.org>

Click towards the edge of your picture to pull window blinds over it. Move perpendicularly to open or close the blinds.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/blocks.html b/magic/magic-docs/es_ES.UTF-8/html/blocks.html index 9fe8cd481..a27d486a6 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/blocks.html +++ b/magic/magic-docs/es_ES.UTF-8/html/blocks.html @@ -11,5 +11,5 @@ Albert Cahalan <albert@users.sf.net&

This makes the picture blocky looking ("pixelated") wherever you drag the mouse.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/bloom.html b/magic/magic-docs/es_ES.UTF-8/html/bloom.html index 8162271f1..dd4ef87b9 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/bloom.html +++ b/magic/magic-docs/es_ES.UTF-8/html/bloom.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

Add a glowing \"bloom\" effect to pictures.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/blur.html b/magic/magic-docs/es_ES.UTF-8/html/blur.html index 3c567c378..d40b0631e 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/blur.html +++ b/magic/magic-docs/es_ES.UTF-8/html/blur.html @@ -12,5 +12,5 @@ Albert Cahalan <albert@users.sf.net&

This makes the picture fuzzy wherever you drag the mouse.

See also: Sharpen & Smudge.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/bricks.html b/magic/magic-docs/es_ES.UTF-8/html/bricks.html index 9b5cdf234..b361c6868 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/bricks.html +++ b/magic/magic-docs/es_ES.UTF-8/html/bricks.html @@ -10,5 +10,5 @@ Albert Cahalan <albert@users.sf.net&

These two tools intelligently paint large and small brick patterns on the canvas. The bricks can be tinted various redish hues by selecting different colors in the color palette.

See also: Pixels.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/calligraphy.html b/magic/magic-docs/es_ES.UTF-8/html/calligraphy.html index 22a2ace7d..6fe132c48 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/calligraphy.html +++ b/magic/magic-docs/es_ES.UTF-8/html/calligraphy.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

This paints on the canvas with a calligraphy pen. The quicker you move, the thinner the lines.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/cartoon.html b/magic/magic-docs/es_ES.UTF-8/html/cartoon.html index 1b0508d06..835353eaf 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/cartoon.html +++ b/magic/magic-docs/es_ES.UTF-8/html/cartoon.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

This makes the picture look like a cartoon — with thick outlines and bright, solid colors — wherever you move the mouse.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/chalk.html b/magic/magic-docs/es_ES.UTF-8/html/chalk.html index 19fd741fc..8e6ee9fb2 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/chalk.html +++ b/magic/magic-docs/es_ES.UTF-8/html/chalk.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

This makes parts of the picture (where you move the mouse) look like a chalk drawing.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/checkerboard.html b/magic/magic-docs/es_ES.UTF-8/html/checkerboard.html index 0c77dfb04..0ae1ee213 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/checkerboard.html +++ b/magic/magic-docs/es_ES.UTF-8/html/checkerboard.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

This covers the entire canvas with a checkboard pattern using the current color. Drag to change the size of the squares.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/circles.html b/magic/magic-docs/es_ES.UTF-8/html/circles.html index 7ca725ff0..643c79249 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/circles.html +++ b/magic/magic-docs/es_ES.UTF-8/html/circles.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

This transforms the picture into circular brush strokes around where you clicked.

See also: Rays.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/clone.html b/magic/magic-docs/es_ES.UTF-8/html/clone.html index 9835c8ab0..2bb2fbbd7 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/clone.html +++ b/magic/magic-docs/es_ES.UTF-8/html/clone.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

Clone (copy, via painting) part of the picture. Click ones to choose the source, then click and drag to clone it elsewhere in the drawing. Once you release, click to choose another source and start again.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/color_and_white.html b/magic/magic-docs/es_ES.UTF-8/html/color_and_white.html index 9c4da60a8..de66f18b8 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/color_and_white.html +++ b/magic/magic-docs/es_ES.UTF-8/html/color_and_white.html @@ -9,5 +9,5 @@ Andrew Corcoran <akanewbie@gmail.com>

This makes parts of your picture two colors: white, and the color chosen in the palette. (i.e., if you choose black, you'll get a black and white picture).


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/color_shift.html b/magic/magic-docs/es_ES.UTF-8/html/color_shift.html index 2e7ac5f9a..b3c80e44e 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/color_shift.html +++ b/magic/magic-docs/es_ES.UTF-8/html/color_shift.html @@ -9,5 +9,5 @@ Andrew Corcoran <akanewbie@gmail.com>

This shifts the colors in your picture.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/colorsep.html b/magic/magic-docs/es_ES.UTF-8/html/colorsep.html index 93e3588a7..933908308 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/colorsep.html +++ b/magic/magic-docs/es_ES.UTF-8/html/colorsep.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

This tool separates one color out of your entire picture, shifting colors away from each other (similar to '3D Glasses', but you may choose the any color to separate, and may move in any direction).

See also: 3D Glasses & Double Vision.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/confetti.html b/magic/magic-docs/es_ES.UTF-8/html/confetti.html index ad4f7ac40..435ccd638 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/confetti.html +++ b/magic/magic-docs/es_ES.UTF-8/html/confetti.html @@ -9,5 +9,5 @@ Adam Rakowski <foo-script@o2.pl>

Throw confetti around your picture!


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/darken.html b/magic/magic-docs/es_ES.UTF-8/html/darken.html index 098166a9d..ee8fb82e0 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/darken.html +++ b/magic/magic-docs/es_ES.UTF-8/html/darken.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

This darkens the colors wherever you drag the mouse. (Do it to the same spot many times, and it will eventually become black.)

See also: Lighten, Tint, Saturate, & Desaturate.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/desaturate.html b/magic/magic-docs/es_ES.UTF-8/html/desaturate.html index ff72927bd..366f1846a 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/desaturate.html +++ b/magic/magic-docs/es_ES.UTF-8/html/desaturate.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

This desaturates the colors wherever you drag the mouse. (Do it to the same spot many times, and it will eventually become greyscale.)

See also: Saturate, Darken, Lighten, Tint, Remove Color, & Keep Color.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/distortion.html b/magic/magic-docs/es_ES.UTF-8/html/distortion.html index a7b5dfd82..b704b82b8 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/distortion.html +++ b/magic/magic-docs/es_ES.UTF-8/html/distortion.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

This slightly distorts the picture wherever you move the mouse.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/doublevision.html b/magic/magic-docs/es_ES.UTF-8/html/doublevision.html index feb4a906f..d17bc46d0 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/doublevision.html +++ b/magic/magic-docs/es_ES.UTF-8/html/doublevision.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

This blends the image with itself, to simulate double vision.

See also: 3D Glasses & Double Vision.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/drip.html b/magic/magic-docs/es_ES.UTF-8/html/drip.html index bcb05b657..6b50d4184 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/drip.html +++ b/magic/magic-docs/es_ES.UTF-8/html/drip.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

This makes the paint "drip" wherever you move the mouse.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/edges.html b/magic/magic-docs/es_ES.UTF-8/html/edges.html index 4fc121b38..5508b1f53 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/edges.html +++ b/magic/magic-docs/es_ES.UTF-8/html/edges.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

Trace the edges in your picture, over a white background.

See also: Emboss & Silhouette.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/emboss.html b/magic/magic-docs/es_ES.UTF-8/html/emboss.html index e3c9300c5..8b2ffd6e6 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/emboss.html +++ b/magic/magic-docs/es_ES.UTF-8/html/emboss.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

This makes parts of your picture look "embossed." Wherever there are sharp edges in your picture, the picture will look raised like it was stamped in metal.

See also: Edges & Silhouette.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/fisheye.html b/magic/magic-docs/es_ES.UTF-8/html/fisheye.html index a13907333..7713c5256 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/fisheye.html +++ b/magic/magic-docs/es_ES.UTF-8/html/fisheye.html @@ -10,5 +10,5 @@ Adam Rakowski <foo-script@o2.pl>Warp parts of your picture like it's being seen through a fisheye lens.

See also: Ripples.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/flip.html b/magic/magic-docs/es_ES.UTF-8/html/flip.html index e9165f02f..eb112ff21 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/flip.html +++ b/magic/magic-docs/es_ES.UTF-8/html/flip.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

Similar to "Mirror." Click and the entire image will be turned upside-down.

See also: Mirror.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/flower.html b/magic/magic-docs/es_ES.UTF-8/html/flower.html index e8077ffd1..f1551f026 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/flower.html +++ b/magic/magic-docs/es_ES.UTF-8/html/flower.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

This tool draws small flowers, with leafy bases and stalks. Click to set the base, then drag the mouse upwards to draw the stalk, and finally release the mouse button to finish the flower. It will be drawn in the currently-selected color. The shape and length of the stalk depends on how you move the mouse while you drag.

See also: Grass.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/foam.html b/magic/magic-docs/es_ES.UTF-8/html/foam.html index 64a544bc4..b27d4ca92 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/foam.html +++ b/magic/magic-docs/es_ES.UTF-8/html/foam.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

Click and drag the mouse to draw foamy bubbles. The more you drag the mouse in a particular spot, the more likely small bubbles will combine to form bigger bubbles.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/fold.html b/magic/magic-docs/es_ES.UTF-8/html/fold.html index 76cc965d5..cb2b4d68d 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/fold.html +++ b/magic/magic-docs/es_ES.UTF-8/html/fold.html @@ -12,5 +12,5 @@ Pere Pujal i Carabantes <pere@fornol.n

Click a corner of your picture and drag towards the center to fold it up like a piece of paper.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/fretwork.html b/magic/magic-docs/es_ES.UTF-8/html/fretwork.html index 3c63e3d0e..2fa2c8826 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/fretwork.html +++ b/magic/magic-docs/es_ES.UTF-8/html/fretwork.html @@ -9,5 +9,5 @@ Pere Pujal i Carabantes <
pere@fornol.no-ip.org>

Draw an interlaced decorative design that looks like wooden fretwork.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/fur.html b/magic/magic-docs/es_ES.UTF-8/html/fur.html index 99856daef..43a08cdaa 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/fur.html +++ b/magic/magic-docs/es_ES.UTF-8/html/fur.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

Add fur to your drawing.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/glass_tile.html b/magic/magic-docs/es_ES.UTF-8/html/glass_tile.html index ba78877eb..094da3303 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/glass_tile.html +++ b/magic/magic-docs/es_ES.UTF-8/html/glass_tile.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

Click and drag over your picture to make it look like it's being seen through glass tiles.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/googlyeyes.html b/magic/magic-docs/es_ES.UTF-8/html/googlyeyes.html index 5a502f3eb..8ccd6f4e4 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/googlyeyes.html +++ b/magic/magic-docs/es_ES.UTF-8/html/googlyeyes.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

Draws a googly eye where you click. Drag to position the pupil.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/grass.html b/magic/magic-docs/es_ES.UTF-8/html/grass.html index ce7da68b1..430229a74 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/grass.html +++ b/magic/magic-docs/es_ES.UTF-8/html/grass.html @@ -10,5 +10,5 @@ Albert Cahalan <albert@users.sf.net&

This paints grass on the image. The higher up the canvas, the smaller the grass is drawn, giving an illusion of perspective. The grass can be tinted various greenish hues by selecting different colors in the color palette.

See also: Flower.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/halftone.html b/magic/magic-docs/es_ES.UTF-8/html/halftone.html index ac5ac1708..15b62bcb6 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/halftone.html +++ b/magic/magic-docs/es_ES.UTF-8/html/halftone.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

This makes parts of your picture look like newsprint. Different sizes of cyan, magenta, yellow, and black "ink" will appear in place of your picture.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/hexagon_mosaic.html b/magic/magic-docs/es_ES.UTF-8/html/hexagon_mosaic.html index 94741f5e0..d9b1f9fd3 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/hexagon_mosaic.html +++ b/magic/magic-docs/es_ES.UTF-8/html/hexagon_mosaic.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

Converts parts of your picture into a mosaic of hexagon cells.

See also: Irregular Mosaic, Square Mosaic, & Mosaic.


-

Tux Paint 0.9.29

+

Tux Paint 0.9.30

\ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/index.html b/magic/magic-docs/es_ES.UTF-8/html/index.html index c29ac8050..4636eb1c7 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/index.html +++ b/magic/magic-docs/es_ES.UTF-8/html/index.html @@ -118,5 +118,5 @@
  • Tornado

  • -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/irregular_mosaic.html b/magic/magic-docs/es_ES.UTF-8/html/irregular_mosaic.html index cb6ad9e49..3de8fffd7 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/irregular_mosaic.html +++ b/magic/magic-docs/es_ES.UTF-8/html/irregular_mosaic.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Converts parts of your picture into a mosaic of irregularly-shaped cells.

    See also: Hexagon Mosaic, Square Mosaic, & Mosaic.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/kaleidoscope.html b/magic/magic-docs/es_ES.UTF-8/html/kaleidoscope.html index 324a73bc8..c6a91ff5f 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/kaleidoscope.html +++ b/magic/magic-docs/es_ES.UTF-8/html/kaleidoscope.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This paint brush draws in four places at the same time, mirroring symmetrically, both horizontally and vertically. It uses the currently selected color.

    See also: Picasso, Rosette, & Kaleido-4, Kaleido-6, and Kaleido-8.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/kaleidoscope_lens.html b/magic/magic-docs/es_ES.UTF-8/html/kaleidoscope_lens.html index 6610eb9f6..7ef2bb17a 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/kaleidoscope_lens.html +++ b/magic/magic-docs/es_ES.UTF-8/html/kaleidoscope_lens.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    These two tools make it look like your picture is being viewed through a kaleidoscope.

    See also: Kaleidoscope.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/keep_color.html b/magic/magic-docs/es_ES.UTF-8/html/keep_color.html index f7d816f31..f92da2836 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/keep_color.html +++ b/magic/magic-docs/es_ES.UTF-8/html/keep_color.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This completely desaturates (turns greyscale) any parts of the image that do not match the selected color.

    See also: Remove Color, Saturate, Desaturate, Darken, Lighten, Tint, & Remove Color.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/light.html b/magic/magic-docs/es_ES.UTF-8/html/light.html index 6d484e5b0..1e11d4ba9 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/light.html +++ b/magic/magic-docs/es_ES.UTF-8/html/light.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This draws a glowing beam on the canvas, in the currently-selected color. The more you use it on one spot, the more white it becomes.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/lighten.html b/magic/magic-docs/es_ES.UTF-8/html/lighten.html index 7ad7f0912..dd565aa26 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/lighten.html +++ b/magic/magic-docs/es_ES.UTF-8/html/lighten.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This fades the colors wherever you drag the mouse. (Do it to the same spot many times, and it will eventually become white.)

    See also: Darken, Tint, Saturate, & Desaturate.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/lightning.html b/magic/magic-docs/es_ES.UTF-8/html/lightning.html index d6438354b..d0a32db41 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/lightning.html +++ b/magic/magic-docs/es_ES.UTF-8/html/lightning.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Draws a lightning bolt between two points on the picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/maze.html b/magic/magic-docs/es_ES.UTF-8/html/maze.html index 7c37d610e..e48a61785 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/maze.html +++ b/magic/magic-docs/es_ES.UTF-8/html/maze.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag to construct a maze on your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/metal_paint.html b/magic/magic-docs/es_ES.UTF-8/html/metal_paint.html index b50e3a224..10f16df4c 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/metal_paint.html +++ b/magic/magic-docs/es_ES.UTF-8/html/metal_paint.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag to draw shiny metal using the current color.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/mirror.html b/magic/magic-docs/es_ES.UTF-8/html/mirror.html index bd6c21991..b7e400928 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/mirror.html +++ b/magic/magic-docs/es_ES.UTF-8/html/mirror.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    When you click the mouse in your picture with the "Mirror" magic effect selected, the entire image will be reversed, turning it into a mirror image.

    See also: Flip.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/mosaic.html b/magic/magic-docs/es_ES.UTF-8/html/mosaic.html index 5ff4bc32d..d2fa1118c 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/mosaic.html +++ b/magic/magic-docs/es_ES.UTF-8/html/mosaic.html @@ -12,5 +12,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Adds a glass mosaic effect to your picture.

    See also: Hexagon Mosaic, Irregular Mosaic, & Square Mosaic.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/negative.html b/magic/magic-docs/es_ES.UTF-8/html/negative.html index 392cef4b8..20f4df4b2 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/negative.html +++ b/magic/magic-docs/es_ES.UTF-8/html/negative.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This inverts the colors wherever you drag the mouse. (e.g., white becomes black, and vice versa.) It inverts the values of the Red, Green, and Blue components of the pixels.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/noise.html b/magic/magic-docs/es_ES.UTF-8/html/noise.html index 7227dad60..8149ae542 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/noise.html +++ b/magic/magic-docs/es_ES.UTF-8/html/noise.html @@ -9,5 +9,5 @@ Andrew Corcoran <akanewbie@gmail.com>

    Add random noise and static to your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/opposite.html b/magic/magic-docs/es_ES.UTF-8/html/opposite.html index 307518105..2fbf2e6df 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/opposite.html +++ b/magic/magic-docs/es_ES.UTF-8/html/opposite.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This converts the colors wherever you drag the mouse into their complementary (opposite) colors. (e.g., blue becomes orange, and vice versa.) It changes the Hue compoment of the pixels, without affecting the Saturation or Lightness.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/panels.html b/magic/magic-docs/es_ES.UTF-8/html/panels.html index 925ce2914..4f20cc561 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/panels.html +++ b/magic/magic-docs/es_ES.UTF-8/html/panels.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Shrink the image and repeat it four times in a 2-by-2 grid. Useful for creating 4-panel comics. Can also be used to create a compound-eye effect.

    See also: Tile Zoom.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/pattern.html b/magic/magic-docs/es_ES.UTF-8/html/pattern.html index 37bd47c20..6e5921101 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/pattern.html +++ b/magic/magic-docs/es_ES.UTF-8/html/pattern.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draws a tiled pattern around the picture.

    See also: Tiles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/perspective.html b/magic/magic-docs/es_ES.UTF-8/html/perspective.html index e2fec5d57..9f3833ffb 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/perspective.html +++ b/magic/magic-docs/es_ES.UTF-8/html/perspective.html @@ -9,5 +9,5 @@ Pere Pujal i Carabantes <pere@fornol.no-ip.org>

    Click and drag from the corners to change the perspective of your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/picasso.html b/magic/magic-docs/es_ES.UTF-8/html/picasso.html index fca954684..18098e8b9 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/picasso.html +++ b/magic/magic-docs/es_ES.UTF-8/html/picasso.html @@ -10,5 +10,5 @@ Adam Rakowski <foo-script@o2.pl>Draw three swirling brushes at once, in a Picasso style.

    See also: Rosette & Kaleidoscope.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/pixels.html b/magic/magic-docs/es_ES.UTF-8/html/pixels.html index 99b4a5d36..f846dfb8c 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/pixels.html +++ b/magic/magic-docs/es_ES.UTF-8/html/pixels.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Draw large square "pixels" on the canvas.

    See also: Bricks.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/puzzle.html b/magic/magic-docs/es_ES.UTF-8/html/puzzle.html index 9f5304ffe..ba19240fb 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/puzzle.html +++ b/magic/magic-docs/es_ES.UTF-8/html/puzzle.html @@ -9,5 +9,5 @@ Adam Rakowski <foo-script@o2.pl>

    Slide parts of your picture around like a sliding puzzle.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/rails.html b/magic/magic-docs/es_ES.UTF-8/html/rails.html index d20576f51..6c68733b2 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/rails.html +++ b/magic/magic-docs/es_ES.UTF-8/html/rails.html @@ -12,5 +12,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Draw connecting locomotive train rails on your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/rain.html b/magic/magic-docs/es_ES.UTF-8/html/rain.html index 15fc85268..19cb8bc05 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/rain.html +++ b/magic/magic-docs/es_ES.UTF-8/html/rain.html @@ -10,5 +10,5 @@ Andrew Corcoran <
    akanewbie@gmail.com

    Paint raindrops on your picture.

    See also: Snow Ball & Snow Flake.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/rainbow.html b/magic/magic-docs/es_ES.UTF-8/html/rainbow.html index 4147914e9..18676cf13 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/rainbow.html +++ b/magic/magic-docs/es_ES.UTF-8/html/rainbow.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This is similar to the paint brush, but as you move the mouse around, it cycles through a spectrum of bright colors.

    See also: Smooth Rainbow.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/rays.html b/magic/magic-docs/es_ES.UTF-8/html/rays.html index 8b39e28e7..5769a8017 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/rays.html +++ b/magic/magic-docs/es_ES.UTF-8/html/rays.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This transforms the picture into brush strokes that point towards where you clicked.

    See also: Circles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/real_rainbow.html b/magic/magic-docs/es_ES.UTF-8/html/real_rainbow.html index 253159453..5ac788e8b 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/real_rainbow.html +++ b/magic/magic-docs/es_ES.UTF-8/html/real_rainbow.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Draw a transparent arc that looks like a real rainbow.

    See also: Real Rainbow.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/reflection.html b/magic/magic-docs/es_ES.UTF-8/html/reflection.html index 9a7e3db58..ab736efaf 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/reflection.html +++ b/magic/magic-docs/es_ES.UTF-8/html/reflection.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag down, up, left, or right, to add a reflection to you picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/remove_color.html b/magic/magic-docs/es_ES.UTF-8/html/remove_color.html index 2c35b2d37..5771d98b6 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/remove_color.html +++ b/magic/magic-docs/es_ES.UTF-8/html/remove_color.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This completely desaturates (turns greyscale) parts of the image that match the selected color.

    See also: Keep Color, Saturate, Desaturate, Darken, Lighten, Tint, & Remove Color.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/ripples.html b/magic/magic-docs/es_ES.UTF-8/html/ripples.html index 4f420cf5c..2f4a85936 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/ripples.html +++ b/magic/magic-docs/es_ES.UTF-8/html/ripples.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Click in your picture to make water ripple distortions appear over it.

    See also: Fisheye.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/rosette.html b/magic/magic-docs/es_ES.UTF-8/html/rosette.html index 55fb279a1..ee1dc3cb4 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/rosette.html +++ b/magic/magic-docs/es_ES.UTF-8/html/rosette.html @@ -10,5 +10,5 @@ Adam Rakowski <foo-script@o2.pl>Draw three brushes at once, in a rosette shape.

    See also: Kaleidoscope & Picasso.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/roygbiv_rainbow.html b/magic/magic-docs/es_ES.UTF-8/html/roygbiv_rainbow.html index 3256de8af..bd4cbe9f2 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/roygbiv_rainbow.html +++ b/magic/magic-docs/es_ES.UTF-8/html/roygbiv_rainbow.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Draw a rainbow arc of red, orange, yellow, green, blue, indigo and violet.

    See also: ROYGBIV Rainbow.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/rush.html b/magic/magic-docs/es_ES.UTF-8/html/rush.html index 67ef8a281..7ee68ff4c 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/rush.html +++ b/magic/magic-docs/es_ES.UTF-8/html/rush.html @@ -12,5 +12,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Click and drag up to zoom in, or down to zoom out. The results will be blurred/smeared.

    See also: Rush, Tile Zoom, & Zoom.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/saturate.html b/magic/magic-docs/es_ES.UTF-8/html/saturate.html index ff02a0159..220dcfad9 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/saturate.html +++ b/magic/magic-docs/es_ES.UTF-8/html/saturate.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This increases the saturation of colors wherever you drag the mouse.

    See also: Desaturate, Darken, Lighten, Tint, Remove Color, & Keep Color.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/sharpen.html b/magic/magic-docs/es_ES.UTF-8/html/sharpen.html index b99ef5380..aff337294 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/sharpen.html +++ b/magic/magic-docs/es_ES.UTF-8/html/sharpen.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Sharpen the focus of the picture.

    See also: Blur.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/shift.html b/magic/magic-docs/es_ES.UTF-8/html/shift.html index a0f533e14..c93cf1024 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/shift.html +++ b/magic/magic-docs/es_ES.UTF-8/html/shift.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This shifts your picture around the canvas. Anything that gets shifts off an edge reappears on the opposite edge.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/silhouette.html b/magic/magic-docs/es_ES.UTF-8/html/silhouette.html index b25a03add..48b54b082 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/silhouette.html +++ b/magic/magic-docs/es_ES.UTF-8/html/silhouette.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Trace the edges in your picture, over a black background.

    See also: Edges & Emboss.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/smooth_rainbow.html b/magic/magic-docs/es_ES.UTF-8/html/smooth_rainbow.html index 6001e3959..5318e3f8a 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/smooth_rainbow.html +++ b/magic/magic-docs/es_ES.UTF-8/html/smooth_rainbow.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This is similar to Rainbow magic tool — as you move the mouse around, it cycles through a spectrum of colors — except the colors blend smoothly as you draw.

    See also: Rainbow.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/smudge.html b/magic/magic-docs/es_ES.UTF-8/html/smudge.html index 30ffa0d2c..6e098917e 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/smudge.html +++ b/magic/magic-docs/es_ES.UTF-8/html/smudge.html @@ -10,5 +10,5 @@ Albert Cahalan <albert@users.sf.net&

    This pushes the colors around under the mouse, like finger painting with wet paint.

    See also: Blur & Wet Paint.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/snow_ball.html b/magic/magic-docs/es_ES.UTF-8/html/snow_ball.html index 7a102c8e6..f6bdb8776 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/snow_ball.html +++ b/magic/magic-docs/es_ES.UTF-8/html/snow_ball.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Fill the picture with snowballs.

    See also: Rain & Snow Flake.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/snow_flake.html b/magic/magic-docs/es_ES.UTF-8/html/snow_flake.html index 5b9a398e8..45c0907ba 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/snow_flake.html +++ b/magic/magic-docs/es_ES.UTF-8/html/snow_flake.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Fill the picture with snowflakes.

    See also: Rain & Snow Ball.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/square_mosaic.html b/magic/magic-docs/es_ES.UTF-8/html/square_mosaic.html index 7ab1cd331..53604fdc3 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/square_mosaic.html +++ b/magic/magic-docs/es_ES.UTF-8/html/square_mosaic.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Converts parts of your picture into a mosaic of square cells.

    See also: Hexagon Mosaic, Irregular Mosaic, & Mosaic.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/stretch.html b/magic/magic-docs/es_ES.UTF-8/html/stretch.html index 7a1968e5c..94a06c44e 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/stretch.html +++ b/magic/magic-docs/es_ES.UTF-8/html/stretch.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag around to stretch and squish parts of the picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/string_corner.html b/magic/magic-docs/es_ES.UTF-8/html/string_corner.html index 7e47052f8..a06236738 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/string_corner.html +++ b/magic/magic-docs/es_ES.UTF-8/html/string_corner.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draw V-shaped string art at right angles.

    See also: String V & String Edges.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/string_edges.html b/magic/magic-docs/es_ES.UTF-8/html/string_edges.html index 893a7c6c2..b9ac4303e 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/string_edges.html +++ b/magic/magic-docs/es_ES.UTF-8/html/string_edges.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draw string art around the edges of your picture.

    See also: String V & String Corner.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/string_v.html b/magic/magic-docs/es_ES.UTF-8/html/string_v.html index 4980e7685..ab748dbd7 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/string_v.html +++ b/magic/magic-docs/es_ES.UTF-8/html/string_v.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draw V-shaped string art at any angle.

    See also: String Corner & String Edges.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/symmetry_left_right.html b/magic/magic-docs/es_ES.UTF-8/html/symmetry_left_right.html index 1ef348173..7b048e7d2 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/symmetry_left_right.html +++ b/magic/magic-docs/es_ES.UTF-8/html/symmetry_left_right.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Paint with relfective symmetry across the horizontal center of the image.

    See also: Kaleidoscope, Pattern, Symmetry Up/Down, & Tiles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/symmetry_up_down.html b/magic/magic-docs/es_ES.UTF-8/html/symmetry_up_down.html index c82d866ad..592bc3824 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/symmetry_up_down.html +++ b/magic/magic-docs/es_ES.UTF-8/html/symmetry_up_down.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Paint with relfective symmetry across the vertical center of the image.

    See also: Kaleidoscope, Pattern, Symmetry Left/Right, & Tiles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/tiles.html b/magic/magic-docs/es_ES.UTF-8/html/tiles.html index 4568963b9..3090a2a08 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/tiles.html +++ b/magic/magic-docs/es_ES.UTF-8/html/tiles.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draws a symettric pattern around the picture.

    See also: Pattern.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/tilezoom.html b/magic/magic-docs/es_ES.UTF-8/html/tilezoom.html index 5766ec53f..c052d624d 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/tilezoom.html +++ b/magic/magic-docs/es_ES.UTF-8/html/tilezoom.html @@ -12,5 +12,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Click and drag up to zoom in, or down to zoom out. When scaling down, your image will be tiled across the canvas.

    See also: Panels, Rush, & Zoom.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/tint.html b/magic/magic-docs/es_ES.UTF-8/html/tint.html index 90e4d4b88..38c6de83d 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/tint.html +++ b/magic/magic-docs/es_ES.UTF-8/html/tint.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This changes the color (or hue) of the parts of the picture to the selected color.

    See also: Lighten & Darken.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/toothpaste.html b/magic/magic-docs/es_ES.UTF-8/html/toothpaste.html index 7f83590fb..63ad14c1c 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/toothpaste.html +++ b/magic/magic-docs/es_ES.UTF-8/html/toothpaste.html @@ -9,5 +9,5 @@ Andrew Corcoran <akanewbie@gmail.com>

    Paint thick blobs of color on your picture that look like toothpaste.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/tornado.html b/magic/magic-docs/es_ES.UTF-8/html/tornado.html index f22173b85..271dac182 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/tornado.html +++ b/magic/magic-docs/es_ES.UTF-8/html/tornado.html @@ -9,5 +9,5 @@ Pere Pujal i Carabantes <pere@fornol.no-ip.org>

    Draws a tornado effect onto the picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/tv.html b/magic/magic-docs/es_ES.UTF-8/html/tv.html index a12a09547..a0c11acb5 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/tv.html +++ b/magic/magic-docs/es_ES.UTF-8/html/tv.html @@ -11,5 +11,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Distort your picture so it looks like it's on a television (TV).


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/wavelets.html b/magic/magic-docs/es_ES.UTF-8/html/wavelets.html index 73d13b979..8d39c8ed5 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/wavelets.html +++ b/magic/magic-docs/es_ES.UTF-8/html/wavelets.html @@ -12,5 +12,5 @@ Adam Rakowski <
    foo-script@o2.pl>

    Click to make the entire picture wavy, up-and-down. Drag the mouse up and down to change the height of the ripples, and left and right to change the width. Release the mouse button when it looks the way you like it.

    See also: Waves.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/waves.html b/magic/magic-docs/es_ES.UTF-8/html/waves.html index 717b3b8a3..4263fca75 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/waves.html +++ b/magic/magic-docs/es_ES.UTF-8/html/waves.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Click to make the entire picture wavy, side-to-side. Drag the mouse up and down to change the height of the ripples, and left and right to change the width. Release the mouse button when it looks the way you like it.

    See also: Wavelets.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/wet_paint.html b/magic/magic-docs/es_ES.UTF-8/html/wet_paint.html index 65191811a..ff92927f5 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/wet_paint.html +++ b/magic/magic-docs/es_ES.UTF-8/html/wet_paint.html @@ -12,5 +12,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This draws a light, smudgy coat of paint on the picture.

    See also: Smudge.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/xor_colors.html b/magic/magic-docs/es_ES.UTF-8/html/xor_colors.html index 68ad5a12b..2cf8f9d95 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/xor_colors.html +++ b/magic/magic-docs/es_ES.UTF-8/html/xor_colors.html @@ -9,5 +9,5 @@ Lukasz Dmitrowski <lukasz.dmitrowski@gmail.com>

    Colors based on the position drawn on the picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/es_ES.UTF-8/html/zoom.html b/magic/magic-docs/es_ES.UTF-8/html/zoom.html index 4a0042515..85c6855e6 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/zoom.html +++ b/magic/magic-docs/es_ES.UTF-8/html/zoom.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Click and drag up to zoom in, or down to zoom out. (When scaling down, your chosen color will be used as a background color.)

    See also: Rush & Tile Zoom.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/3dglasses.html b/magic/magic-docs/fr_FR.UTF-8/html/3dglasses.html index 9d0927432..99a6dc93a 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/3dglasses.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/3dglasses.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This tool horizontally separates your entire picture's red and cyan color channels, letting you create anaglyphic pictures that can be viewed with 3D glasses.

    See also: Color Sep. & Double Vision.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/blinds.html b/magic/magic-docs/fr_FR.UTF-8/html/blinds.html index 06796a4e2..e9e09e84b 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/blinds.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/blinds.html @@ -9,5 +9,5 @@ Pere Pujal i Carabantes <pere@fornol.no-ip.org>

    Click towards the edge of your picture to pull window blinds over it. Move perpendicularly to open or close the blinds.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/blocks.html b/magic/magic-docs/fr_FR.UTF-8/html/blocks.html index 9fe8cd481..a27d486a6 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/blocks.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/blocks.html @@ -11,5 +11,5 @@ Albert Cahalan <albert@users.sf.net&

    This makes the picture blocky looking ("pixelated") wherever you drag the mouse.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/bloom.html b/magic/magic-docs/fr_FR.UTF-8/html/bloom.html index 8162271f1..dd4ef87b9 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/bloom.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/bloom.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Add a glowing \"bloom\" effect to pictures.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/blur.html b/magic/magic-docs/fr_FR.UTF-8/html/blur.html index bb741e8d9..47bec1049 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/blur.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/blur.html @@ -12,5 +12,5 @@ Albert Cahalan <albert@users.sf.net&

    This makes the picture fuzzy wherever you drag the mouse.

    See also: Sharpen & Smudge.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/bricks.html b/magic/magic-docs/fr_FR.UTF-8/html/bricks.html index ce4ca6bb8..ede591cab 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/bricks.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/bricks.html @@ -10,5 +10,5 @@ Albert Cahalan <albert@users.sf.net&

    These two tools intelligently paint large and small brick patterns on the canvas. The bricks can be tinted various redish hues by selecting different colors in the color palette.

    See also: Pixels.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/calligraphy.html b/magic/magic-docs/fr_FR.UTF-8/html/calligraphy.html index d2b26fdc1..ae164ebe7 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/calligraphy.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/calligraphy.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This paints on the canvas with a calligraphy pen. The quicker you move, the thinner the lines.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/cartoon.html b/magic/magic-docs/fr_FR.UTF-8/html/cartoon.html index 1b0508d06..835353eaf 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/cartoon.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/cartoon.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This makes the picture look like a cartoon — with thick outlines and bright, solid colors — wherever you move the mouse.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/chalk.html b/magic/magic-docs/fr_FR.UTF-8/html/chalk.html index f387d6e3e..2a5af36fb 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/chalk.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/chalk.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This makes parts of the picture (where you move the mouse) look like a chalk drawing.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/checkerboard.html b/magic/magic-docs/fr_FR.UTF-8/html/checkerboard.html index e4802dd61..6594e44ab 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/checkerboard.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/checkerboard.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This covers the entire canvas with a checkboard pattern using the current color. Drag to change the size of the squares.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/circles.html b/magic/magic-docs/fr_FR.UTF-8/html/circles.html index 7ca725ff0..643c79249 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/circles.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/circles.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This transforms the picture into circular brush strokes around where you clicked.

    See also: Rays.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/clone.html b/magic/magic-docs/fr_FR.UTF-8/html/clone.html index 9835c8ab0..2bb2fbbd7 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/clone.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/clone.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Clone (copy, via painting) part of the picture. Click ones to choose the source, then click and drag to clone it elsewhere in the drawing. Once you release, click to choose another source and start again.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/color_and_white.html b/magic/magic-docs/fr_FR.UTF-8/html/color_and_white.html index 9c4da60a8..de66f18b8 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/color_and_white.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/color_and_white.html @@ -9,5 +9,5 @@ Andrew Corcoran <akanewbie@gmail.com>

    This makes parts of your picture two colors: white, and the color chosen in the palette. (i.e., if you choose black, you'll get a black and white picture).


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/color_shift.html b/magic/magic-docs/fr_FR.UTF-8/html/color_shift.html index 2e7ac5f9a..b3c80e44e 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/color_shift.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/color_shift.html @@ -9,5 +9,5 @@ Andrew Corcoran <akanewbie@gmail.com>

    This shifts the colors in your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/colorsep.html b/magic/magic-docs/fr_FR.UTF-8/html/colorsep.html index 93e3588a7..933908308 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/colorsep.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/colorsep.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This tool separates one color out of your entire picture, shifting colors away from each other (similar to '3D Glasses', but you may choose the any color to separate, and may move in any direction).

    See also: 3D Glasses & Double Vision.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/confetti.html b/magic/magic-docs/fr_FR.UTF-8/html/confetti.html index 9d0e8557b..6ecd40390 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/confetti.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/confetti.html @@ -9,5 +9,5 @@ Adam Rakowski <foo-script@o2.pl>

    Throw confetti around your picture!


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/darken.html b/magic/magic-docs/fr_FR.UTF-8/html/darken.html index 707e4b4b5..6025b3aac 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/darken.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/darken.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This darkens the colors wherever you drag the mouse. (Do it to the same spot many times, and it will eventually become black.)

    See also: Éclaircir, Tint, Saturate, & Desaturate.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/desaturate.html b/magic/magic-docs/fr_FR.UTF-8/html/desaturate.html index 13e1d075f..10344fa05 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/desaturate.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/desaturate.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This desaturates the colors wherever you drag the mouse. (Do it to the same spot many times, and it will eventually become greyscale.)

    See also: Saturate, Assombrir, Éclaircir, Tint, Remove Color, & Keep Color.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/distortion.html b/magic/magic-docs/fr_FR.UTF-8/html/distortion.html index 5167d9f40..15deba32a 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/distortion.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/distortion.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This slightly distorts the picture wherever you move the mouse.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/doublevision.html b/magic/magic-docs/fr_FR.UTF-8/html/doublevision.html index feb4a906f..d17bc46d0 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/doublevision.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/doublevision.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This blends the image with itself, to simulate double vision.

    See also: 3D Glasses & Double Vision.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/drip.html b/magic/magic-docs/fr_FR.UTF-8/html/drip.html index 47a421f6e..ee82d858c 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/drip.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/drip.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This makes the paint "drip" wherever you move the mouse.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/edges.html b/magic/magic-docs/fr_FR.UTF-8/html/edges.html index 0fe691591..6fb495f5a 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/edges.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/edges.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Trace the edges in your picture, over a white background.

    See also: Relief & Silhouette.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/emboss.html b/magic/magic-docs/fr_FR.UTF-8/html/emboss.html index af1652fe4..4c621cebd 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/emboss.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/emboss.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This makes parts of your picture look "embossed." Wherever there are sharp edges in your picture, the picture will look raised like it was stamped in metal.

    See also: Edges & Silhouette.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/fisheye.html b/magic/magic-docs/fr_FR.UTF-8/html/fisheye.html index 54b871407..0f4db148a 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/fisheye.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/fisheye.html @@ -10,5 +10,5 @@ Adam Rakowski <foo-script@o2.pl>Warp parts of your picture like it's being seen through a fisheye lens.

    See also: Ripples.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/flip.html b/magic/magic-docs/fr_FR.UTF-8/html/flip.html index 022d7a587..7f774e10a 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/flip.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/flip.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Similar to "Mirror." Click and the entire image will be turned upside-down.

    See also: Miroir.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/flower.html b/magic/magic-docs/fr_FR.UTF-8/html/flower.html index 06ce03f19..f4d7f287b 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/flower.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/flower.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This tool draws small flowers, with leafy bases and stalks. Click to set the base, then drag the mouse upwards to draw the stalk, and finally release the mouse button to finish the flower. It will be drawn in the currently-selected color. The shape and length of the stalk depends on how you move the mouse while you drag.

    See also: Herbe.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/foam.html b/magic/magic-docs/fr_FR.UTF-8/html/foam.html index 04892f725..f0ba83b77 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/foam.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/foam.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag the mouse to draw foamy bubbles. The more you drag the mouse in a particular spot, the more likely small bubbles will combine to form bigger bubbles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/fold.html b/magic/magic-docs/fr_FR.UTF-8/html/fold.html index 4f6fc9482..19c01e931 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/fold.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/fold.html @@ -12,5 +12,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Click a corner of your picture and drag towards the center to fold it up like a piece of paper.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/fretwork.html b/magic/magic-docs/fr_FR.UTF-8/html/fretwork.html index 317c42d48..fd5d7ab18 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/fretwork.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/fretwork.html @@ -9,5 +9,5 @@ Pere Pujal i Carabantes <
    pere@fornol.no-ip.org>

    Draw an interlaced decorative design that looks like wooden fretwork.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/fur.html b/magic/magic-docs/fr_FR.UTF-8/html/fur.html index 99856daef..43a08cdaa 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/fur.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/fur.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Add fur to your drawing.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/glass_tile.html b/magic/magic-docs/fr_FR.UTF-8/html/glass_tile.html index ba78877eb..094da3303 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/glass_tile.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/glass_tile.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag over your picture to make it look like it's being seen through glass tiles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/googlyeyes.html b/magic/magic-docs/fr_FR.UTF-8/html/googlyeyes.html index 5a502f3eb..8ccd6f4e4 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/googlyeyes.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/googlyeyes.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Draws a googly eye where you click. Drag to position the pupil.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/grass.html b/magic/magic-docs/fr_FR.UTF-8/html/grass.html index a3b73c19b..003ace6e3 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/grass.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/grass.html @@ -10,5 +10,5 @@ Albert Cahalan <albert@users.sf.net&

    This paints grass on the image. The higher up the canvas, the smaller the grass is drawn, giving an illusion of perspective. The grass can be tinted various greenish hues by selecting different colors in the color palette.

    See also: Fleur.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/halftone.html b/magic/magic-docs/fr_FR.UTF-8/html/halftone.html index ac5ac1708..15b62bcb6 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/halftone.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/halftone.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This makes parts of your picture look like newsprint. Different sizes of cyan, magenta, yellow, and black "ink" will appear in place of your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/hexagon_mosaic.html b/magic/magic-docs/fr_FR.UTF-8/html/hexagon_mosaic.html index 94741f5e0..d9b1f9fd3 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/hexagon_mosaic.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/hexagon_mosaic.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Converts parts of your picture into a mosaic of hexagon cells.

    See also: Irregular Mosaic, Square Mosaic, & Mosaic.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/index.html b/magic/magic-docs/fr_FR.UTF-8/html/index.html index 21271dc42..3d4f4956c 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/index.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/index.html @@ -118,5 +118,5 @@
  • Tornade

  • -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/irregular_mosaic.html b/magic/magic-docs/fr_FR.UTF-8/html/irregular_mosaic.html index cb6ad9e49..3de8fffd7 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/irregular_mosaic.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/irregular_mosaic.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Converts parts of your picture into a mosaic of irregularly-shaped cells.

    See also: Hexagon Mosaic, Square Mosaic, & Mosaic.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/kaleidoscope.html b/magic/magic-docs/fr_FR.UTF-8/html/kaleidoscope.html index 4c69f57f5..3fbb91e06 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/kaleidoscope.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/kaleidoscope.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This paint brush draws in four places at the same time, mirroring symmetrically, both horizontally and vertically. It uses the currently selected color.

    See also: Picasso, Rosace, & Kaleido-4, Kaleido-6, and Kaleido-8.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/kaleidoscope_lens.html b/magic/magic-docs/fr_FR.UTF-8/html/kaleidoscope_lens.html index 62aabb308..69ee327e7 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/kaleidoscope_lens.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/kaleidoscope_lens.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    These two tools make it look like your picture is being viewed through a kaleidoscope.

    See also: Kaléidoscope.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/keep_color.html b/magic/magic-docs/fr_FR.UTF-8/html/keep_color.html index 8ea7a2183..125ecf785 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/keep_color.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/keep_color.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This completely desaturates (turns greyscale) any parts of the image that do not match the selected color.

    See also: Remove Color, Saturate, Desaturate, Assombrir, Éclaircir, Tint, & Remove Color.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/light.html b/magic/magic-docs/fr_FR.UTF-8/html/light.html index e63b5132b..32bba1634 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/light.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/light.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This draws a glowing beam on the canvas, in the currently-selected color. The more you use it on one spot, the more white it becomes.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/lighten.html b/magic/magic-docs/fr_FR.UTF-8/html/lighten.html index 1e0dc20a2..eb55a147f 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/lighten.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/lighten.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This fades the colors wherever you drag the mouse. (Do it to the same spot many times, and it will eventually become white.)

    See also: Assombrir, Tint, Saturate, & Desaturate.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/lightning.html b/magic/magic-docs/fr_FR.UTF-8/html/lightning.html index 358534195..f076494b1 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/lightning.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/lightning.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Draws a lightning bolt between two points on the picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/maze.html b/magic/magic-docs/fr_FR.UTF-8/html/maze.html index 7c37d610e..e48a61785 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/maze.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/maze.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag to construct a maze on your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/metal_paint.html b/magic/magic-docs/fr_FR.UTF-8/html/metal_paint.html index 1ac50c439..fd8521a31 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/metal_paint.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/metal_paint.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag to draw shiny metal using the current color.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/mirror.html b/magic/magic-docs/fr_FR.UTF-8/html/mirror.html index 56ecfcb76..a37a09069 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/mirror.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/mirror.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    When you click the mouse in your picture with the "Mirror" magic effect selected, the entire image will be reversed, turning it into a mirror image.

    See also: Flip.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/mosaic.html b/magic/magic-docs/fr_FR.UTF-8/html/mosaic.html index 5ff4bc32d..d2fa1118c 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/mosaic.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/mosaic.html @@ -12,5 +12,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Adds a glass mosaic effect to your picture.

    See also: Hexagon Mosaic, Irregular Mosaic, & Square Mosaic.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/negative.html b/magic/magic-docs/fr_FR.UTF-8/html/negative.html index 392cef4b8..20f4df4b2 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/negative.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/negative.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This inverts the colors wherever you drag the mouse. (e.g., white becomes black, and vice versa.) It inverts the values of the Red, Green, and Blue components of the pixels.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/noise.html b/magic/magic-docs/fr_FR.UTF-8/html/noise.html index 7227dad60..8149ae542 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/noise.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/noise.html @@ -9,5 +9,5 @@ Andrew Corcoran <akanewbie@gmail.com>

    Add random noise and static to your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/opposite.html b/magic/magic-docs/fr_FR.UTF-8/html/opposite.html index 307518105..2fbf2e6df 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/opposite.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/opposite.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This converts the colors wherever you drag the mouse into their complementary (opposite) colors. (e.g., blue becomes orange, and vice versa.) It changes the Hue compoment of the pixels, without affecting the Saturation or Lightness.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/panels.html b/magic/magic-docs/fr_FR.UTF-8/html/panels.html index 02d15c36f..88ca31b5c 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/panels.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/panels.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Shrink the image and repeat it four times in a 2-by-2 grid. Useful for creating 4-panel comics. Can also be used to create a compound-eye effect.

    See also: Tile Zoom.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/pattern.html b/magic/magic-docs/fr_FR.UTF-8/html/pattern.html index 7ca3e2ef9..df3512011 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/pattern.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/pattern.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draws a tiled pattern around the picture.

    See also: Tuiles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/perspective.html b/magic/magic-docs/fr_FR.UTF-8/html/perspective.html index e2fec5d57..9f3833ffb 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/perspective.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/perspective.html @@ -9,5 +9,5 @@ Pere Pujal i Carabantes <pere@fornol.no-ip.org>

    Click and drag from the corners to change the perspective of your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/picasso.html b/magic/magic-docs/fr_FR.UTF-8/html/picasso.html index 14c835594..3482654df 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/picasso.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/picasso.html @@ -10,5 +10,5 @@ Adam Rakowski <foo-script@o2.pl>Draw three swirling brushes at once, in a Picasso style.

    See also: Rosace & Kaléidoscope.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/pixels.html b/magic/magic-docs/fr_FR.UTF-8/html/pixels.html index 95140142f..0c9492cea 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/pixels.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/pixels.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Draw large square "pixels" on the canvas.

    See also: Briques.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/puzzle.html b/magic/magic-docs/fr_FR.UTF-8/html/puzzle.html index 9f5304ffe..ba19240fb 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/puzzle.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/puzzle.html @@ -9,5 +9,5 @@ Adam Rakowski <foo-script@o2.pl>

    Slide parts of your picture around like a sliding puzzle.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/rails.html b/magic/magic-docs/fr_FR.UTF-8/html/rails.html index d20576f51..6c68733b2 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/rails.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/rails.html @@ -12,5 +12,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Draw connecting locomotive train rails on your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/rain.html b/magic/magic-docs/fr_FR.UTF-8/html/rain.html index e3ce2c060..119e0e895 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/rain.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/rain.html @@ -10,5 +10,5 @@ Andrew Corcoran <
    akanewbie@gmail.com

    Paint raindrops on your picture.

    See also: Boule de neige & Flocon de neige.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/rainbow.html b/magic/magic-docs/fr_FR.UTF-8/html/rainbow.html index c6c22a18c..884718e69 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/rainbow.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/rainbow.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This is similar to the paint brush, but as you move the mouse around, it cycles through a spectrum of bright colors.

    See also: Arc-en-ciel lent.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/rays.html b/magic/magic-docs/fr_FR.UTF-8/html/rays.html index 8b39e28e7..5769a8017 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/rays.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/rays.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This transforms the picture into brush strokes that point towards where you clicked.

    See also: Circles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/real_rainbow.html b/magic/magic-docs/fr_FR.UTF-8/html/real_rainbow.html index 93fc28a7f..a568b2a3a 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/real_rainbow.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/real_rainbow.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Draw a transparent arc that looks like a real rainbow.

    See also: Arc-en-ciel réel.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/reflection.html b/magic/magic-docs/fr_FR.UTF-8/html/reflection.html index 9a7e3db58..ab736efaf 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/reflection.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/reflection.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag down, up, left, or right, to add a reflection to you picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/remove_color.html b/magic/magic-docs/fr_FR.UTF-8/html/remove_color.html index 9078159e1..e1ac0b03f 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/remove_color.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/remove_color.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This completely desaturates (turns greyscale) parts of the image that match the selected color.

    See also: Keep Color, Saturate, Desaturate, Assombrir, Éclaircir, Tint, & Remove Color.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/ripples.html b/magic/magic-docs/fr_FR.UTF-8/html/ripples.html index 762cf2870..95b4fa093 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/ripples.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/ripples.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Click in your picture to make water ripple distortions appear over it.

    See also: Oeil de poisson.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/rosette.html b/magic/magic-docs/fr_FR.UTF-8/html/rosette.html index 57407000a..a72d0e237 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/rosette.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/rosette.html @@ -10,5 +10,5 @@ Adam Rakowski <foo-script@o2.pl>Draw three brushes at once, in a rosette shape.

    See also: Kaléidoscope & Picasso.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/roygbiv_rainbow.html b/magic/magic-docs/fr_FR.UTF-8/html/roygbiv_rainbow.html index 4fd682681..50d107fe6 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/roygbiv_rainbow.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/roygbiv_rainbow.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Draw a rainbow arc of red, orange, yellow, green, blue, indigo and violet.

    See also: Arc-en-ciel simple.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/rush.html b/magic/magic-docs/fr_FR.UTF-8/html/rush.html index 67ef8a281..7ee68ff4c 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/rush.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/rush.html @@ -12,5 +12,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Click and drag up to zoom in, or down to zoom out. The results will be blurred/smeared.

    See also: Rush, Tile Zoom, & Zoom.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/saturate.html b/magic/magic-docs/fr_FR.UTF-8/html/saturate.html index a2c64598b..8055428a2 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/saturate.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/saturate.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This increases the saturation of colors wherever you drag the mouse.

    See also: Desaturate, Assombrir, Éclaircir, Tint, Remove Color, & Keep Color.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/sharpen.html b/magic/magic-docs/fr_FR.UTF-8/html/sharpen.html index 0208a0da7..ac2280014 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/sharpen.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/sharpen.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Sharpen the focus of the picture.

    See also: Flou.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/shift.html b/magic/magic-docs/fr_FR.UTF-8/html/shift.html index a0f533e14..c93cf1024 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/shift.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/shift.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This shifts your picture around the canvas. Anything that gets shifts off an edge reappears on the opposite edge.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/silhouette.html b/magic/magic-docs/fr_FR.UTF-8/html/silhouette.html index cdd3baee5..1c1a6f791 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/silhouette.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/silhouette.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Trace the edges in your picture, over a black background.

    See also: Edges & Relief.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/smooth_rainbow.html b/magic/magic-docs/fr_FR.UTF-8/html/smooth_rainbow.html index 5acd20c45..ea8326b32 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/smooth_rainbow.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/smooth_rainbow.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This is similar to Rainbow magic tool — as you move the mouse around, it cycles through a spectrum of colors — except the colors blend smoothly as you draw.

    See also: Arc-en-ciel.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/smudge.html b/magic/magic-docs/fr_FR.UTF-8/html/smudge.html index feb3e9131..b0bb8e20a 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/smudge.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/smudge.html @@ -10,5 +10,5 @@ Albert Cahalan <albert@users.sf.net&

    This pushes the colors around under the mouse, like finger painting with wet paint.

    See also: Flou & Wet Paint.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/snow_ball.html b/magic/magic-docs/fr_FR.UTF-8/html/snow_ball.html index f08cf418c..3117f4acf 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/snow_ball.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/snow_ball.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Fill the picture with snowballs.

    See also: Pluie & Flocon de neige.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/snow_flake.html b/magic/magic-docs/fr_FR.UTF-8/html/snow_flake.html index 554f2b6dd..f33192f99 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/snow_flake.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/snow_flake.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Fill the picture with snowflakes.

    See also: Pluie & Boule de neige.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/square_mosaic.html b/magic/magic-docs/fr_FR.UTF-8/html/square_mosaic.html index 7ab1cd331..53604fdc3 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/square_mosaic.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/square_mosaic.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Converts parts of your picture into a mosaic of square cells.

    See also: Hexagon Mosaic, Irregular Mosaic, & Mosaic.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/stretch.html b/magic/magic-docs/fr_FR.UTF-8/html/stretch.html index 7a1968e5c..94a06c44e 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/stretch.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/stretch.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag around to stretch and squish parts of the picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/string_corner.html b/magic/magic-docs/fr_FR.UTF-8/html/string_corner.html index f18534606..ab771f7f4 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/string_corner.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/string_corner.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draw V-shaped string art at right angles.

    See also: Ficelles (1) & Ficelles (3).


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/string_edges.html b/magic/magic-docs/fr_FR.UTF-8/html/string_edges.html index 16c291092..bcd2be675 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/string_edges.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/string_edges.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draw string art around the edges of your picture.

    See also: Ficelles (1) & Ficelles (2).


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/string_v.html b/magic/magic-docs/fr_FR.UTF-8/html/string_v.html index 4f00ccccb..628b5cbf6 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/string_v.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/string_v.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draw V-shaped string art at any angle.

    See also: Ficelles (2) & Ficelles (3).


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/symmetry_left_right.html b/magic/magic-docs/fr_FR.UTF-8/html/symmetry_left_right.html index fed038676..34fa71bb7 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/symmetry_left_right.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/symmetry_left_right.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Paint with relfective symmetry across the horizontal center of the image.

    See also: Kaléidoscope, Motif, Symétrie H/B, & Tuiles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/symmetry_up_down.html b/magic/magic-docs/fr_FR.UTF-8/html/symmetry_up_down.html index f9d2c7dad..f90874342 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/symmetry_up_down.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/symmetry_up_down.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Paint with relfective symmetry across the vertical center of the image.

    See also: Kaléidoscope, Motif, Symétrie D/G, & Tuiles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/tiles.html b/magic/magic-docs/fr_FR.UTF-8/html/tiles.html index 4727d1b49..0faa45783 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/tiles.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/tiles.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draws a symettric pattern around the picture.

    See also: Motif.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/tilezoom.html b/magic/magic-docs/fr_FR.UTF-8/html/tilezoom.html index dadee8262..bbec930f1 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/tilezoom.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/tilezoom.html @@ -12,5 +12,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Click and drag up to zoom in, or down to zoom out. When scaling down, your image will be tiled across the canvas.

    See also: Panneaux, Rush, & Zoom.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/tint.html b/magic/magic-docs/fr_FR.UTF-8/html/tint.html index ae3103774..bc05483c4 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/tint.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/tint.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This changes the color (or hue) of the parts of the picture to the selected color.

    See also: Éclaircir & Assombrir.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/toothpaste.html b/magic/magic-docs/fr_FR.UTF-8/html/toothpaste.html index 8b3ad3de7..bc1dd52f1 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/toothpaste.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/toothpaste.html @@ -9,5 +9,5 @@ Andrew Corcoran <akanewbie@gmail.com>

    Paint thick blobs of color on your picture that look like toothpaste.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/tornado.html b/magic/magic-docs/fr_FR.UTF-8/html/tornado.html index 82d23f7a5..f7eba7573 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/tornado.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/tornado.html @@ -9,5 +9,5 @@ Pere Pujal i Carabantes <pere@fornol.no-ip.org>

    Draws a tornado effect onto the picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/tv.html b/magic/magic-docs/fr_FR.UTF-8/html/tv.html index a12a09547..a0c11acb5 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/tv.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/tv.html @@ -11,5 +11,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Distort your picture so it looks like it's on a television (TV).


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/wavelets.html b/magic/magic-docs/fr_FR.UTF-8/html/wavelets.html index 93f55558e..b0f5bd072 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/wavelets.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/wavelets.html @@ -12,5 +12,5 @@ Adam Rakowski <
    foo-script@o2.pl>

    Click to make the entire picture wavy, up-and-down. Drag the mouse up and down to change the height of the ripples, and left and right to change the width. Release the mouse button when it looks the way you like it.

    See also: Vagues.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/waves.html b/magic/magic-docs/fr_FR.UTF-8/html/waves.html index 0988d7923..dc5ea1505 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/waves.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/waves.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Click to make the entire picture wavy, side-to-side. Drag the mouse up and down to change the height of the ripples, and left and right to change the width. Release the mouse button when it looks the way you like it.

    See also: Vaguelettes.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/wet_paint.html b/magic/magic-docs/fr_FR.UTF-8/html/wet_paint.html index 65191811a..ff92927f5 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/wet_paint.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/wet_paint.html @@ -12,5 +12,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This draws a light, smudgy coat of paint on the picture.

    See also: Smudge.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/xor_colors.html b/magic/magic-docs/fr_FR.UTF-8/html/xor_colors.html index 68ad5a12b..2cf8f9d95 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/xor_colors.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/xor_colors.html @@ -9,5 +9,5 @@ Lukasz Dmitrowski <lukasz.dmitrowski@gmail.com>

    Colors based on the position drawn on the picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/zoom.html b/magic/magic-docs/fr_FR.UTF-8/html/zoom.html index 4a0042515..85c6855e6 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/zoom.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/zoom.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Click and drag up to zoom in, or down to zoom out. (When scaling down, your chosen color will be used as a background color.)

    See also: Rush & Tile Zoom.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/3dglasses.html b/magic/magic-docs/gl_ES.UTF-8/html/3dglasses.html index 9d0927432..99a6dc93a 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/3dglasses.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/3dglasses.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This tool horizontally separates your entire picture's red and cyan color channels, letting you create anaglyphic pictures that can be viewed with 3D glasses.

    See also: Color Sep. & Double Vision.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/blinds.html b/magic/magic-docs/gl_ES.UTF-8/html/blinds.html index 06796a4e2..e9e09e84b 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/blinds.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/blinds.html @@ -9,5 +9,5 @@ Pere Pujal i Carabantes <pere@fornol.no-ip.org>

    Click towards the edge of your picture to pull window blinds over it. Move perpendicularly to open or close the blinds.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/blocks.html b/magic/magic-docs/gl_ES.UTF-8/html/blocks.html index 9fe8cd481..a27d486a6 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/blocks.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/blocks.html @@ -11,5 +11,5 @@ Albert Cahalan <albert@users.sf.net&

    This makes the picture blocky looking ("pixelated") wherever you drag the mouse.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/bloom.html b/magic/magic-docs/gl_ES.UTF-8/html/bloom.html index 8162271f1..dd4ef87b9 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/bloom.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/bloom.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Add a glowing \"bloom\" effect to pictures.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/blur.html b/magic/magic-docs/gl_ES.UTF-8/html/blur.html index 3c567c378..d40b0631e 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/blur.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/blur.html @@ -12,5 +12,5 @@ Albert Cahalan <albert@users.sf.net&

    This makes the picture fuzzy wherever you drag the mouse.

    See also: Sharpen & Smudge.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/bricks.html b/magic/magic-docs/gl_ES.UTF-8/html/bricks.html index 9b5cdf234..b361c6868 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/bricks.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/bricks.html @@ -10,5 +10,5 @@ Albert Cahalan <albert@users.sf.net&

    These two tools intelligently paint large and small brick patterns on the canvas. The bricks can be tinted various redish hues by selecting different colors in the color palette.

    See also: Pixels.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/calligraphy.html b/magic/magic-docs/gl_ES.UTF-8/html/calligraphy.html index 22a2ace7d..6fe132c48 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/calligraphy.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/calligraphy.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This paints on the canvas with a calligraphy pen. The quicker you move, the thinner the lines.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/cartoon.html b/magic/magic-docs/gl_ES.UTF-8/html/cartoon.html index 1b0508d06..835353eaf 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/cartoon.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/cartoon.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This makes the picture look like a cartoon — with thick outlines and bright, solid colors — wherever you move the mouse.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/chalk.html b/magic/magic-docs/gl_ES.UTF-8/html/chalk.html index 19fd741fc..8e6ee9fb2 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/chalk.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/chalk.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This makes parts of the picture (where you move the mouse) look like a chalk drawing.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/checkerboard.html b/magic/magic-docs/gl_ES.UTF-8/html/checkerboard.html index 0c77dfb04..0ae1ee213 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/checkerboard.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/checkerboard.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This covers the entire canvas with a checkboard pattern using the current color. Drag to change the size of the squares.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/circles.html b/magic/magic-docs/gl_ES.UTF-8/html/circles.html index 7ca725ff0..643c79249 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/circles.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/circles.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This transforms the picture into circular brush strokes around where you clicked.

    See also: Rays.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/clone.html b/magic/magic-docs/gl_ES.UTF-8/html/clone.html index 9835c8ab0..2bb2fbbd7 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/clone.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/clone.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Clone (copy, via painting) part of the picture. Click ones to choose the source, then click and drag to clone it elsewhere in the drawing. Once you release, click to choose another source and start again.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/color_and_white.html b/magic/magic-docs/gl_ES.UTF-8/html/color_and_white.html index 9c4da60a8..de66f18b8 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/color_and_white.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/color_and_white.html @@ -9,5 +9,5 @@ Andrew Corcoran <akanewbie@gmail.com>

    This makes parts of your picture two colors: white, and the color chosen in the palette. (i.e., if you choose black, you'll get a black and white picture).


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/color_shift.html b/magic/magic-docs/gl_ES.UTF-8/html/color_shift.html index 2e7ac5f9a..b3c80e44e 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/color_shift.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/color_shift.html @@ -9,5 +9,5 @@ Andrew Corcoran <akanewbie@gmail.com>

    This shifts the colors in your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/colorsep.html b/magic/magic-docs/gl_ES.UTF-8/html/colorsep.html index 93e3588a7..933908308 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/colorsep.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/colorsep.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This tool separates one color out of your entire picture, shifting colors away from each other (similar to '3D Glasses', but you may choose the any color to separate, and may move in any direction).

    See also: 3D Glasses & Double Vision.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/confetti.html b/magic/magic-docs/gl_ES.UTF-8/html/confetti.html index ad4f7ac40..435ccd638 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/confetti.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/confetti.html @@ -9,5 +9,5 @@ Adam Rakowski <foo-script@o2.pl>

    Throw confetti around your picture!


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/darken.html b/magic/magic-docs/gl_ES.UTF-8/html/darken.html index 098166a9d..ee8fb82e0 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/darken.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/darken.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This darkens the colors wherever you drag the mouse. (Do it to the same spot many times, and it will eventually become black.)

    See also: Lighten, Tint, Saturate, & Desaturate.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/desaturate.html b/magic/magic-docs/gl_ES.UTF-8/html/desaturate.html index ff72927bd..366f1846a 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/desaturate.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/desaturate.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This desaturates the colors wherever you drag the mouse. (Do it to the same spot many times, and it will eventually become greyscale.)

    See also: Saturate, Darken, Lighten, Tint, Remove Color, & Keep Color.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/distortion.html b/magic/magic-docs/gl_ES.UTF-8/html/distortion.html index a7b5dfd82..b704b82b8 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/distortion.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/distortion.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This slightly distorts the picture wherever you move the mouse.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/doublevision.html b/magic/magic-docs/gl_ES.UTF-8/html/doublevision.html index feb4a906f..d17bc46d0 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/doublevision.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/doublevision.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This blends the image with itself, to simulate double vision.

    See also: 3D Glasses & Double Vision.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/drip.html b/magic/magic-docs/gl_ES.UTF-8/html/drip.html index bcb05b657..6b50d4184 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/drip.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/drip.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This makes the paint "drip" wherever you move the mouse.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/edges.html b/magic/magic-docs/gl_ES.UTF-8/html/edges.html index 4fc121b38..5508b1f53 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/edges.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/edges.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Trace the edges in your picture, over a white background.

    See also: Emboss & Silhouette.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/emboss.html b/magic/magic-docs/gl_ES.UTF-8/html/emboss.html index e3c9300c5..8b2ffd6e6 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/emboss.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/emboss.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This makes parts of your picture look "embossed." Wherever there are sharp edges in your picture, the picture will look raised like it was stamped in metal.

    See also: Edges & Silhouette.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/fisheye.html b/magic/magic-docs/gl_ES.UTF-8/html/fisheye.html index a13907333..7713c5256 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/fisheye.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/fisheye.html @@ -10,5 +10,5 @@ Adam Rakowski <foo-script@o2.pl>Warp parts of your picture like it's being seen through a fisheye lens.

    See also: Ripples.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/flip.html b/magic/magic-docs/gl_ES.UTF-8/html/flip.html index e9165f02f..eb112ff21 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/flip.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/flip.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Similar to "Mirror." Click and the entire image will be turned upside-down.

    See also: Mirror.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/flower.html b/magic/magic-docs/gl_ES.UTF-8/html/flower.html index e8077ffd1..f1551f026 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/flower.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/flower.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This tool draws small flowers, with leafy bases and stalks. Click to set the base, then drag the mouse upwards to draw the stalk, and finally release the mouse button to finish the flower. It will be drawn in the currently-selected color. The shape and length of the stalk depends on how you move the mouse while you drag.

    See also: Grass.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/foam.html b/magic/magic-docs/gl_ES.UTF-8/html/foam.html index 64a544bc4..b27d4ca92 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/foam.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/foam.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag the mouse to draw foamy bubbles. The more you drag the mouse in a particular spot, the more likely small bubbles will combine to form bigger bubbles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/fold.html b/magic/magic-docs/gl_ES.UTF-8/html/fold.html index 76cc965d5..cb2b4d68d 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/fold.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/fold.html @@ -12,5 +12,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Click a corner of your picture and drag towards the center to fold it up like a piece of paper.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/fretwork.html b/magic/magic-docs/gl_ES.UTF-8/html/fretwork.html index 3c63e3d0e..2fa2c8826 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/fretwork.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/fretwork.html @@ -9,5 +9,5 @@ Pere Pujal i Carabantes <
    pere@fornol.no-ip.org>

    Draw an interlaced decorative design that looks like wooden fretwork.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/fur.html b/magic/magic-docs/gl_ES.UTF-8/html/fur.html index 99856daef..43a08cdaa 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/fur.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/fur.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Add fur to your drawing.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/glass_tile.html b/magic/magic-docs/gl_ES.UTF-8/html/glass_tile.html index ba78877eb..094da3303 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/glass_tile.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/glass_tile.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag over your picture to make it look like it's being seen through glass tiles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/googlyeyes.html b/magic/magic-docs/gl_ES.UTF-8/html/googlyeyes.html index 5a502f3eb..8ccd6f4e4 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/googlyeyes.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/googlyeyes.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Draws a googly eye where you click. Drag to position the pupil.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/grass.html b/magic/magic-docs/gl_ES.UTF-8/html/grass.html index ce7da68b1..430229a74 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/grass.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/grass.html @@ -10,5 +10,5 @@ Albert Cahalan <albert@users.sf.net&

    This paints grass on the image. The higher up the canvas, the smaller the grass is drawn, giving an illusion of perspective. The grass can be tinted various greenish hues by selecting different colors in the color palette.

    See also: Flower.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/halftone.html b/magic/magic-docs/gl_ES.UTF-8/html/halftone.html index ac5ac1708..15b62bcb6 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/halftone.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/halftone.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This makes parts of your picture look like newsprint. Different sizes of cyan, magenta, yellow, and black "ink" will appear in place of your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/hexagon_mosaic.html b/magic/magic-docs/gl_ES.UTF-8/html/hexagon_mosaic.html index 94741f5e0..d9b1f9fd3 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/hexagon_mosaic.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/hexagon_mosaic.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Converts parts of your picture into a mosaic of hexagon cells.

    See also: Irregular Mosaic, Square Mosaic, & Mosaic.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/index.html b/magic/magic-docs/gl_ES.UTF-8/html/index.html index c29ac8050..4636eb1c7 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/index.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/index.html @@ -118,5 +118,5 @@
  • Tornado

  • -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/irregular_mosaic.html b/magic/magic-docs/gl_ES.UTF-8/html/irregular_mosaic.html index cb6ad9e49..3de8fffd7 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/irregular_mosaic.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/irregular_mosaic.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Converts parts of your picture into a mosaic of irregularly-shaped cells.

    See also: Hexagon Mosaic, Square Mosaic, & Mosaic.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/kaleidoscope.html b/magic/magic-docs/gl_ES.UTF-8/html/kaleidoscope.html index 324a73bc8..c6a91ff5f 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/kaleidoscope.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/kaleidoscope.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This paint brush draws in four places at the same time, mirroring symmetrically, both horizontally and vertically. It uses the currently selected color.

    See also: Picasso, Rosette, & Kaleido-4, Kaleido-6, and Kaleido-8.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/kaleidoscope_lens.html b/magic/magic-docs/gl_ES.UTF-8/html/kaleidoscope_lens.html index 6610eb9f6..7ef2bb17a 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/kaleidoscope_lens.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/kaleidoscope_lens.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    These two tools make it look like your picture is being viewed through a kaleidoscope.

    See also: Kaleidoscope.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/keep_color.html b/magic/magic-docs/gl_ES.UTF-8/html/keep_color.html index f7d816f31..f92da2836 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/keep_color.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/keep_color.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This completely desaturates (turns greyscale) any parts of the image that do not match the selected color.

    See also: Remove Color, Saturate, Desaturate, Darken, Lighten, Tint, & Remove Color.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/light.html b/magic/magic-docs/gl_ES.UTF-8/html/light.html index 6d484e5b0..1e11d4ba9 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/light.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/light.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This draws a glowing beam on the canvas, in the currently-selected color. The more you use it on one spot, the more white it becomes.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/lighten.html b/magic/magic-docs/gl_ES.UTF-8/html/lighten.html index 7ad7f0912..dd565aa26 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/lighten.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/lighten.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This fades the colors wherever you drag the mouse. (Do it to the same spot many times, and it will eventually become white.)

    See also: Darken, Tint, Saturate, & Desaturate.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/lightning.html b/magic/magic-docs/gl_ES.UTF-8/html/lightning.html index d6438354b..d0a32db41 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/lightning.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/lightning.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Draws a lightning bolt between two points on the picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/maze.html b/magic/magic-docs/gl_ES.UTF-8/html/maze.html index 7c37d610e..e48a61785 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/maze.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/maze.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag to construct a maze on your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/metal_paint.html b/magic/magic-docs/gl_ES.UTF-8/html/metal_paint.html index b50e3a224..10f16df4c 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/metal_paint.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/metal_paint.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag to draw shiny metal using the current color.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/mirror.html b/magic/magic-docs/gl_ES.UTF-8/html/mirror.html index bd6c21991..b7e400928 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/mirror.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/mirror.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    When you click the mouse in your picture with the "Mirror" magic effect selected, the entire image will be reversed, turning it into a mirror image.

    See also: Flip.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/mosaic.html b/magic/magic-docs/gl_ES.UTF-8/html/mosaic.html index 5ff4bc32d..d2fa1118c 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/mosaic.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/mosaic.html @@ -12,5 +12,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Adds a glass mosaic effect to your picture.

    See also: Hexagon Mosaic, Irregular Mosaic, & Square Mosaic.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/negative.html b/magic/magic-docs/gl_ES.UTF-8/html/negative.html index 392cef4b8..20f4df4b2 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/negative.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/negative.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This inverts the colors wherever you drag the mouse. (e.g., white becomes black, and vice versa.) It inverts the values of the Red, Green, and Blue components of the pixels.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/noise.html b/magic/magic-docs/gl_ES.UTF-8/html/noise.html index 7227dad60..8149ae542 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/noise.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/noise.html @@ -9,5 +9,5 @@ Andrew Corcoran <akanewbie@gmail.com>

    Add random noise and static to your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/opposite.html b/magic/magic-docs/gl_ES.UTF-8/html/opposite.html index 307518105..2fbf2e6df 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/opposite.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/opposite.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This converts the colors wherever you drag the mouse into their complementary (opposite) colors. (e.g., blue becomes orange, and vice versa.) It changes the Hue compoment of the pixels, without affecting the Saturation or Lightness.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/panels.html b/magic/magic-docs/gl_ES.UTF-8/html/panels.html index 925ce2914..4f20cc561 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/panels.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/panels.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Shrink the image and repeat it four times in a 2-by-2 grid. Useful for creating 4-panel comics. Can also be used to create a compound-eye effect.

    See also: Tile Zoom.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/pattern.html b/magic/magic-docs/gl_ES.UTF-8/html/pattern.html index 37bd47c20..6e5921101 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/pattern.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/pattern.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draws a tiled pattern around the picture.

    See also: Tiles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/perspective.html b/magic/magic-docs/gl_ES.UTF-8/html/perspective.html index e2fec5d57..9f3833ffb 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/perspective.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/perspective.html @@ -9,5 +9,5 @@ Pere Pujal i Carabantes <pere@fornol.no-ip.org>

    Click and drag from the corners to change the perspective of your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/picasso.html b/magic/magic-docs/gl_ES.UTF-8/html/picasso.html index fca954684..18098e8b9 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/picasso.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/picasso.html @@ -10,5 +10,5 @@ Adam Rakowski <foo-script@o2.pl>Draw three swirling brushes at once, in a Picasso style.

    See also: Rosette & Kaleidoscope.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/pixels.html b/magic/magic-docs/gl_ES.UTF-8/html/pixels.html index 99b4a5d36..f846dfb8c 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/pixels.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/pixels.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Draw large square "pixels" on the canvas.

    See also: Bricks.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/puzzle.html b/magic/magic-docs/gl_ES.UTF-8/html/puzzle.html index 9f5304ffe..ba19240fb 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/puzzle.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/puzzle.html @@ -9,5 +9,5 @@ Adam Rakowski <foo-script@o2.pl>

    Slide parts of your picture around like a sliding puzzle.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/rails.html b/magic/magic-docs/gl_ES.UTF-8/html/rails.html index d20576f51..6c68733b2 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/rails.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/rails.html @@ -12,5 +12,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Draw connecting locomotive train rails on your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/rain.html b/magic/magic-docs/gl_ES.UTF-8/html/rain.html index 15fc85268..19cb8bc05 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/rain.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/rain.html @@ -10,5 +10,5 @@ Andrew Corcoran <
    akanewbie@gmail.com

    Paint raindrops on your picture.

    See also: Snow Ball & Snow Flake.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/rainbow.html b/magic/magic-docs/gl_ES.UTF-8/html/rainbow.html index 4147914e9..18676cf13 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/rainbow.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/rainbow.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This is similar to the paint brush, but as you move the mouse around, it cycles through a spectrum of bright colors.

    See also: Smooth Rainbow.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/rays.html b/magic/magic-docs/gl_ES.UTF-8/html/rays.html index 8b39e28e7..5769a8017 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/rays.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/rays.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This transforms the picture into brush strokes that point towards where you clicked.

    See also: Circles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/real_rainbow.html b/magic/magic-docs/gl_ES.UTF-8/html/real_rainbow.html index 253159453..5ac788e8b 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/real_rainbow.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/real_rainbow.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Draw a transparent arc that looks like a real rainbow.

    See also: Real Rainbow.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/reflection.html b/magic/magic-docs/gl_ES.UTF-8/html/reflection.html index 9a7e3db58..ab736efaf 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/reflection.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/reflection.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag down, up, left, or right, to add a reflection to you picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/remove_color.html b/magic/magic-docs/gl_ES.UTF-8/html/remove_color.html index 2c35b2d37..5771d98b6 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/remove_color.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/remove_color.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This completely desaturates (turns greyscale) parts of the image that match the selected color.

    See also: Keep Color, Saturate, Desaturate, Darken, Lighten, Tint, & Remove Color.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/ripples.html b/magic/magic-docs/gl_ES.UTF-8/html/ripples.html index 4f420cf5c..2f4a85936 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/ripples.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/ripples.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Click in your picture to make water ripple distortions appear over it.

    See also: Fisheye.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/rosette.html b/magic/magic-docs/gl_ES.UTF-8/html/rosette.html index 55fb279a1..ee1dc3cb4 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/rosette.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/rosette.html @@ -10,5 +10,5 @@ Adam Rakowski <foo-script@o2.pl>Draw three brushes at once, in a rosette shape.

    See also: Kaleidoscope & Picasso.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/roygbiv_rainbow.html b/magic/magic-docs/gl_ES.UTF-8/html/roygbiv_rainbow.html index 3256de8af..bd4cbe9f2 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/roygbiv_rainbow.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/roygbiv_rainbow.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Draw a rainbow arc of red, orange, yellow, green, blue, indigo and violet.

    See also: ROYGBIV Rainbow.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/rush.html b/magic/magic-docs/gl_ES.UTF-8/html/rush.html index 67ef8a281..7ee68ff4c 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/rush.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/rush.html @@ -12,5 +12,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Click and drag up to zoom in, or down to zoom out. The results will be blurred/smeared.

    See also: Rush, Tile Zoom, & Zoom.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/saturate.html b/magic/magic-docs/gl_ES.UTF-8/html/saturate.html index ff02a0159..220dcfad9 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/saturate.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/saturate.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This increases the saturation of colors wherever you drag the mouse.

    See also: Desaturate, Darken, Lighten, Tint, Remove Color, & Keep Color.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/sharpen.html b/magic/magic-docs/gl_ES.UTF-8/html/sharpen.html index b99ef5380..aff337294 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/sharpen.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/sharpen.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Sharpen the focus of the picture.

    See also: Blur.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/shift.html b/magic/magic-docs/gl_ES.UTF-8/html/shift.html index a0f533e14..c93cf1024 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/shift.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/shift.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This shifts your picture around the canvas. Anything that gets shifts off an edge reappears on the opposite edge.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/silhouette.html b/magic/magic-docs/gl_ES.UTF-8/html/silhouette.html index b25a03add..48b54b082 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/silhouette.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/silhouette.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Trace the edges in your picture, over a black background.

    See also: Edges & Emboss.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/smooth_rainbow.html b/magic/magic-docs/gl_ES.UTF-8/html/smooth_rainbow.html index 6001e3959..5318e3f8a 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/smooth_rainbow.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/smooth_rainbow.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This is similar to Rainbow magic tool — as you move the mouse around, it cycles through a spectrum of colors — except the colors blend smoothly as you draw.

    See also: Rainbow.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/smudge.html b/magic/magic-docs/gl_ES.UTF-8/html/smudge.html index 30ffa0d2c..6e098917e 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/smudge.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/smudge.html @@ -10,5 +10,5 @@ Albert Cahalan <albert@users.sf.net&

    This pushes the colors around under the mouse, like finger painting with wet paint.

    See also: Blur & Wet Paint.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/snow_ball.html b/magic/magic-docs/gl_ES.UTF-8/html/snow_ball.html index 7a102c8e6..f6bdb8776 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/snow_ball.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/snow_ball.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Fill the picture with snowballs.

    See also: Rain & Snow Flake.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/snow_flake.html b/magic/magic-docs/gl_ES.UTF-8/html/snow_flake.html index 5b9a398e8..45c0907ba 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/snow_flake.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/snow_flake.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Fill the picture with snowflakes.

    See also: Rain & Snow Ball.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/square_mosaic.html b/magic/magic-docs/gl_ES.UTF-8/html/square_mosaic.html index 7ab1cd331..53604fdc3 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/square_mosaic.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/square_mosaic.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Converts parts of your picture into a mosaic of square cells.

    See also: Hexagon Mosaic, Irregular Mosaic, & Mosaic.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/stretch.html b/magic/magic-docs/gl_ES.UTF-8/html/stretch.html index 7a1968e5c..94a06c44e 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/stretch.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/stretch.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag around to stretch and squish parts of the picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/string_corner.html b/magic/magic-docs/gl_ES.UTF-8/html/string_corner.html index 7e47052f8..a06236738 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/string_corner.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/string_corner.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draw V-shaped string art at right angles.

    See also: String V & String Edges.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/string_edges.html b/magic/magic-docs/gl_ES.UTF-8/html/string_edges.html index 893a7c6c2..b9ac4303e 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/string_edges.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/string_edges.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draw string art around the edges of your picture.

    See also: String V & String Corner.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/string_v.html b/magic/magic-docs/gl_ES.UTF-8/html/string_v.html index 4980e7685..ab748dbd7 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/string_v.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/string_v.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draw V-shaped string art at any angle.

    See also: String Corner & String Edges.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/symmetry_left_right.html b/magic/magic-docs/gl_ES.UTF-8/html/symmetry_left_right.html index 1ef348173..7b048e7d2 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/symmetry_left_right.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/symmetry_left_right.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Paint with relfective symmetry across the horizontal center of the image.

    See also: Kaleidoscope, Pattern, Symmetry Up/Down, & Tiles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/symmetry_up_down.html b/magic/magic-docs/gl_ES.UTF-8/html/symmetry_up_down.html index c82d866ad..592bc3824 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/symmetry_up_down.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/symmetry_up_down.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Paint with relfective symmetry across the vertical center of the image.

    See also: Kaleidoscope, Pattern, Symmetry Left/Right, & Tiles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/tiles.html b/magic/magic-docs/gl_ES.UTF-8/html/tiles.html index 4568963b9..3090a2a08 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/tiles.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/tiles.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draws a symettric pattern around the picture.

    See also: Pattern.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/tilezoom.html b/magic/magic-docs/gl_ES.UTF-8/html/tilezoom.html index 5766ec53f..c052d624d 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/tilezoom.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/tilezoom.html @@ -12,5 +12,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Click and drag up to zoom in, or down to zoom out. When scaling down, your image will be tiled across the canvas.

    See also: Panels, Rush, & Zoom.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/tint.html b/magic/magic-docs/gl_ES.UTF-8/html/tint.html index 90e4d4b88..38c6de83d 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/tint.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/tint.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This changes the color (or hue) of the parts of the picture to the selected color.

    See also: Lighten & Darken.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/toothpaste.html b/magic/magic-docs/gl_ES.UTF-8/html/toothpaste.html index 7f83590fb..63ad14c1c 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/toothpaste.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/toothpaste.html @@ -9,5 +9,5 @@ Andrew Corcoran <akanewbie@gmail.com>

    Paint thick blobs of color on your picture that look like toothpaste.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/tornado.html b/magic/magic-docs/gl_ES.UTF-8/html/tornado.html index f22173b85..271dac182 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/tornado.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/tornado.html @@ -9,5 +9,5 @@ Pere Pujal i Carabantes <pere@fornol.no-ip.org>

    Draws a tornado effect onto the picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/tv.html b/magic/magic-docs/gl_ES.UTF-8/html/tv.html index a12a09547..a0c11acb5 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/tv.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/tv.html @@ -11,5 +11,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Distort your picture so it looks like it's on a television (TV).


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/wavelets.html b/magic/magic-docs/gl_ES.UTF-8/html/wavelets.html index 73d13b979..8d39c8ed5 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/wavelets.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/wavelets.html @@ -12,5 +12,5 @@ Adam Rakowski <
    foo-script@o2.pl>

    Click to make the entire picture wavy, up-and-down. Drag the mouse up and down to change the height of the ripples, and left and right to change the width. Release the mouse button when it looks the way you like it.

    See also: Waves.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/waves.html b/magic/magic-docs/gl_ES.UTF-8/html/waves.html index 717b3b8a3..4263fca75 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/waves.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/waves.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Click to make the entire picture wavy, side-to-side. Drag the mouse up and down to change the height of the ripples, and left and right to change the width. Release the mouse button when it looks the way you like it.

    See also: Wavelets.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/wet_paint.html b/magic/magic-docs/gl_ES.UTF-8/html/wet_paint.html index 65191811a..ff92927f5 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/wet_paint.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/wet_paint.html @@ -12,5 +12,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This draws a light, smudgy coat of paint on the picture.

    See also: Smudge.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/xor_colors.html b/magic/magic-docs/gl_ES.UTF-8/html/xor_colors.html index 68ad5a12b..2cf8f9d95 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/xor_colors.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/xor_colors.html @@ -9,5 +9,5 @@ Lukasz Dmitrowski <lukasz.dmitrowski@gmail.com>

    Colors based on the position drawn on the picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/gl_ES.UTF-8/html/zoom.html b/magic/magic-docs/gl_ES.UTF-8/html/zoom.html index 4a0042515..85c6855e6 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/zoom.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/zoom.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Click and drag up to zoom in, or down to zoom out. (When scaling down, your chosen color will be used as a background color.)

    See also: Rush & Tile Zoom.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/3dglasses.html b/magic/magic-docs/ja_JP.UTF-8/html/3dglasses.html index b89744532..609f25fde 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/3dglasses.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/3dglasses.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This tool horizontally separates your entire picture's red and cyan color channels, letting you create anaglyphic pictures that can be viewed with 3D glasses.

    See also: 「いろぶんかい」 & 「ふくし」.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/blinds.html b/magic/magic-docs/ja_JP.UTF-8/html/blinds.html index 06796a4e2..e9e09e84b 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/blinds.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/blinds.html @@ -9,5 +9,5 @@ Pere Pujal i Carabantes <pere@fornol.no-ip.org>

    Click towards the edge of your picture to pull window blinds over it. Move perpendicularly to open or close the blinds.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/blocks.html b/magic/magic-docs/ja_JP.UTF-8/html/blocks.html index 9fe8cd481..a27d486a6 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/blocks.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/blocks.html @@ -11,5 +11,5 @@ Albert Cahalan <albert@users.sf.net&

    This makes the picture blocky looking ("pixelated") wherever you drag the mouse.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/bloom.html b/magic/magic-docs/ja_JP.UTF-8/html/bloom.html index 7f60b994e..386cfe738 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/bloom.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/bloom.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Add a glowing \"bloom\" effect to pictures.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/blur.html b/magic/magic-docs/ja_JP.UTF-8/html/blur.html index 3c567c378..d40b0631e 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/blur.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/blur.html @@ -12,5 +12,5 @@ Albert Cahalan <albert@users.sf.net&

    This makes the picture fuzzy wherever you drag the mouse.

    See also: Sharpen & Smudge.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/bricks.html b/magic/magic-docs/ja_JP.UTF-8/html/bricks.html index 9b5cdf234..b361c6868 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/bricks.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/bricks.html @@ -10,5 +10,5 @@ Albert Cahalan <albert@users.sf.net&

    These two tools intelligently paint large and small brick patterns on the canvas. The bricks can be tinted various redish hues by selecting different colors in the color palette.

    See also: Pixels.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/calligraphy.html b/magic/magic-docs/ja_JP.UTF-8/html/calligraphy.html index 22a2ace7d..6fe132c48 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/calligraphy.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/calligraphy.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This paints on the canvas with a calligraphy pen. The quicker you move, the thinner the lines.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/cartoon.html b/magic/magic-docs/ja_JP.UTF-8/html/cartoon.html index 1b0508d06..835353eaf 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/cartoon.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/cartoon.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This makes the picture look like a cartoon — with thick outlines and bright, solid colors — wherever you move the mouse.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/chalk.html b/magic/magic-docs/ja_JP.UTF-8/html/chalk.html index 19fd741fc..8e6ee9fb2 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/chalk.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/chalk.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This makes parts of the picture (where you move the mouse) look like a chalk drawing.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/checkerboard.html b/magic/magic-docs/ja_JP.UTF-8/html/checkerboard.html index 0c77dfb04..0ae1ee213 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/checkerboard.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/checkerboard.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This covers the entire canvas with a checkboard pattern using the current color. Drag to change the size of the squares.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/circles.html b/magic/magic-docs/ja_JP.UTF-8/html/circles.html index e20b32f09..799bae4f0 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/circles.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/circles.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This transforms the picture into circular brush strokes around where you clicked.

    See also: 「ほうしゃ」.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/clone.html b/magic/magic-docs/ja_JP.UTF-8/html/clone.html index 9835c8ab0..2bb2fbbd7 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/clone.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/clone.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Clone (copy, via painting) part of the picture. Click ones to choose the source, then click and drag to clone it elsewhere in the drawing. Once you release, click to choose another source and start again.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/color_and_white.html b/magic/magic-docs/ja_JP.UTF-8/html/color_and_white.html index 9c4da60a8..de66f18b8 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/color_and_white.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/color_and_white.html @@ -9,5 +9,5 @@ Andrew Corcoran <akanewbie@gmail.com>

    This makes parts of your picture two colors: white, and the color chosen in the palette. (i.e., if you choose black, you'll get a black and white picture).


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/color_shift.html b/magic/magic-docs/ja_JP.UTF-8/html/color_shift.html index 2e7ac5f9a..b3c80e44e 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/color_shift.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/color_shift.html @@ -9,5 +9,5 @@ Andrew Corcoran <akanewbie@gmail.com>

    This shifts the colors in your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/colorsep.html b/magic/magic-docs/ja_JP.UTF-8/html/colorsep.html index 8188498d9..37f8d917f 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/colorsep.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/colorsep.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This tool separates one color out of your entire picture, shifting colors away from each other (similar to '3D Glasses', but you may choose the any color to separate, and may move in any direction).

    See also: 「りったいメガネ」 & 「ふくし」.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/confetti.html b/magic/magic-docs/ja_JP.UTF-8/html/confetti.html index ad4f7ac40..435ccd638 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/confetti.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/confetti.html @@ -9,5 +9,5 @@ Adam Rakowski <foo-script@o2.pl>

    Throw confetti around your picture!


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/darken.html b/magic/magic-docs/ja_JP.UTF-8/html/darken.html index 33810eee6..a605c07cd 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/darken.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/darken.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This darkens the colors wherever you drag the mouse. (Do it to the same spot many times, and it will eventually become black.)

    See also: Lighten, Tint, 「ほうわ」, & 「ひほうわ」.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/desaturate.html b/magic/magic-docs/ja_JP.UTF-8/html/desaturate.html index d2ad37c04..38b1b0ad3 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/desaturate.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/desaturate.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This desaturates the colors wherever you drag the mouse. (Do it to the same spot many times, and it will eventually become greyscale.)

    See also: 「ほうわ」, Darken, Lighten, Tint, 「だっしょく」, & 「いろのこし」.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/distortion.html b/magic/magic-docs/ja_JP.UTF-8/html/distortion.html index a7b5dfd82..b704b82b8 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/distortion.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/distortion.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This slightly distorts the picture wherever you move the mouse.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/doublevision.html b/magic/magic-docs/ja_JP.UTF-8/html/doublevision.html index f5909f475..a4850be6d 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/doublevision.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/doublevision.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This blends the image with itself, to simulate double vision.

    See also: 「りったいメガネ」 & 「ふくし」.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/drip.html b/magic/magic-docs/ja_JP.UTF-8/html/drip.html index bcb05b657..6b50d4184 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/drip.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/drip.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This makes the paint "drip" wherever you move the mouse.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/edges.html b/magic/magic-docs/ja_JP.UTF-8/html/edges.html index 4fc121b38..5508b1f53 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/edges.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/edges.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Trace the edges in your picture, over a white background.

    See also: Emboss & Silhouette.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/emboss.html b/magic/magic-docs/ja_JP.UTF-8/html/emboss.html index e3c9300c5..8b2ffd6e6 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/emboss.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/emboss.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This makes parts of your picture look "embossed." Wherever there are sharp edges in your picture, the picture will look raised like it was stamped in metal.

    See also: Edges & Silhouette.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/fisheye.html b/magic/magic-docs/ja_JP.UTF-8/html/fisheye.html index a13907333..7713c5256 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/fisheye.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/fisheye.html @@ -10,5 +10,5 @@ Adam Rakowski <foo-script@o2.pl>Warp parts of your picture like it's being seen through a fisheye lens.

    See also: Ripples.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/flip.html b/magic/magic-docs/ja_JP.UTF-8/html/flip.html index e9165f02f..eb112ff21 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/flip.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/flip.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Similar to "Mirror." Click and the entire image will be turned upside-down.

    See also: Mirror.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/flower.html b/magic/magic-docs/ja_JP.UTF-8/html/flower.html index e8077ffd1..f1551f026 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/flower.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/flower.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This tool draws small flowers, with leafy bases and stalks. Click to set the base, then drag the mouse upwards to draw the stalk, and finally release the mouse button to finish the flower. It will be drawn in the currently-selected color. The shape and length of the stalk depends on how you move the mouse while you drag.

    See also: Grass.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/foam.html b/magic/magic-docs/ja_JP.UTF-8/html/foam.html index 64a544bc4..b27d4ca92 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/foam.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/foam.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag the mouse to draw foamy bubbles. The more you drag the mouse in a particular spot, the more likely small bubbles will combine to form bigger bubbles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/fold.html b/magic/magic-docs/ja_JP.UTF-8/html/fold.html index 76cc965d5..cb2b4d68d 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/fold.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/fold.html @@ -12,5 +12,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Click a corner of your picture and drag towards the center to fold it up like a piece of paper.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/fretwork.html b/magic/magic-docs/ja_JP.UTF-8/html/fretwork.html index 3c63e3d0e..2fa2c8826 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/fretwork.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/fretwork.html @@ -9,5 +9,5 @@ Pere Pujal i Carabantes <
    pere@fornol.no-ip.org>

    Draw an interlaced decorative design that looks like wooden fretwork.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/fur.html b/magic/magic-docs/ja_JP.UTF-8/html/fur.html index d38a6f92c..8be2ad03a 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/fur.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/fur.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Add fur to your drawing.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/glass_tile.html b/magic/magic-docs/ja_JP.UTF-8/html/glass_tile.html index ba78877eb..094da3303 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/glass_tile.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/glass_tile.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag over your picture to make it look like it's being seen through glass tiles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/googlyeyes.html b/magic/magic-docs/ja_JP.UTF-8/html/googlyeyes.html index 29e0a9d81..1891a619f 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/googlyeyes.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/googlyeyes.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Draws a googly eye where you click. Drag to position the pupil.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/grass.html b/magic/magic-docs/ja_JP.UTF-8/html/grass.html index ce7da68b1..430229a74 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/grass.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/grass.html @@ -10,5 +10,5 @@ Albert Cahalan <albert@users.sf.net&

    This paints grass on the image. The higher up the canvas, the smaller the grass is drawn, giving an illusion of perspective. The grass can be tinted various greenish hues by selecting different colors in the color palette.

    See also: Flower.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/halftone.html b/magic/magic-docs/ja_JP.UTF-8/html/halftone.html index ac5ac1708..15b62bcb6 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/halftone.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/halftone.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This makes parts of your picture look like newsprint. Different sizes of cyan, magenta, yellow, and black "ink" will appear in place of your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/hexagon_mosaic.html b/magic/magic-docs/ja_JP.UTF-8/html/hexagon_mosaic.html index 94741f5e0..d9b1f9fd3 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/hexagon_mosaic.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/hexagon_mosaic.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Converts parts of your picture into a mosaic of hexagon cells.

    See also: Irregular Mosaic, Square Mosaic, & Mosaic.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/index.html b/magic/magic-docs/ja_JP.UTF-8/html/index.html index 51a1937d2..91b329f21 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/index.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/index.html @@ -118,5 +118,5 @@
  • 「めだま」

  • -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/irregular_mosaic.html b/magic/magic-docs/ja_JP.UTF-8/html/irregular_mosaic.html index cb6ad9e49..3de8fffd7 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/irregular_mosaic.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/irregular_mosaic.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Converts parts of your picture into a mosaic of irregularly-shaped cells.

    See also: Hexagon Mosaic, Square Mosaic, & Mosaic.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/kaleidoscope.html b/magic/magic-docs/ja_JP.UTF-8/html/kaleidoscope.html index 324a73bc8..c6a91ff5f 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/kaleidoscope.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/kaleidoscope.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This paint brush draws in four places at the same time, mirroring symmetrically, both horizontally and vertically. It uses the currently selected color.

    See also: Picasso, Rosette, & Kaleido-4, Kaleido-6, and Kaleido-8.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/kaleidoscope_lens.html b/magic/magic-docs/ja_JP.UTF-8/html/kaleidoscope_lens.html index 6610eb9f6..7ef2bb17a 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/kaleidoscope_lens.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/kaleidoscope_lens.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    These two tools make it look like your picture is being viewed through a kaleidoscope.

    See also: Kaleidoscope.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/keep_color.html b/magic/magic-docs/ja_JP.UTF-8/html/keep_color.html index 39297a9f3..2daf39901 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/keep_color.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/keep_color.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This completely desaturates (turns greyscale) any parts of the image that do not match the selected color.

    See also: 「だっしょく」, 「ほうわ」, 「ひほうわ」, Darken, Lighten, Tint, & 「だっしょく」.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/light.html b/magic/magic-docs/ja_JP.UTF-8/html/light.html index 6d484e5b0..1e11d4ba9 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/light.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/light.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This draws a glowing beam on the canvas, in the currently-selected color. The more you use it on one spot, the more white it becomes.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/lighten.html b/magic/magic-docs/ja_JP.UTF-8/html/lighten.html index f2384dfd5..d09f62160 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/lighten.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/lighten.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This fades the colors wherever you drag the mouse. (Do it to the same spot many times, and it will eventually become white.)

    See also: Darken, Tint, 「ほうわ」, & 「ひほうわ」.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/lightning.html b/magic/magic-docs/ja_JP.UTF-8/html/lightning.html index d6438354b..d0a32db41 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/lightning.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/lightning.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Draws a lightning bolt between two points on the picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/maze.html b/magic/magic-docs/ja_JP.UTF-8/html/maze.html index f8d441a4d..16fef51bf 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/maze.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/maze.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag to construct a maze on your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/metal_paint.html b/magic/magic-docs/ja_JP.UTF-8/html/metal_paint.html index b50e3a224..10f16df4c 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/metal_paint.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/metal_paint.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag to draw shiny metal using the current color.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/mirror.html b/magic/magic-docs/ja_JP.UTF-8/html/mirror.html index bd6c21991..b7e400928 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/mirror.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/mirror.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    When you click the mouse in your picture with the "Mirror" magic effect selected, the entire image will be reversed, turning it into a mirror image.

    See also: Flip.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/mosaic.html b/magic/magic-docs/ja_JP.UTF-8/html/mosaic.html index 5ff4bc32d..d2fa1118c 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/mosaic.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/mosaic.html @@ -12,5 +12,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Adds a glass mosaic effect to your picture.

    See also: Hexagon Mosaic, Irregular Mosaic, & Square Mosaic.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/negative.html b/magic/magic-docs/ja_JP.UTF-8/html/negative.html index 392cef4b8..20f4df4b2 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/negative.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/negative.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This inverts the colors wherever you drag the mouse. (e.g., white becomes black, and vice versa.) It inverts the values of the Red, Green, and Blue components of the pixels.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/noise.html b/magic/magic-docs/ja_JP.UTF-8/html/noise.html index 7227dad60..8149ae542 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/noise.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/noise.html @@ -9,5 +9,5 @@ Andrew Corcoran <akanewbie@gmail.com>

    Add random noise and static to your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/opposite.html b/magic/magic-docs/ja_JP.UTF-8/html/opposite.html index 307518105..2fbf2e6df 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/opposite.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/opposite.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This converts the colors wherever you drag the mouse into their complementary (opposite) colors. (e.g., blue becomes orange, and vice versa.) It changes the Hue compoment of the pixels, without affecting the Saturation or Lightness.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/panels.html b/magic/magic-docs/ja_JP.UTF-8/html/panels.html index 925ce2914..4f20cc561 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/panels.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/panels.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Shrink the image and repeat it four times in a 2-by-2 grid. Useful for creating 4-panel comics. Can also be used to create a compound-eye effect.

    See also: Tile Zoom.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/pattern.html b/magic/magic-docs/ja_JP.UTF-8/html/pattern.html index 37bd47c20..6e5921101 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/pattern.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/pattern.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draws a tiled pattern around the picture.

    See also: Tiles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/perspective.html b/magic/magic-docs/ja_JP.UTF-8/html/perspective.html index e2fec5d57..9f3833ffb 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/perspective.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/perspective.html @@ -9,5 +9,5 @@ Pere Pujal i Carabantes <pere@fornol.no-ip.org>

    Click and drag from the corners to change the perspective of your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/picasso.html b/magic/magic-docs/ja_JP.UTF-8/html/picasso.html index fca954684..18098e8b9 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/picasso.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/picasso.html @@ -10,5 +10,5 @@ Adam Rakowski <foo-script@o2.pl>Draw three swirling brushes at once, in a Picasso style.

    See also: Rosette & Kaleidoscope.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/pixels.html b/magic/magic-docs/ja_JP.UTF-8/html/pixels.html index 99b4a5d36..f846dfb8c 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/pixels.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/pixels.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Draw large square "pixels" on the canvas.

    See also: Bricks.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/puzzle.html b/magic/magic-docs/ja_JP.UTF-8/html/puzzle.html index 9f5304ffe..ba19240fb 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/puzzle.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/puzzle.html @@ -9,5 +9,5 @@ Adam Rakowski <foo-script@o2.pl>

    Slide parts of your picture around like a sliding puzzle.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/rails.html b/magic/magic-docs/ja_JP.UTF-8/html/rails.html index d20576f51..6c68733b2 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/rails.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/rails.html @@ -12,5 +12,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Draw connecting locomotive train rails on your picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/rain.html b/magic/magic-docs/ja_JP.UTF-8/html/rain.html index 15fc85268..19cb8bc05 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/rain.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/rain.html @@ -10,5 +10,5 @@ Andrew Corcoran <
    akanewbie@gmail.com

    Paint raindrops on your picture.

    See also: Snow Ball & Snow Flake.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/rainbow.html b/magic/magic-docs/ja_JP.UTF-8/html/rainbow.html index 4147914e9..18676cf13 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/rainbow.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/rainbow.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This is similar to the paint brush, but as you move the mouse around, it cycles through a spectrum of bright colors.

    See also: Smooth Rainbow.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/rays.html b/magic/magic-docs/ja_JP.UTF-8/html/rays.html index e25958062..9eb1af838 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/rays.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/rays.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This transforms the picture into brush strokes that point towards where you clicked.

    See also: 「えんけい」.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/real_rainbow.html b/magic/magic-docs/ja_JP.UTF-8/html/real_rainbow.html index 253159453..5ac788e8b 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/real_rainbow.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/real_rainbow.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Draw a transparent arc that looks like a real rainbow.

    See also: Real Rainbow.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/reflection.html b/magic/magic-docs/ja_JP.UTF-8/html/reflection.html index 9a7e3db58..ab736efaf 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/reflection.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/reflection.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag down, up, left, or right, to add a reflection to you picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/remove_color.html b/magic/magic-docs/ja_JP.UTF-8/html/remove_color.html index 2127173cf..72e1d6213 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/remove_color.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/remove_color.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This completely desaturates (turns greyscale) parts of the image that match the selected color.

    See also: 「いろのこし」, 「ほうわ」, 「ひほうわ」, Darken, Lighten, Tint, & 「だっしょく」.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/ripples.html b/magic/magic-docs/ja_JP.UTF-8/html/ripples.html index 4f420cf5c..2f4a85936 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/ripples.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/ripples.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Click in your picture to make water ripple distortions appear over it.

    See also: Fisheye.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/rosette.html b/magic/magic-docs/ja_JP.UTF-8/html/rosette.html index 55fb279a1..ee1dc3cb4 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/rosette.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/rosette.html @@ -10,5 +10,5 @@ Adam Rakowski <foo-script@o2.pl>Draw three brushes at once, in a rosette shape.

    See also: Kaleidoscope & Picasso.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/roygbiv_rainbow.html b/magic/magic-docs/ja_JP.UTF-8/html/roygbiv_rainbow.html index 3256de8af..bd4cbe9f2 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/roygbiv_rainbow.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/roygbiv_rainbow.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Draw a rainbow arc of red, orange, yellow, green, blue, indigo and violet.

    See also: ROYGBIV Rainbow.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/rush.html b/magic/magic-docs/ja_JP.UTF-8/html/rush.html index 67ef8a281..7ee68ff4c 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/rush.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/rush.html @@ -12,5 +12,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Click and drag up to zoom in, or down to zoom out. The results will be blurred/smeared.

    See also: Rush, Tile Zoom, & Zoom.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/saturate.html b/magic/magic-docs/ja_JP.UTF-8/html/saturate.html index a642460bd..d08a8da2d 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/saturate.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/saturate.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This increases the saturation of colors wherever you drag the mouse.

    See also: 「ひほうわ」, Darken, Lighten, Tint, 「だっしょく」, & 「いろのこし」.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/sharpen.html b/magic/magic-docs/ja_JP.UTF-8/html/sharpen.html index b99ef5380..aff337294 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/sharpen.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/sharpen.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Sharpen the focus of the picture.

    See also: Blur.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/shift.html b/magic/magic-docs/ja_JP.UTF-8/html/shift.html index a0f533e14..c93cf1024 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/shift.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/shift.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    This shifts your picture around the canvas. Anything that gets shifts off an edge reappears on the opposite edge.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/silhouette.html b/magic/magic-docs/ja_JP.UTF-8/html/silhouette.html index b25a03add..48b54b082 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/silhouette.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/silhouette.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Trace the edges in your picture, over a black background.

    See also: Edges & Emboss.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/smooth_rainbow.html b/magic/magic-docs/ja_JP.UTF-8/html/smooth_rainbow.html index 6001e3959..5318e3f8a 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/smooth_rainbow.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/smooth_rainbow.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This is similar to Rainbow magic tool — as you move the mouse around, it cycles through a spectrum of colors — except the colors blend smoothly as you draw.

    See also: Rainbow.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/smudge.html b/magic/magic-docs/ja_JP.UTF-8/html/smudge.html index 30ffa0d2c..6e098917e 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/smudge.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/smudge.html @@ -10,5 +10,5 @@ Albert Cahalan <albert@users.sf.net&

    This pushes the colors around under the mouse, like finger painting with wet paint.

    See also: Blur & Wet Paint.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/snow_ball.html b/magic/magic-docs/ja_JP.UTF-8/html/snow_ball.html index 7a102c8e6..f6bdb8776 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/snow_ball.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/snow_ball.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Fill the picture with snowballs.

    See also: Rain & Snow Flake.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/snow_flake.html b/magic/magic-docs/ja_JP.UTF-8/html/snow_flake.html index 5b9a398e8..45c0907ba 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/snow_flake.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/snow_flake.html @@ -10,5 +10,5 @@ Andrew Corcoran <akanewbie@gmail.com

    Fill the picture with snowflakes.

    See also: Rain & Snow Ball.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/square_mosaic.html b/magic/magic-docs/ja_JP.UTF-8/html/square_mosaic.html index 7ab1cd331..53604fdc3 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/square_mosaic.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/square_mosaic.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Converts parts of your picture into a mosaic of square cells.

    See also: Hexagon Mosaic, Irregular Mosaic, & Mosaic.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/stretch.html b/magic/magic-docs/ja_JP.UTF-8/html/stretch.html index 7a1968e5c..94a06c44e 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/stretch.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/stretch.html @@ -9,5 +9,5 @@ Bill Kendrick <bill@newbreedsoftware.com>

    Click and drag around to stretch and squish parts of the picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/string_corner.html b/magic/magic-docs/ja_JP.UTF-8/html/string_corner.html index 7e47052f8..a06236738 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/string_corner.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/string_corner.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draw V-shaped string art at right angles.

    See also: String V & String Edges.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/string_edges.html b/magic/magic-docs/ja_JP.UTF-8/html/string_edges.html index 893a7c6c2..b9ac4303e 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/string_edges.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/string_edges.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draw string art around the edges of your picture.

    See also: String V & String Corner.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/string_v.html b/magic/magic-docs/ja_JP.UTF-8/html/string_v.html index 4980e7685..ab748dbd7 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/string_v.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/string_v.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draw V-shaped string art at any angle.

    See also: String Corner & String Edges.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/symmetry_left_right.html b/magic/magic-docs/ja_JP.UTF-8/html/symmetry_left_right.html index 1ef348173..7b048e7d2 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/symmetry_left_right.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/symmetry_left_right.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Paint with relfective symmetry across the horizontal center of the image.

    See also: Kaleidoscope, Pattern, Symmetry Up/Down, & Tiles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/symmetry_up_down.html b/magic/magic-docs/ja_JP.UTF-8/html/symmetry_up_down.html index c82d866ad..592bc3824 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/symmetry_up_down.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/symmetry_up_down.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Paint with relfective symmetry across the vertical center of the image.

    See also: Kaleidoscope, Pattern, Symmetry Left/Right, & Tiles.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/tiles.html b/magic/magic-docs/ja_JP.UTF-8/html/tiles.html index 4568963b9..3090a2a08 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/tiles.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/tiles.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Draws a symettric pattern around the picture.

    See also: Pattern.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/tilezoom.html b/magic/magic-docs/ja_JP.UTF-8/html/tilezoom.html index 5766ec53f..c052d624d 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/tilezoom.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/tilezoom.html @@ -12,5 +12,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Click and drag up to zoom in, or down to zoom out. When scaling down, your image will be tiled across the canvas.

    See also: Panels, Rush, & Zoom.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/tint.html b/magic/magic-docs/ja_JP.UTF-8/html/tint.html index 90e4d4b88..38c6de83d 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/tint.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/tint.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This changes the color (or hue) of the parts of the picture to the selected color.

    See also: Lighten & Darken.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/toothpaste.html b/magic/magic-docs/ja_JP.UTF-8/html/toothpaste.html index 7f83590fb..63ad14c1c 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/toothpaste.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/toothpaste.html @@ -9,5 +9,5 @@ Andrew Corcoran <akanewbie@gmail.com>

    Paint thick blobs of color on your picture that look like toothpaste.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/tornado.html b/magic/magic-docs/ja_JP.UTF-8/html/tornado.html index f22173b85..271dac182 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/tornado.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/tornado.html @@ -9,5 +9,5 @@ Pere Pujal i Carabantes <pere@fornol.no-ip.org>

    Draws a tornado effect onto the picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/tv.html b/magic/magic-docs/ja_JP.UTF-8/html/tv.html index a12a09547..a0c11acb5 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/tv.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/tv.html @@ -11,5 +11,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Distort your picture so it looks like it's on a television (TV).


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/wavelets.html b/magic/magic-docs/ja_JP.UTF-8/html/wavelets.html index 73d13b979..8d39c8ed5 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/wavelets.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/wavelets.html @@ -12,5 +12,5 @@ Adam Rakowski <
    foo-script@o2.pl>

    Click to make the entire picture wavy, up-and-down. Drag the mouse up and down to change the height of the ripples, and left and right to change the width. Release the mouse button when it looks the way you like it.

    See also: Waves.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/waves.html b/magic/magic-docs/ja_JP.UTF-8/html/waves.html index 717b3b8a3..4263fca75 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/waves.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/waves.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Click to make the entire picture wavy, side-to-side. Drag the mouse up and down to change the height of the ripples, and left and right to change the width. Release the mouse button when it looks the way you like it.

    See also: Wavelets.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/wet_paint.html b/magic/magic-docs/ja_JP.UTF-8/html/wet_paint.html index 65191811a..ff92927f5 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/wet_paint.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/wet_paint.html @@ -12,5 +12,5 @@ Bill Kendrick <bill@newbreedsoftwa

    This draws a light, smudgy coat of paint on the picture.

    See also: Smudge.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/xor_colors.html b/magic/magic-docs/ja_JP.UTF-8/html/xor_colors.html index 68ad5a12b..2cf8f9d95 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/xor_colors.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/xor_colors.html @@ -9,5 +9,5 @@ Lukasz Dmitrowski <lukasz.dmitrowski@gmail.com>

    Colors based on the position drawn on the picture.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file diff --git a/magic/magic-docs/ja_JP.UTF-8/html/zoom.html b/magic/magic-docs/ja_JP.UTF-8/html/zoom.html index 4a0042515..85c6855e6 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/zoom.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/zoom.html @@ -10,5 +10,5 @@ Pere Pujal i Carabantes <pere@fornol.n

    Click and drag up to zoom in, or down to zoom out. (When scaling down, your chosen color will be used as a background color.)

    See also: Rush & Tile Zoom.


    -

    Tux Paint 0.9.29

    +

    Tux Paint 0.9.30

    \ No newline at end of file