Merging brush spacing work into sdl2.0
This commit is contained in:
commit
e9ebd54db9
123 changed files with 1170 additions and 474 deletions
4
Makefile
4
Makefile
|
|
@ -543,8 +543,8 @@ trans:
|
||||||
######
|
######
|
||||||
|
|
||||||
windows_ARCH_INSTALL:=install-dlls install-tpconf-i18n
|
windows_ARCH_INSTALL:=install-dlls install-tpconf-i18n
|
||||||
macos_ARCH_INSTALL:=install-macbundle TuxPaint.dmg install-man install-importscript install-bash-completion
|
macos_ARCH_INSTALL:=install-macbundle TuxPaint.dmg
|
||||||
ios_ARCH_INSTALL:=install-iosbundle install-man install-importscript install-bash-completion
|
ios_ARCH_INSTALL:=install-iosbundle
|
||||||
linux_ARCH_INSTALL:=install-xdg install-man install-importscript install-bash-completion
|
linux_ARCH_INSTALL:=install-xdg install-man install-importscript install-bash-completion
|
||||||
ARCH_INSTALL:=$($(OS)_ARCH_INSTALL)
|
ARCH_INSTALL:=$($(OS)_ARCH_INSTALL)
|
||||||
|
|
||||||
|
|
|
||||||
1
data/brushes/flower_5.dat
Normal file
1
data/brushes/flower_5.dat
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
spacing=45
|
||||||
1
data/brushes/flower_5_small.dat
Normal file
1
data/brushes/flower_5_small.dat
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
spacing=20
|
||||||
1
data/brushes/flower_6.dat
Normal file
1
data/brushes/flower_6.dat
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
spacing=45
|
||||||
1
data/brushes/flower_6_small.dat
Normal file
1
data/brushes/flower_6_small.dat
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
spacing=20
|
||||||
1
data/brushes/flower_7.dat
Normal file
1
data/brushes/flower_7.dat
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
spacing=45
|
||||||
1
data/brushes/heart.dat
Normal file
1
data/brushes/heart.dat
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
spacing=50
|
||||||
1
data/brushes/sphere.dat
Normal file
1
data/brushes/sphere.dat
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
spacing=40
|
||||||
1
data/brushes/star.dat
Normal file
1
data/brushes/star.dat
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
spacing=45
|
||||||
|
|
@ -2,13 +2,31 @@ CHANGES.txt for Tux Paint
|
||||||
|
|
||||||
Tux Paint - A simple drawing program for children.
|
Tux Paint - A simple drawing program for children.
|
||||||
|
|
||||||
Copyright (c) 2002-2021
|
Copyright (c) 2002-2022
|
||||||
Various contributors (see below, and AUTHORS.txt)
|
Various contributors (see below, and AUTHORS.txt)
|
||||||
http://www.tuxpaint.org/
|
http://www.tuxpaint.org/
|
||||||
|
|
||||||
$Id$
|
|
||||||
|
|
||||||
2021.December.1 (0.9.28)
|
2022.January.20 (0.9.28)
|
||||||
|
* Improvements to "Paint" and "Lines" tools:
|
||||||
|
------------------------------------------
|
||||||
|
* Brush spacing may now be altered within Tux Paint.
|
||||||
|
+ Note: A "nobrushspacing" simplifcation option is provided to
|
||||||
|
disable this feature; Tux Paint will continue using the brushes'
|
||||||
|
default spacings.
|
||||||
|
|
||||||
|
* Many brushes have been given more reasonable default spacing
|
||||||
|
settings (e.g., star brush's new default spacing causes
|
||||||
|
individual stars to appear, rather than a 'smear').
|
||||||
|
Closes https://sourceforge.net/p/tuxpaint/bugs/243/
|
||||||
|
(h/t Areti Tsolakidou for the suggestion)
|
||||||
|
|
||||||
|
* Improvements to "Eraser" tool:
|
||||||
|
------------------------------
|
||||||
|
* Outline for circle-shaped erasers is now also circular.
|
||||||
|
Closes https://sourceforge.net/p/tuxpaint/bugs/244/
|
||||||
|
(h/t Areti Tsolakidou for the suggestion)
|
||||||
|
|
||||||
* Localization Updates:
|
* Localization Updates:
|
||||||
---------------------
|
---------------------
|
||||||
* Albanian translation
|
* Albanian translation
|
||||||
|
|
@ -20,14 +38,30 @@ $Id$
|
||||||
* Updated `src/po/check_translations.sh` sanity-checking script
|
* Updated `src/po/check_translations.sh` sanity-checking script
|
||||||
so it properly finds the updated docs & other changes.
|
so it properly finds the updated docs & other changes.
|
||||||
|
|
||||||
* Ports & Building
|
* Bug Fixes:
|
||||||
----------------
|
----------
|
||||||
|
* Fixed abnormal exit of threaded font scan which prevented enabling
|
||||||
|
text/label tools on some environment such as Rocky Linux 8.
|
||||||
|
TOYAMA Shin-ichi <shin1@wmail.plala.or.jp>
|
||||||
|
|
||||||
|
* Ports & Building:
|
||||||
|
-----------------
|
||||||
* Windows installer forces to uninstall before the installation if
|
* Windows installer forces to uninstall before the installation if
|
||||||
version 0.9.27 and older is found.
|
version 0.9.27 and older is found.
|
||||||
* Windows installer does not show a dialogue to inform uninstallation
|
|
||||||
when "/VERYSILANT" switch is specified.
|
* Windows installer will no longer show a dialogue to inform
|
||||||
|
user of uninstallation when "/VERYSILENT" switch is specified
|
||||||
|
(useful for automated installation/uninsta$llation processes).
|
||||||
TOYAMA Shin-ichi <shin1@wmail.plala.or.jp>
|
TOYAMA Shin-ichi <shin1@wmail.plala.or.jp>
|
||||||
|
|
||||||
|
* Use character class in macOS build script
|
||||||
|
(It appears \t is not compatible with certain versions of grep.)
|
||||||
|
Mark K. Kim <markuskimius@gmail.com>
|
||||||
|
|
||||||
|
* Remove install stages not needed on macOS
|
||||||
|
Mark K. Kim <markuskimius@gmail.com>
|
||||||
|
|
||||||
|
|
||||||
2021.November.25 (0.9.27)
|
2021.November.25 (0.9.27)
|
||||||
* New Magic Tools:
|
* New Magic Tools:
|
||||||
----------------
|
----------------
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
version 0.9.28 Advanced Stamps 'How-To'
|
version 0.9.28 Advanced Stamps 'How-To'
|
||||||
|
|
||||||
Copyright © 2006-2021 by Albert Cahalan and others; see AUTHORS.
|
Copyright © 2006-2022 by Albert Cahalan and others; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
August 29, 2021
|
January 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
version 0.9.28
|
version 0.9.28
|
||||||
Environment Variables Documentation
|
Environment Variables Documentation
|
||||||
|
|
||||||
Copyright © 2021-2021 by various contributors; see AUTHORS.
|
Copyright © 2021-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
August 8, 2021
|
January 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
version 0.9.28
|
version 0.9.28
|
||||||
|
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.
|
Copyright © 2002-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
September 19, 2021
|
January 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -679,15 +679,15 @@ Translations
|
||||||
template ("tuxpaint.pot"), since new text is added, and old text is
|
template ("tuxpaint.pot"), since new text is added, and old text is
|
||||||
occasionally changed. The text catalog for the upcoming, unreleased
|
occasionally changed. The text catalog for the upcoming, unreleased
|
||||||
version of Tux Paint can be found in Tux Paint's Git repository (see:
|
version of Tux Paint can be found in Tux Paint's Git repository (see:
|
||||||
http://www.tuxpaint.org/download/source/git/), and on the Tux Paint
|
https://tuxpaint.org/download/source/git/), and on the Tux Paint website
|
||||||
website at http://www.tuxpaint.org/help/po/.
|
at https://tuxpaint.org/help/po/.
|
||||||
|
|
||||||
To edit an existing translation, download the latest ".po" file for that
|
To edit an existing translation, download the latest ".po" file for that
|
||||||
language, and edit it as described above.
|
language, and edit it as described above.
|
||||||
|
|
||||||
You may send new or edited translation files to Bill Kendrick, lead
|
You may send new or edited translation files to Bill Kendrick, lead
|
||||||
developer of Tux Paint, at: bill@newbreedsoftware.com, or post them to
|
developer of Tux Paint, at: bill@newbreedsoftware.com, or post them to
|
||||||
the "tuxpaint-i18n" mailing list (see: http://www.tuxpaint.org/lists/).
|
the "tuxpaint-i18n" mailing list (see: https://tuxpaint.org/lists/).
|
||||||
|
|
||||||
Alternatively, if you have an account with SourceForge.net, you can
|
Alternatively, if you have an account with SourceForge.net, you can
|
||||||
request to be added to the "tuxpaint" project and receive write-access
|
request to be added to the "tuxpaint" project and receive write-access
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
version 0.9.28 Frequently Asked Questions
|
version 0.9.28 Frequently Asked Questions
|
||||||
|
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.
|
Copyright © 2002-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
August 29, 2021
|
January 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -170,7 +170,7 @@ Interface Problems
|
||||||
The appropriate fonts for such locales can be downloaded from
|
The appropriate fonts for such locales can be downloaded from
|
||||||
the Tux Paint website:
|
the Tux Paint website:
|
||||||
|
|
||||||
http://www.tuxpaint.org/download/fonts/
|
https://tuxpaint.org/download/fonts/
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -637,7 +637,7 @@ Help / Contact
|
||||||
Any questions you don't see answered? Please let us know! You can
|
Any questions you don't see answered? Please let us know! You can
|
||||||
subscribe and post to our "tuxpaint-users" mailing list:
|
subscribe and post to our "tuxpaint-users" mailing list:
|
||||||
|
|
||||||
http://www.tuxpaint.org/lists/
|
https://tuxpaint.org/lists/
|
||||||
|
|
||||||
Or, contact lead developer Bill Kendrick directly:
|
Or, contact lead developer Bill Kendrick directly:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
version 0.9.28
|
version 0.9.28
|
||||||
Installation Documentation
|
Installation Documentation
|
||||||
|
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.
|
Copyright © 2002-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
September 17, 2021
|
January 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -637,11 +637,11 @@ Compiling and Installation
|
||||||
installed to /opt/local (same as MacPorts) for the library to be
|
installed to /opt/local (same as MacPorts) for the library to be
|
||||||
included in TuxPaint.dmg.
|
included in TuxPaint.dmg.
|
||||||
|
|
||||||
|
$ sudo port install rust cargo
|
||||||
$ git clone https://github.com/ImageOptim/libimagequant.git
|
$ git clone https://github.com/ImageOptim/libimagequant.git
|
||||||
$ cd libimagequant
|
$ cd libimagequant/imagequant-sys
|
||||||
$ ./configure --prefix=/opt/local
|
$ cargo build --release
|
||||||
$ make
|
$ sudo make PREFIX=/opt/local install
|
||||||
$ sudo make install
|
|
||||||
|
|
||||||
WARNING: Having any UNIX-like toolset installed on your Mac besides
|
WARNING: Having any UNIX-like toolset installed on your Mac besides
|
||||||
MacPorts and Xcode, such as Fink or Brew, will prevent your app
|
MacPorts and Xcode, such as Fink or Brew, will prevent your app
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,10 @@
|
||||||
|
|
||||||
Options Documentation
|
Options Documentation
|
||||||
|
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.
|
Copyright © 2002-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
August 29, 2021
|
January 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -454,6 +454,21 @@ Simplification
|
||||||
"nolabel=no" or "label=yes". In both cases, may be
|
"nolabel=no" or "label=yes". In both cases, may be
|
||||||
overridden by the command-line option "--label".
|
overridden by the command-line option "--label".
|
||||||
|
|
||||||
|
nobrushspacing=yes
|
||||||
|
|
||||||
|
Disables the brush spacing option of the Paint and Lines
|
||||||
|
tools. The brushes' default spacings will be used.
|
||||||
|
|
||||||
|
Note: The brush spacing option was added to Tux Paint's user
|
||||||
|
interface in version 0.9.28. For more information on brush
|
||||||
|
spacing, see EXTENDING.html
|
||||||
|
|
||||||
|
Note: If used in a system-wide configuration file, may be
|
||||||
|
overridden by the user's configuration file using
|
||||||
|
"nobrushspacing=no" or "brushspacing=yes". In both cases,
|
||||||
|
may be overridden by the command-line option
|
||||||
|
"--brushspacing".
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
Languages
|
Languages
|
||||||
|
|
@ -1960,7 +1975,7 @@ Special Fonts
|
||||||
/usr/share/tuxpaint/fonts/locale/ko.ttf
|
/usr/share/tuxpaint/fonts/locale/ko.ttf
|
||||||
|
|
||||||
You can download fonts for supported languages from Tux Paint's
|
You can download fonts for supported languages from Tux Paint's
|
||||||
website, http://www.tuxpaint.org/. (Look in the 'Fonts' section under
|
website, https://tuxpaint.org/. (Look in the 'Fonts' section under
|
||||||
'Download.')
|
'Download.')
|
||||||
|
|
||||||
Under Unix and Linux, you can use the Makefile that comes with the
|
Under Unix and Linux, you can use the Makefile that comes with the
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
version 0.9.28
|
version 0.9.28
|
||||||
PNG Documentation
|
PNG Documentation
|
||||||
|
|
||||||
Copyright © 2007-2021 by various contributors; see AUTHORS.
|
Copyright © 2007-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
March 9, 2021
|
January 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,11 @@
|
||||||
|
|
||||||
A simple drawing program for children
|
A simple drawing program for children
|
||||||
|
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.
|
Copyright © 2002-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
@TuxPaintTweets on Twitter
|
@TuxPaintTweets on Twitter
|
||||||
|
|
||||||
November 25, 2021
|
January 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -239,6 +239,25 @@ Available Tools
|
||||||
As you draw, a sound is played. The bigger the brush, the
|
As you draw, a sound is played. The bigger the brush, the
|
||||||
lower the pitch.
|
lower the pitch.
|
||||||
|
|
||||||
|
Brush Spacing
|
||||||
|
|
||||||
|
The space between each position where a brush is applied
|
||||||
|
to the canvas can vary. Some brushes (such as the
|
||||||
|
footprints and flower) are spaced, by default, far enough
|
||||||
|
apart that they don't overlap. Other brushes (such as the
|
||||||
|
basic circular ones) are spaced closely, so they make a
|
||||||
|
continuous stroke.
|
||||||
|
|
||||||
|
The default spacing of brushes may be overridden using by
|
||||||
|
clicking within the triangular-shaped series of bars at
|
||||||
|
the bottom right; the larger the bar, the wider the
|
||||||
|
spacing. Brush spacing affects both tools that use the
|
||||||
|
brushes: the "Paint" tool and the "Lines" tool.
|
||||||
|
|
||||||
|
(Note: If the "nobrushspacing" option is set, Tux Paint
|
||||||
|
won't display the brush spacing controls. See the
|
||||||
|
"Options" documentation.)
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
"Stamp" Tool (Rubber Stamps)
|
"Stamp" Tool (Rubber Stamps)
|
||||||
|
|
@ -305,6 +324,11 @@ Available Tools
|
||||||
finally some are both animated and directional. See "Paint",
|
finally some are both animated and directional. See "Paint",
|
||||||
above, to learn more.
|
above, to learn more.
|
||||||
|
|
||||||
|
Different brushes have different spacing, leaving either a
|
||||||
|
series of individual shapes, or a continuous stroke of the
|
||||||
|
brush shape. Brush spacing may be adjusted. See "Paint",
|
||||||
|
above, to learn more.
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
"Shapes" Tool
|
"Shapes" Tool
|
||||||
|
|
@ -1024,7 +1048,7 @@ Importing Pictures Manually
|
||||||
* Contact the developers directly
|
* Contact the developers directly
|
||||||
|
|
||||||
To learn more, visit the "Contact" page of the official Tux Paint
|
To learn more, visit the "Contact" page of the official Tux Paint
|
||||||
website: http://tuxpaint.org/contact/
|
website: https://tuxpaint.org/contact/
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -1041,4 +1065,4 @@ Importing Pictures Manually
|
||||||
* Promote or help support others using Tux Paint
|
* Promote or help support others using Tux Paint
|
||||||
|
|
||||||
To learn more, visit the "Help Us" page of the official Tux Paint
|
To learn more, visit the "Help Us" page of the official Tux Paint
|
||||||
website: http://tuxpaint.org/help/
|
website: https://tuxpaint.org/help/
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
version 0.9.28
|
version 0.9.28
|
||||||
Signals Documentation
|
Signals Documentation
|
||||||
|
|
||||||
Copyright © 2019-2021 by various contributors; see AUTHORS.
|
Copyright © 2019-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
March 9, 2021
|
January 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
version 0.9.28
|
version 0.9.28
|
||||||
SVG Documentation
|
SVG Documentation
|
||||||
|
|
||||||
Copyright © 2007-2021 by various contributors; see AUTHORS.
|
Copyright © 2007-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
March 9, 2021
|
January 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,12 +20,12 @@
|
||||||
version 0.9.28 Advanced Stamps 'How-To' </h1>
|
version 0.9.28 Advanced Stamps 'How-To' </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2006-2021 by Albert Cahalan and others; see AUTHORS.<br>
|
Copyright © 2006-2022 by Albert Cahalan and others; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
August 29, 2021 </p>
|
January 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
Environment Variables Documentation </h1>
|
Environment Variables Documentation </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2021-2021 by various contributors; see AUTHORS.<br>
|
Copyright © 2021-2022 by various contributors; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
August 8, 2021 </p>
|
January 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
version 0.9.28 </h1>
|
version 0.9.28 </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.<br>
|
Copyright © 2002-2022 by various contributors; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
September 19, 2021 </p>
|
January 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -867,13 +867,13 @@
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<i>Note:</i> It is best to always work off of the <i>latest</i> Tux Paint text catalog template ("<code>tuxpaint.pot</code>"), since new text is added, and old text is occasionally changed. The text catalog for the upcoming, unreleased version of Tux Paint can be found in Tux Paint's Git repository (see: <a href="http://www.tuxpaint.org/download/source/git/">http://www.tuxpaint.org/download/source/git/</a>), and on the Tux Paint website at <a href="http://www.tuxpaint.org/help/po/">http://www.tuxpaint.org/help/po/</a>. </p>
|
<i>Note:</i> It is best to always work off of the <i>latest</i> Tux Paint text catalog template ("<code>tuxpaint.pot</code>"), since new text is added, and old text is occasionally changed. The text catalog for the upcoming, unreleased version of Tux Paint can be found in Tux Paint's Git repository (see: <a href="https://tuxpaint.org/download/source/git/">https://tuxpaint.org/download/source/git/</a>), and on the Tux Paint website at <a href="https://tuxpaint.org/help/po/">https://tuxpaint.org/help/po/</a>. </p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
To edit an existing translation, download the latest "<code>.po</code>" file for that language, and edit it as described above. </p>
|
To edit an existing translation, download the latest "<code>.po</code>" file for that language, and edit it as described above. </p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
You may send new or edited translation files to Bill Kendrick, lead developer of Tux Paint, at: <a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>, or post them to the "tuxpaint-i18n" mailing list (see: <a href="http://www.tuxpaint.org/lists/">http://www.tuxpaint.org/lists/</a>). </p>
|
You may send new or edited translation files to Bill Kendrick, lead developer of Tux Paint, at: <a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>, or post them to the "tuxpaint-i18n" mailing list (see: <a href="https://tuxpaint.org/lists/">https://tuxpaint.org/lists/</a>). </p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Alternatively, if you have an account with <a href="http://www.sourceforge.net/">SourceForge.net</a>, you can request to be added to the "<code>tuxpaint</code>" project and receive write-access to the Git source code repository so that you may commit your changes directly. </p>
|
Alternatively, if you have an account with <a href="http://www.sourceforge.net/">SourceForge.net</a>, you can request to be added to the "<code>tuxpaint</code>" project and receive write-access to the Git source code repository so that you may commit your changes directly. </p>
|
||||||
|
|
|
||||||
|
|
@ -20,12 +20,12 @@
|
||||||
version 0.9.28 Frequently Asked Questions </h1>
|
version 0.9.28 Frequently Asked Questions </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.<br>
|
Copyright © 2002-2022 by various contributors; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
August 29, 2021 </p>
|
January 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -254,7 +254,7 @@
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
<a href=
|
<a href=
|
||||||
"http://www.tuxpaint.org/download/fonts/">http://www.tuxpaint.org/download/fonts/</a>
|
"https://tuxpaint.org/download/fonts/">https://tuxpaint.org/download/fonts/</a>
|
||||||
</p>
|
</p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</li>
|
</li>
|
||||||
|
|
@ -822,7 +822,7 @@
|
||||||
|
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
<a href="http://www.tuxpaint.org/lists/">http://www.tuxpaint.org/lists/</a>
|
<a href="https://tuxpaint.org/lists/">https://tuxpaint.org/lists/</a>
|
||||||
</p>
|
</p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
Installation Documentation </h1>
|
Installation Documentation </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.<br>
|
Copyright © 2002-2022 by various contributors; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
September 17, 2021 </p>
|
January 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2" noshade />
|
<hr size="2" noshade />
|
||||||
|
|
@ -797,11 +797,11 @@
|
||||||
<p>
|
<p>
|
||||||
<code>libimagequant</code> is not available from MacPorts as of this writing. It can be installed from the source code as follows. It should be installed to <code>/opt/local</code> (same as MacPorts) for the library to be included in <code>TuxPaint.dmg</code>. <blockquote>
|
<code>libimagequant</code> is not available from MacPorts as of this writing. It can be installed from the source code as follows. It should be installed to <code>/opt/local</code> (same as MacPorts) for the library to be included in <code>TuxPaint.dmg</code>. <blockquote>
|
||||||
<code>
|
<code>
|
||||||
|
$ sudo port install rust cargo<br/>
|
||||||
$ git clone https://github.com/ImageOptim/libimagequant.git<br/>
|
$ git clone https://github.com/ImageOptim/libimagequant.git<br/>
|
||||||
$ cd libimagequant<br/>
|
$ cd libimagequant/imagequant-sys<br/>
|
||||||
$ ./configure --prefix=/opt/local<br/>
|
$ cargo build --release<br/>
|
||||||
$ make<br/>
|
$ sudo make PREFIX=/opt/local install
|
||||||
$ sudo make install
|
|
||||||
</code>
|
</code>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</p>
|
</p>
|
||||||
|
|
|
||||||
|
|
@ -20,12 +20,12 @@
|
||||||
Options Documentation </h2>
|
Options Documentation </h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.<br>
|
Copyright © 2002-2022 by various contributors; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
August 29, 2021 </p>
|
January 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -620,6 +620,19 @@
|
||||||
<p>
|
<p>
|
||||||
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nolabel=no</code>" or "<code>label=yes</code>". In both cases, may be overridden by the command-line option "<code>--label</code>". </p>
|
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nolabel=no</code>" or "<code>label=yes</code>". In both cases, may be overridden by the command-line option "<code>--label</code>". </p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
|
<dt>
|
||||||
|
<code><b>nobrushspacing=yes</b></code>
|
||||||
|
</dt>
|
||||||
|
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Disables the brush spacing option of the <b>Paint</b> and <b>Lines</b> tools. The brushes' default spacings will be used. </p>
|
||||||
|
<p>
|
||||||
|
Note: The brush spacing option was added to Tux Paint's user interface in version 0.9.28. For more information on brush spacing, see <a href="EXTENDING.html">EXTENDING.html</a> </p>
|
||||||
|
<p>
|
||||||
|
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nobrushspacing=no</code>" or "<code>brushspacing=yes</code>". In both cases, may be overridden by the command-line option "<code>--brushspacing</code>". </p>
|
||||||
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
@ -5431,7 +5444,7 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
You can download fonts for supported languages from Tux Paint's website, <a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>. (Look in the 'Fonts' section under 'Download.') </p>
|
You can download fonts for supported languages from Tux Paint's website, <a href="https://tuxpaint.org/">https://tuxpaint.org/</a>. (Look in the 'Fonts' section under 'Download.') </p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Under Unix and Linux, you can use the <code>Makefile</code> that comes with the font to install the font in the appropriate location. </p>
|
Under Unix and Linux, you can use the <code>Makefile</code> that comes with the font to install the font in the appropriate location. </p>
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
PNG Documentation </h1>
|
PNG Documentation </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2007-2021 by various contributors; see AUTHORS.<br>
|
Copyright © 2007-2022 by various contributors; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
March 9, 2021 </p>
|
January 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
||||||
|
|
@ -23,13 +23,13 @@
|
||||||
A simple drawing program for children </h3>
|
A simple drawing program for children </h3>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.<br/>
|
Copyright © 2002-2022 by various contributors; see AUTHORS.<br/>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a><br/>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a><br/>
|
||||||
<a href="https://twitter.com/TuxPaintTweets">@TuxPaintTweets on Twitter</a>
|
<a href="https://twitter.com/TuxPaintTweets">@TuxPaintTweets on Twitter</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
November 25, 2021 </p>
|
January 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -429,6 +429,23 @@
|
||||||
alt="">
|
alt="">
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<strong>Brush Spacing</strong>
|
||||||
|
<blockquote>
|
||||||
|
<p>
|
||||||
|
The space between each position where a brush is applied to the canvas can vary. Some brushes (such as the footprints and flower) are spaced, by default, far enough apart that they don't overlap. Other brushes (such as the basic circular ones) are spaced closely, so they make a continuous stroke. </p>
|
||||||
|
<p>
|
||||||
|
The default spacing of brushes may be overridden using by clicking within the triangular-shaped series of bars at the bottom right; the larger the bar, the wider the spacing. Brush spacing affects both tools that use the brushes: the "Paint" tool and the "Lines" tool. </p>
|
||||||
|
<p align="center">
|
||||||
|
<img src=
|
||||||
|
"../../html/images/tool_slider.png"
|
||||||
|
width="96"
|
||||||
|
height="48"
|
||||||
|
alt="">
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
(<strong>Note</strong>: If the "<code>nobrushspacing</code>" option is set, Tux Paint won't display the brush spacing controls. See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation.) </p>
|
||||||
|
</blockquote>
|
||||||
|
|
||||||
<hr size="1">
|
<hr size="1">
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
|
|
@ -516,6 +533,9 @@
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Some brushes are animated, and will show a pattern of shapes along the line. Others are directional, and will show a different shape depending on the angle of the brush. And finally some are both animated and directional. See "Paint", above, to learn more. </p>
|
Some brushes are animated, and will show a pattern of shapes along the line. Others are directional, and will show a different shape depending on the angle of the brush. And finally some are both animated and directional. See "Paint", above, to learn more. </p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Different brushes have different spacing, leaving either a series of individual shapes, or a continuous stroke of the brush shape. Brush spacing may be adjusted. See "Paint", above, to learn more. </p>
|
||||||
<br clear="all">
|
<br clear="all">
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
|
|
@ -1151,6 +1171,14 @@
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<strong>Note:</strong> The slowest setting does not automatically advance through the slides. Use it for when you want to step through them manually. (This does not apply to an exported animated GIF.) </p>
|
<strong>Note:</strong> The slowest setting does not automatically advance through the slides. Use it for when you want to step through them manually. (This does not apply to an exported animated GIF.) </p>
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<img src=
|
||||||
|
"../../html/images/tool_slider.png"
|
||||||
|
width="96"
|
||||||
|
height="48"
|
||||||
|
alt="">
|
||||||
|
</p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
|
|
@ -1467,7 +1495,7 @@
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
To learn more, visit the "Contact" page of the official Tux Paint website: <a href="http://tuxpaint.org/contact/">http://tuxpaint.org/contact/</a> </p>
|
To learn more, visit the "Contact" page of the official Tux Paint website: <a href="https://tuxpaint.org/contact/">https://tuxpaint.org/contact/</a> </p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -1492,7 +1520,7 @@
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
To learn more, visit the "Help Us" page of the official Tux Paint website: <a href="http://tuxpaint.org/help/">http://tuxpaint.org/help/</a> </p>
|
To learn more, visit the "Help Us" page of the official Tux Paint website: <a href="https://tuxpaint.org/help/">https://tuxpaint.org/help/</a> </p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
Signals Documentation </h1>
|
Signals Documentation </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2019-2021 by various contributors; see AUTHORS.<br>
|
Copyright © 2019-2022 by various contributors; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
March 9, 2021 </p>
|
January 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
SVG Documentation </h1>
|
SVG Documentation </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2007-2021 by various contributors; see AUTHORS.<br>
|
Copyright © 2007-2022 by various contributors; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
March 9, 2021 </p>
|
January 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
versión 0.9.28 Advanced Stamps 'How-To'
|
versión 0.9.28 Advanced Stamps 'How-To'
|
||||||
|
|
||||||
Copyright © 2006-2021 by Albert Cahalan and others; see AUTHORS.
|
Copyright © 2006-2022 by Albert Cahalan and others; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
agosto 29, 2021
|
enero 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
versión 0.9.28
|
versión 0.9.28
|
||||||
Environment Variables Documentation
|
Environment Variables Documentation
|
||||||
|
|
||||||
Copyright © 2021-2021 by various contributors; see AUTHORS.
|
Copyright © 2021-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
agosto 8, 2021
|
enero 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
versión 0.9.28
|
versión 0.9.28
|
||||||
|
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.
|
Copyright © 2002-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
septiembre 19, 2021
|
enero 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -679,15 +679,15 @@ Translations
|
||||||
template ("tuxpaint.pot"), since new text is added, and old text is
|
template ("tuxpaint.pot"), since new text is added, and old text is
|
||||||
occasionally changed. The text catalog for the upcoming, unreleased
|
occasionally changed. The text catalog for the upcoming, unreleased
|
||||||
version of Tux Paint can be found in Tux Paint's Git repository (see:
|
version of Tux Paint can be found in Tux Paint's Git repository (see:
|
||||||
http://www.tuxpaint.org/download/source/git/), and on the Tux Paint
|
https://tuxpaint.org/download/source/git/), and on the Tux Paint website
|
||||||
website at http://www.tuxpaint.org/help/po/.
|
at https://tuxpaint.org/help/po/.
|
||||||
|
|
||||||
To edit an existing translation, download the latest ".po" file for that
|
To edit an existing translation, download the latest ".po" file for that
|
||||||
language, and edit it as described above.
|
language, and edit it as described above.
|
||||||
|
|
||||||
You may send new or edited translation files to Bill Kendrick, lead
|
You may send new or edited translation files to Bill Kendrick, lead
|
||||||
developer of Tux Paint, at: bill@newbreedsoftware.com, or post them to
|
developer of Tux Paint, at: bill@newbreedsoftware.com, or post them to
|
||||||
the "tuxpaint-i18n" mailing list (see: http://www.tuxpaint.org/lists/).
|
the "tuxpaint-i18n" mailing list (see: https://tuxpaint.org/lists/).
|
||||||
|
|
||||||
Alternatively, if you have an account with SourceForge.net, you can
|
Alternatively, if you have an account with SourceForge.net, you can
|
||||||
request to be added to the "tuxpaint" project and receive write-access
|
request to be added to the "tuxpaint" project and receive write-access
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
versión 0.9.28 Frequently Asked Questions
|
versión 0.9.28 Frequently Asked Questions
|
||||||
|
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.
|
Copyright © 2002-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
agosto 29, 2021
|
enero 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -170,7 +170,7 @@ Interface Problems
|
||||||
The appropriate fonts for such locales can be downloaded from
|
The appropriate fonts for such locales can be downloaded from
|
||||||
the Tux Paint website:
|
the Tux Paint website:
|
||||||
|
|
||||||
http://www.tuxpaint.org/download/fonts/
|
https://tuxpaint.org/download/fonts/
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -637,7 +637,7 @@ Help / Contact
|
||||||
Any questions you don't see answered? Please let us know! You can
|
Any questions you don't see answered? Please let us know! You can
|
||||||
subscribe and post to our "tuxpaint-users" mailing list:
|
subscribe and post to our "tuxpaint-users" mailing list:
|
||||||
|
|
||||||
http://www.tuxpaint.org/lists/
|
https://tuxpaint.org/lists/
|
||||||
|
|
||||||
Or, contact lead developer Bill Kendrick directly:
|
Or, contact lead developer Bill Kendrick directly:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
versión 0.9.28
|
versión 0.9.28
|
||||||
Installation Documentation
|
Installation Documentation
|
||||||
|
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.
|
Copyright © 2002-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
septiembre 17, 2021
|
enero 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -637,11 +637,11 @@ Compiling and Installation
|
||||||
installed to /opt/local (same as MacPorts) for the library to be
|
installed to /opt/local (same as MacPorts) for the library to be
|
||||||
included in TuxPaint.dmg.
|
included in TuxPaint.dmg.
|
||||||
|
|
||||||
|
$ sudo port install rust cargo
|
||||||
$ git clone https://github.com/ImageOptim/libimagequant.git
|
$ git clone https://github.com/ImageOptim/libimagequant.git
|
||||||
$ cd libimagequant
|
$ cd libimagequant/imagequant-sys
|
||||||
$ ./configure --prefix=/opt/local
|
$ cargo build --release
|
||||||
$ make
|
$ sudo make PREFIX=/opt/local install
|
||||||
$ sudo make install
|
|
||||||
|
|
||||||
WARNING: Having any UNIX-like toolset installed on your Mac besides
|
WARNING: Having any UNIX-like toolset installed on your Mac besides
|
||||||
MacPorts and Xcode, such as Fink or Brew, will prevent your app
|
MacPorts and Xcode, such as Fink or Brew, will prevent your app
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,10 @@
|
||||||
|
|
||||||
Options Documentation
|
Options Documentation
|
||||||
|
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.
|
Copyright © 2002-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
agosto 29, 2021
|
enero 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -454,6 +454,21 @@ Simplification
|
||||||
"nolabel=no" or "label=yes". In both cases, may be
|
"nolabel=no" or "label=yes". In both cases, may be
|
||||||
overridden by the command-line option "--label".
|
overridden by the command-line option "--label".
|
||||||
|
|
||||||
|
nobrushspacing=yes
|
||||||
|
|
||||||
|
Disables the brush spacing option of the Paint and Lines
|
||||||
|
tools. The brushes' default spacings will be used.
|
||||||
|
|
||||||
|
Note: The brush spacing option was added to Tux Paint's user
|
||||||
|
interface in version 0.9.28. For more information on brush
|
||||||
|
spacing, see EXTENDING.html
|
||||||
|
|
||||||
|
Note: If used in a system-wide configuration file, may be
|
||||||
|
overridden by the user's configuration file using
|
||||||
|
"nobrushspacing=no" or "brushspacing=yes". In both cases,
|
||||||
|
may be overridden by the command-line option
|
||||||
|
"--brushspacing".
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
Languages
|
Languages
|
||||||
|
|
@ -1960,7 +1975,7 @@ Special Fonts
|
||||||
/usr/share/tuxpaint/fonts/locale/ko.ttf
|
/usr/share/tuxpaint/fonts/locale/ko.ttf
|
||||||
|
|
||||||
You can download fonts for supported languages from Tux Paint's
|
You can download fonts for supported languages from Tux Paint's
|
||||||
website, http://www.tuxpaint.org/. (Look in the 'Fonts' section under
|
website, https://tuxpaint.org/. (Look in the 'Fonts' section under
|
||||||
'Download.')
|
'Download.')
|
||||||
|
|
||||||
Under Unix and Linux, you can use the Makefile that comes with the
|
Under Unix and Linux, you can use the Makefile that comes with the
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
versión 0.9.28
|
versión 0.9.28
|
||||||
PNG Documentation
|
PNG Documentation
|
||||||
|
|
||||||
Copyright © 2007-2021 by various contributors; see AUTHORS.
|
Copyright © 2007-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
marzo 9, 2021
|
enero 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,11 @@
|
||||||
|
|
||||||
A simple drawing program for children
|
A simple drawing program for children
|
||||||
|
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.
|
Copyright © 2002-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
@TuxPaintTweets on Twitter
|
@TuxPaintTweets on Twitter
|
||||||
|
|
||||||
noviembre 25, 2021
|
enero 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -239,6 +239,25 @@ Available Tools
|
||||||
As you draw, a sound is played. The bigger the brush, the
|
As you draw, a sound is played. The bigger the brush, the
|
||||||
lower the pitch.
|
lower the pitch.
|
||||||
|
|
||||||
|
Brush Spacing
|
||||||
|
|
||||||
|
The space between each position where a brush is applied
|
||||||
|
to the canvas can vary. Some brushes (such as the
|
||||||
|
footprints and flower) are spaced, by default, far enough
|
||||||
|
apart that they don't overlap. Other brushes (such as the
|
||||||
|
basic circular ones) are spaced closely, so they make a
|
||||||
|
continuous stroke.
|
||||||
|
|
||||||
|
The default spacing of brushes may be overridden using by
|
||||||
|
clicking within the triangular-shaped series of bars at
|
||||||
|
the bottom right; the larger the bar, the wider the
|
||||||
|
spacing. Brush spacing affects both tools that use the
|
||||||
|
brushes: the "Paint" tool and the "Lines" tool.
|
||||||
|
|
||||||
|
(Note: If the "nobrushspacing" option is set, Tux Paint
|
||||||
|
won't display the brush spacing controls. See the
|
||||||
|
"Options" documentation.)
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
"Stamp" Tool (Rubber Stamps)
|
"Stamp" Tool (Rubber Stamps)
|
||||||
|
|
@ -305,6 +324,11 @@ Available Tools
|
||||||
finally some are both animated and directional. See "Paint",
|
finally some are both animated and directional. See "Paint",
|
||||||
above, to learn more.
|
above, to learn more.
|
||||||
|
|
||||||
|
Different brushes have different spacing, leaving either a
|
||||||
|
series of individual shapes, or a continuous stroke of the
|
||||||
|
brush shape. Brush spacing may be adjusted. See "Paint",
|
||||||
|
above, to learn more.
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
"Shapes" Tool
|
"Shapes" Tool
|
||||||
|
|
@ -1024,7 +1048,7 @@ Importing Pictures Manually
|
||||||
* Contact the developers directly
|
* Contact the developers directly
|
||||||
|
|
||||||
To learn more, visit the "Contact" page of the official Tux Paint
|
To learn more, visit the "Contact" page of the official Tux Paint
|
||||||
website: http://tuxpaint.org/contact/
|
website: https://tuxpaint.org/contact/
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -1041,4 +1065,4 @@ Importing Pictures Manually
|
||||||
* Promote or help support others using Tux Paint
|
* Promote or help support others using Tux Paint
|
||||||
|
|
||||||
To learn more, visit the "Help Us" page of the official Tux Paint
|
To learn more, visit the "Help Us" page of the official Tux Paint
|
||||||
website: http://tuxpaint.org/help/
|
website: https://tuxpaint.org/help/
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
versión 0.9.28
|
versión 0.9.28
|
||||||
Signals Documentation
|
Signals Documentation
|
||||||
|
|
||||||
Copyright © 2019-2021 by various contributors; see AUTHORS.
|
Copyright © 2019-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
marzo 9, 2021
|
enero 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
versión 0.9.28
|
versión 0.9.28
|
||||||
SVG Documentation
|
SVG Documentation
|
||||||
|
|
||||||
Copyright © 2007-2021 by various contributors; see AUTHORS.
|
Copyright © 2007-2022 by various contributors; see AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
marzo 9, 2021
|
enero 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,12 +20,12 @@
|
||||||
versión 0.9.28 Advanced Stamps 'How-To' </h1>
|
versión 0.9.28 Advanced Stamps 'How-To' </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2006-2021 by Albert Cahalan and others; see AUTHORS.<br>
|
Copyright © 2006-2022 by Albert Cahalan and others; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
agosto 29, 2021 </p>
|
enero 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
Environment Variables Documentation </h1>
|
Environment Variables Documentation </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2021-2021 by various contributors; see AUTHORS.<br>
|
Copyright © 2021-2022 by various contributors; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
agosto 8, 2021 </p>
|
enero 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
versión 0.9.28 </h1>
|
versión 0.9.28 </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.<br>
|
Copyright © 2002-2022 by various contributors; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
septiembre 19, 2021 </p>
|
enero 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -867,13 +867,13 @@
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<i>Note:</i> It is best to always work off of the <i>latest</i> Tux Paint text catalog template ("<code>tuxpaint.pot</code>"), since new text is added, and old text is occasionally changed. The text catalog for the upcoming, unreleased version of Tux Paint can be found in Tux Paint's Git repository (see: <a href="http://www.tuxpaint.org/download/source/git/">http://www.tuxpaint.org/download/source/git/</a>), and on the Tux Paint website at <a href="http://www.tuxpaint.org/help/po/">http://www.tuxpaint.org/help/po/</a>. </p>
|
<i>Note:</i> It is best to always work off of the <i>latest</i> Tux Paint text catalog template ("<code>tuxpaint.pot</code>"), since new text is added, and old text is occasionally changed. The text catalog for the upcoming, unreleased version of Tux Paint can be found in Tux Paint's Git repository (see: <a href="https://tuxpaint.org/download/source/git/">https://tuxpaint.org/download/source/git/</a>), and on the Tux Paint website at <a href="https://tuxpaint.org/help/po/">https://tuxpaint.org/help/po/</a>. </p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
To edit an existing translation, download the latest "<code>.po</code>" file for that language, and edit it as described above. </p>
|
To edit an existing translation, download the latest "<code>.po</code>" file for that language, and edit it as described above. </p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
You may send new or edited translation files to Bill Kendrick, lead developer of Tux Paint, at: <a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>, or post them to the "tuxpaint-i18n" mailing list (see: <a href="http://www.tuxpaint.org/lists/">http://www.tuxpaint.org/lists/</a>). </p>
|
You may send new or edited translation files to Bill Kendrick, lead developer of Tux Paint, at: <a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>, or post them to the "tuxpaint-i18n" mailing list (see: <a href="https://tuxpaint.org/lists/">https://tuxpaint.org/lists/</a>). </p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Alternatively, if you have an account with <a href="http://www.sourceforge.net/">SourceForge.net</a>, you can request to be added to the "<code>tuxpaint</code>" project and receive write-access to the Git source code repository so that you may commit your changes directly. </p>
|
Alternatively, if you have an account with <a href="http://www.sourceforge.net/">SourceForge.net</a>, you can request to be added to the "<code>tuxpaint</code>" project and receive write-access to the Git source code repository so that you may commit your changes directly. </p>
|
||||||
|
|
|
||||||
|
|
@ -20,12 +20,12 @@
|
||||||
versión 0.9.28 Frequently Asked Questions </h1>
|
versión 0.9.28 Frequently Asked Questions </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.<br>
|
Copyright © 2002-2022 by various contributors; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
agosto 29, 2021 </p>
|
enero 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -254,7 +254,7 @@
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
<a href=
|
<a href=
|
||||||
"http://www.tuxpaint.org/download/fonts/">http://www.tuxpaint.org/download/fonts/</a>
|
"https://tuxpaint.org/download/fonts/">https://tuxpaint.org/download/fonts/</a>
|
||||||
</p>
|
</p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</li>
|
</li>
|
||||||
|
|
@ -822,7 +822,7 @@
|
||||||
|
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
<a href="http://www.tuxpaint.org/lists/">http://www.tuxpaint.org/lists/</a>
|
<a href="https://tuxpaint.org/lists/">https://tuxpaint.org/lists/</a>
|
||||||
</p>
|
</p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
Installation Documentation </h1>
|
Installation Documentation </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.<br>
|
Copyright © 2002-2022 by various contributors; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
septiembre 17, 2021 </p>
|
enero 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2" noshade />
|
<hr size="2" noshade />
|
||||||
|
|
@ -797,11 +797,11 @@
|
||||||
<p>
|
<p>
|
||||||
<code>libimagequant</code> is not available from MacPorts as of this writing. It can be installed from the source code as follows. It should be installed to <code>/opt/local</code> (same as MacPorts) for the library to be included in <code>TuxPaint.dmg</code>. <blockquote>
|
<code>libimagequant</code> is not available from MacPorts as of this writing. It can be installed from the source code as follows. It should be installed to <code>/opt/local</code> (same as MacPorts) for the library to be included in <code>TuxPaint.dmg</code>. <blockquote>
|
||||||
<code>
|
<code>
|
||||||
|
$ sudo port install rust cargo<br/>
|
||||||
$ git clone https://github.com/ImageOptim/libimagequant.git<br/>
|
$ git clone https://github.com/ImageOptim/libimagequant.git<br/>
|
||||||
$ cd libimagequant<br/>
|
$ cd libimagequant/imagequant-sys<br/>
|
||||||
$ ./configure --prefix=/opt/local<br/>
|
$ cargo build --release<br/>
|
||||||
$ make<br/>
|
$ sudo make PREFIX=/opt/local install
|
||||||
$ sudo make install
|
|
||||||
</code>
|
</code>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</p>
|
</p>
|
||||||
|
|
|
||||||
|
|
@ -20,12 +20,12 @@
|
||||||
Options Documentation </h2>
|
Options Documentation </h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.<br>
|
Copyright © 2002-2022 by various contributors; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
agosto 29, 2021 </p>
|
enero 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -620,6 +620,19 @@
|
||||||
<p>
|
<p>
|
||||||
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nolabel=no</code>" or "<code>label=yes</code>". In both cases, may be overridden by the command-line option "<code>--label</code>". </p>
|
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nolabel=no</code>" or "<code>label=yes</code>". In both cases, may be overridden by the command-line option "<code>--label</code>". </p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
|
<dt>
|
||||||
|
<code><b>nobrushspacing=yes</b></code>
|
||||||
|
</dt>
|
||||||
|
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Disables the brush spacing option of the <b>Paint</b> and <b>Lines</b> tools. The brushes' default spacings will be used. </p>
|
||||||
|
<p>
|
||||||
|
Note: The brush spacing option was added to Tux Paint's user interface in version 0.9.28. For more information on brush spacing, see <a href="EXTENDING.html">EXTENDING.html</a> </p>
|
||||||
|
<p>
|
||||||
|
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nobrushspacing=no</code>" or "<code>brushspacing=yes</code>". In both cases, may be overridden by the command-line option "<code>--brushspacing</code>". </p>
|
||||||
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
@ -5408,7 +5421,7 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
You can download fonts for supported languages from Tux Paint's website, <a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>. (Look in the 'Fonts' section under 'Download.') </p>
|
You can download fonts for supported languages from Tux Paint's website, <a href="https://tuxpaint.org/">https://tuxpaint.org/</a>. (Look in the 'Fonts' section under 'Download.') </p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Under Unix and Linux, you can use the <code>Makefile</code> that comes with the font to install the font in the appropriate location. </p>
|
Under Unix and Linux, you can use the <code>Makefile</code> that comes with the font to install the font in the appropriate location. </p>
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
PNG Documentation </h1>
|
PNG Documentation </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2007-2021 by various contributors; see AUTHORS.<br>
|
Copyright © 2007-2022 by various contributors; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
marzo 9, 2021 </p>
|
enero 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
||||||
|
|
@ -23,13 +23,13 @@
|
||||||
A simple drawing program for children </h3>
|
A simple drawing program for children </h3>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2002-2021 by various contributors; see AUTHORS.<br/>
|
Copyright © 2002-2022 by various contributors; see AUTHORS.<br/>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a><br/>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a><br/>
|
||||||
<a href="https://twitter.com/TuxPaintTweets">@TuxPaintTweets on Twitter</a>
|
<a href="https://twitter.com/TuxPaintTweets">@TuxPaintTweets on Twitter</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
noviembre 25, 2021 </p>
|
enero 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -429,6 +429,23 @@
|
||||||
alt="">
|
alt="">
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<strong>Brush Spacing</strong>
|
||||||
|
<blockquote>
|
||||||
|
<p>
|
||||||
|
The space between each position where a brush is applied to the canvas can vary. Some brushes (such as the footprints and flower) are spaced, by default, far enough apart that they don't overlap. Other brushes (such as the basic circular ones) are spaced closely, so they make a continuous stroke. </p>
|
||||||
|
<p>
|
||||||
|
The default spacing of brushes may be overridden using by clicking within the triangular-shaped series of bars at the bottom right; the larger the bar, the wider the spacing. Brush spacing affects both tools that use the brushes: the "Paint" tool and the "Lines" tool. </p>
|
||||||
|
<p align="center">
|
||||||
|
<img src=
|
||||||
|
"../../html/images/tool_slider.png"
|
||||||
|
width="96"
|
||||||
|
height="48"
|
||||||
|
alt="">
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
(<strong>Note</strong>: If the "<code>nobrushspacing</code>" option is set, Tux Paint won't display the brush spacing controls. See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation.) </p>
|
||||||
|
</blockquote>
|
||||||
|
|
||||||
<hr size="1">
|
<hr size="1">
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
|
|
@ -516,6 +533,9 @@
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Some brushes are animated, and will show a pattern of shapes along the line. Others are directional, and will show a different shape depending on the angle of the brush. And finally some are both animated and directional. See "Paint", above, to learn more. </p>
|
Some brushes are animated, and will show a pattern of shapes along the line. Others are directional, and will show a different shape depending on the angle of the brush. And finally some are both animated and directional. See "Paint", above, to learn more. </p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Different brushes have different spacing, leaving either a series of individual shapes, or a continuous stroke of the brush shape. Brush spacing may be adjusted. See "Paint", above, to learn more. </p>
|
||||||
<br clear="all">
|
<br clear="all">
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
|
|
@ -1151,6 +1171,14 @@
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<strong>Note:</strong> The slowest setting does not automatically advance through the slides. Use it for when you want to step through them manually. (This does not apply to an exported animated GIF.) </p>
|
<strong>Note:</strong> The slowest setting does not automatically advance through the slides. Use it for when you want to step through them manually. (This does not apply to an exported animated GIF.) </p>
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<img src=
|
||||||
|
"../../html/images/tool_slider.png"
|
||||||
|
width="96"
|
||||||
|
height="48"
|
||||||
|
alt="">
|
||||||
|
</p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
|
|
@ -1467,7 +1495,7 @@
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
To learn more, visit the "Contact" page of the official Tux Paint website: <a href="http://tuxpaint.org/contact/">http://tuxpaint.org/contact/</a> </p>
|
To learn more, visit the "Contact" page of the official Tux Paint website: <a href="https://tuxpaint.org/contact/">https://tuxpaint.org/contact/</a> </p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -1492,7 +1520,7 @@
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
To learn more, visit the "Help Us" page of the official Tux Paint website: <a href="http://tuxpaint.org/help/">http://tuxpaint.org/help/</a> </p>
|
To learn more, visit the "Help Us" page of the official Tux Paint website: <a href="https://tuxpaint.org/help/">https://tuxpaint.org/help/</a> </p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
Signals Documentation </h1>
|
Signals Documentation </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2019-2021 by various contributors; see AUTHORS.<br>
|
Copyright © 2019-2022 by various contributors; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
marzo 9, 2021 </p>
|
enero 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
SVG Documentation </h1>
|
SVG Documentation </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2007-2021 by various contributors; see AUTHORS.<br>
|
Copyright © 2007-2022 by various contributors; see AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
marzo 9, 2021 </p>
|
enero 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
version 0.9.28 'Guide pratique" pour les tampons de haute qualité
|
version 0.9.28 'Guide pratique" pour les tampons de haute qualité
|
||||||
|
|
||||||
Copyright &copie; 2006-2021 par Albert Cahalan et d'autres; voir AUTHORS.
|
Copyright &copie; 2006-2022 par Albert Cahalan et d'autres; voir AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
août 29, 2021
|
janvier 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
version 0.9.28
|
version 0.9.28
|
||||||
Documentation sur les variables d'environnement
|
Documentation sur les variables d'environnement
|
||||||
|
|
||||||
Copyright &copie; 2021-2021 par divers contributeurs; voir AUTHORS.
|
Copyright &copie; 2021-2022 par divers contributeurs; voir AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
août 8, 2021
|
janvier 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
version 0.9.28
|
version 0.9.28
|
||||||
|
|
||||||
Copyright &copie; 2002-2021 par divers contributeurs; voir AUTHORS.
|
Copyright &copie; 2002-2022 par divers contributeurs; voir AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
septembre 19, 2021
|
janvier 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -740,8 +740,8 @@ Traductions
|
||||||
texte est ajouté et l'ancien texte est parfois modifié. Le catalogue de
|
texte est ajouté et l'ancien texte est parfois modifié. Le catalogue de
|
||||||
textes de la prochaine version inédite de Tux Paint se trouve dans le
|
textes de la prochaine version inédite de Tux Paint se trouve dans le
|
||||||
référentiel Git de Tux Paint (voir :
|
référentiel Git de Tux Paint (voir :
|
||||||
http://www.tuxpaint.org/download/source/git/ ), et sur le site Web de
|
https://tuxpaint.org/download/source/git/ ), et sur le site Web de Tux
|
||||||
Tux Paint à http://www.tuxpaint.org/help/po/.
|
Paint à https://tuxpaint.org/help/po/.
|
||||||
|
|
||||||
Pour modifier une traduction existante, téléchargez le dernier fichier
|
Pour modifier une traduction existante, téléchargez le dernier fichier
|
||||||
".po" pour cette langue et modifiez-le comme décrit ci-dessus.
|
".po" pour cette langue et modifiez-le comme décrit ci-dessus.
|
||||||
|
|
@ -749,7 +749,7 @@ Traductions
|
||||||
Vous pouvez envoyer des fichiers de traduction nouveaux ou modifiés à
|
Vous pouvez envoyer des fichiers de traduction nouveaux ou modifiés à
|
||||||
Bill Kendrick , responsable du développement principal de Tux Paint , à
|
Bill Kendrick , responsable du développement principal de Tux Paint , à
|
||||||
: bill@newbreedsoftware.com, ou les poster sur la liste de diffusion
|
: bill@newbreedsoftware.com, ou les poster sur la liste de diffusion
|
||||||
"tuxpaint-i18n" (voir : http://www.tuxpaint.org/lists/ ).
|
"tuxpaint-i18n" (voir : https://tuxpaint.org/lists/ ).
|
||||||
|
|
||||||
Autrement, si vous avez un compte chez SourceForge.net , vous pouvez
|
Autrement, si vous avez un compte chez SourceForge.net , vous pouvez
|
||||||
demander à être ajouté au projet "tuxpaint" et obtenir un accès en
|
demander à être ajouté au projet "tuxpaint" et obtenir un accès en
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
version 0.9.28 Questions fréquemment posées
|
version 0.9.28 Questions fréquemment posées
|
||||||
|
|
||||||
Copyright &copie; 2002-2021 par divers contributeurs; voir AUTHORS.
|
Copyright &copie; 2002-2022 par divers contributeurs; voir AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
août 29, 2021
|
janvier 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -187,7 +187,7 @@ Problèmes d'interface
|
||||||
Les fontes adéquates pour de telles langues peuvent être
|
Les fontes adéquates pour de telles langues peuvent être
|
||||||
téléchargées depuis le site de Tux Paint :
|
téléchargées depuis le site de Tux Paint :
|
||||||
|
|
||||||
http://www.tuxpaint.org/download/fonts/
|
https://tuxpaint.org/download/fonts/
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -688,7 +688,7 @@ Aide / Contact
|
||||||
faire savoir ! Vous pouvez vous abonner et écrire sur notre liste de
|
faire savoir ! Vous pouvez vous abonner et écrire sur notre liste de
|
||||||
diffusion "tuxpaint-users" :
|
diffusion "tuxpaint-users" :
|
||||||
|
|
||||||
http://www.tuxpaint.org/lists/
|
https://tuxpaint.org/lists/
|
||||||
|
|
||||||
Ou contactez directement le développeur principal Bill Kendrick :
|
Ou contactez directement le développeur principal Bill Kendrick :
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
version 0.9.28
|
version 0.9.28
|
||||||
Documentation sur l'installation
|
Documentation sur l'installation
|
||||||
|
|
||||||
Copyright &copie; 2002-2021 par divers contributeurs; voir AUTHORS.
|
Copyright &copie; 2002-2022 par divers contributeurs; voir AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
septembre 17, 2021
|
janvier 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -666,11 +666,11 @@ Compilation et installation
|
||||||
peut être installé sur /opt/local (comme pour MacPorts) pour la
|
peut être installé sur /opt/local (comme pour MacPorts) pour la
|
||||||
bibliothèque devant être incluse dans TuxPaint.dmg.
|
bibliothèque devant être incluse dans TuxPaint.dmg.
|
||||||
|
|
||||||
|
$ sudo port install rust cargo
|
||||||
$ git clone https://github.com/ImageOptim/libimagequant.git
|
$ git clone https://github.com/ImageOptim/libimagequant.git
|
||||||
$ cd libimagequant
|
$ cd libimagequant/imagequant-sys
|
||||||
$ ./configure --prefix=/opt/local
|
$ cargo build --release
|
||||||
$ make
|
$ sudo make PREFIX=/opt/local install
|
||||||
$ sudo make install
|
|
||||||
|
|
||||||
ATTENTION :Posséder des outils Unix à côté de MacPorts et Xcode,
|
ATTENTION :Posséder des outils Unix à côté de MacPorts et Xcode,
|
||||||
tels que Fink ou Brew, vous empêchera de créer un programme
|
tels que Fink ou Brew, vous empêchera de créer un programme
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,10 @@
|
||||||
|
|
||||||
Documentation sur les options
|
Documentation sur les options
|
||||||
|
|
||||||
Copyright &copie; 2002-2021 par divers contributeurs; voir AUTHORS.
|
Copyright &copie; 2002-2022 par divers contributeurs; voir AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
août 29, 2021
|
janvier 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -500,6 +500,22 @@ Simplification
|
||||||
"label=yes". Dans les deux cas, il peut être remplacé avec
|
"label=yes". Dans les deux cas, il peut être remplacé avec
|
||||||
l'option en ligne de commande "--label".
|
l'option en ligne de commande "--label".
|
||||||
|
|
||||||
|
nobrushspacing=yes
|
||||||
|
|
||||||
|
Disables the brush spacing option of the Paint and Lines
|
||||||
|
tools. The brushes' default spacings will be used.
|
||||||
|
|
||||||
|
Note: The brush spacing option was added to Tux Paint's user
|
||||||
|
interface in version 0.9.28. For more information on brush
|
||||||
|
spacing, see EXTENDING.html
|
||||||
|
|
||||||
|
Note : si utilisé dans un fichier de configuration pour tout
|
||||||
|
le monde, il peut être remplacé par le fichier de
|
||||||
|
configuration de l(utilisateur en utilisant
|
||||||
|
"nobrushspacing=no" ou "brushspacing=yes". Dans les deux
|
||||||
|
cas, il peut être remplacé avec l'option en ligne de
|
||||||
|
commande "--brushspacing".
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
Langues
|
Langues
|
||||||
|
|
@ -2093,9 +2109,9 @@ Polices spéciales
|
||||||
|
|
||||||
/usr/share/tuxpaint/fonts/locale/ko.ttf
|
/usr/share/tuxpaint/fonts/locale/ko.ttf
|
||||||
|
|
||||||
Vous pouvez télécharger des polices pour les langues prises en charge
|
You can download fonts for supported languages from Tux Paint's
|
||||||
sur le site Web de Tux Paint, http://www.tuxpaint.org/ . (Regardez
|
website, https://tuxpaint.org/. (Look in the 'Fonts' section under
|
||||||
dans la section "Polices" sous "Télécharger".)
|
'Download.')
|
||||||
|
|
||||||
Sous Unix et Linux, vous pouvez utiliser le Makefile qui est fourni
|
Sous Unix et Linux, vous pouvez utiliser le Makefile qui est fourni
|
||||||
avec la police pour installer la police à l'emplacement approprié.
|
avec la police pour installer la police à l'emplacement approprié.
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
version 0.9.28
|
version 0.9.28
|
||||||
Documentation sur PNG pour Tux Paint
|
Documentation sur PNG pour Tux Paint
|
||||||
|
|
||||||
Copyright &copie; 2007-2021 par divers contributeurs; voir AUTHORS.
|
Copyright &copie; 2007-2022 par divers contributeurs; voir AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
mars 9, 2021
|
janvier 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,11 @@
|
||||||
|
|
||||||
Un programme simple pour les enfants
|
Un programme simple pour les enfants
|
||||||
|
|
||||||
Copyright &copie; 2002-2021 par divers contributeurs; voir AUTHORS.
|
Copyright &copie; 2002-2022 par divers contributeurs; voir AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
@TuxPaintTweets on Twitter
|
@TuxPaintTweets on Twitter
|
||||||
|
|
||||||
novembre 25, 2021
|
janvier 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -256,6 +256,25 @@ Outils disponibles
|
||||||
Pendant que vous dessinez, un son est joué. Plus la brosse
|
Pendant que vous dessinez, un son est joué. Plus la brosse
|
||||||
est grosse, plus le son est grave.
|
est grosse, plus le son est grave.
|
||||||
|
|
||||||
|
Espacement des pinceaux
|
||||||
|
|
||||||
|
The space between each position where a brush is applied
|
||||||
|
to the canvas can vary. Some brushes (such as the
|
||||||
|
footprints and flower) are spaced, by default, far enough
|
||||||
|
apart that they don't overlap. Other brushes (such as the
|
||||||
|
basic circular ones) are spaced closely, so they make a
|
||||||
|
continuous stroke.
|
||||||
|
|
||||||
|
The default spacing of brushes may be overridden using by
|
||||||
|
clicking within the triangular-shaped series of bars at
|
||||||
|
the bottom right; the larger the bar, the wider the
|
||||||
|
spacing. Brush spacing affects both tools that use the
|
||||||
|
brushes: the "Paint" tool and the "Lines" tool.
|
||||||
|
|
||||||
|
(Note: If the "nobrushspacing" option is set, Tux Paint
|
||||||
|
won't display the brush spacing controls. See the
|
||||||
|
"Options" documentation.)
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
Outil "Tampon" (tampon de caoutchouc)
|
Outil "Tampon" (tampon de caoutchouc)
|
||||||
|
|
@ -328,6 +347,11 @@ Outils disponibles
|
||||||
certains sont à la fois animés et directionnels. Voir
|
certains sont à la fois animés et directionnels. Voir
|
||||||
"Paint", au-dessus, pour en savoir plus.
|
"Paint", au-dessus, pour en savoir plus.
|
||||||
|
|
||||||
|
Different brushes have different spacing, leaving either a
|
||||||
|
series of individual shapes, or a continuous stroke of the
|
||||||
|
brush shape. Brush spacing may be adjusted. See "Paint",
|
||||||
|
above, to learn more.
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
Outil "Formes"
|
Outil "Formes"
|
||||||
|
|
@ -1109,7 +1133,7 @@ Importer des images manuellement
|
||||||
* Contacter les développeurs directement
|
* Contacter les développeurs directement
|
||||||
|
|
||||||
Pour en savoir plus, visitez la page "Contact" du site officiel de Tux
|
Pour en savoir plus, visitez la page "Contact" du site officiel de Tux
|
||||||
Paint : http://tuxpaint.org/contact/
|
Paint : https://tuxpaint.org/contact/
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -1126,4 +1150,4 @@ Importer des images manuellement
|
||||||
* Promouvoir ou aider ceux qui utilisent Tux Paint
|
* Promouvoir ou aider ceux qui utilisent Tux Paint
|
||||||
|
|
||||||
Pour en savoir plus, visitez la page "Nous aider" du site officiel de
|
Pour en savoir plus, visitez la page "Nous aider" du site officiel de
|
||||||
Tux Paint : http://tuxpaint.org/help/
|
Tux Paint : https://tuxpaint.org/help/
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
version 0.9.28
|
version 0.9.28
|
||||||
Documentation sur les signaux
|
Documentation sur les signaux
|
||||||
|
|
||||||
Copyright &copie; 2019-2021 par divers contributeurs; voir AUTHORS.
|
Copyright &copie; 2019-2022 par divers contributeurs; voir AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
mars 9, 2021
|
janvier 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
version 0.9.28
|
version 0.9.28
|
||||||
Documentation sur SVG
|
Documentation sur SVG
|
||||||
|
|
||||||
Copyright &copie; 2007-2021 par divers contributeurs; voir AUTHORS.
|
Copyright &copie; 2007-2022 par divers contributeurs; voir AUTHORS.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
mars 9, 2021
|
janvier 20, 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,12 +20,12 @@
|
||||||
version 0.9.28 'Guide pratique" pour les tampons de haute qualité </h1>
|
version 0.9.28 'Guide pratique" pour les tampons de haute qualité </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright &copie; 2006-2021 par Albert Cahalan et d'autres; voir AUTHORS.<br>
|
Copyright &copie; 2006-2022 par Albert Cahalan et d'autres; voir AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
août 29, 2021 </p>
|
janvier 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
Documentation sur les variables d'environnement </h1>
|
Documentation sur les variables d'environnement </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright &copie; 2021-2021 par divers contributeurs; voir AUTHORS.<br>
|
Copyright &copie; 2021-2022 par divers contributeurs; voir AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
août 8, 2021 </p>
|
janvier 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
version 0.9.28 </h1>
|
version 0.9.28 </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright &copie; 2002-2021 par divers contributeurs; voir AUTHORS.<br>
|
Copyright &copie; 2002-2022 par divers contributeurs; voir AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
septembre 19, 2021 </p>
|
janvier 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -867,13 +867,13 @@
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Remarque: Il est préférable de toujours travailler avec le <i>dernier</i> modèle de catalogue de texte Tux Paint ("<code>tuxpaint.pot</code>"), car un nouveau texte est ajouté et l'ancien texte est parfois modifié. Le catalogue de textes de la prochaine version inédite de Tux Paint se trouve dans le référentiel Git de Tux Paint (voir : <a href="http://www.tuxpaint.org/download/source/git/">http://www.tuxpaint.org/download/source/git/</a> ), et sur le site Web de Tux Paint à <a href="http://www.tuxpaint.org/help/po/">http://www.tuxpaint.org/help/po/</a>. </p>
|
Remarque: Il est préférable de toujours travailler avec le <i>dernier</i> modèle de catalogue de texte Tux Paint ("<code>tuxpaint.pot</code>"), car un nouveau texte est ajouté et l'ancien texte est parfois modifié. Le catalogue de textes de la prochaine version inédite de Tux Paint se trouve dans le référentiel Git de Tux Paint (voir : <a href="https://tuxpaint.org/download/source/git/">https://tuxpaint.org/download/source/git/</a> ), et sur le site Web de Tux Paint à <a href="https://tuxpaint.org/help/po/">https://tuxpaint.org/help/po/</a>. </p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Pour modifier une traduction existante, téléchargez le dernier fichier "<code>.po</code>" pour cette langue et modifiez-le comme décrit ci-dessus. </p>
|
Pour modifier une traduction existante, téléchargez le dernier fichier "<code>.po</code>" pour cette langue et modifiez-le comme décrit ci-dessus. </p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Vous pouvez envoyer des fichiers de traduction nouveaux ou modifiés à Bill Kendrick , responsable du développement principal de Tux Paint , à : <a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>, ou les poster sur la liste de diffusion "tuxpaint-i18n" (voir : <a href="http://www.tuxpaint.org/lists/">http://www.tuxpaint.org/lists/</a> ). </p>
|
Vous pouvez envoyer des fichiers de traduction nouveaux ou modifiés à Bill Kendrick , responsable du développement principal de Tux Paint , à : <a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>, ou les poster sur la liste de diffusion "tuxpaint-i18n" (voir : <a href="https://tuxpaint.org/lists/">https://tuxpaint.org/lists/</a> ). </p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Autrement, si vous avez un compte chez <a href="http://www.sourceforge.net/">SourceForge.net</a> , vous pouvez demander à être ajouté au projet "<code>tuxpaint</code>" et obtenir un accès en écriture au référentiel de code source Git afin que vous puissiez valider vos modifications directement. </p>
|
Autrement, si vous avez un compte chez <a href="http://www.sourceforge.net/">SourceForge.net</a> , vous pouvez demander à être ajouté au projet "<code>tuxpaint</code>" et obtenir un accès en écriture au référentiel de code source Git afin que vous puissiez valider vos modifications directement. </p>
|
||||||
|
|
|
||||||
|
|
@ -20,12 +20,12 @@
|
||||||
version 0.9.28 Questions fréquemment posées </h1>
|
version 0.9.28 Questions fréquemment posées </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright &copie; 2002-2021 par divers contributeurs; voir AUTHORS.<br>
|
Copyright &copie; 2002-2022 par divers contributeurs; voir AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
août 29, 2021 </p>
|
janvier 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -254,7 +254,7 @@
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
<a href=
|
<a href=
|
||||||
"http://www.tuxpaint.org/download/fonts/">http://www.tuxpaint.org/download/fonts/</a>
|
"https://tuxpaint.org/download/fonts/">https://tuxpaint.org/download/fonts/</a>
|
||||||
</p>
|
</p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</li>
|
</li>
|
||||||
|
|
@ -823,7 +823,7 @@ cible "nosound". (c'est-à-dire, ne lancez pas "<code>make nosound</code>") Assu
|
||||||
|
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
<a href="http://www.tuxpaint.org/lists/">http://www.tuxpaint.org/lists/</a>
|
<a href="https://tuxpaint.org/lists/">https://tuxpaint.org/lists/</a>
|
||||||
</p>
|
</p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
Documentation sur l'installation </h1>
|
Documentation sur l'installation </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright &copie; 2002-2021 par divers contributeurs; voir AUTHORS.<br>
|
Copyright &copie; 2002-2022 par divers contributeurs; voir AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
septembre 17, 2021 </p>
|
janvier 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2" noshade />
|
<hr size="2" noshade />
|
||||||
|
|
@ -797,11 +797,11 @@
|
||||||
<p>
|
<p>
|
||||||
<code>libimagequant</code> n'est pas disponible sur MacPorts à cette heure. Il peut être installé sur <code>/opt/local</code> (comme pour MacPorts) pour la bibliothèque devant être incluse dans <code>TuxPaint.dmg</code>. <blockquote>
|
<code>libimagequant</code> n'est pas disponible sur MacPorts à cette heure. Il peut être installé sur <code>/opt/local</code> (comme pour MacPorts) pour la bibliothèque devant être incluse dans <code>TuxPaint.dmg</code>. <blockquote>
|
||||||
<code>
|
<code>
|
||||||
|
$ sudo port install rust cargo<br/>
|
||||||
$ git clone https://github.com/ImageOptim/libimagequant.git<br/>
|
$ git clone https://github.com/ImageOptim/libimagequant.git<br/>
|
||||||
$ cd libimagequant<br/>
|
$ cd libimagequant/imagequant-sys<br/>
|
||||||
$ ./configure --prefix=/opt/local<br/>
|
$ cargo build --release<br/>
|
||||||
$ make<br/>
|
$ sudo make PREFIX=/opt/local install
|
||||||
$ sudo make install
|
|
||||||
</code>
|
</code>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</p>
|
</p>
|
||||||
|
|
|
||||||
|
|
@ -20,12 +20,12 @@
|
||||||
Documentation sur les options </h2>
|
Documentation sur les options </h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright &copie; 2002-2021 par divers contributeurs; voir AUTHORS.<br>
|
Copyright &copie; 2002-2022 par divers contributeurs; voir AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
août 29, 2021 </p>
|
janvier 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -620,6 +620,19 @@
|
||||||
<p>
|
<p>
|
||||||
Note : si utilisé dans un fichier de configuration pour tout le monde, il peut être remplacé par le fichier de configuration de l(utilisateur en utilisant "<code>nolabel=no</code>" ou "<code>label=yes</code>". Dans les deux cas, il peut être remplacé avec l'option en ligne de commande "<code>--label</code>". </p>
|
Note : si utilisé dans un fichier de configuration pour tout le monde, il peut être remplacé par le fichier de configuration de l(utilisateur en utilisant "<code>nolabel=no</code>" ou "<code>label=yes</code>". Dans les deux cas, il peut être remplacé avec l'option en ligne de commande "<code>--label</code>". </p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
|
<dt>
|
||||||
|
<code><b>nobrushspacing=yes</b></code>
|
||||||
|
</dt>
|
||||||
|
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Disables the brush spacing option of the <b>Paint</b> and <b>Lines</b> tools. The brushes' default spacings will be used. </p>
|
||||||
|
<p>
|
||||||
|
Note: The brush spacing option was added to Tux Paint's user interface in version 0.9.28. For more information on brush spacing, see <a href="EXTENDING.html">EXTENDING.html</a> </p>
|
||||||
|
<p>
|
||||||
|
Note : si utilisé dans un fichier de configuration pour tout le monde, il peut être remplacé par le fichier de configuration de l(utilisateur en utilisant "<code>nobrushspacing=no</code>" ou "<code>brushspacing=yes</code>". Dans les deux cas, il peut être remplacé avec l'option en ligne de commande "<code>--brushspacing</code>". </p>
|
||||||
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
@ -5408,7 +5421,7 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Vous pouvez télécharger des polices pour les langues prises en charge sur le site Web de Tux Paint, <a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a> . (Regardez dans la section "Polices" sous "Télécharger".) </p>
|
You can download fonts for supported languages from Tux Paint's website, <a href="https://tuxpaint.org/">https://tuxpaint.org/</a>. (Look in the 'Fonts' section under 'Download.') </p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Sous Unix et Linux, vous pouvez utiliser le <code>Makefile</code> qui est fourni avec la police pour installer la police à l'emplacement approprié. </p>
|
Sous Unix et Linux, vous pouvez utiliser le <code>Makefile</code> qui est fourni avec la police pour installer la police à l'emplacement approprié. </p>
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
Documentation sur PNG pour Tux Paint </h1>
|
Documentation sur PNG pour Tux Paint </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright &copie; 2007-2021 par divers contributeurs; voir AUTHORS.<br>
|
Copyright &copie; 2007-2022 par divers contributeurs; voir AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
mars 9, 2021 </p>
|
janvier 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
||||||
|
|
@ -23,13 +23,13 @@
|
||||||
Un programme simple pour les enfants </h3>
|
Un programme simple pour les enfants </h3>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright &copie; 2002-2021 par divers contributeurs; voir AUTHORS.<br/>
|
Copyright &copie; 2002-2022 par divers contributeurs; voir AUTHORS.<br/>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a><br/>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a><br/>
|
||||||
<a href="https://twitter.com/TuxPaintTweets">@TuxPaintTweets on Twitter</a>
|
<a href="https://twitter.com/TuxPaintTweets">@TuxPaintTweets on Twitter</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
novembre 25, 2021 </p>
|
janvier 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -429,6 +429,23 @@
|
||||||
alt="">
|
alt="">
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<strong>Espacement des pinceaux</strong>
|
||||||
|
<blockquote>
|
||||||
|
<p>
|
||||||
|
The space between each position where a brush is applied to the canvas can vary. Some brushes (such as the footprints and flower) are spaced, by default, far enough apart that they don't overlap. Other brushes (such as the basic circular ones) are spaced closely, so they make a continuous stroke. </p>
|
||||||
|
<p>
|
||||||
|
The default spacing of brushes may be overridden using by clicking within the triangular-shaped series of bars at the bottom right; the larger the bar, the wider the spacing. Brush spacing affects both tools that use the brushes: the "Paint" tool and the "Lines" tool. </p>
|
||||||
|
<p align="center">
|
||||||
|
<img src=
|
||||||
|
"../../html/images/tool_slider.png"
|
||||||
|
width="96"
|
||||||
|
height="48"
|
||||||
|
alt="">
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
(<strong>Note</strong>: If the "<code>nobrushspacing</code>" option is set, Tux Paint won't display the brush spacing controls. See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation.) </p>
|
||||||
|
</blockquote>
|
||||||
|
|
||||||
<hr size="1">
|
<hr size="1">
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
|
|
@ -516,6 +533,9 @@
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Certains pinceaux sont animés, et montre un ensemble formes le long d'une ligne. D'autres sont directionnels et montre des formes différentes suivant l'angle du pinceau. Et enfin certains sont à la fois animés et directionnels. Voir "Paint", au-dessus, pour en savoir plus. </p>
|
Certains pinceaux sont animés, et montre un ensemble formes le long d'une ligne. D'autres sont directionnels et montre des formes différentes suivant l'angle du pinceau. Et enfin certains sont à la fois animés et directionnels. Voir "Paint", au-dessus, pour en savoir plus. </p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Different brushes have different spacing, leaving either a series of individual shapes, or a continuous stroke of the brush shape. Brush spacing may be adjusted. See "Paint", above, to learn more. </p>
|
||||||
<br clear="all">
|
<br clear="all">
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
|
|
@ -1151,6 +1171,14 @@
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<strong>Remarque :</strong> le paramètre le plus lent ne fait pas automatiquement avancer les diapositives. Utilisez-le lorsque vous souhaitez les parcourir manuellement. (Cela ne s'applique pas à un GIF animé exporté.) </p>
|
<strong>Remarque :</strong> le paramètre le plus lent ne fait pas automatiquement avancer les diapositives. Utilisez-le lorsque vous souhaitez les parcourir manuellement. (Cela ne s'applique pas à un GIF animé exporté.) </p>
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<img src=
|
||||||
|
"../../html/images/tool_slider.png"
|
||||||
|
width="96"
|
||||||
|
height="48"
|
||||||
|
alt="">
|
||||||
|
</p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
|
|
@ -1467,7 +1495,7 @@
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Pour en savoir plus, visitez la page "Contact" du site officiel de Tux Paint : <a href="http://tuxpaint.org/contact/">http://tuxpaint.org/contact/</a> </p>
|
Pour en savoir plus, visitez la page "Contact" du site officiel de Tux Paint : <a href="https://tuxpaint.org/contact/">https://tuxpaint.org/contact/</a> </p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -1492,7 +1520,7 @@
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Pour en savoir plus, visitez la page "Nous aider" du site officiel de Tux Paint : <a href="http://tuxpaint.org/help/">http://tuxpaint.org/help/</a> </p>
|
Pour en savoir plus, visitez la page "Nous aider" du site officiel de Tux Paint : <a href="https://tuxpaint.org/help/">https://tuxpaint.org/help/</a> </p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
Documentation sur les signaux </h1>
|
Documentation sur les signaux </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright &copie; 2019-2021 par divers contributeurs; voir AUTHORS.<br>
|
Copyright &copie; 2019-2022 par divers contributeurs; voir AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
mars 9, 2021 </p>
|
janvier 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
Documentation sur SVG </h1>
|
Documentation sur SVG </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright &copie; 2007-2021 par divers contributeurs; voir AUTHORS.<br>
|
Copyright &copie; 2007-2022 par divers contributeurs; voir AUTHORS.<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
mars 9, 2021 </p>
|
janvier 20, 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
versión 0.9.28 «Como facer» os selos avanzados
|
versión 0.9.28 «Como facer» os selos avanzados
|
||||||
|
|
||||||
Copyright © 2006-2021 por Albert Cahalan e outros; vexa AUTHORS (AUTORES).
|
Copyright © 2006-2022 por Albert Cahalan e outros; vexa AUTHORS (AUTORES).
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
29 de Agosto de 2021
|
20 de Xaneiro de 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
versión 0.9.28
|
versión 0.9.28
|
||||||
Documentación de variábeis de contorno
|
Documentación de variábeis de contorno
|
||||||
|
|
||||||
Copyright © 2021-2021 por varios colaboradores; vexa AUTHORS (AUTORES).
|
Copyright © 2021-2022 por varios colaboradores; vexa AUTHORS (AUTORES).
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
8 de Agosto de 2021
|
20 de Xaneiro de 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
versión 0.9.28
|
versión 0.9.28
|
||||||
|
|
||||||
Copyright © 2002-2021 por varios colaboradores; vexa AUTHORS (AUTORES).
|
Copyright © 2002-2022 por varios colaboradores; vexa AUTHORS (AUTORES).
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
19 de Setembro de 2021
|
20 de Xaneiro de 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -699,8 +699,8 @@ Traducións
|
||||||
Tux Paint («tuxpaint.pot»), xa que se engade n novos textos e o texto
|
Tux Paint («tuxpaint.pot»), xa que se engade n novos textos e o texto
|
||||||
antigo cambia ocasionalmente. O catálogo de texto para a próxima versión
|
antigo cambia ocasionalmente. O catálogo de texto para a próxima versión
|
||||||
inédita de Tux Paint pódese atopar no repositorio Git de Tux Paint (ver:
|
inédita de Tux Paint pódese atopar no repositorio Git de Tux Paint (ver:
|
||||||
http://www.tuxpaint.org/download/source/git/) e no sitio web de Tux
|
https://tuxpaint.org/download/source/git/) e no sitio web de Tux Paint
|
||||||
Paint en http://www.tuxpaint.org/help/po/.
|
en https://tuxpaint.org/help/po/.
|
||||||
|
|
||||||
Para editar unha tradución existente, descargue o último ficheiro «.po»
|
Para editar unha tradución existente, descargue o último ficheiro «.po»
|
||||||
para ese idioma e edíteo como se describe anteriormente.
|
para ese idioma e edíteo como se describe anteriormente.
|
||||||
|
|
@ -708,7 +708,7 @@ Traducións
|
||||||
Pode enviar ficheiros de tradución novos ou editados a Bill Kendrick,
|
Pode enviar ficheiros de tradución novos ou editados a Bill Kendrick,
|
||||||
responsábel do desenvolvemento de Tux Paint, a:
|
responsábel do desenvolvemento de Tux Paint, a:
|
||||||
bill@newbreedsoftware.com, ou publicalos na lista de correo
|
bill@newbreedsoftware.com, ou publicalos na lista de correo
|
||||||
«tuxpaint-i18n» (vexa: http://www.tuxpaint.org/lists/).
|
«tuxpaint-i18n» (vexa: https://tuxpaint.org/lists/).
|
||||||
|
|
||||||
Como alternativa, se te unha conta con SourceForge.net, pode solicitar
|
Como alternativa, se te unha conta con SourceForge.net, pode solicitar
|
||||||
que o engadan ao proxecto «tuxpaint» e recibir acceso de escritura ao
|
que o engadan ao proxecto «tuxpaint» e recibir acceso de escritura ao
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
versión 0.9.28 Preguntas máis frecuentes
|
versión 0.9.28 Preguntas máis frecuentes
|
||||||
|
|
||||||
Copyright © 2002-2021 por varios colaboradores; vexa AUTHORS (AUTORES).
|
Copyright © 2002-2022 por varios colaboradores; vexa AUTHORS (AUTORES).
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
29 de Agosto de 2021
|
20 de Xaneiro de 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -181,7 +181,7 @@ Problemas de interface
|
||||||
Os tipos de letra axeitados para estas configuracións locais
|
Os tipos de letra axeitados para estas configuracións locais
|
||||||
pódense descargar dende o sitio web de Tux Paint:
|
pódense descargar dende o sitio web de Tux Paint:
|
||||||
|
|
||||||
http://www.tuxpaint.org/download/fonts/
|
https://tuxpaint.org/download/fonts/
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -666,7 +666,7 @@ Axuda / Contacto
|
||||||
Para elo, pode subscribirse e publicar na nosa lista de correo
|
Para elo, pode subscribirse e publicar na nosa lista de correo
|
||||||
«tuxpaint-users»:
|
«tuxpaint-users»:
|
||||||
|
|
||||||
http://www.tuxpaint.org/lists/
|
https://tuxpaint.org/lists/
|
||||||
|
|
||||||
Ou ,póñase en contacto directamente co responsábel do desenvolvemento Bill
|
Ou ,póñase en contacto directamente co responsábel do desenvolvemento Bill
|
||||||
Kendrick:
|
Kendrick:
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
versión 0.9.28
|
versión 0.9.28
|
||||||
Documentación da instalación
|
Documentación da instalación
|
||||||
|
|
||||||
Copyright © 2002-2021 por varios colaboradores; vexa AUTHORS (AUTORES).
|
Copyright © 2002-2022 por varios colaboradores; vexa AUTHORS (AUTORES).
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
17 de Setembro de 2021
|
20 de Xaneiro de 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -647,11 +647,11 @@ Compiling and Installation
|
||||||
installed to /opt/local (same as MacPorts) for the library to be
|
installed to /opt/local (same as MacPorts) for the library to be
|
||||||
included in TuxPaint.dmg.
|
included in TuxPaint.dmg.
|
||||||
|
|
||||||
|
$ sudo port install rust cargo
|
||||||
$ git clone https://github.com/ImageOptim/libimagequant.git
|
$ git clone https://github.com/ImageOptim/libimagequant.git
|
||||||
$ cd libimagequant
|
$ cd libimagequant/imagequant-sys
|
||||||
$ ./configure --prefix=/opt/local
|
$ cargo build --release
|
||||||
$ make
|
$ sudo make PREFIX=/opt/local install
|
||||||
$ sudo make install
|
|
||||||
|
|
||||||
WARNING: Having any UNIX-like toolset installed on your Mac besides
|
WARNING: Having any UNIX-like toolset installed on your Mac besides
|
||||||
MacPorts and Xcode, such as Fink or Brew, will prevent your app
|
MacPorts and Xcode, such as Fink or Brew, will prevent your app
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,10 @@
|
||||||
|
|
||||||
Documentación de opcións
|
Documentación de opcións
|
||||||
|
|
||||||
Copyright © 2002-2021 por varios colaboradores; vexa AUTHORS (AUTORES).
|
Copyright © 2002-2022 por varios colaboradores; vexa AUTHORS (AUTORES).
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
29 de Agosto de 2021
|
20 de Xaneiro de 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -465,6 +465,21 @@ Simplificación
|
||||||
"nolabel=no" or "label=yes". In both cases, may be
|
"nolabel=no" or "label=yes". In both cases, may be
|
||||||
overridden by the command-line option "--label".
|
overridden by the command-line option "--label".
|
||||||
|
|
||||||
|
nobrushspacing=yes
|
||||||
|
|
||||||
|
Disables the brush spacing option of the Paint and Lines
|
||||||
|
tools. The brushes' default spacings will be used.
|
||||||
|
|
||||||
|
Note: The brush spacing option was added to Tux Paint's user
|
||||||
|
interface in version 0.9.28. For more information on brush
|
||||||
|
spacing, see EXTENDING.html
|
||||||
|
|
||||||
|
Note: If used in a system-wide configuration file, may be
|
||||||
|
overridden by the user's configuration file using
|
||||||
|
"nobrushspacing=no" or "brushspacing=yes". In both cases,
|
||||||
|
may be overridden by the command-line option
|
||||||
|
"--brushspacing".
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
Languages
|
Languages
|
||||||
|
|
@ -2013,9 +2028,9 @@ Tipos de letra especiais
|
||||||
|
|
||||||
/usr/share/tuxpaint/fonts/locale/ko.ttf
|
/usr/share/tuxpaint/fonts/locale/ko.ttf
|
||||||
|
|
||||||
Pode descargar os tipos de letra para os idiomas compatíbeis dende o
|
You can download fonts for supported languages from Tux Paint's
|
||||||
sitio web de Tux Paint, http://www.tuxpaint.org/.. (Mire na sección
|
website, https://tuxpaint.org/. (Look in the 'Fonts' section under
|
||||||
«Tipos de letra» en «Descargas»).
|
'Download.')
|
||||||
|
|
||||||
En Unix e Linux, pode usar o Makefile que vén co tipo de letra para
|
En Unix e Linux, pode usar o Makefile que vén co tipo de letra para
|
||||||
instalalo no lugar adecuado.
|
instalalo no lugar adecuado.
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
versión 0.9.28
|
versión 0.9.28
|
||||||
Documentación PNG
|
Documentación PNG
|
||||||
|
|
||||||
Copyright © 2007-2021 por varios colaboradores; vexa AUTHORS (AUTORES).
|
Copyright © 2007-2022 por varios colaboradores; vexa AUTHORS (AUTORES).
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
9 de Marzo de 2021
|
20 de Xaneiro de 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,11 @@
|
||||||
|
|
||||||
Un sinxelo programa de debuxo para cativos
|
Un sinxelo programa de debuxo para cativos
|
||||||
|
|
||||||
Copyright © 2002-2021 por varios colaboradores; vexa AUTHORS (AUTORES).
|
Copyright © 2002-2022 por varios colaboradores; vexa AUTHORS (AUTORES).
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
@TuxPaintTweets on Twitter
|
@TuxPaintTweets on Twitter
|
||||||
|
|
||||||
25 de Novembro de 2021
|
20 de Xaneiro de 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -246,6 +246,25 @@ Ferramentas dispoñíbeis
|
||||||
Mentres debuxa, soa un son. Canto maior sexa o pincel, menor
|
Mentres debuxa, soa un son. Canto maior sexa o pincel, menor
|
||||||
será o ton.
|
será o ton.
|
||||||
|
|
||||||
|
Espazado do pincel
|
||||||
|
|
||||||
|
The space between each position where a brush is applied
|
||||||
|
to the canvas can vary. Some brushes (such as the
|
||||||
|
footprints and flower) are spaced, by default, far enough
|
||||||
|
apart that they don't overlap. Other brushes (such as the
|
||||||
|
basic circular ones) are spaced closely, so they make a
|
||||||
|
continuous stroke.
|
||||||
|
|
||||||
|
The default spacing of brushes may be overridden using by
|
||||||
|
clicking within the triangular-shaped series of bars at
|
||||||
|
the bottom right; the larger the bar, the wider the
|
||||||
|
spacing. Brush spacing affects both tools that use the
|
||||||
|
brushes: the "Paint" tool and the "Lines" tool.
|
||||||
|
|
||||||
|
(Note: If the "nobrushspacing" option is set, Tux Paint
|
||||||
|
won't display the brush spacing controls. See the
|
||||||
|
"Options" documentation.)
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
Ferramenta «Selo» (selos de caucho)
|
Ferramenta «Selo» (selos de caucho)
|
||||||
|
|
@ -314,6 +333,11 @@ Ferramentas dispoñíbeis
|
||||||
finally some are both animated and directional. See "Paint",
|
finally some are both animated and directional. See "Paint",
|
||||||
above, to learn more.
|
above, to learn more.
|
||||||
|
|
||||||
|
Different brushes have different spacing, leaving either a
|
||||||
|
series of individual shapes, or a continuous stroke of the
|
||||||
|
brush shape. Brush spacing may be adjusted. See "Paint",
|
||||||
|
above, to learn more.
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
Ferramenta «Formas»
|
Ferramenta «Formas»
|
||||||
|
|
@ -1056,7 +1080,7 @@ Importar imaxes manualmente
|
||||||
* Ou póñase en contacto directamente cos desenvolvedores
|
* Ou póñase en contacto directamente cos desenvolvedores
|
||||||
|
|
||||||
Para obter máis información, visite a páxina «Contacto» do sitio web
|
Para obter máis información, visite a páxina «Contacto» do sitio web
|
||||||
oficial de Tux Paint: http://tuxpaint.org/contact/
|
oficial de Tux Paint: https://tuxpaint.org/contact/
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -1073,4 +1097,4 @@ Importar imaxes manualmente
|
||||||
* Promover ou axudar a outras persoas a usar Tux Paint
|
* Promover ou axudar a outras persoas a usar Tux Paint
|
||||||
|
|
||||||
Para obter máis información, visite a páxina «Colabora connosco» do
|
Para obter máis información, visite a páxina «Colabora connosco» do
|
||||||
sitio web oficial de Tux Paint: http://tuxpaint.org/help/
|
sitio web oficial de Tux Paint: https://tuxpaint.org/help/
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
versión 0.9.28
|
versión 0.9.28
|
||||||
Documentación de sinais
|
Documentación de sinais
|
||||||
|
|
||||||
Copyright © 2019-2021 por varios colaboradores; vexa AUTHORS (AUTORES).
|
Copyright © 2019-2022 por varios colaboradores; vexa AUTHORS (AUTORES).
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
9 de Marzo de 2021
|
20 de Xaneiro de 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
versión 0.9.28
|
versión 0.9.28
|
||||||
Documentación SVG
|
Documentación SVG
|
||||||
|
|
||||||
Copyright © 2007-2021 por varios colaboradores; vexa AUTHORS (AUTORES).
|
Copyright © 2007-2022 por varios colaboradores; vexa AUTHORS (AUTORES).
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
9 de Marzo de 2021
|
20 de Xaneiro de 2022
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,12 +20,12 @@
|
||||||
versión 0.9.28 «Como facer» os selos avanzados </h1>
|
versión 0.9.28 «Como facer» os selos avanzados </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2006-2021 por Albert Cahalan e outros; vexa AUTHORS (AUTORES).<br>
|
Copyright © 2006-2022 por Albert Cahalan e outros; vexa AUTHORS (AUTORES).<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
29 de Agosto de 2021 </p>
|
20 de Xaneiro de 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
Documentación de variábeis de contorno </h1>
|
Documentación de variábeis de contorno </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2021-2021 por varios colaboradores; vexa AUTHORS (AUTORES).<br>
|
Copyright © 2021-2022 por varios colaboradores; vexa AUTHORS (AUTORES).<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
8 de Agosto de 2021 </p>
|
20 de Xaneiro de 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
versión 0.9.28 </h1>
|
versión 0.9.28 </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2002-2021 por varios colaboradores; vexa AUTHORS (AUTORES).<br>
|
Copyright © 2002-2022 por varios colaboradores; vexa AUTHORS (AUTORES).<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
19 de Setembro de 2021 </p>
|
20 de Xaneiro de 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -867,13 +867,13 @@
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<i>Nota:</i> É mellor traballar sempre co <i>último</i> modelo de catálogo de texto Tux Paint («<code>tuxpaint.pot</code>»), xa que se engade n novos textos e o texto antigo cambia ocasionalmente. O catálogo de texto para a próxima versión inédita de Tux Paint pódese atopar no repositorio Git de Tux Paint (ver: <a href="http://www.tuxpaint.org/download/source/git/">http://www.tuxpaint.org/download/source/git/</a>) e no sitio web de Tux Paint en <a href="http://www.tuxpaint.org/help/po/">http://www.tuxpaint.org/help/po/</a>. </p>
|
<i>Nota:</i> É mellor traballar sempre co <i>último</i> modelo de catálogo de texto Tux Paint («<code>tuxpaint.pot</code>»), xa que se engade n novos textos e o texto antigo cambia ocasionalmente. O catálogo de texto para a próxima versión inédita de Tux Paint pódese atopar no repositorio Git de Tux Paint (ver: <a href="https://tuxpaint.org/download/source/git/">https://tuxpaint.org/download/source/git/</a>) e no sitio web de Tux Paint en <a href="https://tuxpaint.org/help/po/">https://tuxpaint.org/help/po/</a>. </p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Para editar unha tradución existente, descargue o último ficheiro «<code>.po</code>» para ese idioma e edíteo como se describe anteriormente. </p>
|
Para editar unha tradución existente, descargue o último ficheiro «<code>.po</code>» para ese idioma e edíteo como se describe anteriormente. </p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Pode enviar ficheiros de tradución novos ou editados a Bill Kendrick, responsábel do desenvolvemento de Tux Paint, a: <a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>, ou publicalos na lista de correo «tuxpaint-i18n» (vexa: <a href="http://www.tuxpaint.org/lists/">http://www.tuxpaint.org/lists/</a>). </p>
|
Pode enviar ficheiros de tradución novos ou editados a Bill Kendrick, responsábel do desenvolvemento de Tux Paint, a: <a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>, ou publicalos na lista de correo «tuxpaint-i18n» (vexa: <a href="https://tuxpaint.org/lists/">https://tuxpaint.org/lists/</a>). </p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Como alternativa, se te unha conta con <a href="http://www.sourceforge.net/">SourceForge.net</a>, pode solicitar que o engadan ao proxecto «<code>tuxpaint</code>» e recibir acceso de escritura ao repositorio de código fonte de Git para que poida enviar os seus cambios directamente. </p>
|
Como alternativa, se te unha conta con <a href="http://www.sourceforge.net/">SourceForge.net</a>, pode solicitar que o engadan ao proxecto «<code>tuxpaint</code>» e recibir acceso de escritura ao repositorio de código fonte de Git para que poida enviar os seus cambios directamente. </p>
|
||||||
|
|
|
||||||
|
|
@ -20,12 +20,12 @@
|
||||||
versión 0.9.28 Preguntas máis frecuentes </h1>
|
versión 0.9.28 Preguntas máis frecuentes </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2002-2021 por varios colaboradores; vexa AUTHORS (AUTORES).<br>
|
Copyright © 2002-2022 por varios colaboradores; vexa AUTHORS (AUTORES).<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
29 de Agosto de 2021 </p>
|
20 de Xaneiro de 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -254,7 +254,7 @@
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
<a href=
|
<a href=
|
||||||
"http://www.tuxpaint.org/download/fonts/">http://www.tuxpaint.org/download/fonts/</a>
|
"https://tuxpaint.org/download/fonts/">https://tuxpaint.org/download/fonts/</a>
|
||||||
</p>
|
</p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</li>
|
</li>
|
||||||
|
|
@ -822,7 +822,7 @@
|
||||||
|
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
<a href="http://www.tuxpaint.org/lists/">http://www.tuxpaint.org/lists/</a>
|
<a href="https://tuxpaint.org/lists/">https://tuxpaint.org/lists/</a>
|
||||||
</p>
|
</p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
Documentación da instalación </h1>
|
Documentación da instalación </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2002-2021 por varios colaboradores; vexa AUTHORS (AUTORES).<br>
|
Copyright © 2002-2022 por varios colaboradores; vexa AUTHORS (AUTORES).<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
17 de Setembro de 2021 </p>
|
20 de Xaneiro de 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2" noshade />
|
<hr size="2" noshade />
|
||||||
|
|
@ -797,11 +797,11 @@
|
||||||
<p>
|
<p>
|
||||||
<code>libimagequant</code> is not available from MacPorts as of this writing. It can be installed from the source code as follows. It should be installed to <code>/opt/local</code> (same as MacPorts) for the library to be included in <code>TuxPaint.dmg</code>. <blockquote>
|
<code>libimagequant</code> is not available from MacPorts as of this writing. It can be installed from the source code as follows. It should be installed to <code>/opt/local</code> (same as MacPorts) for the library to be included in <code>TuxPaint.dmg</code>. <blockquote>
|
||||||
<code>
|
<code>
|
||||||
|
$ sudo port install rust cargo<br/>
|
||||||
$ git clone https://github.com/ImageOptim/libimagequant.git<br/>
|
$ git clone https://github.com/ImageOptim/libimagequant.git<br/>
|
||||||
$ cd libimagequant<br/>
|
$ cd libimagequant/imagequant-sys<br/>
|
||||||
$ ./configure --prefix=/opt/local<br/>
|
$ cargo build --release<br/>
|
||||||
$ make<br/>
|
$ sudo make PREFIX=/opt/local install
|
||||||
$ sudo make install
|
|
||||||
</code>
|
</code>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</p>
|
</p>
|
||||||
|
|
|
||||||
|
|
@ -20,12 +20,12 @@
|
||||||
Documentación de opcións </h2>
|
Documentación de opcións </h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2002-2021 por varios colaboradores; vexa AUTHORS (AUTORES).<br>
|
Copyright © 2002-2022 por varios colaboradores; vexa AUTHORS (AUTORES).<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
29 de Agosto de 2021 </p>
|
20 de Xaneiro de 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -620,6 +620,19 @@
|
||||||
<p>
|
<p>
|
||||||
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nolabel=no</code>" or "<code>label=yes</code>". In both cases, may be overridden by the command-line option "<code>--label</code>". </p>
|
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nolabel=no</code>" or "<code>label=yes</code>". In both cases, may be overridden by the command-line option "<code>--label</code>". </p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
|
<dt>
|
||||||
|
<code><b>nobrushspacing=yes</b></code>
|
||||||
|
</dt>
|
||||||
|
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Disables the brush spacing option of the <b>Paint</b> and <b>Lines</b> tools. The brushes' default spacings will be used. </p>
|
||||||
|
<p>
|
||||||
|
Note: The brush spacing option was added to Tux Paint's user interface in version 0.9.28. For more information on brush spacing, see <a href="EXTENDING.html">EXTENDING.html</a> </p>
|
||||||
|
<p>
|
||||||
|
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nobrushspacing=no</code>" or "<code>brushspacing=yes</code>". In both cases, may be overridden by the command-line option "<code>--brushspacing</code>". </p>
|
||||||
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
@ -5408,7 +5421,7 @@
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Pode descargar os tipos de letra para os idiomas compatíbeis dende o sitio web de Tux Paint, <a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>.. (Mire na sección «Tipos de letra» en «Descargas»). </p>
|
You can download fonts for supported languages from Tux Paint's website, <a href="https://tuxpaint.org/">https://tuxpaint.org/</a>. (Look in the 'Fonts' section under 'Download.') </p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
En Unix e Linux, pode usar o <code>Makefile</code> que vén co tipo de letra para instalalo no lugar adecuado. </p>
|
En Unix e Linux, pode usar o <code>Makefile</code> que vén co tipo de letra para instalalo no lugar adecuado. </p>
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
Documentación PNG </h1>
|
Documentación PNG </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2007-2021 por varios colaboradores; vexa AUTHORS (AUTORES).<br>
|
Copyright © 2007-2022 por varios colaboradores; vexa AUTHORS (AUTORES).<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
9 de Marzo de 2021 </p>
|
20 de Xaneiro de 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
||||||
|
|
@ -23,13 +23,13 @@
|
||||||
Un sinxelo programa de debuxo para cativos </h3>
|
Un sinxelo programa de debuxo para cativos </h3>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2002-2021 por varios colaboradores; vexa AUTHORS (AUTORES).<br/>
|
Copyright © 2002-2022 por varios colaboradores; vexa AUTHORS (AUTORES).<br/>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a><br/>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a><br/>
|
||||||
<a href="https://twitter.com/TuxPaintTweets">@TuxPaintTweets on Twitter</a>
|
<a href="https://twitter.com/TuxPaintTweets">@TuxPaintTweets on Twitter</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
25 de Novembro de 2021 </p>
|
20 de Xaneiro de 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -429,6 +429,23 @@
|
||||||
alt="">
|
alt="">
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<strong>Espazado do pincel</strong>
|
||||||
|
<blockquote>
|
||||||
|
<p>
|
||||||
|
The space between each position where a brush is applied to the canvas can vary. Some brushes (such as the footprints and flower) are spaced, by default, far enough apart that they don't overlap. Other brushes (such as the basic circular ones) are spaced closely, so they make a continuous stroke. </p>
|
||||||
|
<p>
|
||||||
|
The default spacing of brushes may be overridden using by clicking within the triangular-shaped series of bars at the bottom right; the larger the bar, the wider the spacing. Brush spacing affects both tools that use the brushes: the "Paint" tool and the "Lines" tool. </p>
|
||||||
|
<p align="center">
|
||||||
|
<img src=
|
||||||
|
"../../html/images/tool_slider.png"
|
||||||
|
width="96"
|
||||||
|
height="48"
|
||||||
|
alt="">
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
(<strong>Note</strong>: If the "<code>nobrushspacing</code>" option is set, Tux Paint won't display the brush spacing controls. See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation.) </p>
|
||||||
|
</blockquote>
|
||||||
|
|
||||||
<hr size="1">
|
<hr size="1">
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
|
|
@ -516,6 +533,9 @@
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Some brushes are animated, and will show a pattern of shapes along the line. Others are directional, and will show a different shape depending on the angle of the brush. And finally some are both animated and directional. See "Paint", above, to learn more. </p>
|
Some brushes are animated, and will show a pattern of shapes along the line. Others are directional, and will show a different shape depending on the angle of the brush. And finally some are both animated and directional. See "Paint", above, to learn more. </p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Different brushes have different spacing, leaving either a series of individual shapes, or a continuous stroke of the brush shape. Brush spacing may be adjusted. See "Paint", above, to learn more. </p>
|
||||||
<br clear="all">
|
<br clear="all">
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
|
|
@ -1151,6 +1171,14 @@
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<strong>Nota:</strong> O axuste máis lento non avanza automaticamente entre as diapositivas. Úseo para cando queira percorrelas manualmente. (Isto non se aplica a un GIF animado exportado). </p>
|
<strong>Nota:</strong> O axuste máis lento non avanza automaticamente entre as diapositivas. Úseo para cando queira percorrelas manualmente. (Isto non se aplica a un GIF animado exportado). </p>
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<img src=
|
||||||
|
"../../html/images/tool_slider.png"
|
||||||
|
width="96"
|
||||||
|
height="48"
|
||||||
|
alt="">
|
||||||
|
</p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
|
|
@ -1467,7 +1495,7 @@
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Para obter máis información, visite a páxina «Contacto» do sitio web oficial de Tux Paint: <a href="http://tuxpaint.org/contact/">http://tuxpaint.org/contact/</a> </p>
|
Para obter máis información, visite a páxina «Contacto» do sitio web oficial de Tux Paint: <a href="https://tuxpaint.org/contact/">https://tuxpaint.org/contact/</a> </p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<hr size="2"
|
<hr size="2"
|
||||||
|
|
@ -1492,7 +1520,7 @@
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Para obter máis información, visite a páxina «Colabora connosco» do sitio web oficial de Tux Paint: <a href="http://tuxpaint.org/help/">http://tuxpaint.org/help/</a> </p>
|
Para obter máis información, visite a páxina «Colabora connosco» do sitio web oficial de Tux Paint: <a href="https://tuxpaint.org/help/">https://tuxpaint.org/help/</a> </p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
Documentación de sinais </h1>
|
Documentación de sinais </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2019-2021 por varios colaboradores; vexa AUTHORS (AUTORES).<br>
|
Copyright © 2019-2022 por varios colaboradores; vexa AUTHORS (AUTORES).<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
9 de Marzo de 2021 </p>
|
20 de Xaneiro de 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
Documentación SVG </h1>
|
Documentación SVG </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Copyright © 2007-2021 por varios colaboradores; vexa AUTHORS (AUTORES).<br>
|
Copyright © 2007-2022 por varios colaboradores; vexa AUTHORS (AUTORES).<br>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
9 de Marzo de 2021 </p>
|
20 de Xaneiro de 2022 </p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
||||||
BIN
docs/html/images/tool_slider.png
Normal file
BIN
docs/html/images/tool_slider.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
|
|
@ -1,10 +1,10 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
バージョン 0.9.28 スタンプ作成の詳細について
|
バージョン 0.9.28 スタンプ作成の詳細について
|
||||||
|
|
||||||
Copyright © 2006-2021 by Albert Cahalan ほか; "AUTHORS" 参照.
|
Copyright © 2006-2022 by Albert Cahalan ほか; "AUTHORS" 参照.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
2021年8月29日
|
2022年1月20日
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
バージョン 0.9.28
|
バージョン 0.9.28
|
||||||
Environment Variables Documentation
|
Environment Variables Documentation
|
||||||
|
|
||||||
Copyright © 2021-2021 by various contributors; "AUTHORS" 参照.
|
Copyright © 2021-2022 by various contributors; "AUTHORS" 参照.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
2021年8月 8日
|
2022年1月20日
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
バージョン 0.9.28
|
バージョン 0.9.28
|
||||||
|
|
||||||
Copyright © 2002-2021 by various contributors; "AUTHORS" 参照.
|
Copyright © 2002-2022 by various contributors; "AUTHORS" 参照.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
2021年9月19日
|
2022年1月20日
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -679,15 +679,15 @@ Translations
|
||||||
template ("tuxpaint.pot"), since new text is added, and old text is
|
template ("tuxpaint.pot"), since new text is added, and old text is
|
||||||
occasionally changed. The text catalog for the upcoming, unreleased
|
occasionally changed. The text catalog for the upcoming, unreleased
|
||||||
version of Tux Paint can be found in Tux Paint's Git repository (see:
|
version of Tux Paint can be found in Tux Paint's Git repository (see:
|
||||||
http://www.tuxpaint.org/download/source/git/), and on the Tux Paint
|
https://tuxpaint.org/download/source/git/), and on the Tux Paint website
|
||||||
website at http://www.tuxpaint.org/help/po/.
|
at https://tuxpaint.org/help/po/.
|
||||||
|
|
||||||
To edit an existing translation, download the latest ".po" file for that
|
To edit an existing translation, download the latest ".po" file for that
|
||||||
language, and edit it as described above.
|
language, and edit it as described above.
|
||||||
|
|
||||||
You may send new or edited translation files to Bill Kendrick, lead
|
You may send new or edited translation files to Bill Kendrick, lead
|
||||||
developer of Tux Paint, at: bill@newbreedsoftware.com, or post them to
|
developer of Tux Paint, at: bill@newbreedsoftware.com, or post them to
|
||||||
the "tuxpaint-i18n" mailing list (see: http://www.tuxpaint.org/lists/).
|
the "tuxpaint-i18n" mailing list (see: https://tuxpaint.org/lists/).
|
||||||
|
|
||||||
Alternatively, if you have an account with SourceForge.net, you can
|
Alternatively, if you have an account with SourceForge.net, you can
|
||||||
request to be added to the "tuxpaint" project and receive write-access
|
request to be added to the "tuxpaint" project and receive write-access
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
バージョン 0.9.28 Frequently Asked Questions
|
バージョン 0.9.28 Frequently Asked Questions
|
||||||
|
|
||||||
Copyright © 2002-2021 by various contributors; "AUTHORS" 参照.
|
Copyright © 2002-2022 by various contributors; "AUTHORS" 参照.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
2021年8月29日
|
2022年1月20日
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -170,7 +170,7 @@ Interface Problems
|
||||||
The appropriate fonts for such locales can be downloaded from
|
The appropriate fonts for such locales can be downloaded from
|
||||||
the Tux Paint website:
|
the Tux Paint website:
|
||||||
|
|
||||||
http://www.tuxpaint.org/download/fonts/
|
https://tuxpaint.org/download/fonts/
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -637,7 +637,7 @@ Help / Contact
|
||||||
Any questions you don't see answered? Please let us know! You can
|
Any questions you don't see answered? Please let us know! You can
|
||||||
subscribe and post to our "tuxpaint-users" mailing list:
|
subscribe and post to our "tuxpaint-users" mailing list:
|
||||||
|
|
||||||
http://www.tuxpaint.org/lists/
|
https://tuxpaint.org/lists/
|
||||||
|
|
||||||
Or, contact lead developer Bill Kendrick directly:
|
Or, contact lead developer Bill Kendrick directly:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
バージョン 0.9.28
|
バージョン 0.9.28
|
||||||
Installation Documentation
|
Installation Documentation
|
||||||
|
|
||||||
Copyright © 2002-2021 by various contributors; "AUTHORS" 参照.
|
Copyright © 2002-2022 by various contributors; "AUTHORS" 参照.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
2021年9月17日
|
2022年1月20日
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -637,11 +637,11 @@ Compiling and Installation
|
||||||
installed to /opt/local (same as MacPorts) for the library to be
|
installed to /opt/local (same as MacPorts) for the library to be
|
||||||
included in TuxPaint.dmg.
|
included in TuxPaint.dmg.
|
||||||
|
|
||||||
|
$ sudo port install rust cargo
|
||||||
$ git clone https://github.com/ImageOptim/libimagequant.git
|
$ git clone https://github.com/ImageOptim/libimagequant.git
|
||||||
$ cd libimagequant
|
$ cd libimagequant/imagequant-sys
|
||||||
$ ./configure --prefix=/opt/local
|
$ cargo build --release
|
||||||
$ make
|
$ sudo make PREFIX=/opt/local install
|
||||||
$ sudo make install
|
|
||||||
|
|
||||||
WARNING: Having any UNIX-like toolset installed on your Mac besides
|
WARNING: Having any UNIX-like toolset installed on your Mac besides
|
||||||
MacPorts and Xcode, such as Fink or Brew, will prevent your app
|
MacPorts and Xcode, such as Fink or Brew, will prevent your app
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,10 @@
|
||||||
|
|
||||||
各種設定について
|
各種設定について
|
||||||
|
|
||||||
Copyright © 2002-2021 by various contributors; "AUTHORS" 参照.
|
Copyright © 2002-2022 by various contributors; "AUTHORS" 参照.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
2021年8月29日
|
2022年1月20日
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -366,6 +366,20 @@ Windows のユーザー
|
||||||
"label=yes" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
|
"label=yes" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
|
||||||
"--label" で変更できます。
|
"--label" で変更できます。
|
||||||
|
|
||||||
|
nobrushspacing=yes
|
||||||
|
|
||||||
|
Disables the brush spacing option of the Paint and Lines
|
||||||
|
tools. The brushes' default spacings will be used.
|
||||||
|
|
||||||
|
Note: The brush spacing option was added to Tux Paint's user
|
||||||
|
interface in version 0.9.28. For more information on brush
|
||||||
|
spacing, see EXTENDING.html
|
||||||
|
|
||||||
|
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "nobrushspacing=no"
|
||||||
|
または "brushspacing=yes"
|
||||||
|
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
|
||||||
|
"--brushspacing" で変更できます。
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
言語関連
|
言語関連
|
||||||
|
|
@ -1712,8 +1726,9 @@ Windows のユーザー
|
||||||
|
|
||||||
/usr/share/tuxpaint/fonts/locale/ko.ttf
|
/usr/share/tuxpaint/fonts/locale/ko.ttf
|
||||||
|
|
||||||
サポートされる言語用のフォントファイルは、Tux Paint のウェブサイト http://www.tuxpaint.org/
|
You can download fonts for supported languages from Tux Paint's
|
||||||
からダウンロードできます。('ダウンロード' ページの 'フォント' セクションにあります)
|
website, https://tuxpaint.org/. (Look in the 'Fonts' section under
|
||||||
|
'Download.')
|
||||||
|
|
||||||
Unix や Linux では、同梱の Makefile を使って、適切な場所にフォントをインストールすることができます。
|
Unix や Linux では、同梱の Makefile を使って、適切な場所にフォントをインストールすることができます。
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
バージョン 0.9.28
|
バージョン 0.9.28
|
||||||
PNG Documentation
|
PNG Documentation
|
||||||
|
|
||||||
Copyright © 2007-2021 by various contributors; "AUTHORS" 参照.
|
Copyright © 2007-2022 by various contributors; "AUTHORS" 参照.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
2021年3月 9日
|
2022年1月20日
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,11 @@
|
||||||
|
|
||||||
子供向けのシンプルなお絵かきプログラム
|
子供向けのシンプルなお絵かきプログラム
|
||||||
|
|
||||||
Copyright © 2002-2021 by various contributors; "AUTHORS" 参照.
|
Copyright © 2002-2022 by various contributors; "AUTHORS" 参照.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
@TuxPaintTweets on Twitter
|
@TuxPaintTweets on Twitter
|
||||||
|
|
||||||
2021年11月25日
|
2022年1月20日
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -183,6 +183,25 @@ Tux Paint の起動
|
||||||
|
|
||||||
描画中にはサウンドが流れます。筆の大きさが大きいほど、低い音になります。
|
描画中にはサウンドが流れます。筆の大きさが大きいほど、低い音になります。
|
||||||
|
|
||||||
|
Brush Spacing
|
||||||
|
|
||||||
|
The space between each position where a brush is applied
|
||||||
|
to the canvas can vary. Some brushes (such as the
|
||||||
|
footprints and flower) are spaced, by default, far enough
|
||||||
|
apart that they don't overlap. Other brushes (such as the
|
||||||
|
basic circular ones) are spaced closely, so they make a
|
||||||
|
continuous stroke.
|
||||||
|
|
||||||
|
The default spacing of brushes may be overridden using by
|
||||||
|
clicking within the triangular-shaped series of bars at
|
||||||
|
the bottom right; the larger the bar, the wider the
|
||||||
|
spacing. Brush spacing affects both tools that use the
|
||||||
|
brushes: the "Paint" tool and the "Lines" tool.
|
||||||
|
|
||||||
|
(Note: If the "nobrushspacing" option is set, Tux Paint
|
||||||
|
won't display the brush spacing controls. See the
|
||||||
|
"Options" documentation.)
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
「はんこ」ツール
|
「はんこ」ツール
|
||||||
|
|
@ -218,6 +237,11 @@ Tux Paint の起動
|
||||||
アニメーション対応のブラシでは、線に沿って形が変化します。 指向性のブラシでは、線の角度に応じて異なる形状を表示します。
|
アニメーション対応のブラシでは、線に沿って形が変化します。 指向性のブラシでは、線の角度に応じて異なる形状を表示します。
|
||||||
さらに、アニメーションと指向性の両方を備えたブラシもあります。 詳しくは、上記の「ふで」の項をご覧ください。
|
さらに、アニメーションと指向性の両方を備えたブラシもあります。 詳しくは、上記の「ふで」の項をご覧ください。
|
||||||
|
|
||||||
|
Different brushes have different spacing, leaving either a
|
||||||
|
series of individual shapes, or a continuous stroke of the
|
||||||
|
brush shape. Brush spacing may be adjusted. See "Paint",
|
||||||
|
above, to learn more.
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
「かたち」ツール
|
「かたち」ツール
|
||||||
|
|
@ -719,7 +743,7 @@ Tux Paint の起動
|
||||||
* 開発者へ直接連絡することもできます
|
* 開発者へ直接連絡することもできます
|
||||||
|
|
||||||
もっとお知りになりたい場合、Tux Paint のウェブサイト の "連絡先" のページ
|
もっとお知りになりたい場合、Tux Paint のウェブサイト の "連絡先" のページ
|
||||||
(http://tuxpaint.org/contact/) をごらん下さい
|
(https://tuxpaint.org/contact/) をごらん下さい
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -735,4 +759,4 @@ Tux Paint の起動
|
||||||
* 宣伝や、他の Tux Paint ユーザーのサポート
|
* 宣伝や、他の Tux Paint ユーザーのサポート
|
||||||
|
|
||||||
もっとお知りになりたい場合、Tux Paint のウェブサイト の "私たちにご協力を" のページ
|
もっとお知りになりたい場合、Tux Paint のウェブサイト の "私たちにご協力を" のページ
|
||||||
(http://tuxpaint.org/help/) をごらん下さい
|
(https://tuxpaint.org/help/) をごらん下さい
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
バージョン 0.9.28
|
バージョン 0.9.28
|
||||||
Signals Documentation
|
Signals Documentation
|
||||||
|
|
||||||
Copyright © 2019-2021 by various contributors; "AUTHORS" 参照.
|
Copyright © 2019-2022 by various contributors; "AUTHORS" 参照.
|
||||||
http://www.tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
2021年3月 9日
|
2022年1月20日
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue