From ff4352d575866070fd8e9db96390cdfd4b6176c7 Mon Sep 17 00:00:00 2001 From: dolphin6k Date: Fri, 10 Jun 2022 10:57:06 +0900 Subject: [PATCH 1/4] Corrected suffix of the system-wide config file --- Makefile | 2 ++ win32/tuxpaint.iss | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1946d21ca..4b615105c 100644 --- a/Makefile +++ b/Makefile @@ -671,6 +671,8 @@ bdist-win32: INCLUDE_PREFIX:=./win32/bdist/plugins/include \ MAGIC_PREFIX:=./win32/bdist/plugins \ ARCH_INSTALL:=install-dlls install-tpconf-i18n + mv ./win32/bdist/tuxpaint.conf ./win32/bdist/tuxpaint.cfg + unix2dos ./win32/bdist/tuxpaint.cfg # "make bdist-clean" deletes the 'bdist' directory .PHONY: bdist-clean diff --git a/win32/tuxpaint.iss b/win32/tuxpaint.iss index 7b7b53322..280b1017d 100644 --- a/win32/tuxpaint.iss +++ b/win32/tuxpaint.iss @@ -140,7 +140,7 @@ Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{ [Files] Source: "{#BdistDir}\*.dll"; DestDir: "{app}"; Flags: ignoreversion Source: "{#BdistDir}\*.exe"; DestDir: "{app}"; Flags: ignoreversion -Source: "{#BdistDir}\tuxpaint.conf"; DestDir: "{app}"; Flags: ignoreversion +Source: "{#BdistDir}\tuxpaint.cfg"; DestDir: "{app}"; Flags: ignoreversion Source: "{#BdistDir}\data\*"; DestDir: "{app}\data"; Excludes: "CVS"; Flags: ignoreversion recursesubdirs createallsubdirs Source: "{#BdistDir}\docs\*"; DestDir: "{app}\docs"; Excludes: "CVS,Makefile,*~"; Flags: ignoreversion recursesubdirs createallsubdirs Source: "{#BdistDir}\etc\*"; DestDir: "{app}\etc"; Flags: skipifsourcedoesntexist ignoreversion recursesubdirs createallsubdirs From cdba8ffbbd7a9eccb825a666d8c6e61c23aa98d7 Mon Sep 17 00:00:00 2001 From: Bill Kendrick Date: Tue, 14 Jun 2022 00:14:02 -0700 Subject: [PATCH 2/4] Adding an auto option for button sizes Merge 333f4b05a49c4b106e19a4b9aeee53a1f2f03a0b sdl2.0->master (See https://sourceforge.net/p/tuxpaint/feature-requests/218/) --- src/tuxpaint.c | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index 8643f2dde..e42fe858f 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -22,7 +22,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA (See COPYING.txt) - June 14, 2002 - June 3, 2022 + June 14, 2002 - June 14, 2022 */ #include "platform.h" @@ -741,6 +741,7 @@ static SDL_Rect old_dest; static int button_w; /* was 48 */ static int button_h; /* was 48 */ +static int button_size_auto = 0; /* if the size of buttons should be autocalculated */ static float button_scale; /* scale factor to be applied to the size of buttons */ static int color_button_w; /* was 32 */ static int color_button_h; /* was 48 */ @@ -26072,12 +26073,17 @@ static void setup_config(char *argv[]) } if (tmpcfg.button_size) { - if (strtof(tmpcfg.button_size, NULL) < 24 || strtof(tmpcfg.button_size, NULL) > 192) + if (strstr(tmpcfg.button_size, "auto")) + button_size_auto = 1; + else { - fprintf(stderr, "Button size (now %s) must be between 24 and 192.\n", tmpcfg.button_size); - exit(1); + if (strtof(tmpcfg.button_size, NULL) < 24 || strtof(tmpcfg.button_size, NULL) > 192) + { + fprintf(stderr, "Button size (now %s) must be between 24 and 192.\n", tmpcfg.button_size); + exit(1); + } + button_scale = strtof(tmpcfg.button_size, NULL) / ORIGINAL_BUTTON_SIZE; } - button_scale = strtof(tmpcfg.button_size, NULL) / ORIGINAL_BUTTON_SIZE; } else button_scale = 1; @@ -27084,6 +27090,9 @@ static void setup(void) /* (Need to do this after native screen resolution is handled) */ + if (button_size_auto) /* Automatic size of buttons, see https://sourceforge.net/p/tuxpaint/feature-requests/218/ */ + button_scale = (float) min((48 * screen->w) / 800, (48 * screen->h) / 600) / ORIGINAL_BUTTON_SIZE; + setup_screen_layout(); set_color_picker_crosshair_size(); From fbfd609665aa94813edfffa73e1f45b0e762b2a6 Mon Sep 17 00:00:00 2001 From: Bill Kendrick Date: Tue, 14 Jun 2022 00:15:58 -0700 Subject: [PATCH 3/4] Bumping version to 0.9.29; doc'ing recent additions Some things snuck in to 0.9.28 binary builds, or were added recently; making sure they're doc'd in CHANGES.txt --- Makefile | 4 ++-- docs/CHANGES.txt | 29 +++++++++++++++++++++++++++++ macos/Info.plist | 6 +++--- tuxpaint.spec | 5 ++++- win32/resources.rc | 8 ++++---- 5 files changed, 42 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 4b615105c..0a1fa8b25 100644 --- a/Makefile +++ b/Makefile @@ -4,12 +4,12 @@ # Various contributors (see AUTHORS.txt) # http://www.tuxpaint.org/ -# June 14, 2002 - June 4, 2022 +# June 14, 2002 - June 14, 2022 # The version number, for release: -VER_VERSION:=0.9.28 +VER_VERSION:=0.9.29 VER_FLAVOR:="-sdl1" ifdef SOURCE_DATE_EPOCH VER_DATE=$(shell date -u -d "@$(SOURCE_DATE_EPOCH)" "+%Y-%m-%d" 2>/dev/null || date -u -r "$(SOURCE_DATE_EPOCH)" "+%Y-%m-%d" 2>/dev/null || date -u "+%Y-%m-%d") diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt index d949bb3b3..de6e9f631 100644 --- a/docs/CHANGES.txt +++ b/docs/CHANGES.txt @@ -7,6 +7,35 @@ Various contributors (see below, and AUTHORS.txt) http://www.tuxpaint.org/ +2022.June.14 (0.9.29) + * Other Improvements: + ------------------- + * Automatic button size option ("buttonsize=auto"), to scale button + size reasonably based on window size / fullscreen resolution. + (For https://sourceforge.net/p/tuxpaint/feature-requests/218/) + Pere Pujal i Carabantes + + * Using SDL linear scaling hint to reduce jaggedness when displaying + in full screen at a different resolution than the display's + native size. (SDL2.0) + TOYAMA Shin-ichi + + * Ports & Building: + ----------------- + * Change name of Tux Paint config. files from ".conf" to ".cfg" + on Windows. + TOYAMA Shin-ichi + + * Documentation updates: + --------------------- + * Update macOS build instructions for SDL2.0. + Mark Kim + + * Localization Updates: + --------------------- + * Catalan translation + Pere Pujal i Carabantes + 2022.June.4 (0.9.28) * Improvements to "Paint" and "Lines" tools: ------------------------------------------ diff --git a/macos/Info.plist b/macos/Info.plist index 3c46cffa8..580c3354b 100644 --- a/macos/Info.plist +++ b/macos/Info.plist @@ -7,7 +7,7 @@ CFBundleExecutable tuxpaint CFBundleGetInfoString - 0.9.28, Copyright 2002-2022, Tux Paint Development Team + 0.9.29, Copyright 2002-2022, Tux Paint Development Team CFBundleIconFile tuxpaint.icns CFBundleIdentifier @@ -19,10 +19,10 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.9.28 + 0.9.29 CFBundleSignature TXPT CFBundleVersion - 2022-06-04 + 2022-06-14 diff --git a/tuxpaint.spec b/tuxpaint.spec index 6b98e8fe5..d7c042a48 100644 --- a/tuxpaint.spec +++ b/tuxpaint.spec @@ -1,6 +1,6 @@ Summary: A drawing program for young children Name: tuxpaint -Version: 0.9.28 +Version: 0.9.29 Release: 1 License: GPL Group: Multimedia/Graphics @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/tp-magic-config.* %changelog +* Tue Jun 14 2022 - +- Set version number 0.9.29 + * Wed Dec 01 2021 - - Set version number 0.9.28 diff --git a/win32/resources.rc b/win32/resources.rc index 492053a5f..10214a102 100644 --- a/win32/resources.rc +++ b/win32/resources.rc @@ -26,8 +26,8 @@ IDI_ICON1 ICON DISCARDABLE "data/images/icon-win32.ico" // VS_VERSION_INFO VERSIONINFO - FILEVERSION 0,9,28,0 - PRODUCTVERSION 0,9,28,0 + FILEVERSION 0,9,29,0 + PRODUCTVERSION 0,9,29,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x21L @@ -45,14 +45,14 @@ BEGIN VALUE "Comments", "\0" VALUE "CompanyName", "New Breed Software\0" VALUE "FileDescription", "Tux Paint - Interactive Paint Program.\0" - VALUE "FileVersion", "0.9.28\0" + VALUE "FileVersion", "0.9.29\0" VALUE "InternalName", "Tux Paint\0" VALUE "LegalCopyright", "Copyright (C) 2002-2022 by Bill Kendrick, et al\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", "TuxPaint.exe\0" VALUE "PrivateBuild", "\0" VALUE "ProductName", "Tux Paint\0" - VALUE "ProductVersion", "0.9.28\0" + VALUE "ProductVersion", "0.9.29\0" VALUE "SpecialBuild", "win32 build by TOYAMA Shin-ichi\0" END END From 8bdcfc3d312128dfadc821766755876d1c88acc1 Mon Sep 17 00:00:00 2001 From: Bill Kendrick Date: Tue, 14 Jun 2022 00:17:52 -0700 Subject: [PATCH 4/4] Bump version to 0.9.29 in docs (built) --- docs/en/ADVANCED-STAMPS-HOWTO.txt | 2 +- docs/en/ENVVARS.txt | 2 +- docs/en/EXTENDING.txt | 2 +- docs/en/FAQ.txt | 2 +- docs/en/INSTALL.txt | 2 +- docs/en/OPTIONS.txt | 2 +- docs/en/PNG.txt | 2 +- docs/en/README.txt | 4 ++-- docs/en/SIGNALS.txt | 2 +- docs/en/SVG.txt | 2 +- docs/en/html/ADVANCED-STAMPS-HOWTO.html | 2 +- docs/en/html/ENVVARS.html | 2 +- docs/en/html/EXTENDING.html | 2 +- docs/en/html/FAQ.html | 2 +- docs/en/html/INSTALL.html | 2 +- docs/en/html/OPTIONS.html | 2 +- docs/en/html/PNG.html | 2 +- docs/en/html/README.html | 4 ++-- docs/en/html/SIGNALS.html | 2 +- docs/en/html/SVG.html | 2 +- docs/es_ES.UTF-8/ADVANCED-STAMPS-HOWTO.txt | 2 +- docs/es_ES.UTF-8/ENVVARS.txt | 2 +- docs/es_ES.UTF-8/EXTENDING.txt | 2 +- docs/es_ES.UTF-8/FAQ.txt | 2 +- docs/es_ES.UTF-8/INSTALL.txt | 2 +- docs/es_ES.UTF-8/OPTIONS.txt | 2 +- docs/es_ES.UTF-8/PNG.txt | 2 +- docs/es_ES.UTF-8/README.txt | 4 ++-- docs/es_ES.UTF-8/SIGNALS.txt | 2 +- docs/es_ES.UTF-8/SVG.txt | 2 +- docs/es_ES.UTF-8/html/ADVANCED-STAMPS-HOWTO.html | 2 +- docs/es_ES.UTF-8/html/ENVVARS.html | 2 +- docs/es_ES.UTF-8/html/EXTENDING.html | 2 +- docs/es_ES.UTF-8/html/FAQ.html | 2 +- docs/es_ES.UTF-8/html/INSTALL.html | 2 +- docs/es_ES.UTF-8/html/OPTIONS.html | 2 +- docs/es_ES.UTF-8/html/PNG.html | 2 +- docs/es_ES.UTF-8/html/README.html | 4 ++-- docs/es_ES.UTF-8/html/SIGNALS.html | 2 +- docs/es_ES.UTF-8/html/SVG.html | 2 +- docs/fr_FR.UTF-8/ADVANCED-STAMPS-HOWTO.txt | 2 +- docs/fr_FR.UTF-8/ENVVARS.txt | 2 +- docs/fr_FR.UTF-8/EXTENDING.txt | 2 +- docs/fr_FR.UTF-8/FAQ.txt | 2 +- docs/fr_FR.UTF-8/INSTALL.txt | 2 +- docs/fr_FR.UTF-8/OPTIONS.txt | 2 +- docs/fr_FR.UTF-8/PNG.txt | 2 +- docs/fr_FR.UTF-8/README.txt | 4 ++-- docs/fr_FR.UTF-8/SIGNALS.txt | 2 +- docs/fr_FR.UTF-8/SVG.txt | 2 +- docs/fr_FR.UTF-8/html/ADVANCED-STAMPS-HOWTO.html | 2 +- docs/fr_FR.UTF-8/html/ENVVARS.html | 2 +- docs/fr_FR.UTF-8/html/EXTENDING.html | 2 +- docs/fr_FR.UTF-8/html/FAQ.html | 2 +- docs/fr_FR.UTF-8/html/INSTALL.html | 2 +- docs/fr_FR.UTF-8/html/OPTIONS.html | 2 +- docs/fr_FR.UTF-8/html/PNG.html | 2 +- docs/fr_FR.UTF-8/html/README.html | 4 ++-- docs/fr_FR.UTF-8/html/SIGNALS.html | 2 +- docs/fr_FR.UTF-8/html/SVG.html | 2 +- docs/gl_ES.UTF-8/ADVANCED-STAMPS-HOWTO.txt | 2 +- docs/gl_ES.UTF-8/ENVVARS.txt | 2 +- docs/gl_ES.UTF-8/EXTENDING.txt | 2 +- docs/gl_ES.UTF-8/FAQ.txt | 2 +- docs/gl_ES.UTF-8/INSTALL.txt | 2 +- docs/gl_ES.UTF-8/OPTIONS.txt | 2 +- docs/gl_ES.UTF-8/PNG.txt | 2 +- docs/gl_ES.UTF-8/README.txt | 4 ++-- docs/gl_ES.UTF-8/SIGNALS.txt | 2 +- docs/gl_ES.UTF-8/SVG.txt | 2 +- docs/gl_ES.UTF-8/html/ADVANCED-STAMPS-HOWTO.html | 2 +- docs/gl_ES.UTF-8/html/ENVVARS.html | 2 +- docs/gl_ES.UTF-8/html/EXTENDING.html | 2 +- docs/gl_ES.UTF-8/html/FAQ.html | 2 +- docs/gl_ES.UTF-8/html/INSTALL.html | 2 +- docs/gl_ES.UTF-8/html/OPTIONS.html | 2 +- docs/gl_ES.UTF-8/html/PNG.html | 2 +- docs/gl_ES.UTF-8/html/README.html | 4 ++-- docs/gl_ES.UTF-8/html/SIGNALS.html | 2 +- docs/gl_ES.UTF-8/html/SVG.html | 2 +- docs/ja_JP.UTF-8/ADVANCED-STAMPS-HOWTO.txt | 2 +- docs/ja_JP.UTF-8/ENVVARS.txt | 2 +- docs/ja_JP.UTF-8/EXTENDING.txt | 2 +- docs/ja_JP.UTF-8/FAQ.txt | 2 +- docs/ja_JP.UTF-8/INSTALL.txt | 2 +- docs/ja_JP.UTF-8/OPTIONS.txt | 2 +- docs/ja_JP.UTF-8/PNG.txt | 2 +- docs/ja_JP.UTF-8/README.txt | 4 ++-- docs/ja_JP.UTF-8/SIGNALS.txt | 2 +- docs/ja_JP.UTF-8/SVG.txt | 2 +- docs/ja_JP.UTF-8/html/ADVANCED-STAMPS-HOWTO.html | 2 +- docs/ja_JP.UTF-8/html/ENVVARS.html | 2 +- docs/ja_JP.UTF-8/html/EXTENDING.html | 2 +- docs/ja_JP.UTF-8/html/FAQ.html | 2 +- docs/ja_JP.UTF-8/html/INSTALL.html | 2 +- docs/ja_JP.UTF-8/html/OPTIONS.html | 2 +- docs/ja_JP.UTF-8/html/PNG.html | 2 +- docs/ja_JP.UTF-8/html/README.html | 4 ++-- docs/ja_JP.UTF-8/html/SIGNALS.html | 2 +- docs/ja_JP.UTF-8/html/SVG.html | 2 +- magic/magic-docs/en/html/blinds.html | 2 +- magic/magic-docs/en/html/blocks.html | 2 +- magic/magic-docs/en/html/blur.html | 2 +- magic/magic-docs/en/html/bricks.html | 2 +- magic/magic-docs/en/html/calligraphy.html | 2 +- magic/magic-docs/en/html/cartoon.html | 2 +- magic/magic-docs/en/html/chalk.html | 2 +- magic/magic-docs/en/html/checkerboard.html | 2 +- magic/magic-docs/en/html/clone.html | 2 +- magic/magic-docs/en/html/color_and_white.html | 2 +- magic/magic-docs/en/html/color_shift.html | 2 +- magic/magic-docs/en/html/confetti.html | 2 +- magic/magic-docs/en/html/darken.html | 2 +- magic/magic-docs/en/html/distortion.html | 2 +- magic/magic-docs/en/html/drip.html | 2 +- magic/magic-docs/en/html/edges.html | 2 +- magic/magic-docs/en/html/emboss.html | 2 +- magic/magic-docs/en/html/fisheye.html | 2 +- magic/magic-docs/en/html/flip.html | 2 +- magic/magic-docs/en/html/flower.html | 2 +- magic/magic-docs/en/html/foam.html | 2 +- magic/magic-docs/en/html/fold.html | 2 +- magic/magic-docs/en/html/fretwork.html | 2 +- magic/magic-docs/en/html/glass_tile.html | 2 +- magic/magic-docs/en/html/grass.html | 2 +- magic/magic-docs/en/html/halftone.html | 2 +- magic/magic-docs/en/html/hexagon_mosaic.html | 2 +- magic/magic-docs/en/html/index.html | 2 +- magic/magic-docs/en/html/irregular_mosaic.html | 2 +- magic/magic-docs/en/html/kaleidoscope.html | 2 +- magic/magic-docs/en/html/light.html | 2 +- magic/magic-docs/en/html/lighten.html | 2 +- magic/magic-docs/en/html/lightning.html | 2 +- magic/magic-docs/en/html/metal_paint.html | 2 +- magic/magic-docs/en/html/mirror.html | 2 +- magic/magic-docs/en/html/mosaic.html | 2 +- magic/magic-docs/en/html/negative.html | 2 +- magic/magic-docs/en/html/noise.html | 2 +- magic/magic-docs/en/html/opposite.html | 2 +- magic/magic-docs/en/html/panels.html | 2 +- magic/magic-docs/en/html/pattern.html | 2 +- magic/magic-docs/en/html/perspective.html | 2 +- magic/magic-docs/en/html/picasso.html | 2 +- magic/magic-docs/en/html/pixels.html | 2 +- magic/magic-docs/en/html/puzzle.html | 2 +- magic/magic-docs/en/html/rails.html | 2 +- magic/magic-docs/en/html/rain.html | 2 +- magic/magic-docs/en/html/rainbow.html | 2 +- magic/magic-docs/en/html/real_rainbow.html | 2 +- magic/magic-docs/en/html/reflection.html | 2 +- magic/magic-docs/en/html/ripples.html | 2 +- magic/magic-docs/en/html/rosette.html | 2 +- magic/magic-docs/en/html/roygbiv_rainbow.html | 2 +- magic/magic-docs/en/html/rush.html | 2 +- magic/magic-docs/en/html/sharpen.html | 2 +- magic/magic-docs/en/html/shift.html | 2 +- magic/magic-docs/en/html/silhouette.html | 2 +- magic/magic-docs/en/html/smooth_rainbow.html | 2 +- magic/magic-docs/en/html/smudge.html | 2 +- magic/magic-docs/en/html/snow_ball.html | 2 +- magic/magic-docs/en/html/snow_flake.html | 2 +- magic/magic-docs/en/html/square_mosaic.html | 2 +- magic/magic-docs/en/html/stretch.html | 2 +- magic/magic-docs/en/html/string_corner.html | 2 +- magic/magic-docs/en/html/string_edges.html | 2 +- magic/magic-docs/en/html/string_v.html | 2 +- magic/magic-docs/en/html/symmetry_left_right.html | 2 +- magic/magic-docs/en/html/symmetry_up_down.html | 2 +- magic/magic-docs/en/html/tiles.html | 2 +- magic/magic-docs/en/html/tilezoom.html | 2 +- magic/magic-docs/en/html/tint.html | 2 +- magic/magic-docs/en/html/toothpaste.html | 2 +- magic/magic-docs/en/html/tornado.html | 2 +- magic/magic-docs/en/html/tv.html | 2 +- magic/magic-docs/en/html/wavelets.html | 2 +- magic/magic-docs/en/html/waves.html | 2 +- magic/magic-docs/en/html/wet_paint.html | 2 +- magic/magic-docs/en/html/xor_colors.html | 2 +- magic/magic-docs/en/html/zoom.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/blinds.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/blocks.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/blur.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/bricks.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/calligraphy.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/cartoon.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/chalk.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/checkerboard.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/clone.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/color_and_white.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/color_shift.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/confetti.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/darken.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/distortion.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/drip.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/edges.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/emboss.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/fisheye.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/flip.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/flower.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/foam.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/fold.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/fretwork.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/glass_tile.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/grass.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/halftone.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/hexagon_mosaic.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/index.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/irregular_mosaic.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/kaleidoscope.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/light.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/lighten.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/lightning.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/metal_paint.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/mirror.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/mosaic.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/negative.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/noise.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/opposite.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/panels.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/pattern.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/perspective.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/picasso.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/pixels.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/puzzle.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/rails.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/rain.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/rainbow.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/real_rainbow.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/reflection.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/ripples.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/rosette.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/roygbiv_rainbow.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/rush.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/sharpen.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/shift.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/silhouette.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/smooth_rainbow.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/smudge.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/snow_ball.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/snow_flake.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/square_mosaic.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/stretch.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/string_corner.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/string_edges.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/string_v.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/symmetry_left_right.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/symmetry_up_down.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/tiles.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/tilezoom.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/tint.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/toothpaste.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/tornado.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/tv.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/wavelets.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/waves.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/wet_paint.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/xor_colors.html | 2 +- magic/magic-docs/es_ES.UTF-8/html/zoom.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/blinds.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/blocks.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/blur.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/bricks.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/calligraphy.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/cartoon.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/chalk.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/checkerboard.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/clone.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/color_and_white.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/color_shift.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/confetti.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/darken.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/distortion.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/drip.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/edges.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/emboss.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/fisheye.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/flip.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/flower.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/foam.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/fold.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/fretwork.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/glass_tile.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/grass.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/halftone.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/hexagon_mosaic.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/index.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/irregular_mosaic.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/kaleidoscope.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/light.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/lighten.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/lightning.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/metal_paint.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/mirror.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/mosaic.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/negative.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/noise.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/opposite.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/panels.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/pattern.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/perspective.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/picasso.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/pixels.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/puzzle.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/rails.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/rain.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/rainbow.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/real_rainbow.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/reflection.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/ripples.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/rosette.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/roygbiv_rainbow.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/rush.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/sharpen.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/shift.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/silhouette.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/smooth_rainbow.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/smudge.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/snow_ball.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/snow_flake.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/square_mosaic.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/stretch.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/string_corner.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/string_edges.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/string_v.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/symmetry_left_right.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/symmetry_up_down.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/tiles.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/tilezoom.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/tint.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/toothpaste.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/tornado.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/tv.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/wavelets.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/waves.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/wet_paint.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/xor_colors.html | 2 +- magic/magic-docs/fr_FR.UTF-8/html/zoom.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/blinds.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/blocks.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/blur.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/bricks.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/calligraphy.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/cartoon.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/chalk.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/checkerboard.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/clone.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/color_and_white.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/color_shift.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/confetti.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/darken.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/distortion.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/drip.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/edges.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/emboss.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/fisheye.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/flip.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/flower.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/foam.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/fold.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/fretwork.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/glass_tile.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/grass.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/halftone.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/hexagon_mosaic.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/index.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/irregular_mosaic.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/kaleidoscope.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/light.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/lighten.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/lightning.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/metal_paint.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/mirror.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/mosaic.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/negative.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/noise.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/opposite.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/panels.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/pattern.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/perspective.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/picasso.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/pixels.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/puzzle.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/rails.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/rain.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/rainbow.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/real_rainbow.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/reflection.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/ripples.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/rosette.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/roygbiv_rainbow.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/rush.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/sharpen.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/shift.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/silhouette.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/smooth_rainbow.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/smudge.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/snow_ball.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/snow_flake.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/square_mosaic.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/stretch.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/string_corner.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/string_edges.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/string_v.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/symmetry_left_right.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/symmetry_up_down.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/tiles.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/tilezoom.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/tint.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/toothpaste.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/tornado.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/tv.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/wavelets.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/waves.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/wet_paint.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/xor_colors.html | 2 +- magic/magic-docs/gl_ES.UTF-8/html/zoom.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/blinds.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/blocks.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/blur.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/bricks.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/calligraphy.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/cartoon.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/chalk.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/checkerboard.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/clone.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/color_and_white.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/color_shift.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/confetti.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/darken.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/distortion.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/drip.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/edges.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/emboss.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/fisheye.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/flip.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/flower.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/foam.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/fold.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/fretwork.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/glass_tile.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/grass.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/halftone.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/hexagon_mosaic.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/index.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/irregular_mosaic.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/kaleidoscope.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/light.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/lighten.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/lightning.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/metal_paint.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/mirror.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/mosaic.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/negative.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/noise.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/opposite.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/panels.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/pattern.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/perspective.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/picasso.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/pixels.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/puzzle.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/rails.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/rain.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/rainbow.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/real_rainbow.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/reflection.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/ripples.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/rosette.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/roygbiv_rainbow.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/rush.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/sharpen.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/shift.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/silhouette.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/smooth_rainbow.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/smudge.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/snow_ball.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/snow_flake.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/square_mosaic.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/stretch.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/string_corner.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/string_edges.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/string_v.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/symmetry_left_right.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/symmetry_up_down.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/tiles.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/tilezoom.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/tint.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/toothpaste.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/tornado.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/tv.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/wavelets.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/waves.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/wet_paint.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/xor_colors.html | 2 +- magic/magic-docs/ja_JP.UTF-8/html/zoom.html | 2 +- man/en/tuxpaint.1 | 2 +- man/es_ES.UTF-8/tuxpaint.1 | 2 +- man/fr_FR.UTF-8/tuxpaint.1 | 2 +- man/gl_ES.UTF-8/tuxpaint.1 | 2 +- man/ja_JP.UTF-8/tuxpaint.1 | 2 +- 500 files changed, 510 insertions(+), 510 deletions(-) diff --git a/docs/en/ADVANCED-STAMPS-HOWTO.txt b/docs/en/ADVANCED-STAMPS-HOWTO.txt index ad2c392e6..6d1e0faa6 100644 --- a/docs/en/ADVANCED-STAMPS-HOWTO.txt +++ b/docs/en/ADVANCED-STAMPS-HOWTO.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.28 Advanced Stamps 'How-To' + version 0.9.29 Advanced Stamps 'How-To' Copyright © 2006-2022 by Albert Cahalan and others; see AUTHORS.txt. https://tuxpaint.org/ diff --git a/docs/en/ENVVARS.txt b/docs/en/ENVVARS.txt index 5efc09f91..53f4bd1ee 100644 --- a/docs/en/ENVVARS.txt +++ b/docs/en/ENVVARS.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.28 + version 0.9.29 Environment Variables Documentation Copyright © 2021-2022 by various contributors; see AUTHORS.txt. diff --git a/docs/en/EXTENDING.txt b/docs/en/EXTENDING.txt index 17d25d10f..dcf6fb3dd 100644 --- a/docs/en/EXTENDING.txt +++ b/docs/en/EXTENDING.txt @@ -1,6 +1,6 @@ Extending Tux Paint - version 0.9.28 + version 0.9.29 Copyright © 2002-2022 by various contributors; see AUTHORS.txt. https://tuxpaint.org/ diff --git a/docs/en/FAQ.txt b/docs/en/FAQ.txt index 95fdac851..7a33654b1 100644 --- a/docs/en/FAQ.txt +++ b/docs/en/FAQ.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.28 Frequently Asked Questions + version 0.9.29 Frequently Asked Questions Copyright © 2002-2022 by various contributors; see AUTHORS.txt. https://tuxpaint.org/ diff --git a/docs/en/INSTALL.txt b/docs/en/INSTALL.txt index c576c04a6..411d1fd8e 100644 --- a/docs/en/INSTALL.txt +++ b/docs/en/INSTALL.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.28 + version 0.9.29 Installation Documentation Copyright © 2002-2022 by various contributors; see AUTHORS.txt. diff --git a/docs/en/OPTIONS.txt b/docs/en/OPTIONS.txt index 8a7b8a10b..4d3ca49be 100644 --- a/docs/en/OPTIONS.txt +++ b/docs/en/OPTIONS.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.28 + version 0.9.29 Options Documentation diff --git a/docs/en/PNG.txt b/docs/en/PNG.txt index 54f0a5ead..f718a058a 100644 --- a/docs/en/PNG.txt +++ b/docs/en/PNG.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.28 + version 0.9.29 PNG Documentation Copyright © 2007-2022 by various contributors; see AUTHORS.txt. diff --git a/docs/en/README.txt b/docs/en/README.txt index 72ea0fc8d..ca35d5e1d 100644 --- a/docs/en/README.txt +++ b/docs/en/README.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.28 + version 0.9.29 A simple drawing program for children @@ -8,7 +8,7 @@ @TuxPaintTweets on Twitter Tux Paint on Tumblr - June 4, 2022 + June 14, 2022 +----------------------------------------------------+ |Table of Contents | diff --git a/docs/en/SIGNALS.txt b/docs/en/SIGNALS.txt index 6d1611fb2..463f9df6f 100644 --- a/docs/en/SIGNALS.txt +++ b/docs/en/SIGNALS.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.28 + version 0.9.29 Signals Documentation Copyright © 2019-2022 by various contributors; see AUTHORS.txt. diff --git a/docs/en/SVG.txt b/docs/en/SVG.txt index 73ef79181..1ae59e429 100644 --- a/docs/en/SVG.txt +++ b/docs/en/SVG.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.28 + version 0.9.29 SVG Documentation Copyright © 2007-2022 by various contributors; see AUTHORS.txt. diff --git a/docs/en/html/ADVANCED-STAMPS-HOWTO.html b/docs/en/html/ADVANCED-STAMPS-HOWTO.html index 325644fa7..fe2e340fe 100644 --- a/docs/en/html/ADVANCED-STAMPS-HOWTO.html +++ b/docs/en/html/ADVANCED-STAMPS-HOWTO.html @@ -17,7 +17,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.28 Advanced Stamps 'How-To' + version 0.9.29 Advanced Stamps 'How-To'

Copyright © 2006-2022 by Albert Cahalan and others; see AUTHORS.txt.
diff --git a/docs/en/html/ENVVARS.html b/docs/en/html/ENVVARS.html index a96b41c83..d46cb82a1 100644 --- a/docs/en/html/ENVVARS.html +++ b/docs/en/html/ENVVARS.html @@ -17,7 +17,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.28
+ version 0.9.29
Environment Variables Documentation

diff --git a/docs/en/html/EXTENDING.html b/docs/en/html/EXTENDING.html index abee035f2..3bd7705ab 100644 --- a/docs/en/html/EXTENDING.html +++ b/docs/en/html/EXTENDING.html @@ -90,7 +90,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.28 + version 0.9.29

Copyright © 2002-2022 by various contributors; see AUTHORS.txt.
diff --git a/docs/en/html/FAQ.html b/docs/en/html/FAQ.html index 270c86245..441070c2e 100644 --- a/docs/en/html/FAQ.html +++ b/docs/en/html/FAQ.html @@ -17,7 +17,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.28 Frequently Asked Questions + version 0.9.29 Frequently Asked Questions

Copyright © 2002-2022 by various contributors; see AUTHORS.txt.
diff --git a/docs/en/html/INSTALL.html b/docs/en/html/INSTALL.html index 0ec955ced..e1bc6c729 100644 --- a/docs/en/html/INSTALL.html +++ b/docs/en/html/INSTALL.html @@ -87,7 +87,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.28
+ version 0.9.29
Installation Documentation

diff --git a/docs/en/html/OPTIONS.html b/docs/en/html/OPTIONS.html index f122b8a25..3750a0612 100644 --- a/docs/en/html/OPTIONS.html +++ b/docs/en/html/OPTIONS.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.28 + version 0.9.29

Options Documentation

diff --git a/docs/en/html/PNG.html b/docs/en/html/PNG.html index 963a850a7..ff8c4f100 100644 --- a/docs/en/html/PNG.html +++ b/docs/en/html/PNG.html @@ -87,7 +87,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.28
+ version 0.9.29
PNG Documentation

diff --git a/docs/en/html/README.html b/docs/en/html/README.html index 074da9633..aee310dbb 100644 --- a/docs/en/html/README.html +++ b/docs/en/html/README.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.28 + version 0.9.29

A simple drawing program for children

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

- June 4, 2022

+ June 14, 2022


- version 0.9.28
+ version 0.9.29
Signals Documentation

diff --git a/docs/en/html/SVG.html b/docs/en/html/SVG.html index 3a1ef3f86..4206cc636 100644 --- a/docs/en/html/SVG.html +++ b/docs/en/html/SVG.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.28
+ version 0.9.29
SVG Documentation

diff --git a/docs/es_ES.UTF-8/ADVANCED-STAMPS-HOWTO.txt b/docs/es_ES.UTF-8/ADVANCED-STAMPS-HOWTO.txt index fadcf2032..48de37623 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.28 Advanced Stamps 'How-To' + versión 0.9.29 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 9149e9882..ef8507b12 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.28 + versión 0.9.29 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 1f882e953..460c16145 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.28 + versión 0.9.29 Copyright © 2002-2022 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 bfbe10d07..5da8b5ad4 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.28 Frequently Asked Questions + versión 0.9.29 Frequently Asked Questions Copyright © 2002-2022 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 38277b087..d8d68f95e 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.28 + versión 0.9.29 Installation Documentation Copyright © 2002-2022 by various contributors; see AUTHORS.txt. diff --git a/docs/es_ES.UTF-8/OPTIONS.txt b/docs/es_ES.UTF-8/OPTIONS.txt index b106be808..12d8e5218 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.28 + versión 0.9.29 Options Documentation diff --git a/docs/es_ES.UTF-8/PNG.txt b/docs/es_ES.UTF-8/PNG.txt index 1cee5d085..585eb74d1 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.28 + versión 0.9.29 PNG Documentation Copyright © 2007-2022 by various contributors; see AUTHORS.txt. diff --git a/docs/es_ES.UTF-8/README.txt b/docs/es_ES.UTF-8/README.txt index 9304f97e0..1ba3c87f1 100644 --- a/docs/es_ES.UTF-8/README.txt +++ b/docs/es_ES.UTF-8/README.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.28 + versión 0.9.29 A simple drawing program for children @@ -8,7 +8,7 @@ @TuxPaintTweets on Twitter Tux Paint on Tumblr - junio 4, 2022 + junio 14, 2022 +----------------------------------------------------+ |Table of Contents | diff --git a/docs/es_ES.UTF-8/SIGNALS.txt b/docs/es_ES.UTF-8/SIGNALS.txt index 6092ffba4..915cda2ac 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.28 + versión 0.9.29 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 4e4644748..086d2d431 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.28 + versión 0.9.29 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 d4284a565..df5e5428f 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.28 Advanced Stamps 'How-To' + versión 0.9.29 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 8737f1bd7..cb1dc7b6c 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.28
+ versión 0.9.29
Environment Variables Documentation

diff --git a/docs/es_ES.UTF-8/html/EXTENDING.html b/docs/es_ES.UTF-8/html/EXTENDING.html index d45e502bb..24d6cd004 100644 --- a/docs/es_ES.UTF-8/html/EXTENDING.html +++ b/docs/es_ES.UTF-8/html/EXTENDING.html @@ -90,7 +90,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.28 + versión 0.9.29

Copyright © 2002-2022 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 5f2acb853..713234447 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.28 Frequently Asked Questions + versión 0.9.29 Frequently Asked Questions

Copyright © 2002-2022 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 67fdbf2d3..7536df3fb 100644 --- a/docs/es_ES.UTF-8/html/INSTALL.html +++ b/docs/es_ES.UTF-8/html/INSTALL.html @@ -87,7 +87,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.28
+ versión 0.9.29
Installation Documentation

diff --git a/docs/es_ES.UTF-8/html/OPTIONS.html b/docs/es_ES.UTF-8/html/OPTIONS.html index 72d132f9b..03262de18 100644 --- a/docs/es_ES.UTF-8/html/OPTIONS.html +++ b/docs/es_ES.UTF-8/html/OPTIONS.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.28 + versión 0.9.29

Options Documentation

diff --git a/docs/es_ES.UTF-8/html/PNG.html b/docs/es_ES.UTF-8/html/PNG.html index 591a7f3fd..d4cc306b4 100644 --- a/docs/es_ES.UTF-8/html/PNG.html +++ b/docs/es_ES.UTF-8/html/PNG.html @@ -87,7 +87,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.28
+ versión 0.9.29
PNG Documentation

diff --git a/docs/es_ES.UTF-8/html/README.html b/docs/es_ES.UTF-8/html/README.html index a7529c16c..ee18dc587 100644 --- a/docs/es_ES.UTF-8/html/README.html +++ b/docs/es_ES.UTF-8/html/README.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.28 + versión 0.9.29

A simple drawing program for children

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

- junio 4, 2022

+ junio 14, 2022


- versión 0.9.28
+ versión 0.9.29
Signals Documentation

diff --git a/docs/es_ES.UTF-8/html/SVG.html b/docs/es_ES.UTF-8/html/SVG.html index b92204417..1c2417f24 100644 --- a/docs/es_ES.UTF-8/html/SVG.html +++ b/docs/es_ES.UTF-8/html/SVG.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.28
+ versión 0.9.29
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 6fde908a8..988c96c89 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.28 'Guide pratique" pour les tampons de haute qualité + version 0.9.29 '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 5d81f744f..5929edda6 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.28 + version 0.9.29 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 4b7556ccf..17b90bab4 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.28 + version 0.9.29 Copyright © 2002-2022 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 51fbd2a63..cd6d2a59c 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.28 Questions fréquemment posées + version 0.9.29 Questions fréquemment posées Copyright © 2002-2022 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 188b1f894..f15d5b110 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.28 + version 0.9.29 Documentation sur l'installation Copyright © 2002-2022 by divers contributeurs; see AUTHORS.txt. diff --git a/docs/fr_FR.UTF-8/OPTIONS.txt b/docs/fr_FR.UTF-8/OPTIONS.txt index 572bc4dde..3be5b9085 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.28 + version 0.9.29 Documentation sur les options diff --git a/docs/fr_FR.UTF-8/PNG.txt b/docs/fr_FR.UTF-8/PNG.txt index 5090ddb61..ee3f37a00 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.28 + version 0.9.29 Documentation sur PNG pour Tux Paint Copyright © 2007-2022 by divers contributeurs; see AUTHORS.txt. diff --git a/docs/fr_FR.UTF-8/README.txt b/docs/fr_FR.UTF-8/README.txt index cab78b2b4..b1a036bf9 100644 --- a/docs/fr_FR.UTF-8/README.txt +++ b/docs/fr_FR.UTF-8/README.txt @@ -1,5 +1,5 @@ Tux Paint - version 0.9.28 + version 0.9.29 Un programme simple pour les enfants @@ -8,7 +8,7 @@ @TuxPaintTweets on Twitter Tux Paint on Tumblr - juin 4, 2022 + juin 14, 2022 +----------------------------------------------------------+ |Table des matières | diff --git a/docs/fr_FR.UTF-8/SIGNALS.txt b/docs/fr_FR.UTF-8/SIGNALS.txt index e63454110..f194c98c3 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.28 + version 0.9.29 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 be91cf3b7..9846b98e9 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.28 + version 0.9.29 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 317bb55a5..e5b7390c2 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.28 'Guide pratique" pour les tampons de haute qualité + version 0.9.29 '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 e6edaa41d..7f32dcba9 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.28
+ version 0.9.29
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 0bdeaa36f..8f8dfceff 100644 --- a/docs/fr_FR.UTF-8/html/EXTENDING.html +++ b/docs/fr_FR.UTF-8/html/EXTENDING.html @@ -90,7 +90,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.28 + version 0.9.29

Copyright © 2002-2022 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 9a72de75a..68155cec1 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.28 Questions fréquemment posées + version 0.9.29 Questions fréquemment posées

Copyright © 2002-2022 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 cf484a8dc..b8573e41e 100644 --- a/docs/fr_FR.UTF-8/html/INSTALL.html +++ b/docs/fr_FR.UTF-8/html/INSTALL.html @@ -87,7 +87,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.28
+ version 0.9.29
Documentation sur l'installation

diff --git a/docs/fr_FR.UTF-8/html/OPTIONS.html b/docs/fr_FR.UTF-8/html/OPTIONS.html index efcfc0e96..883e2c2df 100644 --- a/docs/fr_FR.UTF-8/html/OPTIONS.html +++ b/docs/fr_FR.UTF-8/html/OPTIONS.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.28 + version 0.9.29

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 74018c9dd..9691cc238 100644 --- a/docs/fr_FR.UTF-8/html/PNG.html +++ b/docs/fr_FR.UTF-8/html/PNG.html @@ -87,7 +87,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.28
+ version 0.9.29
Documentation sur PNG pour Tux Paint

diff --git a/docs/fr_FR.UTF-8/html/README.html b/docs/fr_FR.UTF-8/html/README.html index 3e57aec46..bf56ba41b 100644 --- a/docs/fr_FR.UTF-8/html/README.html +++ b/docs/fr_FR.UTF-8/html/README.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.28 + version 0.9.29

Un programme simple pour les enfants

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

- juin 4, 2022

+ juin 14, 2022


- version 0.9.28
+ version 0.9.29
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 0872ab218..22ccfaf05 100644 --- a/docs/fr_FR.UTF-8/html/SVG.html +++ b/docs/fr_FR.UTF-8/html/SVG.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- version 0.9.28
+ version 0.9.29
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 af7322931..f1a8c6592 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.28 «Como facer» os selos avanzados + versión 0.9.29 «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 39e9d30cb..99a7186b3 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.28 + versión 0.9.29 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 2ace5a987..1c19db027 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.28 + versión 0.9.29 Copyright © 2002-2022 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 184989ae7..9b1a763ef 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.28 Preguntas máis frecuentes + versión 0.9.29 Preguntas máis frecuentes Copyright © 2002-2022 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 f75b9985c..5099bbea4 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.28 + versión 0.9.29 Documentación da instalación Copyright © 2002-2022 by varios colaboradores; see AUTHORS.txt. diff --git a/docs/gl_ES.UTF-8/OPTIONS.txt b/docs/gl_ES.UTF-8/OPTIONS.txt index acca59bcf..451db5a73 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.28 + versión 0.9.29 Documentación de opcións diff --git a/docs/gl_ES.UTF-8/PNG.txt b/docs/gl_ES.UTF-8/PNG.txt index c65a38ed6..7b68df219 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.28 + versión 0.9.29 Documentación PNG Copyright © 2007-2022 by varios colaboradores; see AUTHORS.txt. diff --git a/docs/gl_ES.UTF-8/README.txt b/docs/gl_ES.UTF-8/README.txt index b432e3dca..75fb30818 100644 --- a/docs/gl_ES.UTF-8/README.txt +++ b/docs/gl_ES.UTF-8/README.txt @@ -1,5 +1,5 @@ Tux Paint - versión 0.9.28 + versión 0.9.29 Un sinxelo programa de debuxo para cativos @@ -8,7 +8,7 @@ @TuxPaintTweets on Twitter Tux Paint on Tumblr - 4 de Xuño de 2022 + 14 de Xuño de 2022 +-----------------------------------------------------------+ |Índice | diff --git a/docs/gl_ES.UTF-8/SIGNALS.txt b/docs/gl_ES.UTF-8/SIGNALS.txt index 715b7bb20..b1e54cf08 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.28 + versión 0.9.29 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 51e045d8d..99b1cd73e 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.28 + versión 0.9.29 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 3c8580cf6..f75e428b3 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.28 «Como facer» os selos avanzados + versión 0.9.29 «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 c81bdbdb6..532614dd6 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.28
+ versión 0.9.29
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 62953a6a0..1b559e57d 100644 --- a/docs/gl_ES.UTF-8/html/EXTENDING.html +++ b/docs/gl_ES.UTF-8/html/EXTENDING.html @@ -90,7 +90,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.28 + versión 0.9.29

Copyright © 2002-2022 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 bd74f23d4..7ddc89101 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.28 Preguntas máis frecuentes + versión 0.9.29 Preguntas máis frecuentes

Copyright © 2002-2022 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 c67f2f790..80f7416ae 100644 --- a/docs/gl_ES.UTF-8/html/INSTALL.html +++ b/docs/gl_ES.UTF-8/html/INSTALL.html @@ -87,7 +87,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.28
+ versión 0.9.29
Documentación da instalación

diff --git a/docs/gl_ES.UTF-8/html/OPTIONS.html b/docs/gl_ES.UTF-8/html/OPTIONS.html index 26f956a14..03774d822 100644 --- a/docs/gl_ES.UTF-8/html/OPTIONS.html +++ b/docs/gl_ES.UTF-8/html/OPTIONS.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.28 + versión 0.9.29

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 9f8685499..e793d2f63 100644 --- a/docs/gl_ES.UTF-8/html/PNG.html +++ b/docs/gl_ES.UTF-8/html/PNG.html @@ -87,7 +87,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.28
+ versión 0.9.29
Documentación PNG

diff --git a/docs/gl_ES.UTF-8/html/README.html b/docs/gl_ES.UTF-8/html/README.html index 5adc872b9..1081458d4 100644 --- a/docs/gl_ES.UTF-8/html/README.html +++ b/docs/gl_ES.UTF-8/html/README.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.28 + versión 0.9.29

Un sinxelo programa de debuxo para cativos

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

- 4 de Xuño de 2022

+ 14 de Xuño de 2022


- versión 0.9.28
+ versión 0.9.29
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 a80aeba35..32d2d98cc 100644 --- a/docs/gl_ES.UTF-8/html/SVG.html +++ b/docs/gl_ES.UTF-8/html/SVG.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- versión 0.9.28
+ versión 0.9.29
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 a8f71a6c3..f643625db 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.28 スタンプ作成の詳細について + バージョン 0.9.29 スタンプ作成の詳細について 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 289554a81..546cd2bad 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.28 + バージョン 0.9.29 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 3ae63e98e..06b019146 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.28 + バージョン 0.9.29 Copyright © 2002-2022 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 90854d749..91f21b1a2 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.28 Frequently Asked Questions + バージョン 0.9.29 Frequently Asked Questions Copyright © 2002-2022 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 0810e9bbb..3203c709c 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.28 + バージョン 0.9.29 Installation Documentation Copyright © 2002-2022 by various contributors; AUTHORS.txt 参照. diff --git a/docs/ja_JP.UTF-8/OPTIONS.txt b/docs/ja_JP.UTF-8/OPTIONS.txt index 12df99e6f..4428019b3 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.28 + バージョン 0.9.29 各種設定について diff --git a/docs/ja_JP.UTF-8/PNG.txt b/docs/ja_JP.UTF-8/PNG.txt index 2ab982410..81581d29d 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.28 + バージョン 0.9.29 PNG Documentation Copyright © 2007-2022 by various contributors; AUTHORS.txt 参照. diff --git a/docs/ja_JP.UTF-8/README.txt b/docs/ja_JP.UTF-8/README.txt index e5515ee26..a03a0498d 100644 --- a/docs/ja_JP.UTF-8/README.txt +++ b/docs/ja_JP.UTF-8/README.txt @@ -1,5 +1,5 @@ Tux Paint - バージョン 0.9.28 + バージョン 0.9.29 子供向けのシンプルなお絵かきプログラム @@ -8,7 +8,7 @@ @TuxPaintTweets(ツイッター) Tux Paint(Tumblr) - 2022年6月 4日 + 2022年6月14日 +-------------------------------------+ |目次 | diff --git a/docs/ja_JP.UTF-8/SIGNALS.txt b/docs/ja_JP.UTF-8/SIGNALS.txt index bf5372209..8a9c1029b 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.28 + バージョン 0.9.29 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 101156338..c0e77fa4c 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.28 + バージョン 0.9.29 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 829f7b923..c4d23e171 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.28 スタンプ作成の詳細について + バージョン 0.9.29 スタンプ作成の詳細について

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 0ba2527cc..e292982ab 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.28
+ バージョン 0.9.29
Environment Variables Documentation

diff --git a/docs/ja_JP.UTF-8/html/EXTENDING.html b/docs/ja_JP.UTF-8/html/EXTENDING.html index 3f283e6b1..5e4120097 100644 --- a/docs/ja_JP.UTF-8/html/EXTENDING.html +++ b/docs/ja_JP.UTF-8/html/EXTENDING.html @@ -90,7 +90,7 @@ width="205" height="210" alt="Tux Paint">
- バージョン 0.9.28 + バージョン 0.9.29

Copyright © 2002-2022 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 c586478fa..416d0ef09 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.28 Frequently Asked Questions + バージョン 0.9.29 Frequently Asked Questions

Copyright © 2002-2022 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 29cd9f4c8..5116516a8 100644 --- a/docs/ja_JP.UTF-8/html/INSTALL.html +++ b/docs/ja_JP.UTF-8/html/INSTALL.html @@ -87,7 +87,7 @@ width="205" height="210" alt="Tux Paint">
- バージョン 0.9.28
+ バージョン 0.9.29
Installation Documentation

diff --git a/docs/ja_JP.UTF-8/html/OPTIONS.html b/docs/ja_JP.UTF-8/html/OPTIONS.html index ac0801e04..e74fd4d46 100644 --- a/docs/ja_JP.UTF-8/html/OPTIONS.html +++ b/docs/ja_JP.UTF-8/html/OPTIONS.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- バージョン 0.9.28 + バージョン 0.9.29

各種設定について

diff --git a/docs/ja_JP.UTF-8/html/PNG.html b/docs/ja_JP.UTF-8/html/PNG.html index 08c876b66..d1b868042 100644 --- a/docs/ja_JP.UTF-8/html/PNG.html +++ b/docs/ja_JP.UTF-8/html/PNG.html @@ -87,7 +87,7 @@ width="205" height="210" alt="Tux Paint">
- バージョン 0.9.28
+ バージョン 0.9.29
PNG Documentation

diff --git a/docs/ja_JP.UTF-8/html/README.html b/docs/ja_JP.UTF-8/html/README.html index 1133c3a41..f76845c20 100644 --- a/docs/ja_JP.UTF-8/html/README.html +++ b/docs/ja_JP.UTF-8/html/README.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- バージョン 0.9.28 + バージョン 0.9.29

子供向けのシンプルなお絵かきプログラム

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

- 2022年6月 4日

+ 2022年6月14日


- バージョン 0.9.28
+ バージョン 0.9.29
Signals Documentation

diff --git a/docs/ja_JP.UTF-8/html/SVG.html b/docs/ja_JP.UTF-8/html/SVG.html index 4ce80b36d..457397d56 100644 --- a/docs/ja_JP.UTF-8/html/SVG.html +++ b/docs/ja_JP.UTF-8/html/SVG.html @@ -89,7 +89,7 @@ width="205" height="210" alt="Tux Paint">
- バージョン 0.9.28
+ バージョン 0.9.29
SVG Documentation

diff --git a/magic/magic-docs/en/html/blinds.html b/magic/magic-docs/en/html/blinds.html index 632a3bf93..06796a4e2 100644 --- a/magic/magic-docs/en/html/blinds.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/blocks.html b/magic/magic-docs/en/html/blocks.html index 3c626298e..9fe8cd481 100644 --- a/magic/magic-docs/en/html/blocks.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/blur.html b/magic/magic-docs/en/html/blur.html index d0ed140c3..3c567c378 100644 --- a/magic/magic-docs/en/html/blur.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/bricks.html b/magic/magic-docs/en/html/bricks.html index e06fa41fa..9b5cdf234 100644 --- a/magic/magic-docs/en/html/bricks.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/calligraphy.html b/magic/magic-docs/en/html/calligraphy.html index 3c7379d0f..22a2ace7d 100644 --- a/magic/magic-docs/en/html/calligraphy.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/cartoon.html b/magic/magic-docs/en/html/cartoon.html index edcd420fb..1b0508d06 100644 --- a/magic/magic-docs/en/html/cartoon.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/chalk.html b/magic/magic-docs/en/html/chalk.html index f010400ea..19fd741fc 100644 --- a/magic/magic-docs/en/html/chalk.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/checkerboard.html b/magic/magic-docs/en/html/checkerboard.html index 0c3967039..0c77dfb04 100644 --- a/magic/magic-docs/en/html/checkerboard.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/clone.html b/magic/magic-docs/en/html/clone.html index 04c522244..9835c8ab0 100644 --- a/magic/magic-docs/en/html/clone.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/color_and_white.html b/magic/magic-docs/en/html/color_and_white.html index 63b0dc2a6..9c4da60a8 100644 --- a/magic/magic-docs/en/html/color_and_white.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

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

This shifts the colors in your picture.


-

Tux Paint 0.9.28

+

Tux Paint 0.9.29

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

Throw confetti around your picture!


-

Tux Paint 0.9.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/darken.html b/magic/magic-docs/en/html/darken.html index b52d350d0..c8403837c 100644 --- a/magic/magic-docs/en/html/darken.html +++ b/magic/magic-docs/en/html/darken.html @@ -10,5 +10,5 @@ Bill Kendrick <bill@newbreedsoftwa

This dakrens 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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/distortion.html b/magic/magic-docs/en/html/distortion.html index eeaa3823a..a7b5dfd82 100644 --- a/magic/magic-docs/en/html/distortion.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/drip.html b/magic/magic-docs/en/html/drip.html index f4a05c8bd..bcb05b657 100644 --- a/magic/magic-docs/en/html/drip.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/edges.html b/magic/magic-docs/en/html/edges.html index 46ffb4108..4fc121b38 100644 --- a/magic/magic-docs/en/html/edges.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/emboss.html b/magic/magic-docs/en/html/emboss.html index 741372732..e3c9300c5 100644 --- a/magic/magic-docs/en/html/emboss.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/fisheye.html b/magic/magic-docs/en/html/fisheye.html index 5f3483ad3..a13907333 100644 --- a/magic/magic-docs/en/html/fisheye.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/flip.html b/magic/magic-docs/en/html/flip.html index bcad18845..e9165f02f 100644 --- a/magic/magic-docs/en/html/flip.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/flower.html b/magic/magic-docs/en/html/flower.html index 8de5298df..f7082e71d 100644 --- a/magic/magic-docs/en/html/flower.html +++ b/magic/magic-docs/en/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 drawe 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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/foam.html b/magic/magic-docs/en/html/foam.html index d52e662c1..64a544bc4 100644 --- a/magic/magic-docs/en/html/foam.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/fold.html b/magic/magic-docs/en/html/fold.html index 7f2122ce8..76cc965d5 100644 --- a/magic/magic-docs/en/html/fold.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/fretwork.html b/magic/magic-docs/en/html/fretwork.html index 995577b85..3c63e3d0e 100644 --- a/magic/magic-docs/en/html/fretwork.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/glass_tile.html b/magic/magic-docs/en/html/glass_tile.html index f4ce4b89a..ba78877eb 100644 --- a/magic/magic-docs/en/html/glass_tile.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/grass.html b/magic/magic-docs/en/html/grass.html index c3507bf12..ce7da68b1 100644 --- a/magic/magic-docs/en/html/grass.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/halftone.html b/magic/magic-docs/en/html/halftone.html index 4f6c76dd9..ac5ac1708 100644 --- a/magic/magic-docs/en/html/halftone.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/hexagon_mosaic.html b/magic/magic-docs/en/html/hexagon_mosaic.html index 3b97c049d..94741f5e0 100644 --- a/magic/magic-docs/en/html/hexagon_mosaic.html +++ b/magic/magic-docs/en/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.28

+

Tux Paint 0.9.29

\ No newline at end of file diff --git a/magic/magic-docs/en/html/index.html b/magic/magic-docs/en/html/index.html index 42e8cdca4..eda58c733 100644 --- a/magic/magic-docs/en/html/index.html +++ b/magic/magic-docs/en/html/index.html @@ -104,5 +104,5 @@
  • Tornado

  • -

    Tux Paint 0.9.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/irregular_mosaic.html b/magic/magic-docs/en/html/irregular_mosaic.html index 2110beaae..cb6ad9e49 100644 --- a/magic/magic-docs/en/html/irregular_mosaic.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/kaleidoscope.html b/magic/magic-docs/en/html/kaleidoscope.html index 276c490e5..feb7a7187 100644 --- a/magic/magic-docs/en/html/kaleidoscope.html +++ b/magic/magic-docs/en/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.


    -

    Tux Paint 0.9.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/light.html b/magic/magic-docs/en/html/light.html index 0abd12b86..6d484e5b0 100644 --- a/magic/magic-docs/en/html/light.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/lighten.html b/magic/magic-docs/en/html/lighten.html index 8dfd04c3b..b9f310f04 100644 --- a/magic/magic-docs/en/html/lighten.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/lightning.html b/magic/magic-docs/en/html/lightning.html index 63479e6c4..d6438354b 100644 --- a/magic/magic-docs/en/html/lightning.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/metal_paint.html b/magic/magic-docs/en/html/metal_paint.html index 8d4539e10..b50e3a224 100644 --- a/magic/magic-docs/en/html/metal_paint.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/mirror.html b/magic/magic-docs/en/html/mirror.html index 529e7184e..bd6c21991 100644 --- a/magic/magic-docs/en/html/mirror.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/mosaic.html b/magic/magic-docs/en/html/mosaic.html index 51e2478da..5ff4bc32d 100644 --- a/magic/magic-docs/en/html/mosaic.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/negative.html b/magic/magic-docs/en/html/negative.html index 9147a1712..392cef4b8 100644 --- a/magic/magic-docs/en/html/negative.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

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

    Add random noise and static to your picture.


    -

    Tux Paint 0.9.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/opposite.html b/magic/magic-docs/en/html/opposite.html index 9c08a958f..307518105 100644 --- a/magic/magic-docs/en/html/opposite.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/panels.html b/magic/magic-docs/en/html/panels.html index 47c2d2fe3..925ce2914 100644 --- a/magic/magic-docs/en/html/panels.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/pattern.html b/magic/magic-docs/en/html/pattern.html index 70dede22a..37bd47c20 100644 --- a/magic/magic-docs/en/html/pattern.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/perspective.html b/magic/magic-docs/en/html/perspective.html index 27cd73773..e2fec5d57 100644 --- a/magic/magic-docs/en/html/perspective.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/picasso.html b/magic/magic-docs/en/html/picasso.html index 6a948eb72..fca954684 100644 --- a/magic/magic-docs/en/html/picasso.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/pixels.html b/magic/magic-docs/en/html/pixels.html index ee3b9e8a4..99b4a5d36 100644 --- a/magic/magic-docs/en/html/pixels.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/puzzle.html b/magic/magic-docs/en/html/puzzle.html index 4b6ed329f..9f5304ffe 100644 --- a/magic/magic-docs/en/html/puzzle.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/rails.html b/magic/magic-docs/en/html/rails.html index 04971a95d..d20576f51 100644 --- a/magic/magic-docs/en/html/rails.html +++ b/magic/magic-docs/en/html/rails.html @@ -12,5 +12,5 @@ Bill Kendrick <bill@newbreedsoftwa

    Draw connecting locomotive train rails on your picture.


    -

    Tux Paint 0.9.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/rain.html b/magic/magic-docs/en/html/rain.html index b4a0c7306..15fc85268 100644 --- a/magic/magic-docs/en/html/rain.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/rainbow.html b/magic/magic-docs/en/html/rainbow.html index a04699eb4..4147914e9 100644 --- a/magic/magic-docs/en/html/rainbow.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/real_rainbow.html b/magic/magic-docs/en/html/real_rainbow.html index c288119a8..253159453 100644 --- a/magic/magic-docs/en/html/real_rainbow.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/reflection.html b/magic/magic-docs/en/html/reflection.html index ab75fb732..9a7e3db58 100644 --- a/magic/magic-docs/en/html/reflection.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/ripples.html b/magic/magic-docs/en/html/ripples.html index 5a34b493a..4f420cf5c 100644 --- a/magic/magic-docs/en/html/ripples.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/rosette.html b/magic/magic-docs/en/html/rosette.html index 819615364..55fb279a1 100644 --- a/magic/magic-docs/en/html/rosette.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/roygbiv_rainbow.html b/magic/magic-docs/en/html/roygbiv_rainbow.html index 190d0218f..3256de8af 100644 --- a/magic/magic-docs/en/html/roygbiv_rainbow.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/rush.html b/magic/magic-docs/en/html/rush.html index ae51d62d3..67ef8a281 100644 --- a/magic/magic-docs/en/html/rush.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/sharpen.html b/magic/magic-docs/en/html/sharpen.html index 915ba397e..b99ef5380 100644 --- a/magic/magic-docs/en/html/sharpen.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/shift.html b/magic/magic-docs/en/html/shift.html index 937789f59..a0f533e14 100644 --- a/magic/magic-docs/en/html/shift.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/silhouette.html b/magic/magic-docs/en/html/silhouette.html index 1bc229bba..b25a03add 100644 --- a/magic/magic-docs/en/html/silhouette.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/smooth_rainbow.html b/magic/magic-docs/en/html/smooth_rainbow.html index 71afe2774..6001e3959 100644 --- a/magic/magic-docs/en/html/smooth_rainbow.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/smudge.html b/magic/magic-docs/en/html/smudge.html index 17bfaa2ca..30ffa0d2c 100644 --- a/magic/magic-docs/en/html/smudge.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/snow_ball.html b/magic/magic-docs/en/html/snow_ball.html index 2da8dcbb0..7a102c8e6 100644 --- a/magic/magic-docs/en/html/snow_ball.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/snow_flake.html b/magic/magic-docs/en/html/snow_flake.html index b6b7b455d..5b9a398e8 100644 --- a/magic/magic-docs/en/html/snow_flake.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/square_mosaic.html b/magic/magic-docs/en/html/square_mosaic.html index 33937f1ef..7ab1cd331 100644 --- a/magic/magic-docs/en/html/square_mosaic.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/stretch.html b/magic/magic-docs/en/html/stretch.html index a7459c3b8..7a1968e5c 100644 --- a/magic/magic-docs/en/html/stretch.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/string_corner.html b/magic/magic-docs/en/html/string_corner.html index 28f9a3ba8..7e47052f8 100644 --- a/magic/magic-docs/en/html/string_corner.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/string_edges.html b/magic/magic-docs/en/html/string_edges.html index 74fdc9119..893a7c6c2 100644 --- a/magic/magic-docs/en/html/string_edges.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/string_v.html b/magic/magic-docs/en/html/string_v.html index 166a62623..4980e7685 100644 --- a/magic/magic-docs/en/html/string_v.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/symmetry_left_right.html b/magic/magic-docs/en/html/symmetry_left_right.html index 3a6670df9..1ef348173 100644 --- a/magic/magic-docs/en/html/symmetry_left_right.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/symmetry_up_down.html b/magic/magic-docs/en/html/symmetry_up_down.html index 38dacecf0..c82d866ad 100644 --- a/magic/magic-docs/en/html/symmetry_up_down.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/tiles.html b/magic/magic-docs/en/html/tiles.html index a3ce09ca2..4568963b9 100644 --- a/magic/magic-docs/en/html/tiles.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/tilezoom.html b/magic/magic-docs/en/html/tilezoom.html index 7bf9d9b41..5766ec53f 100644 --- a/magic/magic-docs/en/html/tilezoom.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/tint.html b/magic/magic-docs/en/html/tint.html index 43a817959..90e4d4b88 100644 --- a/magic/magic-docs/en/html/tint.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/toothpaste.html b/magic/magic-docs/en/html/toothpaste.html index 4a74a2649..7f83590fb 100644 --- a/magic/magic-docs/en/html/toothpaste.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/tornado.html b/magic/magic-docs/en/html/tornado.html index e9de0adc1..f22173b85 100644 --- a/magic/magic-docs/en/html/tornado.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/tv.html b/magic/magic-docs/en/html/tv.html index a3e5471ce..a12a09547 100644 --- a/magic/magic-docs/en/html/tv.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/wavelets.html b/magic/magic-docs/en/html/wavelets.html index ecf4044c9..73d13b979 100644 --- a/magic/magic-docs/en/html/wavelets.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/waves.html b/magic/magic-docs/en/html/waves.html index 3766f1485..717b3b8a3 100644 --- a/magic/magic-docs/en/html/waves.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/wet_paint.html b/magic/magic-docs/en/html/wet_paint.html index 55a2cc64f..65191811a 100644 --- a/magic/magic-docs/en/html/wet_paint.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/xor_colors.html b/magic/magic-docs/en/html/xor_colors.html index 935c9f19c..68ad5a12b 100644 --- a/magic/magic-docs/en/html/xor_colors.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/magic/magic-docs/en/html/zoom.html b/magic/magic-docs/en/html/zoom.html index f86e90e29..4a0042515 100644 --- a/magic/magic-docs/en/html/zoom.html +++ b/magic/magic-docs/en/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.28

    +

    Tux Paint 0.9.29

    \ 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 632a3bf93..06796a4e2 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.28

    +

    Tux Paint 0.9.29

    \ 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 3c626298e..9fe8cd481 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.28

    +

    Tux Paint 0.9.29

    \ 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 d0ed140c3..3c567c378 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.28

    +

    Tux Paint 0.9.29

    \ 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 e06fa41fa..9b5cdf234 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.28

    +

    Tux Paint 0.9.29

    \ 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 3c7379d0f..22a2ace7d 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.28

    +

    Tux Paint 0.9.29

    \ 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 edcd420fb..1b0508d06 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.28

    +

    Tux Paint 0.9.29

    \ 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 f010400ea..19fd741fc 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.28

    +

    Tux Paint 0.9.29

    \ 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 0c3967039..0c77dfb04 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.28

    +

    Tux Paint 0.9.29

    \ 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 04c522244..9835c8ab0 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.28

    +

    Tux Paint 0.9.29

    \ 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 63b0dc2a6..9c4da60a8 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.28

    +

    Tux Paint 0.9.29

    \ 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 a0cd8c7d5..2e7ac5f9a 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.28

    +

    Tux Paint 0.9.29

    \ 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 4fdd85d5f..ad4f7ac40 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.28

    +

    Tux Paint 0.9.29

    \ 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 b52d350d0..c8403837c 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 dakrens 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.28

    +

    Tux Paint 0.9.29

    \ 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 eeaa3823a..a7b5dfd82 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.28

    +

    Tux Paint 0.9.29

    \ 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 f4a05c8bd..bcb05b657 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.28

    +

    Tux Paint 0.9.29

    \ 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 46ffb4108..4fc121b38 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.28

    +

    Tux Paint 0.9.29

    \ 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 741372732..e3c9300c5 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.28

    +

    Tux Paint 0.9.29

    \ 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 5f3483ad3..a13907333 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.28

    +

    Tux Paint 0.9.29

    \ 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 bcad18845..e9165f02f 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.28

    +

    Tux Paint 0.9.29

    \ 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 8de5298df..f7082e71d 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 drawe 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.28

    +

    Tux Paint 0.9.29

    \ 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 d52e662c1..64a544bc4 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.28

    +

    Tux Paint 0.9.29

    \ 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 7f2122ce8..76cc965d5 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.28

    +

    Tux Paint 0.9.29

    \ 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 995577b85..3c63e3d0e 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.28

    +

    Tux Paint 0.9.29

    \ 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 f4ce4b89a..ba78877eb 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.28

    +

    Tux Paint 0.9.29

    \ 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 c3507bf12..ce7da68b1 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.28

    +

    Tux Paint 0.9.29

    \ 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 4f6c76dd9..ac5ac1708 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.28

    +

    Tux Paint 0.9.29

    \ 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 3b97c049d..94741f5e0 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.28

    +

    Tux Paint 0.9.29

    \ 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 a7d750606..230394a56 100644 --- a/magic/magic-docs/es_ES.UTF-8/html/index.html +++ b/magic/magic-docs/es_ES.UTF-8/html/index.html @@ -104,5 +104,5 @@
  • Tornado

  • -

    Tux Paint 0.9.28

    +

    Tux Paint 0.9.29

    \ 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 2110beaae..cb6ad9e49 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.28

    +

    Tux Paint 0.9.29

    \ 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 276c490e5..feb7a7187 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.


    -

    Tux Paint 0.9.28

    +

    Tux Paint 0.9.29

    \ 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 0abd12b86..6d484e5b0 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.28

    +

    Tux Paint 0.9.29

    \ 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 8dfd04c3b..b9f310f04 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.


    -

    Tux Paint 0.9.28

    +

    Tux Paint 0.9.29

    \ 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 63479e6c4..d6438354b 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.28

    +

    Tux Paint 0.9.29

    \ 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 8d4539e10..b50e3a224 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.28

    +

    Tux Paint 0.9.29

    \ 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 529e7184e..bd6c21991 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.28

    +

    Tux Paint 0.9.29

    \ 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 51e2478da..5ff4bc32d 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.28

    +

    Tux Paint 0.9.29

    \ 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 9147a1712..392cef4b8 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.28

    +

    Tux Paint 0.9.29

    \ 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 9066b4b13..7227dad60 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.28

    +

    Tux Paint 0.9.29

    \ 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 9c08a958f..307518105 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.28

    +

    Tux Paint 0.9.29

    \ 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 47c2d2fe3..925ce2914 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.28

    +

    Tux Paint 0.9.29

    \ 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 70dede22a..37bd47c20 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.28

    +

    Tux Paint 0.9.29

    \ 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 27cd73773..e2fec5d57 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.28

    +

    Tux Paint 0.9.29

    \ 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 6a948eb72..fca954684 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.28

    +

    Tux Paint 0.9.29

    \ 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 ee3b9e8a4..99b4a5d36 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.28

    +

    Tux Paint 0.9.29

    \ 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 4b6ed329f..9f5304ffe 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.28

    +

    Tux Paint 0.9.29

    \ 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 04971a95d..d20576f51 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.28

    +

    Tux Paint 0.9.29

    \ 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 b4a0c7306..15fc85268 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.28

    +

    Tux Paint 0.9.29

    \ 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 a04699eb4..4147914e9 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.28

    +

    Tux Paint 0.9.29

    \ 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 c288119a8..253159453 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.28

    +

    Tux Paint 0.9.29

    \ 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 ab75fb732..9a7e3db58 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.28

    +

    Tux Paint 0.9.29

    \ 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 5a34b493a..4f420cf5c 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.28

    +

    Tux Paint 0.9.29

    \ 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 819615364..55fb279a1 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.28

    +

    Tux Paint 0.9.29

    \ 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 190d0218f..3256de8af 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.28

    +

    Tux Paint 0.9.29

    \ 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 ae51d62d3..67ef8a281 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.28

    +

    Tux Paint 0.9.29

    \ 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 915ba397e..b99ef5380 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.28

    +

    Tux Paint 0.9.29

    \ 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 937789f59..a0f533e14 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.28

    +

    Tux Paint 0.9.29

    \ 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 1bc229bba..b25a03add 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.28

    +

    Tux Paint 0.9.29

    \ 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 71afe2774..6001e3959 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.28

    +

    Tux Paint 0.9.29

    \ 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 17bfaa2ca..30ffa0d2c 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.28

    +

    Tux Paint 0.9.29

    \ 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 2da8dcbb0..7a102c8e6 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.28

    +

    Tux Paint 0.9.29

    \ 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 b6b7b455d..5b9a398e8 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.28

    +

    Tux Paint 0.9.29

    \ 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 33937f1ef..7ab1cd331 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.28

    +

    Tux Paint 0.9.29

    \ 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 a7459c3b8..7a1968e5c 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.28

    +

    Tux Paint 0.9.29

    \ 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 28f9a3ba8..7e47052f8 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.28

    +

    Tux Paint 0.9.29

    \ 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 74fdc9119..893a7c6c2 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.28

    +

    Tux Paint 0.9.29

    \ 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 166a62623..4980e7685 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.28

    +

    Tux Paint 0.9.29

    \ 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 3a6670df9..1ef348173 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.28

    +

    Tux Paint 0.9.29

    \ 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 38dacecf0..c82d866ad 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.28

    +

    Tux Paint 0.9.29

    \ 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 a3ce09ca2..4568963b9 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.28

    +

    Tux Paint 0.9.29

    \ 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 7bf9d9b41..5766ec53f 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.28

    +

    Tux Paint 0.9.29

    \ 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 43a817959..90e4d4b88 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.28

    +

    Tux Paint 0.9.29

    \ 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 4a74a2649..7f83590fb 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.28

    +

    Tux Paint 0.9.29

    \ 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 e9de0adc1..f22173b85 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.28

    +

    Tux Paint 0.9.29

    \ 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 a3e5471ce..a12a09547 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.28

    +

    Tux Paint 0.9.29

    \ 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 ecf4044c9..73d13b979 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.28

    +

    Tux Paint 0.9.29

    \ 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 3766f1485..717b3b8a3 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.28

    +

    Tux Paint 0.9.29

    \ 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 55a2cc64f..65191811a 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.28

    +

    Tux Paint 0.9.29

    \ 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 935c9f19c..68ad5a12b 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.28

    +

    Tux Paint 0.9.29

    \ 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 f86e90e29..4a0042515 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.28

    +

    Tux Paint 0.9.29

    \ 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 632a3bf93..06796a4e2 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.28

    +

    Tux Paint 0.9.29

    \ 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 3c626298e..9fe8cd481 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.28

    +

    Tux Paint 0.9.29

    \ 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 feb6c526a..bb741e8d9 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.28

    +

    Tux Paint 0.9.29

    \ 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 40786363c..ce4ca6bb8 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.28

    +

    Tux Paint 0.9.29

    \ 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 444cfe37f..d2b26fdc1 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.28

    +

    Tux Paint 0.9.29

    \ 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 edcd420fb..1b0508d06 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.28

    +

    Tux Paint 0.9.29

    \ 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 0fa284366..f387d6e3e 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.28

    +

    Tux Paint 0.9.29

    \ 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 d255a0262..e4802dd61 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.28

    +

    Tux Paint 0.9.29

    \ 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 04c522244..9835c8ab0 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.28

    +

    Tux Paint 0.9.29

    \ 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 63b0dc2a6..9c4da60a8 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.28

    +

    Tux Paint 0.9.29

    \ 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 a0cd8c7d5..2e7ac5f9a 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.28

    +

    Tux Paint 0.9.29

    \ 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 b613796f2..9d0e8557b 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.28

    +

    Tux Paint 0.9.29

    \ 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 9d70f1947..e7ad5ef2c 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 dakrens 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.


    -

    Tux Paint 0.9.28

    +

    Tux Paint 0.9.29

    \ 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 e899fd905..5167d9f40 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.28

    +

    Tux Paint 0.9.29

    \ 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 ce9a7514a..47a421f6e 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.28

    +

    Tux Paint 0.9.29

    \ 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 69536ca49..0fe691591 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.28

    +

    Tux Paint 0.9.29

    \ 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 267c328eb..af1652fe4 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.28

    +

    Tux Paint 0.9.29

    \ 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 d9ae1eac8..54b871407 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.28

    +

    Tux Paint 0.9.29

    \ 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 5a22cd37d..022d7a587 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.28

    +

    Tux Paint 0.9.29

    \ 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 9ce7756b5..23d626200 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 drawe 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.28

    +

    Tux Paint 0.9.29

    \ 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 2fdb75595..04892f725 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.28

    +

    Tux Paint 0.9.29

    \ 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 1fee924ec..4f6fc9482 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.28

    +

    Tux Paint 0.9.29

    \ 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 ceaac825a..317c42d48 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.28

    +

    Tux Paint 0.9.29

    \ 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 f4ce4b89a..ba78877eb 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.28

    +

    Tux Paint 0.9.29

    \ 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 7a766f468..a3b73c19b 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.28

    +

    Tux Paint 0.9.29

    \ 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 4f6c76dd9..ac5ac1708 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.28

    +

    Tux Paint 0.9.29

    \ 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 3b97c049d..94741f5e0 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.28

    +

    Tux Paint 0.9.29

    \ 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 868829b09..c68ef922f 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/index.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/index.html @@ -104,5 +104,5 @@
  • Tornade

  • -

    Tux Paint 0.9.28

    +

    Tux Paint 0.9.29

    \ 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 2110beaae..cb6ad9e49 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.28

    +

    Tux Paint 0.9.29

    \ 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 29a8c3749..8b5990cea 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.


    -

    Tux Paint 0.9.28

    +

    Tux Paint 0.9.29

    \ 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 5e73555d8..e63b5132b 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.28

    +

    Tux Paint 0.9.29

    \ 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 784991e1c..3ba66bbbc 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.


    -

    Tux Paint 0.9.28

    +

    Tux Paint 0.9.29

    \ 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 85ec38e3b..358534195 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.28

    +

    Tux Paint 0.9.29

    \ 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 54c548f29..1ac50c439 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.28

    +

    Tux Paint 0.9.29

    \ 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 0b71f4178..56ecfcb76 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.28

    +

    Tux Paint 0.9.29

    \ 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 51e2478da..5ff4bc32d 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.28

    +

    Tux Paint 0.9.29

    \ 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 9147a1712..392cef4b8 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.28

    +

    Tux Paint 0.9.29

    \ 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 9066b4b13..7227dad60 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.28

    +

    Tux Paint 0.9.29

    \ 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 9c08a958f..307518105 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.28

    +

    Tux Paint 0.9.29

    \ 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 3af2b50bd..02d15c36f 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.28

    +

    Tux Paint 0.9.29

    \ 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 221741790..7ca3e2ef9 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.28

    +

    Tux Paint 0.9.29

    \ 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 27cd73773..e2fec5d57 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.28

    +

    Tux Paint 0.9.29

    \ 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 423c3c018..14c835594 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.28

    +

    Tux Paint 0.9.29

    \ 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 42189b1fa..95140142f 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.28

    +

    Tux Paint 0.9.29

    \ 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 4b6ed329f..9f5304ffe 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.28

    +

    Tux Paint 0.9.29

    \ 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 04971a95d..d20576f51 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.28

    +

    Tux Paint 0.9.29

    \ 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 d5189bf7f..e3ce2c060 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.28

    +

    Tux Paint 0.9.29

    \ 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 3280afe32..c6c22a18c 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.28

    +

    Tux Paint 0.9.29

    \ 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 33b1d819f..93fc28a7f 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.28

    +

    Tux Paint 0.9.29

    \ 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 ab75fb732..9a7e3db58 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.28

    +

    Tux Paint 0.9.29

    \ 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 2acb6d987..762cf2870 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.28

    +

    Tux Paint 0.9.29

    \ 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 ea6cb7319..57407000a 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.28

    +

    Tux Paint 0.9.29

    \ 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 2b2a282a4..4fd682681 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.28

    +

    Tux Paint 0.9.29

    \ 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 ae51d62d3..67ef8a281 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.28

    +

    Tux Paint 0.9.29

    \ 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 2a7d3102c..0208a0da7 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.28

    +

    Tux Paint 0.9.29

    \ 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 937789f59..a0f533e14 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.28

    +

    Tux Paint 0.9.29

    \ 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 29c2a2f0b..cdd3baee5 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.28

    +

    Tux Paint 0.9.29

    \ 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 14f3745ca..5acd20c45 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.28

    +

    Tux Paint 0.9.29

    \ 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 4eaca9b25..feb3e9131 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.28

    +

    Tux Paint 0.9.29

    \ 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 98c3c3a7e..f08cf418c 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.28

    +

    Tux Paint 0.9.29

    \ 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 0dc4f9851..554f2b6dd 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.28

    +

    Tux Paint 0.9.29

    \ 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 33937f1ef..7ab1cd331 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.28

    +

    Tux Paint 0.9.29

    \ 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 a7459c3b8..7a1968e5c 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.28

    +

    Tux Paint 0.9.29

    \ 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 75b121987..f18534606 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.28

    +

    Tux Paint 0.9.29

    \ 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 707094ac7..16c291092 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.28

    +

    Tux Paint 0.9.29

    \ 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 5b934dc8d..4f00ccccb 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.28

    +

    Tux Paint 0.9.29

    \ 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 61fb5d7e3..fed038676 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.28

    +

    Tux Paint 0.9.29

    \ 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 f08f19d81..f9d2c7dad 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.28

    +

    Tux Paint 0.9.29

    \ 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 9b1415ac3..4727d1b49 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.28

    +

    Tux Paint 0.9.29

    \ 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 5c1b804f4..dadee8262 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.28

    +

    Tux Paint 0.9.29

    \ 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 46c2d16a3..ae3103774 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.28

    +

    Tux Paint 0.9.29

    \ 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 a580d6535..8b3ad3de7 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.28

    +

    Tux Paint 0.9.29

    \ 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 03ff82936..82d23f7a5 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.28

    +

    Tux Paint 0.9.29

    \ 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 a3e5471ce..a12a09547 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.28

    +

    Tux Paint 0.9.29

    \ 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 f3891b0c1..93f55558e 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.28

    +

    Tux Paint 0.9.29

    \ 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 6e135126f..0988d7923 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.28

    +

    Tux Paint 0.9.29

    \ 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 55a2cc64f..65191811a 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.28

    +

    Tux Paint 0.9.29

    \ 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 935c9f19c..68ad5a12b 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.28

    +

    Tux Paint 0.9.29

    \ 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 f86e90e29..4a0042515 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.28

    +

    Tux Paint 0.9.29

    \ 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 632a3bf93..06796a4e2 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.28

    +

    Tux Paint 0.9.29

    \ 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 3c626298e..9fe8cd481 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.28

    +

    Tux Paint 0.9.29

    \ 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 d0ed140c3..3c567c378 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.28

    +

    Tux Paint 0.9.29

    \ 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 e06fa41fa..9b5cdf234 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.28

    +

    Tux Paint 0.9.29

    \ 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 3c7379d0f..22a2ace7d 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.28

    +

    Tux Paint 0.9.29

    \ 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 edcd420fb..1b0508d06 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.28

    +

    Tux Paint 0.9.29

    \ 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 f010400ea..19fd741fc 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.28

    +

    Tux Paint 0.9.29

    \ 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 0c3967039..0c77dfb04 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.28

    +

    Tux Paint 0.9.29

    \ 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 04c522244..9835c8ab0 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.28

    +

    Tux Paint 0.9.29

    \ 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 63b0dc2a6..9c4da60a8 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.28

    +

    Tux Paint 0.9.29

    \ 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 a0cd8c7d5..2e7ac5f9a 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.28

    +

    Tux Paint 0.9.29

    \ 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 4fdd85d5f..ad4f7ac40 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.28

    +

    Tux Paint 0.9.29

    \ 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 b52d350d0..c8403837c 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 dakrens 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.28

    +

    Tux Paint 0.9.29

    \ 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 eeaa3823a..a7b5dfd82 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.28

    +

    Tux Paint 0.9.29

    \ 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 f4a05c8bd..bcb05b657 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.28

    +

    Tux Paint 0.9.29

    \ 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 46ffb4108..4fc121b38 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.28

    +

    Tux Paint 0.9.29

    \ 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 741372732..e3c9300c5 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.28

    +

    Tux Paint 0.9.29

    \ 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 5f3483ad3..a13907333 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.28

    +

    Tux Paint 0.9.29

    \ 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 bcad18845..e9165f02f 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.28

    +

    Tux Paint 0.9.29

    \ 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 8de5298df..f7082e71d 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 drawe 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.28

    +

    Tux Paint 0.9.29

    \ 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 d52e662c1..64a544bc4 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.28

    +

    Tux Paint 0.9.29

    \ 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 7f2122ce8..76cc965d5 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.28

    +

    Tux Paint 0.9.29

    \ 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 995577b85..3c63e3d0e 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.28

    +

    Tux Paint 0.9.29

    \ 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 f4ce4b89a..ba78877eb 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.28

    +

    Tux Paint 0.9.29

    \ 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 c3507bf12..ce7da68b1 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.28

    +

    Tux Paint 0.9.29

    \ 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 4f6c76dd9..ac5ac1708 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.28

    +

    Tux Paint 0.9.29

    \ 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 3b97c049d..94741f5e0 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.28

    +

    Tux Paint 0.9.29

    \ 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 a7d750606..230394a56 100644 --- a/magic/magic-docs/gl_ES.UTF-8/html/index.html +++ b/magic/magic-docs/gl_ES.UTF-8/html/index.html @@ -104,5 +104,5 @@
  • Tornado

  • -

    Tux Paint 0.9.28

    +

    Tux Paint 0.9.29

    \ 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 2110beaae..cb6ad9e49 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.28

    +

    Tux Paint 0.9.29

    \ 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 276c490e5..feb7a7187 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.


    -

    Tux Paint 0.9.28

    +

    Tux Paint 0.9.29

    \ 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 0abd12b86..6d484e5b0 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.28

    +

    Tux Paint 0.9.29

    \ 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 8dfd04c3b..b9f310f04 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.


    -

    Tux Paint 0.9.28

    +

    Tux Paint 0.9.29

    \ 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 63479e6c4..d6438354b 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.28

    +

    Tux Paint 0.9.29

    \ 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 8d4539e10..b50e3a224 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.28

    +

    Tux Paint 0.9.29

    \ 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 529e7184e..bd6c21991 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.28

    +

    Tux Paint 0.9.29

    \ 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 51e2478da..5ff4bc32d 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.28

    +

    Tux Paint 0.9.29

    \ 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 9147a1712..392cef4b8 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.28

    +

    Tux Paint 0.9.29

    \ 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 9066b4b13..7227dad60 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.28

    +

    Tux Paint 0.9.29

    \ 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 9c08a958f..307518105 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.28

    +

    Tux Paint 0.9.29

    \ 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 47c2d2fe3..925ce2914 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.28

    +

    Tux Paint 0.9.29

    \ 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 70dede22a..37bd47c20 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.28

    +

    Tux Paint 0.9.29

    \ 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 27cd73773..e2fec5d57 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.28

    +

    Tux Paint 0.9.29

    \ 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 6a948eb72..fca954684 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.28

    +

    Tux Paint 0.9.29

    \ 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 ee3b9e8a4..99b4a5d36 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.28

    +

    Tux Paint 0.9.29

    \ 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 4b6ed329f..9f5304ffe 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.28

    +

    Tux Paint 0.9.29

    \ 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 04971a95d..d20576f51 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.28

    +

    Tux Paint 0.9.29

    \ 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 b4a0c7306..15fc85268 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.28

    +

    Tux Paint 0.9.29

    \ 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 a04699eb4..4147914e9 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.28

    +

    Tux Paint 0.9.29

    \ 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 c288119a8..253159453 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.28

    +

    Tux Paint 0.9.29

    \ 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 ab75fb732..9a7e3db58 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.28

    +

    Tux Paint 0.9.29

    \ 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 5a34b493a..4f420cf5c 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.28

    +

    Tux Paint 0.9.29

    \ 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 819615364..55fb279a1 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.28

    +

    Tux Paint 0.9.29

    \ 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 190d0218f..3256de8af 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.28

    +

    Tux Paint 0.9.29

    \ 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 ae51d62d3..67ef8a281 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.28

    +

    Tux Paint 0.9.29

    \ 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 915ba397e..b99ef5380 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.28

    +

    Tux Paint 0.9.29

    \ 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 937789f59..a0f533e14 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.28

    +

    Tux Paint 0.9.29

    \ 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 1bc229bba..b25a03add 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.28

    +

    Tux Paint 0.9.29

    \ 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 71afe2774..6001e3959 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.28

    +

    Tux Paint 0.9.29

    \ 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 17bfaa2ca..30ffa0d2c 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.28

    +

    Tux Paint 0.9.29

    \ 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 2da8dcbb0..7a102c8e6 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.28

    +

    Tux Paint 0.9.29

    \ 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 b6b7b455d..5b9a398e8 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.28

    +

    Tux Paint 0.9.29

    \ 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 33937f1ef..7ab1cd331 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.28

    +

    Tux Paint 0.9.29

    \ 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 a7459c3b8..7a1968e5c 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.28

    +

    Tux Paint 0.9.29

    \ 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 28f9a3ba8..7e47052f8 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.28

    +

    Tux Paint 0.9.29

    \ 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 74fdc9119..893a7c6c2 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.28

    +

    Tux Paint 0.9.29

    \ 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 166a62623..4980e7685 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.28

    +

    Tux Paint 0.9.29

    \ 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 3a6670df9..1ef348173 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.28

    +

    Tux Paint 0.9.29

    \ 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 38dacecf0..c82d866ad 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.28

    +

    Tux Paint 0.9.29

    \ 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 a3ce09ca2..4568963b9 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.28

    +

    Tux Paint 0.9.29

    \ 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 7bf9d9b41..5766ec53f 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.28

    +

    Tux Paint 0.9.29

    \ 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 43a817959..90e4d4b88 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.28

    +

    Tux Paint 0.9.29

    \ 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 4a74a2649..7f83590fb 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.28

    +

    Tux Paint 0.9.29

    \ 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 e9de0adc1..f22173b85 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.28

    +

    Tux Paint 0.9.29

    \ 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 a3e5471ce..a12a09547 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.28

    +

    Tux Paint 0.9.29

    \ 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 ecf4044c9..73d13b979 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.28

    +

    Tux Paint 0.9.29

    \ 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 3766f1485..717b3b8a3 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.28

    +

    Tux Paint 0.9.29

    \ 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 55a2cc64f..65191811a 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.28

    +

    Tux Paint 0.9.29

    \ 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 935c9f19c..68ad5a12b 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.28

    +

    Tux Paint 0.9.29

    \ 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 f86e90e29..4a0042515 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.28

    +

    Tux Paint 0.9.29

    \ 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 632a3bf93..06796a4e2 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.28

    +

    Tux Paint 0.9.29

    \ 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 3c626298e..9fe8cd481 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.28

    +

    Tux Paint 0.9.29

    \ 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 d0ed140c3..3c567c378 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.28

    +

    Tux Paint 0.9.29

    \ 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 e06fa41fa..9b5cdf234 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.28

    +

    Tux Paint 0.9.29

    \ 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 3c7379d0f..22a2ace7d 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.28

    +

    Tux Paint 0.9.29

    \ 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 edcd420fb..1b0508d06 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.28

    +

    Tux Paint 0.9.29

    \ 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 f010400ea..19fd741fc 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.28

    +

    Tux Paint 0.9.29

    \ 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 0c3967039..0c77dfb04 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.28

    +

    Tux Paint 0.9.29

    \ 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 04c522244..9835c8ab0 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.28

    +

    Tux Paint 0.9.29

    \ 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 63b0dc2a6..9c4da60a8 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.28

    +

    Tux Paint 0.9.29

    \ 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 a0cd8c7d5..2e7ac5f9a 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.28

    +

    Tux Paint 0.9.29

    \ 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 4fdd85d5f..ad4f7ac40 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.28

    +

    Tux Paint 0.9.29

    \ 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 b52d350d0..c8403837c 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 dakrens 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.28

    +

    Tux Paint 0.9.29

    \ 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 eeaa3823a..a7b5dfd82 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.28

    +

    Tux Paint 0.9.29

    \ 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 f4a05c8bd..bcb05b657 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.28

    +

    Tux Paint 0.9.29

    \ 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 46ffb4108..4fc121b38 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.28

    +

    Tux Paint 0.9.29

    \ 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 741372732..e3c9300c5 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.28

    +

    Tux Paint 0.9.29

    \ 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 5f3483ad3..a13907333 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.28

    +

    Tux Paint 0.9.29

    \ 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 bcad18845..e9165f02f 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.28

    +

    Tux Paint 0.9.29

    \ 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 8de5298df..f7082e71d 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 drawe 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.28

    +

    Tux Paint 0.9.29

    \ 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 d52e662c1..64a544bc4 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.28

    +

    Tux Paint 0.9.29

    \ 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 7f2122ce8..76cc965d5 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.28

    +

    Tux Paint 0.9.29

    \ 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 995577b85..3c63e3d0e 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.28

    +

    Tux Paint 0.9.29

    \ 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 f4ce4b89a..ba78877eb 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.28

    +

    Tux Paint 0.9.29

    \ 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 c3507bf12..ce7da68b1 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.28

    +

    Tux Paint 0.9.29

    \ 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 4f6c76dd9..ac5ac1708 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.28

    +

    Tux Paint 0.9.29

    \ 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 3b97c049d..94741f5e0 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.28

    +

    Tux Paint 0.9.29

    \ 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 42e8cdca4..eda58c733 100644 --- a/magic/magic-docs/ja_JP.UTF-8/html/index.html +++ b/magic/magic-docs/ja_JP.UTF-8/html/index.html @@ -104,5 +104,5 @@
  • Tornado

  • -

    Tux Paint 0.9.28

    +

    Tux Paint 0.9.29

    \ 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 2110beaae..cb6ad9e49 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.28

    +

    Tux Paint 0.9.29

    \ 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 276c490e5..feb7a7187 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.


    -

    Tux Paint 0.9.28

    +

    Tux Paint 0.9.29

    \ 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 0abd12b86..6d484e5b0 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.28

    +

    Tux Paint 0.9.29

    \ 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 8dfd04c3b..b9f310f04 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.28

    +

    Tux Paint 0.9.29

    \ 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 63479e6c4..d6438354b 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.28

    +

    Tux Paint 0.9.29

    \ 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 8d4539e10..b50e3a224 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.28

    +

    Tux Paint 0.9.29

    \ 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 529e7184e..bd6c21991 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.28

    +

    Tux Paint 0.9.29

    \ 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 51e2478da..5ff4bc32d 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.28

    +

    Tux Paint 0.9.29

    \ 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 9147a1712..392cef4b8 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.28

    +

    Tux Paint 0.9.29

    \ 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 9066b4b13..7227dad60 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.28

    +

    Tux Paint 0.9.29

    \ 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 9c08a958f..307518105 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.28

    +

    Tux Paint 0.9.29

    \ 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 47c2d2fe3..925ce2914 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.28

    +

    Tux Paint 0.9.29

    \ 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 70dede22a..37bd47c20 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.28

    +

    Tux Paint 0.9.29

    \ 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 27cd73773..e2fec5d57 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.28

    +

    Tux Paint 0.9.29

    \ 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 6a948eb72..fca954684 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.28

    +

    Tux Paint 0.9.29

    \ 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 ee3b9e8a4..99b4a5d36 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.28

    +

    Tux Paint 0.9.29

    \ 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 4b6ed329f..9f5304ffe 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.28

    +

    Tux Paint 0.9.29

    \ 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 04971a95d..d20576f51 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.28

    +

    Tux Paint 0.9.29

    \ 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 b4a0c7306..15fc85268 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.28

    +

    Tux Paint 0.9.29

    \ 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 a04699eb4..4147914e9 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.28

    +

    Tux Paint 0.9.29

    \ 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 c288119a8..253159453 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.28

    +

    Tux Paint 0.9.29

    \ 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 ab75fb732..9a7e3db58 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.28

    +

    Tux Paint 0.9.29

    \ 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 5a34b493a..4f420cf5c 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.28

    +

    Tux Paint 0.9.29

    \ 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 819615364..55fb279a1 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.28

    +

    Tux Paint 0.9.29

    \ 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 190d0218f..3256de8af 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.28

    +

    Tux Paint 0.9.29

    \ 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 ae51d62d3..67ef8a281 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.28

    +

    Tux Paint 0.9.29

    \ 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 915ba397e..b99ef5380 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.28

    +

    Tux Paint 0.9.29

    \ 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 937789f59..a0f533e14 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.28

    +

    Tux Paint 0.9.29

    \ 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 1bc229bba..b25a03add 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.28

    +

    Tux Paint 0.9.29

    \ 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 71afe2774..6001e3959 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.28

    +

    Tux Paint 0.9.29

    \ 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 17bfaa2ca..30ffa0d2c 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.28

    +

    Tux Paint 0.9.29

    \ 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 2da8dcbb0..7a102c8e6 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.28

    +

    Tux Paint 0.9.29

    \ 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 b6b7b455d..5b9a398e8 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.28

    +

    Tux Paint 0.9.29

    \ 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 33937f1ef..7ab1cd331 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.28

    +

    Tux Paint 0.9.29

    \ 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 a7459c3b8..7a1968e5c 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.28

    +

    Tux Paint 0.9.29

    \ 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 28f9a3ba8..7e47052f8 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.28

    +

    Tux Paint 0.9.29

    \ 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 74fdc9119..893a7c6c2 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.28

    +

    Tux Paint 0.9.29

    \ 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 166a62623..4980e7685 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.28

    +

    Tux Paint 0.9.29

    \ 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 3a6670df9..1ef348173 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.28

    +

    Tux Paint 0.9.29

    \ 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 38dacecf0..c82d866ad 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.28

    +

    Tux Paint 0.9.29

    \ 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 a3ce09ca2..4568963b9 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.28

    +

    Tux Paint 0.9.29

    \ 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 7bf9d9b41..5766ec53f 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.28

    +

    Tux Paint 0.9.29

    \ 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 43a817959..90e4d4b88 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.28

    +

    Tux Paint 0.9.29

    \ 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 4a74a2649..7f83590fb 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.28

    +

    Tux Paint 0.9.29

    \ 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 e9de0adc1..f22173b85 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.28

    +

    Tux Paint 0.9.29

    \ 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 a3e5471ce..a12a09547 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.28

    +

    Tux Paint 0.9.29

    \ 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 ecf4044c9..73d13b979 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.28

    +

    Tux Paint 0.9.29

    \ 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 3766f1485..717b3b8a3 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.28

    +

    Tux Paint 0.9.29

    \ 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 55a2cc64f..65191811a 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.28

    +

    Tux Paint 0.9.29

    \ 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 935c9f19c..68ad5a12b 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.28

    +

    Tux Paint 0.9.29

    \ 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 f86e90e29..4a0042515 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.28

    +

    Tux Paint 0.9.29

    \ No newline at end of file diff --git a/man/en/tuxpaint.1 b/man/en/tuxpaint.1 index b9a1017bb..26a28a317 100644 --- a/man/en/tuxpaint.1 +++ b/man/en/tuxpaint.1 @@ -1,5 +1,5 @@ .\" tuxpaint.1 - 2022.06.04 -.TH TUXPAINT 1 "June 4, 2022" "0.9.28" "Tux Paint" +.TH TUXPAINT 1 "June 4, 2022" "0.9.29" "Tux Paint" .SH NAME tuxpaint -- "Tux Paint", a drawing program for young children. diff --git a/man/es_ES.UTF-8/tuxpaint.1 b/man/es_ES.UTF-8/tuxpaint.1 index c00943fbe..78ba2876e 100644 --- a/man/es_ES.UTF-8/tuxpaint.1 +++ b/man/es_ES.UTF-8/tuxpaint.1 @@ -1,5 +1,5 @@ .\" tuxpaint.1 - 2022.06.04 -.TH TUXPAINT 1 "junio 4, 2022" "0.9.28" "Tux Paint" +.TH TUXPAINT 1 "junio 4, 2022" "0.9.29" "Tux Paint" .SH NAME tuxpaint -- "Tux Paint", a drawing program for young children. diff --git a/man/fr_FR.UTF-8/tuxpaint.1 b/man/fr_FR.UTF-8/tuxpaint.1 index ced615cb4..69c2d6432 100644 --- a/man/fr_FR.UTF-8/tuxpaint.1 +++ b/man/fr_FR.UTF-8/tuxpaint.1 @@ -1,5 +1,5 @@ .\" tuxpaint.1 - 2022.06.04 -.TH TUXPAINT 1 "juin 4, 2022" "0.9.28" "Tux Paint" +.TH TUXPAINT 1 "juin 4, 2022" "0.9.29" "Tux Paint" .SH NAME tuxpaint -- "Tux Paint", un programme simple pour les jeunes enfants. diff --git a/man/gl_ES.UTF-8/tuxpaint.1 b/man/gl_ES.UTF-8/tuxpaint.1 index 72893dfed..e15257b92 100644 --- a/man/gl_ES.UTF-8/tuxpaint.1 +++ b/man/gl_ES.UTF-8/tuxpaint.1 @@ -1,5 +1,5 @@ .\" tuxpaint.1 - 2022.06.04 -.TH TUXPAINT 1 " 4 de Xuño de 2022" "0.9.28" "Tux Paint" +.TH TUXPAINT 1 " 4 de Xuño de 2022" "0.9.29" "Tux Paint" .SH NAME tuxpaint -- "Tux Paint", a drawing program for young children. diff --git a/man/ja_JP.UTF-8/tuxpaint.1 b/man/ja_JP.UTF-8/tuxpaint.1 index fc13840a5..04893f8a9 100644 --- a/man/ja_JP.UTF-8/tuxpaint.1 +++ b/man/ja_JP.UTF-8/tuxpaint.1 @@ -1,5 +1,5 @@ .\" tuxpaint.1 - 2022.06.04 -.TH TUXPAINT 1 "2022年6月 4日" "0.9.28" "Tux Paint" +.TH TUXPAINT 1 "2022年6月 4日" "0.9.29" "Tux Paint" .SH NAME tuxpaint -- "Tux Paint", a drawing program for young children.