Converted Frequently Asked Questions (FAQ) to HTML.
Mentioned Tux Paint Config. tool in FAQ.
This commit is contained in:
parent
2778173a26
commit
63e9dcb656
3 changed files with 847 additions and 786 deletions
|
|
@ -304,6 +304,10 @@ http://www.newbreedsoftware.com/tuxpaint/
|
||||||
and feature requests to the SourceForge
|
and feature requests to the SourceForge
|
||||||
tracker: http://sourceforge.net/tracker/?group_id=66938
|
tracker: http://sourceforge.net/tracker/?group_id=66938
|
||||||
|
|
||||||
|
* Converted Frequently Asked Questions (FAQ) to HTML.
|
||||||
|
|
||||||
|
* Mentioned Tux Paint Config. tool in FAQ.
|
||||||
|
|
||||||
* New translations:
|
* New translations:
|
||||||
-----------------
|
-----------------
|
||||||
* Albanian translation created.
|
* Albanian translation created.
|
||||||
|
|
|
||||||
817
docs/FAQ.txt
817
docs/FAQ.txt
|
|
@ -1,534 +1,537 @@
|
||||||
FAQ.txt for Tux Paint
|
Tux Paint
|
||||||
|
version 0.9.15
|
||||||
|
Frequently Asked Questions
|
||||||
|
|
||||||
Tux Paint - A simple drawing program for children.
|
Copyright 2002-2005 by Bill Kendrick and others
|
||||||
|
New Breed Software
|
||||||
|
|
||||||
Copyright 2005 by Bill Kendrick
|
bill@newbreedsoftware.com
|
||||||
bill@newbreedsoftware.com
|
http://www.newbreedsoftware. com/tuxpaint/
|
||||||
http://www.newbreedsoftware.com/tuxpaint/
|
|
||||||
|
|
||||||
September 14, 2002 - January 9, 2005
|
September 14, 2002 - October 9, 2005
|
||||||
|
|
||||||
|
Drawing-related
|
||||||
|
|
||||||
Frequently Asked Questions:
|
* The Magic "Fill" Tool Looks Bad
|
||||||
---------------------------
|
|
||||||
Drawing-related
|
|
||||||
---------------
|
|
||||||
The Magic "Fill" Tool Looks Bad
|
|
||||||
-------------------------------
|
|
||||||
Tux Paint is probably comparing exact pixel colors when filling.
|
|
||||||
This is faster, but looks worse. Run the command "tuxpaint --version"
|
|
||||||
from a command line, and you should see, amongst the other output:
|
|
||||||
"Low Quality Flood Fill enabled".
|
|
||||||
|
|
||||||
To change this, you must rebuild Tux Paint from source.
|
Tux Paint is probably comparing exact pixel colors when filling. This
|
||||||
Be sure to remove or comment out any line that says:
|
is faster, but looks worse. Run the command "tuxpaint --version" from
|
||||||
|
a command line, and you should see, amongst the other output: "Low
|
||||||
|
Quality Flood Fill enabled".
|
||||||
|
|
||||||
#define LOW_QUALITY_FLOOD_FILL
|
To change this, you must rebuild Tux Paint from source. Be sure to
|
||||||
|
remove or comment out any line that says:
|
||||||
|
|
||||||
in the "tuxpaint.c" file in the "src" directory.
|
#define LOW_QUALITY_FLOOD_FILL
|
||||||
|
|
||||||
|
in the "tuxpaint.c" file in the "src" directory.
|
||||||
|
|
||||||
Stamp outlines are always rectangles
|
* Stamp outlines are always rectangles
|
||||||
------------------------------------
|
|
||||||
Tux Paint was built with low-quality (but faster) stamp outlines.
|
|
||||||
|
|
||||||
Rebuild Tux Paint from source. Be sure to remove or comment out any
|
Tux Paint was built with low-quality (but faster) stamp outlines.
|
||||||
line that says:
|
|
||||||
|
|
||||||
#define LOW_QUALITY_STAMP_OUTLINE
|
|
||||||
|
|
||||||
in the "tuxpaint.c" file in the "src" directory.
|
Rebuild Tux Paint from source. Be sure to remove or comment out any
|
||||||
|
line that says:
|
||||||
|
|
||||||
|
#define LOW_QUALITY_STAMP_OUTLINE
|
||||||
|
|
||||||
The Rubber Stamp tool is greyed out!
|
in the "tuxpaint.c" file in the "src" directory.
|
||||||
------------------------------------
|
|
||||||
This means that Tux Paint either couldn't find any stamp images,
|
|
||||||
or was asked not to load them.
|
|
||||||
|
|
||||||
If you installed Tux Paint, but did not install the separate,
|
* The Rubber Stamp tool is greyed out!
|
||||||
optional "Stamps" collection, quit Tux Paint and install it now.
|
|
||||||
It should be available from the same place you got the main
|
|
||||||
Tux Paint program.
|
|
||||||
|
|
||||||
If you don't want to install the default collection of stamps,
|
This means that Tux Paint either couldn't find any stamp images, or
|
||||||
you can just create your own. See the README documentation for
|
was asked not to load them.
|
||||||
more on creating PNG image files, TXT text description files,
|
|
||||||
WAV sound files, and DAT text data files that make up stamps.
|
|
||||||
|
|
||||||
Finally, if you install the stamps, and think they should be loading,
|
If you installed Tux Paint, but did not install the separate, optional
|
||||||
check to see that the "nostamps" option isn't being set.
|
"Stamps" collection, quit Tux Paint and install it now. It should be
|
||||||
(Either via a "--nostamps" option to Tux Paint's command line, or
|
available from the same place you got the main Tux Paint program.
|
||||||
"nostamps=yes" in the configuration file.)
|
(Note: As of version 0.9.14, Tux Paint comes with a small collection
|
||||||
|
of example stamps.)
|
||||||
|
|
||||||
If so, either change/remove the "nostamps" option, or you can
|
If you don't want to install the default collection of stamps, you can
|
||||||
override it with "--stamps" on the command line or
|
just create your own. See the README documentation for more on
|
||||||
"nostamps=no" or "stamps=yes" in a configuration file.
|
creating PNG image files, TXT text description files, WAV sound files,
|
||||||
|
and DAT text data files that make up stamps.
|
||||||
|
|
||||||
|
Finally, if you install the stamps, and think they should be loading,
|
||||||
|
check to see that the "nostamps" option isn't being set. (Either via a
|
||||||
|
"--nostamps" option to Tux Paint's command line, or "nostamps=yes" in
|
||||||
|
the configuration file.)
|
||||||
|
|
||||||
Interface Problems
|
If so, either change/remove the "nostamps" option, or you can override
|
||||||
------------------
|
it with "--stamps" on the command line or "nostamps=no" or
|
||||||
Stamp thumbnails in the Stamp Selector look bad
|
"stamps=yes" in a configuration file.
|
||||||
-----------------------------------------------
|
|
||||||
Tux Paint was probably compiled with the faster, lower quality
|
|
||||||
thumbnail code enabled. Run the command: "tuxpaint --version" from
|
|
||||||
a command line. If, amongst the other output, you see the text:
|
|
||||||
"Low Quality Thumbnails enabled", then this is what's happening.
|
|
||||||
|
|
||||||
Rebuild Tux Paint from source. Be sure to remove or comment out any
|
|
||||||
line that says:
|
|
||||||
|
|
||||||
#define LOW_QUALITY_THUMBNAILS
|
|
||||||
|
|
||||||
in the "tuxpaint.c" file in the "src" directory.
|
|
||||||
|
|
||||||
|
Interface Problems
|
||||||
|
|
||||||
Pictures in the 'Open' dialog look bad
|
* Stamp thumbnails in the Stamp Selector look bad
|
||||||
--------------------------------------
|
|
||||||
"Low Quality Thumbnails" is probably enabled.
|
|
||||||
See: "Stamp thumbnails in the Stamp Selector look bad", above.
|
|
||||||
|
|
||||||
|
|
||||||
The color picker buttons are ugly squares, not pretty buttons!
|
|
||||||
--------------------------------------------------------------
|
|
||||||
Tux Paint was probably compiled with the nice looking color
|
|
||||||
selector buttons disabled. Run the command: "tuxpaint --version" from
|
|
||||||
a command line. If, amongst the other output, you see the text:
|
|
||||||
"Low Quality Color Selector enabled", then this is what's happening.
|
|
||||||
|
|
||||||
Rebuild Tux Paint from source. Be sure to remove or comment out any
|
|
||||||
line that says:
|
|
||||||
|
|
||||||
#define LOW_QUALITY_COLOR_SELECTOR
|
|
||||||
|
|
||||||
in the "tuxpaint.c" file in the "src" directory.
|
|
||||||
|
|
||||||
|
|
||||||
The Mouse Pointer Leaves Trails!
|
|
||||||
--------------------------------
|
|
||||||
In Windows under fullscreen, and in Linux under fullscreen outside of
|
|
||||||
X-Window, the SDL library has a bug where the mouse pointer can leave
|
|
||||||
trails of 'garbage' on the screen.
|
|
||||||
|
|
||||||
Until there's a fix, either don't use fullscreen, or disable the
|
|
||||||
fancy mouse pointer shapes using the configuration option:
|
|
||||||
|
|
||||||
nofancycursors=yes
|
|
||||||
|
|
||||||
Or by using this command-line argument:
|
|
||||||
|
|
||||||
--nofancycursors
|
|
||||||
|
|
||||||
|
|
||||||
All of the text is in uppercase!
|
|
||||||
--------------------------------
|
|
||||||
The "uppercase" option is on.
|
|
||||||
|
|
||||||
If you're running Tux Paint from a command-line, make sure you're
|
|
||||||
not giving it an "--uppercase" option.
|
|
||||||
|
|
||||||
If you're running Tux Paint by double-clicking an icon, check the
|
|
||||||
properties of the icon to see if "--uppercase" is listed as a
|
|
||||||
command-line argument.
|
|
||||||
|
|
||||||
If "--uppercase" isn't being sent on the command line, check Tux Paint's
|
|
||||||
configuration file ("~/.tuxpaintrc" under Linux and Unix,
|
|
||||||
"tuxpaint.cfg" under Windows) for a line reading: "uppercase=yes".
|
|
||||||
|
|
||||||
Either remove that line, or simply run Tux Paint with the command-line
|
|
||||||
argument: "--mixedcase", which will override the uppercase setting.
|
|
||||||
|
|
||||||
|
|
||||||
Tux Paint is in a weird language!
|
|
||||||
---------------------------------
|
|
||||||
Make sure your locale setting is correct.
|
|
||||||
See "Tux Paint won't switch to my language", below.
|
|
||||||
|
|
||||||
|
|
||||||
Tux Paint won't switch to my language
|
|
||||||
-------------------------------------
|
|
||||||
Linux and Unix users: Make sure the locale is available
|
|
||||||
-------------------------------------------------------
|
|
||||||
Make sure the locale you want is available. Check your
|
|
||||||
"/etc/locale.gen" file. See README.txt for the locales
|
|
||||||
Tux Paint uses (especially when using the "--lang" option).
|
|
||||||
|
|
||||||
Note: Debian users can simply run "dpkg-reconfigure locales"
|
|
||||||
if the locales are managed by dpkg.
|
|
||||||
|
|
||||||
If you're using the "--lang" command-line option
|
|
||||||
------------------------------------------------
|
|
||||||
Try using the "--locale" command-line option, or your operating system's
|
|
||||||
locale settings (e.g., the "$LANG" environment variable), and
|
|
||||||
please e-mail us regarding your trouble.
|
|
||||||
|
|
||||||
If you're using the "--locale" command-line option
|
|
||||||
--------------------------------------------------
|
|
||||||
If this doesn't work, please e-mail us regarding your trouble.
|
|
||||||
|
|
||||||
If you're trying to use your Operating System's locale
|
|
||||||
------------------------------------------------------
|
|
||||||
If this doesn't work, please e-mail us regarding your trouble.
|
|
||||||
|
|
||||||
Make sure you have the necessary font
|
|
||||||
-------------------------------------
|
|
||||||
Some translations require their own font. Chinese and Korean,
|
|
||||||
for example, need Chinese and Korean TrueType Fonts installed
|
|
||||||
and placed in the proper location, respectively.
|
|
||||||
|
|
||||||
The appropriate fonts for such locales can be downloaded from the
|
|
||||||
Tux Paint website:
|
|
||||||
|
|
||||||
http://www.newbreedsoftware.com/tuxpaint/download/fonts/
|
Tux Paint was probably compiled with the faster, lower quality
|
||||||
|
thumbnail code enabled. Run the command: "tuxpaint --version" from a
|
||||||
|
command line. If, amongst the other output, you see the text: "Low
|
||||||
|
Quality Thumbnails enabled", then this is what's happening.
|
||||||
|
|
||||||
|
Rebuild Tux Paint from source. Be sure to remove or comment out any
|
||||||
|
line that says:
|
||||||
|
|
||||||
Printing
|
#define LOW_QUALITY_THUMBNAILS
|
||||||
--------
|
|
||||||
Tux Paint won't print, gives an error, or prints garbage (Unix/Linux)
|
|
||||||
---------------------------------------------------------------------
|
|
||||||
Tux Paint prints by creating a PostScript rendition of the picture
|
|
||||||
and sending it to an external command. By default, this command is
|
|
||||||
the "lpr" printing tool.
|
|
||||||
|
|
||||||
If that program is not available (for example, you're using CUPS,
|
|
||||||
the Common Unix Printing System, and do not have "cups-lpr" installed),
|
|
||||||
you will need to specify an appropriate command using the
|
|
||||||
"printcommand" option in Tux Paint's configuration file.
|
|
||||||
(See the OPTIONS documentation.)
|
|
||||||
|
|
||||||
Note: Versions of Tux Paint prior to 0.9.15 used a different default
|
|
||||||
command for printing, "pngtopnm | pnmtops | lpr", as Tux Paint output
|
|
||||||
PNG format, rather than PostScript.
|
|
||||||
|
|
||||||
If you had changed your "printcommand" option prior to Tux Paint 0.9.15,
|
|
||||||
you will need to go back and alter it to accept PostScript.
|
|
||||||
|
|
||||||
|
in the "tuxpaint.c" file in the "src" directory.
|
||||||
|
|
||||||
I get the message "You can't print yet!" when I go to print!
|
* Pictures in the 'Open' dialog look bad
|
||||||
------------------------------------------------------------
|
|
||||||
The "print delay" option is on. You can only print once every X seconds.
|
|
||||||
|
|
||||||
If you're running Tux Paint from a command-line, make sure you're
|
"Low Quality Thumbnails" is probably enabled. See: "Stamp thumbnails
|
||||||
not giving it a "--printdelay=..." option.
|
in the Stamp Selector look bad", above.
|
||||||
|
|
||||||
If you're running Tux Paint by double-clicking an icon, check the
|
* The color picker buttons are ugly squares, not pretty buttons!
|
||||||
properties of the icon to see if "--printdelay=..." is listed as
|
|
||||||
a command-line argument.
|
|
||||||
|
|
||||||
If a "--printdelay=..." option isn't being sent on the command line,
|
Tux Paint was probably compiled with the nice looking color selector
|
||||||
check Tux Paint's configuration file ("~/.tuxpaintrc" under Linux and
|
buttons disabled. Run the command: "tuxpaint --version" from a command
|
||||||
Unix, "tuxpaint.cfg" under Windows) for a line reading:
|
line. If, amongst the other output, you see the text: "Low Quality
|
||||||
"printdelay=...".
|
Color Selector enabled", then this is what's happening.
|
||||||
|
|
||||||
Either remove that line, set the delay value to 0 (no delay), or
|
Rebuild Tux Paint from source. Be sure to remove or comment out any
|
||||||
decrease the delay to a value you prefer. (See README.txt).
|
line that says:
|
||||||
Or, you can simply run Tux Paint with the command-line argument:
|
|
||||||
"--printdelay=0", which will override the configuration file's setting,
|
|
||||||
and allow unlimited printing. (You won't have to wait between prints.)
|
|
||||||
|
|
||||||
|
#define LOW_QUALITY_COLOR_SELECTOR
|
||||||
|
|
||||||
I simply can't print! The button is greyed out!
|
in the "tuxpaint.c" file in the "src" directory.
|
||||||
------------------------------------------------
|
|
||||||
The "no print" option is on.
|
|
||||||
|
|
||||||
If you're running Tux Paint from a command-line, make sure you're
|
* All of the text is in uppercase!
|
||||||
not giving it a "--noprint" option.
|
|
||||||
|
|
||||||
If you're running Tux Paint by double-clicking an icon, check the
|
The "uppercase" option is on.
|
||||||
properties of the icon to see if "--noprint" is listed as an argument.
|
|
||||||
|
|
||||||
If "--noprint" isn't on the command-line, check Tux Paint's configuration
|
If you're running Tux Paint from a command-line, make sure you're not
|
||||||
file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg" under Windows)
|
giving it an "--uppercase" option.
|
||||||
for a line reading: "noprint=yes".
|
|
||||||
|
|
||||||
Either remove that line, or simply run Tux Paint with the command-line
|
If you're running Tux Paint by double-clicking an icon, check the
|
||||||
argument: "--print", which will override the configuration file's setting.
|
properties of the icon to see if "--uppercase" is listed as a
|
||||||
|
command-line argument.
|
||||||
|
|
||||||
|
If "--uppercase" isn't being sent on the command line, check
|
||||||
|
Tux Paint's configuration file ("~/.tuxpaintrc" under Linux and Unix,
|
||||||
|
"tuxpaint.cfg" under Windows) for a line reading: "uppercase=yes".
|
||||||
|
|
||||||
Saving
|
Either remove that line, or simply run Tux Paint with the command-line
|
||||||
------
|
argument: "--mixedcase", which will override the uppercase setting.
|
||||||
Tux Paint always saves over my old picture!
|
|
||||||
-------------------------------------------
|
|
||||||
The "save over" option is enabled. (This disables the prompt
|
|
||||||
that would appear when you click 'Save.')
|
|
||||||
|
|
||||||
If you're running Tux Paint from a command-line, make sure you're
|
Or use Tux Paint Config. and make sure "Show Uppercase Text Only"
|
||||||
not giving it a "--saveover" option.
|
(under "Languages") is not checked.
|
||||||
|
|
||||||
If you're running Tux Paint by double-clicking an icon, check the
|
* Tux Paint is in a different language!
|
||||||
properties of the icon to see if "--saveover" is listed as an argument.
|
|
||||||
|
|
||||||
If "--saveover" isn't on the command-line, check Tux Paint's configuration
|
Make sure your locale setting is correct. See "Tux Paint won't switch
|
||||||
file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg" under Windows)
|
to my language", below.
|
||||||
for a line reading: "saveover=yes".
|
|
||||||
|
|
||||||
Either remove that line, or simply run Tux Paint with the command-line
|
* Tux Paint won't switch to my language
|
||||||
argument: "--saveoverask", which will override the configuration file's
|
|
||||||
setting.
|
|
||||||
|
|
||||||
Also, see "Tux Paint always saves a new picture!", below.
|
* Linux and Unix users: Make sure the locale is available
|
||||||
|
|
||||||
|
Make sure the locale you want is available. Check your
|
||||||
|
"/etc/locale.gen" file. See the README documentation for the
|
||||||
|
locales Tux Paint uses (especially when using the "--lang"
|
||||||
|
option).
|
||||||
|
|
||||||
Tux Paint always saves a new picture!
|
Note: Debian users can simply run "dpkg-reconfigure locales" if
|
||||||
-------------------------------------
|
the locales are managed by "dpkg."
|
||||||
The "never save over" option is enabled. (This disables the prompt
|
|
||||||
that would appear when you click 'Save.')
|
|
||||||
|
|
||||||
If you're running Tux Paint from a command-line, make sure you're
|
* If you're using the "--lang" command-line option
|
||||||
not giving it a "--saveovernew" option.
|
|
||||||
|
|
||||||
If you're running Tux Paint by double-clicking an icon, check the
|
Try using the "--locale" command-line option, or your
|
||||||
properties of the icon to see if "--saveovernew" is listed as an argument.
|
operating system's locale settings (e.g., the "$LANG"
|
||||||
|
environment variable), and please e-mail us regarding your
|
||||||
|
trouble.
|
||||||
|
|
||||||
If "--saveovernew" isn't on the command-line, check Tux Paint's
|
* If you're using the "--locale" command-line option
|
||||||
configuration file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg"
|
|
||||||
under Windows) for a line reading: "saveover=new".
|
|
||||||
|
|
||||||
Either remove that line, or simply run Tux Paint with the command-line
|
If this doesn't work, please e-mail us regarding your
|
||||||
argument: "--saveoverask", which will override the configuration file's
|
trouble.
|
||||||
setting.
|
|
||||||
|
|
||||||
Also, see "Tux Paint always saves over my old picture!", above.
|
* If you're trying to use your Operating System's locale
|
||||||
|
|
||||||
|
If this doesn't work, please e-mail us regarding your
|
||||||
|
trouble.
|
||||||
|
|
||||||
Audio Problems
|
* Make sure you have the necessary font
|
||||||
--------------
|
|
||||||
There's no sound!
|
|
||||||
-----------------
|
|
||||||
First, check the obvious:
|
|
||||||
|
|
||||||
* Are you certain you're using the computer with the sound card? ;^)
|
Some translations require their own font. Chinese and
|
||||||
* Are your speakers connected and turned on?
|
Korean, for example, need Chinese and Korean TrueType Fonts
|
||||||
* Is the volume turned up on your speakers?
|
installed and placed in the proper location, respectively.
|
||||||
* Is the volume turned up in your Operating System's "mixer?"
|
|
||||||
* Are any other programs running that use sound? (They may be
|
|
||||||
'blocking' Tux Paint)
|
|
||||||
|
|
||||||
If sound seems to work otherwise (and you're sure no other program is
|
The appropriate fonts for such locales can be downloaded
|
||||||
"blocking" the sound device), then Tux Paint is either running with
|
from the Tux Paint website:
|
||||||
a "no sound" option or was compiled with sound support disabled entirely.
|
|
||||||
|
|
||||||
To test whether sound support was enabled when Tux Paint was compiled,
|
http://www.newbreedsoftware.com/tuxpaint/download/fonts/
|
||||||
run Tux Paint from a command line, like so:
|
|
||||||
|
|
||||||
tuxpaint --version
|
Printing
|
||||||
|
|
||||||
If, amongst the other information, you see "Sound disabled", then the
|
* Tux Paint won't print, gives an error, or prints garbage (Unix/Linux)
|
||||||
version of Tux Paint you're running has sound disabled. Recompiled
|
|
||||||
Tux Paint, and be sure NOT to build the "nosound" target.
|
|
||||||
(i.e., don't run "make nosound") Be sure SDL_mixer library is available!
|
|
||||||
|
|
||||||
If Tux Paint wasn't build without sound support, make sure you're
|
Tux Paint prints by creating a PostScript rendition of the picture and
|
||||||
not running Tux Paint with the "--nosound" option as a command-line
|
sending it to an external command. By default, this command is the
|
||||||
argument.
|
"lpr" printing tool.
|
||||||
|
|
||||||
If it's not, then check the configuration file ("~/.tuxpaintrc" under
|
If that program is not available (for example, you're using CUPS, the
|
||||||
Linux and Unix, and "tuxpaint.cfg" under Windows) for a line reading:
|
Common Unix Printing System, and do not have "cups-lpr" installed),
|
||||||
"nosound=yes".
|
you will need to specify an appropriate command using the
|
||||||
|
"printcommand" option in Tux Paint's configuration file. (See the
|
||||||
|
OPTIONS documentation.)
|
||||||
|
|
||||||
Either remove that line, or simply run Tux Paint with the command-line
|
Note: Versions of Tux Paint prior to 0.9.15 used a different default
|
||||||
argument: "--sound", which will override the configuration file's setting.
|
command for printing, "pngtopnm | pnmtops | lpr", as Tux Paint output
|
||||||
|
PNG format, rather than PostScript.
|
||||||
|
|
||||||
|
If you had changed your "printcommand" option prior to Tux Paint
|
||||||
|
0.9.15, you will need to go back and alter it to accept PostScript.
|
||||||
|
|
||||||
The sound effects sound strange
|
* I get the message "You can't print yet!" when I go to print!
|
||||||
-------------------------------
|
|
||||||
This could have to do with how SDL and SDL_mixer were initialized.
|
|
||||||
(The buffer size chosen.)
|
|
||||||
|
|
||||||
Please e-mail us with details about your computer system.
|
The "print delay" option is on. You can only print once every
|
||||||
(Operating system and version, sound card, which version of Tux Paint
|
X seconds.
|
||||||
you're running (run "tuxpaint --version" to verify), and so on.)
|
|
||||||
|
|
||||||
|
If you're running Tux Paint from a command-line, make sure you're not
|
||||||
|
giving it a "--printdelay=..." option.
|
||||||
|
|
||||||
Fullscreen Mode Problems
|
If you're running Tux Paint by double-clicking an icon, check the
|
||||||
------------------------
|
properties of the icon to see if "--printdelay=..." is listed as a
|
||||||
When I run Tux Paint full-screen and ALT-TAB out, the window turns black!
|
command-line argument.
|
||||||
-------------------------------------------------------------------------
|
|
||||||
This is apparently a bug in the SDL library. Sorry.
|
|
||||||
|
|
||||||
|
If a "--printdelay=..." option isn't being sent on the command line,
|
||||||
|
check Tux Paint's configuration file ("~/.tuxpaintrc" under Linux and
|
||||||
|
Unix, "tuxpaint.cfg" under Windows) for a line reading:
|
||||||
|
"printdelay=...".
|
||||||
|
|
||||||
When I run Tux Paint full-screen, it has large borders around it
|
Either remove that line, set the delay value to 0 (no delay), or
|
||||||
----------------------------------------------------------------
|
decrease the delay to a value you prefer. (See the README
|
||||||
Linux users - Your X-Window server is probably not set with the
|
documentation).
|
||||||
ability to switch to the desired resolution: 640 x 480.
|
|
||||||
(This is typically done manually under the XFree86 server by
|
|
||||||
pressing [Ctrl]-[Alt]-[KeyPad Plus] and -[KeyPad Minus].)
|
|
||||||
|
|
||||||
For this to work, your monitor must support that resolution, and
|
Or, you can simply run Tux Paint with the command-line argument:
|
||||||
you need to have it listed in your X server configuration.
|
"--printdelay=0", which will override the configuration file's
|
||||||
|
setting, and allow unlimited printing. (You won't have to wait between
|
||||||
|
prints.)
|
||||||
|
|
||||||
Check the "Display" subsection of the "Screen" section of your
|
Or use Tux Paint Config. and make sure "Print Delay" (under
|
||||||
XFree86 configuration file (typically "/etc/X11/XF86Config-4" or
|
"Printing") is set to "0 seconds."
|
||||||
"/etc/X11/XF86Config", depending on the version of XFree86 you're
|
|
||||||
using; 3.x or 4.x, respectively).
|
|
||||||
|
|
||||||
Add "640x480" to the appropriate "Modes" line. (e.g., in
|
* I simply can't print! The button is greyed out!
|
||||||
the "Display" subsection that contains 16-bit color depth ("Depth 16"),
|
|
||||||
which is what Tux Paint tries to use.)
|
|
||||||
|
|
||||||
e.g.:
|
The "no print" option is on.
|
||||||
|
|
||||||
Modes "1280x1024" "1024x768" "800x600" "640x480"
|
If you're running Tux Paint from a command-line, make sure you're not
|
||||||
|
giving it a "--noprint" option.
|
||||||
|
|
||||||
Note that some Linux distributions have tools that can make these
|
If you're running Tux Paint by double-clicking an icon, check the
|
||||||
changes for you. Debian users can run the command
|
properties of the icon to see if "--noprint" is listed as an argument.
|
||||||
"dpkg-reconfigure xserver-xfree86" as root, for example.
|
|
||||||
|
|
||||||
|
If "--noprint" isn't on the command-line, check Tux Paint's
|
||||||
|
configuration file ("~/.tuxpaintrc" under Linux and Unix,
|
||||||
|
"tuxpaint.cfg" under Windows) for a line reading: "noprint=yes".
|
||||||
|
|
||||||
Tux Paint keeps running in Full Screen mode - I want it windowed!
|
Either remove that line, or simply run Tux Paint with the command-line
|
||||||
-----------------------------------------------------------------
|
argument: "--print", which will override the configuration file's
|
||||||
The "fullscreen" option is set.
|
setting.
|
||||||
|
|
||||||
If you're running Tux Paint from a command-line, make sure you're
|
Or use Tux Paint Config. and make sure "Allow Printing" (under
|
||||||
not giving it a "--fullscreen" option.
|
"Printing") is checked.
|
||||||
|
|
||||||
If you're running Tux Paint by double-clicking an icon, check the
|
Saving
|
||||||
properties of the icon to see if "--fullscreen" is listed as an argument.
|
|
||||||
|
|
||||||
If "--fullscreen" isn't on the command-line, check Tux Paint's
|
* Tux Paint always saves over my old picture!
|
||||||
configuration file ("~/.tuxpaintrc" under Linux and Unix,
|
|
||||||
"tuxpaint.cfg" under Windows) for a line reading: "fullscreen=yes".
|
|
||||||
|
|
||||||
Either remove that line, or simply run Tux Paint with the command-line
|
The "save over" option is enabled. (This disables the prompt that
|
||||||
argument: "--windowed", which will override the configuration file's
|
would appear when you click 'Save.')
|
||||||
setting.
|
|
||||||
|
|
||||||
|
If you're running Tux Paint from a command-line, make sure you're not
|
||||||
|
giving it a "--saveover" option.
|
||||||
|
|
||||||
Other Probelms
|
If you're running Tux Paint by double-clicking an icon, check the
|
||||||
--------------
|
properties of the icon to see if "--saveover" is listed as an
|
||||||
Tux Paint won't run
|
argument.
|
||||||
-------------------
|
|
||||||
If Tux Paint aborts with the message:
|
|
||||||
"You're already running a copy of Tux Paint!",
|
|
||||||
this means it has been launched in the last 30 seconds.
|
|
||||||
|
|
||||||
A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix,
|
If "--saveover" isn't on the command-line, check Tux Paint's
|
||||||
"userdata\lockfile.dat" on Windows) is used to make sure Tux Paint
|
configuration file ("~/.tuxpaintrc" under Linux and Unix,
|
||||||
isn't run too many times at once (e.g., due to a child impatiently
|
"tuxpaint.cfg" under Windows) for a line reading: "saveover=yes".
|
||||||
clicking its icon more than once).
|
|
||||||
|
|
||||||
Even if the lockfile exists, it contains the 'time' Tux Paint was last
|
Either remove that line, or simply run Tux Paint with the command-line
|
||||||
run. If it's been more than 30 seconds, Tux Paint should run fine,
|
argument: "--saveoverask", which will override the configuration
|
||||||
and simply update the lockfile with the current time.
|
file's setting.
|
||||||
|
|
||||||
If multiple users are sharing the directory where this file is stored
|
Or use Tux Paint Config. and make sure "Ask Before Overwriting" (under
|
||||||
(e.g., on a shared network drive), then you'll need to disable this
|
"Saving") is checked.
|
||||||
feature.
|
|
||||||
|
|
||||||
To disable the lockfile, add the "--nolockfile" argument to Tux Paint's
|
Also, see "Tux Paint always saves a new picture!", below.
|
||||||
command-line.
|
|
||||||
|
|
||||||
|
* Tux Paint always saves a new picture!
|
||||||
|
|
||||||
I can't quit Tux Paint
|
The "never save over" option is enabled. (This disables the prompt
|
||||||
----------------------
|
that would appear when you click 'Save.')
|
||||||
The "noquit" option is set. This disables the "Quit" button in
|
|
||||||
Tux Paint's toolbar (greying it out), and prevents Tux Paint from
|
|
||||||
being quit using the [Escape] key.
|
|
||||||
|
|
||||||
If Tux Paint is not in fullscreen mode, simply click the
|
If you're running Tux Paint from a command-line, make sure you're not
|
||||||
window close button on Tux Paint's title bar.
|
giving it a "--saveovernew" option.
|
||||||
(i.e., the "(x) at the upper right.)
|
|
||||||
|
|
||||||
If Tux Paint is in fullscreen mode, you will need to use the
|
If you're running Tux Paint by double-clicking an icon, check the
|
||||||
[Shift] + [Control] + [Escape] sequence on the keyboard to
|
properties of the icon to see if "--saveovernew" is listed as an
|
||||||
quit Tux Paint.
|
argument.
|
||||||
|
|
||||||
(Note: with or without "noquit" set, you can always use the
|
If "--saveovernew" isn't on the command-line, check Tux Paint's
|
||||||
[Alt] + [F4] combination on your keyboard to quit Tux Paint.)
|
configuration file ("~/.tuxpaintrc" under Linux and Unix,
|
||||||
|
"tuxpaint.cfg" under Windows) for a line reading: "saveover=new".
|
||||||
|
|
||||||
|
Either remove that line, or simply run Tux Paint with the command-line
|
||||||
|
argument: "--saveoverask", which will override the configuration
|
||||||
|
file's setting.
|
||||||
|
|
||||||
I don't want "noquit" mode enabled!
|
Or use Tux Paint Config. and make sure "Ask Before Overwriting" (under
|
||||||
-----------------------------------
|
"Saving") is checked.
|
||||||
If you're running Tux Paint from a command-line, make sure you're
|
|
||||||
not giving it a "--noquit" option.
|
|
||||||
|
|
||||||
If you're running Tux Paint by double-clicking an icon, check the
|
Also, see "Tux Paint always saves over my old picture!", above.
|
||||||
properties of the icon to see if "--noquit" is listed as an argument.
|
|
||||||
|
|
||||||
If "--noquit" isn't on the command-line, check Tux Paint's
|
Audio Problems
|
||||||
configuration file ("~/.tuxpaintrc" under Linux and Unix,
|
|
||||||
"tuxpaint.cfg" under Windows) for a line reading: "noquit=yes".
|
|
||||||
|
|
||||||
Either remove that line, or simply run Tux Paint with the command-line
|
* There's no sound!
|
||||||
argument: "--quit", which will override the configuration file's
|
|
||||||
setting.
|
|
||||||
|
|
||||||
|
First, check the obvious:
|
||||||
|
|
||||||
Tux Paint keeps writing weird messages to the screen / to a text file
|
* Are you certain you're using the computer with the sound card?
|
||||||
---------------------------------------------------------------------
|
* Are your speakers connected and turned on?
|
||||||
A few messages are normal, but if Tux Paint is being extremely verbose
|
* Is the volume turned up on your speakers?
|
||||||
(like listing the name of every rubber-stamp image it finds while loading
|
* Is the volume turned up in your Operating System's "mixer?"
|
||||||
them), then it was probably compiled with debugging output turned on.
|
* Are any other programs running that use sound? (They may be
|
||||||
|
'blocking' Tux Paint)
|
||||||
|
* (Unix/Linux) Are you using a sound system, such as aRts, ESD or
|
||||||
|
GStreamer? If so, try setting the "SDL_AUDIODRIVER" environment
|
||||||
|
variable before running Tux Paint (e.g.,
|
||||||
|
"export SDL_AUDIODRIVER=arts"). Or, run Tux Paint through the
|
||||||
|
system's rerouter (e.g., run "artsdsp tuxpaint" or
|
||||||
|
"esddsp tuxpaint", instead of simply "tuxpaint").
|
||||||
|
|
||||||
Rebuild Tux Paint from source. Be sure to remove or comment out any
|
If sound seems to work otherwise (and you're sure no other program is
|
||||||
line that says:
|
"blocking" the sound device), then Tux Paint is either running with a
|
||||||
|
"no sound" option or was compiled with sound support disabled
|
||||||
#define DEBUG
|
entirely.
|
||||||
|
|
||||||
in the "tuxpaint.c" file in the "src" directory.
|
To test whether sound support was enabled when Tux Paint was compiled,
|
||||||
|
run Tux Paint from a command line, like so:
|
||||||
|
|
||||||
|
tuxpaint --version
|
||||||
Tux Paint is using options I didn't specify!
|
|
||||||
--------------------------------------------
|
|
||||||
By default, Tux Paint first looks at configuration files for
|
|
||||||
options.
|
|
||||||
|
|
||||||
Unix and Linux
|
If, amongst the other information, you see "Sound disabled", then the
|
||||||
--------------
|
version of Tux Paint you're running has sound disabled. Recompile
|
||||||
Under Unix and Linux, it first examines the system-wide
|
Tux Paint, and be sure NOT to build the "nosound" target. (i.e., don't
|
||||||
configuration file, located here:
|
run "make nosound") Be sure the SDL_mixer library and its development
|
||||||
|
headers are available!
|
||||||
|
|
||||||
/etc/tuxpaint/tuxpaint.conf
|
If Tux Paint wasn't build without sound support, make sure you're not
|
||||||
|
running Tux Paint with the "--nosound" option as a command-line
|
||||||
|
argument.
|
||||||
|
|
||||||
It then examines the user's personal configuration file:
|
If it's not, then check the configuration file ("~/.tuxpaintrc" under
|
||||||
|
Linux and Unix, and "tuxpaint.cfg" under Windows) for a line reading:
|
||||||
~/.tuxpaintrc
|
"nosound=yes".
|
||||||
|
|
||||||
Finally, any options sent as command-line arguments are used.
|
Either remove that line, or simply run Tux Paint with the command-line
|
||||||
|
argument: "--sound", which will override the configuration file's
|
||||||
|
setting.
|
||||||
|
|
||||||
Windows
|
Or use Tux Paint Config. and make sure "Enable Sound Effects" (under
|
||||||
-------
|
"Video & Sound") is checked.
|
||||||
Under Windows, Tux Paint first examines the configuration file:
|
|
||||||
|
|
||||||
tuxpaint.cfg
|
* The sound effects sound strange
|
||||||
|
|
||||||
Then, any options sent as command-line arguments are used.
|
This could have to do with how SDL and SDL_mixer were initialized.
|
||||||
|
(The buffer size chosen.)
|
||||||
|
|
||||||
|
Please e-mail us with details about your computer system. (Operating
|
||||||
|
system and version, sound card, which version of Tux Paint you're
|
||||||
|
running (run "tuxpaint --version" to verify), and so on.)
|
||||||
|
|
||||||
This means that if anything is set in a configuration file that
|
Fullscreen Mode Problems
|
||||||
you don't want set, you'll need to either change the config. file
|
|
||||||
(if you can), or override the option on the command-line.
|
|
||||||
|
|
||||||
For example, if "/etc/tuxpaint/tuxpaint.conf" includes an option
|
* When I run Tux Paint full-screen and ALT-TAB out, the window turns
|
||||||
to disable sound:
|
black!
|
||||||
|
|
||||||
nosound=yes
|
This is apparently a bug in the SDL library. Sorry.
|
||||||
|
|
||||||
You can reenable sound by either adding this option to your own
|
* When I run Tux Paint full-screen, it has large borders around it
|
||||||
".tuxpainrc" file:
|
|
||||||
|
|
||||||
sound=yes
|
Linux users - Your X-Window server is probably not set with the
|
||||||
|
ability to switch to the desired resolution: 800×600. (or whatever
|
||||||
|
resolution you have Tux Paint set to run at.) (This is typically done
|
||||||
|
manually under the X-Window server by pressing [Ctrl]-[Alt]-[KeyPad
|
||||||
|
Plus] and -[KeyPad Minus].)
|
||||||
|
|
||||||
Or by using this command-line argument:
|
For this to work, your monitor must support that resolution, and you
|
||||||
|
need to have it listed in your X server configuration.
|
||||||
|
|
||||||
--sound
|
Check the "Display" subsection of the "Screen" section of your XFree86
|
||||||
|
or X.org configuration file (typically "/etc/X11/XF86Config-4" or
|
||||||
|
"/etc/X11/XF86Config", depending on the version of XFree86 you're
|
||||||
|
using; 3.x or 4.x, respectively, or "/etc/X11/xorg.conf" for X.org).
|
||||||
|
|
||||||
|
Add "800x600" (or whatever resolution(s) you want) to the appropriate
|
||||||
|
"Modes" line. (e.g., in the "Display" subsection that contains 24-bit
|
||||||
|
color depth ("Depth 24"), which is what Tux Paint tries to use.) e.g.:
|
||||||
|
|
||||||
Linux and Unix users can also disable the system-wide configuration
|
Modes "1280x1024" "1024x768" "800x600" "640x480"
|
||||||
file by including the following command-line argument:
|
|
||||||
|
|
||||||
--nosysconfig
|
Note that some Linux distributions have tools that can make these
|
||||||
|
changes for you. Debian users can run the command "dpkg-reconfigure
|
||||||
|
xserver-xfree86" as root, for example.
|
||||||
|
|
||||||
Tux Paint will then only look at "~/.tuxpaintrc" and command-line
|
* Tux Paint keeps running in Full Screen mode - I want it windowed!
|
||||||
arguments to determine what options should be set.
|
|
||||||
|
|
||||||
|
The "fullscreen" option is set.
|
||||||
|
|
||||||
|
If you're running Tux Paint from a command-line, make sure you're not
|
||||||
|
giving it a "--fullscreen" option.
|
||||||
|
|
||||||
|
If you're running Tux Paint by double-clicking an icon, check the
|
||||||
|
properties of the icon to see if "--fullscreen" is listed as an
|
||||||
|
argument.
|
||||||
|
|
||||||
|
If "--fullscreen" isn't on the command-line, check Tux Paint's
|
||||||
|
configuration file ("~/.tuxpaintrc" under Linux and Unix,
|
||||||
|
"tuxpaint.cfg" under Windows) for a line reading: "fullscreen=yes".
|
||||||
|
|
||||||
|
Either remove that line, or simply run Tux Paint with the command-line
|
||||||
|
argument: "--windowed", which will override the configuration file's
|
||||||
|
setting.
|
||||||
|
|
||||||
|
Or use Tux Paint Config. and make sure "Fullscreen" (under "Video &
|
||||||
|
Sound") is not checked.
|
||||||
|
|
||||||
|
Other Probelms
|
||||||
|
|
||||||
|
* Tux Paint won't run
|
||||||
|
|
||||||
|
If Tux Paint aborts with the message: "You're already running a copy
|
||||||
|
of Tux Paint!", this means it has been launched in the last 30
|
||||||
|
seconds. (On Unix/Linux, this message would appear in a terminal
|
||||||
|
console if you ran Tux Paint from a command-line. On Windows, this
|
||||||
|
message would appear in a file named "stdout.txt" in the same folder
|
||||||
|
where TuxPaint.exe resides (e.g., C:\Program Files\TuxPaint).
|
||||||
|
|
||||||
|
A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix,
|
||||||
|
"userdata\lockfile.dat" on Windows) is used to make sure Tux Paint
|
||||||
|
isn't run too many times at once (e.g., due to a child impatiently
|
||||||
|
clicking its icon more than once).
|
||||||
|
|
||||||
|
Even if the lockfile exists, it contains the 'time' Tux Paint was last
|
||||||
|
run. If it's been more than 30 seconds, Tux Paint should run fine, and
|
||||||
|
simply update the lockfile with the current time.
|
||||||
|
|
||||||
|
If multiple users are sharing the directory where this file is stored
|
||||||
|
(e.g., on a shared network drive), then you'll need to disable this
|
||||||
|
feature.
|
||||||
|
|
||||||
|
To disable the lockfile, add the "--nolockfile" argument to
|
||||||
|
Tux Paint's command-line.
|
||||||
|
|
||||||
|
* I can't quit Tux Paint
|
||||||
|
|
||||||
|
The "noquit" option is set. This disables the "Quit" button in
|
||||||
|
Tux Paint's toolbar (greying it out), and prevents Tux Paint from
|
||||||
|
being quit using the [Escape] key.
|
||||||
|
|
||||||
|
If Tux Paint is not in fullscreen mode, simply click the window close
|
||||||
|
button on Tux Paint's title bar. (i.e., the "(x)" at the upper right.)
|
||||||
|
|
||||||
|
If Tux Paint is in fullscreen mode, you will need to use the [Shift] +
|
||||||
|
[Control] + [Escape] sequence on the keyboard to quit Tux Paint.
|
||||||
|
|
||||||
|
(Note: with or without "noquit" set, you can always use the [Alt] +
|
||||||
|
[F4] combination on your keyboard to quit Tux Paint.)
|
||||||
|
|
||||||
|
* I don't want "noquit" mode enabled!
|
||||||
|
|
||||||
|
If you're running Tux Paint from a command-line, make sure you're not
|
||||||
|
giving it a "--noquit" option.
|
||||||
|
|
||||||
|
If you're running Tux Paint by double-clicking an icon, check the
|
||||||
|
properties of the icon to see if "--noquit" is listed as an argument.
|
||||||
|
|
||||||
|
If "--noquit" isn't on the command-line, check Tux Paint's
|
||||||
|
configuration file ("~/.tuxpaintrc" under Linux and Unix,
|
||||||
|
"tuxpaint.cfg" under Windows) for a line reading: "noquit=yes".
|
||||||
|
|
||||||
|
Either remove that line, or simply run Tux Paint with the command-line
|
||||||
|
argument: "--quit", which will override the configuration file's
|
||||||
|
setting.
|
||||||
|
|
||||||
|
Or use Tux Paint Config. and make sure "Disable Quit Button and
|
||||||
|
[Escape] Key" (under "Simplification") is not checked.
|
||||||
|
|
||||||
|
* Tux Paint keeps writing weird messages to the screen / to a text file
|
||||||
|
|
||||||
|
A few messages are normal, but if Tux Paint is being extremely verbose
|
||||||
|
(like listing the name of every rubber-stamp image it finds while
|
||||||
|
loading them), then it was probably compiled with debugging output
|
||||||
|
turned on.
|
||||||
|
|
||||||
|
Rebuild Tux Paint from source. Be sure to remove or comment out any
|
||||||
|
line that says:
|
||||||
|
|
||||||
|
#define DEBUG
|
||||||
|
|
||||||
|
in the "tuxpaint.c" file in the "src" directory.
|
||||||
|
|
||||||
|
* Tux Paint is using options I didn't specify!
|
||||||
|
|
||||||
|
By default, Tux Paint first looks at configuration files for options.
|
||||||
|
|
||||||
|
* Unix and Linux
|
||||||
|
|
||||||
|
Under Unix and Linux, it first examines the system-wide
|
||||||
|
configuration file, located here:
|
||||||
|
|
||||||
|
/etc/tuxpaint/tuxpaint.conf
|
||||||
|
|
||||||
|
It then examines the user's personal configuration file:
|
||||||
|
|
||||||
|
~/.tuxpaintrc
|
||||||
|
|
||||||
|
Finally, any options sent as command-line arguments are used.
|
||||||
|
|
||||||
|
* Windows
|
||||||
|
|
||||||
|
Under Windows, Tux Paint first examines the configuration file:
|
||||||
|
|
||||||
|
tuxpaint.cfg
|
||||||
|
|
||||||
|
Then, any options sent as command-line arguments are used.
|
||||||
|
|
||||||
|
This means that if anything is set in a configuration file that you
|
||||||
|
don't want set, you'll need to either change the config. file (if you
|
||||||
|
can), or override the option on the command-line.
|
||||||
|
|
||||||
|
For example, if "/etc/tuxpaint/tuxpaint.conf" includes an option to
|
||||||
|
disable sound:
|
||||||
|
|
||||||
|
nosound=yes
|
||||||
|
|
||||||
|
You can reenable sound by either adding this option to your own
|
||||||
|
".tuxpainrc" file:
|
||||||
|
|
||||||
|
sound=yes
|
||||||
|
|
||||||
|
Or by using this command-line argument:
|
||||||
|
|
||||||
|
--sound
|
||||||
|
|
||||||
|
Linux and Unix users can also disable the system-wide configuration
|
||||||
|
file by including the following command-line argument:
|
||||||
|
|
||||||
|
--nosysconfig
|
||||||
|
|
||||||
|
Tux Paint will then only look at "~/.tuxpaintrc" and command-line
|
||||||
|
arguments to determine what options should be set.
|
||||||
|
|
||||||
Help / Contact
|
Help / Contact
|
||||||
--------------
|
|
||||||
Any questions you don't see answered? Let me know!
|
|
||||||
|
|
||||||
bill@newbreedsoftware.com
|
Any questions you don't see answered? Let me know!
|
||||||
|
|
||||||
Or post to our 'tuxpaint-dev' mailing list:
|
bill@newbreedsoftware.com
|
||||||
|
|
||||||
http://www.newbreedsoftware.com/tuxpaint/lists/
|
Or post to our 'tuxpaint-users' mailing list:
|
||||||
|
|
||||||
|
http://www.newbreedsoftware.com/tuxpaint/lists/
|
||||||
|
|
|
||||||
|
|
@ -26,530 +26,584 @@ com/tuxpaint/</a></p>
|
||||||
<p>September 14, 2002 - October 9, 2005</p>
|
<p>September 14, 2002 - October 9, 2005</p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<pre>
|
<h2>Drawing-related</h2>
|
||||||
Frequently Asked Questions:
|
|
||||||
---------------------------
|
|
||||||
Drawing-related
|
|
||||||
---------------
|
|
||||||
The Magic "Fill" Tool Looks Bad
|
|
||||||
-------------------------------
|
|
||||||
Tux Paint is probably comparing exact pixel colors when filling.
|
|
||||||
This is faster, but looks worse. Run the command "tuxpaint --version"
|
|
||||||
from a command line, and you should see, amongst the other output:
|
|
||||||
"Low Quality Flood Fill enabled".
|
|
||||||
|
|
||||||
To change this, you must rebuild Tux Paint from source.
|
<ul>
|
||||||
Be sure to remove or comment out any line that says:
|
<li><em>The Magic "Fill" Tool Looks Bad</em>
|
||||||
|
<p>Tux Paint is probably comparing exact pixel colors when filling.
|
||||||
|
This is faster, but looks worse. Run the command "tuxpaint --version"
|
||||||
|
from a command line, and you should see, amongst the other output:
|
||||||
|
"Low Quality Flood Fill enabled".</p>
|
||||||
|
|
||||||
|
<p>To change this, you must rebuild Tux Paint from source.
|
||||||
|
Be sure to remove or comment out any line that says:</p>
|
||||||
|
|
||||||
|
<blockquote><p><code>
|
||||||
#define LOW_QUALITY_FLOOD_FILL
|
#define LOW_QUALITY_FLOOD_FILL
|
||||||
|
</code></p></blcokquote>
|
||||||
|
|
||||||
in the "tuxpaint.c" file in the "src" directory.
|
<p>in the "tuxpaint.c" file in the "src" directory.</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li><em>Stamp outlines are always rectangles</em>
|
||||||
|
<p>Tux Paint was built with low-quality (but faster) stamp outlines.</p>
|
||||||
|
|
||||||
Stamp outlines are always rectangles
|
<p>Rebuild Tux Paint from source. Be sure to remove or comment out any
|
||||||
------------------------------------
|
line that says:</p>
|
||||||
Tux Paint was built with low-quality (but faster) stamp outlines.
|
|
||||||
|
|
||||||
Rebuild Tux Paint from source. Be sure to remove or comment out any
|
<blockquote><p><code>
|
||||||
line that says:
|
|
||||||
|
|
||||||
#define LOW_QUALITY_STAMP_OUTLINE
|
#define LOW_QUALITY_STAMP_OUTLINE
|
||||||
|
</code></p></blockquote>
|
||||||
|
|
||||||
in the "tuxpaint.c" file in the "src" directory.
|
<p>in the "tuxpaint.c" file in the "src" directory.</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li><em>The Rubber Stamp tool is greyed out!</em>
|
||||||
|
<p>This means that Tux Paint either couldn't find any stamp images,
|
||||||
|
or was asked not to load them.</p>
|
||||||
|
|
||||||
The Rubber Stamp tool is greyed out!
|
<p>If you installed Tux Paint, but did not install the separate,
|
||||||
------------------------------------
|
optional "Stamps" collection, quit Tux Paint and install it now.
|
||||||
This means that Tux Paint either couldn't find any stamp images,
|
It should be available from the same place you got the main
|
||||||
or was asked not to load them.
|
Tux Paint program. <i>(Note: As of version 0.9.14, Tux Paint
|
||||||
|
comes with a small collection of example stamps.)</i></p>
|
||||||
|
|
||||||
If you installed Tux Paint, but did not install the separate,
|
<p>If you don't want to install the default collection of stamps,
|
||||||
optional "Stamps" collection, quit Tux Paint and install it now.
|
you can just create your own. See the <a href="README.html">README
|
||||||
It should be available from the same place you got the main
|
documentation</a> for more on creating PNG image files, TXT text
|
||||||
Tux Paint program.
|
description files, WAV sound files, and DAT text data files that
|
||||||
|
make up stamps.</p>
|
||||||
|
|
||||||
If you don't want to install the default collection of stamps,
|
<p>Finally, if you install the stamps, and think they should be loading,
|
||||||
you can just create your own. See the README documentation for
|
check to see that the "nostamps" option isn't being set.
|
||||||
more on creating PNG image files, TXT text description files,
|
(Either via a "--nostamps" option to Tux Paint's command line, or
|
||||||
WAV sound files, and DAT text data files that make up stamps.
|
"nostamps=yes" in the configuration file.)</p>
|
||||||
|
|
||||||
Finally, if you install the stamps, and think they should be loading,
|
<p>If so, either change/remove the "nostamps" option, or you can
|
||||||
check to see that the "nostamps" option isn't being set.
|
override it with "--stamps" on the command line or
|
||||||
(Either via a "--nostamps" option to Tux Paint's command line, or
|
"nostamps=no" or "stamps=yes" in a configuration file.</p>
|
||||||
"nostamps=yes" in the configuration file.)
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
If so, either change/remove the "nostamps" option, or you can
|
<h2>Interface Problems</h2>
|
||||||
override it with "--stamps" on the command line or
|
|
||||||
"nostamps=no" or "stamps=yes" in a configuration file.
|
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><em>Stamp thumbnails in the Stamp Selector look bad</em>
|
||||||
|
<p>Tux Paint was probably compiled with the faster, lower quality
|
||||||
|
thumbnail code enabled. Run the command: "tuxpaint --version" from
|
||||||
|
a command line. If, amongst the other output, you see the text:
|
||||||
|
"Low Quality Thumbnails enabled", then this is what's happening.</p>
|
||||||
|
|
||||||
Interface Problems
|
<p>Rebuild Tux Paint from source. Be sure to remove or comment out any
|
||||||
------------------
|
line that says:</p>
|
||||||
Stamp thumbnails in the Stamp Selector look bad
|
|
||||||
-----------------------------------------------
|
|
||||||
Tux Paint was probably compiled with the faster, lower quality
|
|
||||||
thumbnail code enabled. Run the command: "tuxpaint --version" from
|
|
||||||
a command line. If, amongst the other output, you see the text:
|
|
||||||
"Low Quality Thumbnails enabled", then this is what's happening.
|
|
||||||
|
|
||||||
Rebuild Tux Paint from source. Be sure to remove or comment out any
|
<blockquote><p><code>
|
||||||
line that says:
|
|
||||||
|
|
||||||
#define LOW_QUALITY_THUMBNAILS
|
#define LOW_QUALITY_THUMBNAILS
|
||||||
|
</code></p></blockquote>
|
||||||
|
|
||||||
in the "tuxpaint.c" file in the "src" directory.
|
<p>in the "tuxpaint.c" file in the "src" directory.</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li><em>Pictures in the 'Open' dialog look bad</em>
|
||||||
|
<p>"Low Quality Thumbnails" is probably enabled.
|
||||||
|
See: "Stamp thumbnails in the Stamp Selector look bad", above.</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
Pictures in the 'Open' dialog look bad
|
<li><em>The color picker buttons are ugly squares, not pretty buttons!</em>
|
||||||
--------------------------------------
|
<p>Tux Paint was probably compiled with the nice looking color
|
||||||
"Low Quality Thumbnails" is probably enabled.
|
selector buttons disabled. Run the command: "tuxpaint --version" from
|
||||||
See: "Stamp thumbnails in the Stamp Selector look bad", above.
|
a command line. If, amongst the other output, you see the text:
|
||||||
|
"Low Quality Color Selector enabled", then this is what's happening.</p>
|
||||||
|
|
||||||
|
<p>Rebuild Tux Paint from source. Be sure to remove or comment out any
|
||||||
|
line that says:</p>
|
||||||
|
|
||||||
The color picker buttons are ugly squares, not pretty buttons!
|
<blockquote><p><code>
|
||||||
--------------------------------------------------------------
|
|
||||||
Tux Paint was probably compiled with the nice looking color
|
|
||||||
selector buttons disabled. Run the command: "tuxpaint --version" from
|
|
||||||
a command line. If, amongst the other output, you see the text:
|
|
||||||
"Low Quality Color Selector enabled", then this is what's happening.
|
|
||||||
|
|
||||||
Rebuild Tux Paint from source. Be sure to remove or comment out any
|
|
||||||
line that says:
|
|
||||||
|
|
||||||
#define LOW_QUALITY_COLOR_SELECTOR
|
#define LOW_QUALITY_COLOR_SELECTOR
|
||||||
|
</code></p></blockquote>
|
||||||
|
|
||||||
in the "tuxpaint.c" file in the "src" directory.
|
<p>in the "tuxpaint.c" file in the "src" directory.</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
The Mouse Pointer Leaves Trails!
|
|
||||||
--------------------------------
|
|
||||||
In Windows under fullscreen, and in Linux under fullscreen outside of
|
|
||||||
X-Window, the SDL library has a bug where the mouse pointer can leave
|
|
||||||
trails of 'garbage' on the screen.
|
|
||||||
|
|
||||||
Until there's a fix, either don't use fullscreen, or disable the
|
<li><em>All of the text is in uppercase!</em>
|
||||||
fancy mouse pointer shapes using the configuration option:
|
<p>The "uppercase" option is on.</p>
|
||||||
|
|
||||||
nofancycursors=yes
|
<p>If you're running Tux Paint from a command-line, make sure you're
|
||||||
|
not giving it an "--uppercase" option.</p>
|
||||||
|
|
||||||
Or by using this command-line argument:
|
<p>If you're running Tux Paint by double-clicking an icon, check the
|
||||||
|
properties of the icon to see if "--uppercase" is listed as a
|
||||||
|
command-line argument.</p>
|
||||||
|
|
||||||
--nofancycursors
|
<p>If "--uppercase" isn't being sent on the command line, check
|
||||||
|
Tux Paint's configuration file ("~/.tuxpaintrc" under Linux and Unix,
|
||||||
|
"tuxpaint.cfg" under Windows) for a line reading: "uppercase=yes".</p>
|
||||||
All of the text is in uppercase!
|
|
||||||
--------------------------------
|
|
||||||
The "uppercase" option is on.
|
|
||||||
|
|
||||||
If you're running Tux Paint from a command-line, make sure you're
|
<p>Either remove that line, or simply run Tux Paint with the
|
||||||
not giving it an "--uppercase" option.
|
command-line argument: "--mixedcase", which will override the uppercase
|
||||||
|
setting.</p>
|
||||||
|
|
||||||
If you're running Tux Paint by double-clicking an icon, check the
|
<p>Or use Tux Paint Config. and make sure
|
||||||
properties of the icon to see if "--uppercase" is listed as a
|
"Show Uppercase Text Only" (under "Languages") is not checked.</p>
|
||||||
command-line argument.
|
</li>
|
||||||
|
|
||||||
If "--uppercase" isn't being sent on the command line, check Tux Paint's
|
<li><em>Tux Paint is in a different language!</em>
|
||||||
configuration file ("~/.tuxpaintrc" under Linux and Unix,
|
<p>Make sure your locale setting is correct.
|
||||||
"tuxpaint.cfg" under Windows) for a line reading: "uppercase=yes".
|
See "Tux Paint won't switch to my language", below.</p>
|
||||||
|
|
||||||
Either remove that line, or simply run Tux Paint with the command-line
|
<li><em>Tux Paint won't switch to my language</em>
|
||||||
argument: "--mixedcase", which will override the uppercase setting.
|
<ul>
|
||||||
|
<li><i>Linux and Unix users: Make sure the locale is available</i></li>
|
||||||
|
<p>Make sure the locale you want is available. Check your
|
||||||
|
"/etc/locale.gen" file. See the
|
||||||
|
<a href="README.html">README documentation</a> for the locales
|
||||||
|
Tux Paint uses (especially when using the "--lang" option).</p>
|
||||||
|
|
||||||
|
<p>Note: Debian users can simply run "dpkg-reconfigure locales"
|
||||||
|
if the locales are managed by "dpkg."</p>
|
||||||
|
|
||||||
Tux Paint is in a weird language!
|
<ul>
|
||||||
---------------------------------
|
<li>If you're using the "--lang" command-line option
|
||||||
Make sure your locale setting is correct.
|
<p>Try using the "--locale" command-line option, or your operating
|
||||||
See "Tux Paint won't switch to my language", below.
|
system's locale settings (e.g., the "$LANG" environment variable), and
|
||||||
|
please e-mail us regarding your trouble.</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>If you're using the "--locale" command-line option
|
||||||
|
<p>If this doesn't work, please e-mail us regarding your trouble.</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
Tux Paint won't switch to my language
|
<li>If you're trying to use your Operating System's locale
|
||||||
-------------------------------------
|
<p>If this doesn't work, please e-mail us regarding your trouble.</p>
|
||||||
Linux and Unix users: Make sure the locale is available
|
</li>
|
||||||
-------------------------------------------------------
|
|
||||||
Make sure the locale you want is available. Check your
|
|
||||||
"/etc/locale.gen" file. See README.txt for the locales
|
|
||||||
Tux Paint uses (especially when using the "--lang" option).
|
|
||||||
|
|
||||||
Note: Debian users can simply run "dpkg-reconfigure locales"
|
<li>Make sure you have the necessary font
|
||||||
if the locales are managed by dpkg.
|
<p>Some translations require their own font. Chinese and Korean,
|
||||||
|
for example, need Chinese and Korean TrueType Fonts installed
|
||||||
|
and placed in the proper location, respectively.</p>
|
||||||
|
|
||||||
|
<p>The appropriate fonts for such locales can be downloaded from the
|
||||||
|
Tux Paint website:</p>
|
||||||
|
|
||||||
|
<blockquote><p>
|
||||||
|
<a href="http://www.newbreedsoftware.com/tuxpaint/download/fonts/"
|
||||||
|
>http://www.newbreedsoftware.com/tuxpaint/download/fonts/</a>
|
||||||
|
</p></blockquote>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2>Printing</h2>
|
||||||
|
<ul>
|
||||||
|
<li><em>Tux Paint won't print, gives an error, or prints garbage
|
||||||
|
(Unix/Linux)</em>
|
||||||
|
<p>Tux Paint prints by creating a PostScript rendition of the picture
|
||||||
|
and sending it to an external command. By default, this command is
|
||||||
|
the "lpr" printing tool.</p>
|
||||||
|
|
||||||
|
<p>If that program is not available (for example, you're using CUPS,
|
||||||
|
the Common Unix Printing System, and do not have "cups-lpr" installed),
|
||||||
|
you will need to specify an appropriate command using the
|
||||||
|
"printcommand" option in Tux Paint's configuration file.
|
||||||
|
(See the <a href="OPTIONS.html">OPTIONS documentation</a>.)</p>
|
||||||
|
|
||||||
|
<p><i>Note: Versions of Tux Paint prior to 0.9.15 used a different
|
||||||
|
default command for printing, "pngtopnm | pnmtops | lpr",
|
||||||
|
as Tux Paint output PNG format, rather than PostScript.</p>
|
||||||
|
|
||||||
If you're using the "--lang" command-line option
|
<p>If you had changed your "printcommand" option prior to Tux Paint
|
||||||
------------------------------------------------
|
0.9.15, you will need to go back and alter it to accept PostScript.</p>
|
||||||
Try using the "--locale" command-line option, or your operating system's
|
</li>
|
||||||
locale settings (e.g., the "$LANG" environment variable), and
|
|
||||||
please e-mail us regarding your trouble.
|
|
||||||
|
|
||||||
If you're using the "--locale" command-line option
|
|
||||||
--------------------------------------------------
|
|
||||||
If this doesn't work, please e-mail us regarding your trouble.
|
|
||||||
|
|
||||||
If you're trying to use your Operating System's locale
|
|
||||||
------------------------------------------------------
|
|
||||||
If this doesn't work, please e-mail us regarding your trouble.
|
|
||||||
|
|
||||||
Make sure you have the necessary font
|
<li><em>I get the message "You can't print yet!" when I go to print!</em>
|
||||||
-------------------------------------
|
<p>The "print delay" option is on. You can only print once every
|
||||||
Some translations require their own font. Chinese and Korean,
|
<i>X</i> seconds.</p>
|
||||||
for example, need Chinese and Korean TrueType Fonts installed
|
|
||||||
and placed in the proper location, respectively.
|
|
||||||
|
|
||||||
The appropriate fonts for such locales can be downloaded from the
|
<p>If you're running Tux Paint from a command-line, make sure you're
|
||||||
Tux Paint website:
|
not giving it a "--printdelay=..." option.</p>
|
||||||
|
|
||||||
http://www.newbreedsoftware.com/tuxpaint/download/fonts/
|
<p>If you're running Tux Paint by double-clicking an icon, check the
|
||||||
|
properties of the icon to see if "--printdelay=..." is listed as
|
||||||
|
a command-line argument.</p>
|
||||||
|
|
||||||
|
<p>If a "--printdelay=..." option isn't being sent on the command line,
|
||||||
|
check Tux Paint's configuration file ("~/.tuxpaintrc" under Linux and
|
||||||
|
Unix, "tuxpaint.cfg" under Windows) for a line reading:
|
||||||
|
"printdelay=...".</p>
|
||||||
|
|
||||||
Printing
|
<p>Either remove that line, set the delay value to 0 (no delay), or
|
||||||
--------
|
decrease the delay to a value you prefer. (See the
|
||||||
Tux Paint won't print, gives an error, or prints garbage (Unix/Linux)
|
<a href="README.html">README documentation</a>).</p>
|
||||||
---------------------------------------------------------------------
|
|
||||||
Tux Paint prints by creating a PostScript rendition of the picture
|
|
||||||
and sending it to an external command. By default, this command is
|
|
||||||
the "lpr" printing tool.
|
|
||||||
|
|
||||||
If that program is not available (for example, you're using CUPS,
|
<p>Or, you can simply run Tux Paint with the command-line argument:
|
||||||
the Common Unix Printing System, and do not have "cups-lpr" installed),
|
"--printdelay=0", which will override the configuration file's setting,
|
||||||
you will need to specify an appropriate command using the
|
and allow unlimited printing. (You won't have to wait between prints.)</p>
|
||||||
"printcommand" option in Tux Paint's configuration file.
|
|
||||||
(See the OPTIONS documentation.)
|
|
||||||
|
|
||||||
Note: Versions of Tux Paint prior to 0.9.15 used a different default
|
<p>Or use Tux Paint Config. and make sure
|
||||||
command for printing, "pngtopnm | pnmtops | lpr", as Tux Paint output
|
"Print Delay" (under "Printing") is set to "0 seconds."</p>
|
||||||
PNG format, rather than PostScript.
|
</li>
|
||||||
|
|
||||||
If you had changed your "printcommand" option prior to Tux Paint 0.9.15,
|
|
||||||
you will need to go back and alter it to accept PostScript.
|
|
||||||
|
|
||||||
|
<li><em>I simply can't print! The button is greyed out!</em>
|
||||||
|
<p>The "no print" option is on.</p>
|
||||||
|
|
||||||
I get the message "You can't print yet!" when I go to print!
|
<p>If you're running Tux Paint from a command-line, make sure you're
|
||||||
------------------------------------------------------------
|
not giving it a "--noprint" option.</p>
|
||||||
The "print delay" option is on. You can only print once every X seconds.
|
|
||||||
|
|
||||||
If you're running Tux Paint from a command-line, make sure you're
|
<p>If you're running Tux Paint by double-clicking an icon, check the
|
||||||
not giving it a "--printdelay=..." option.
|
properties of the icon to see if "--noprint" is listed as an argument.</p>
|
||||||
|
|
||||||
If you're running Tux Paint by double-clicking an icon, check the
|
<p>If "--noprint" isn't on the command-line, check Tux Paint's
|
||||||
properties of the icon to see if "--printdelay=..." is listed as
|
configuration file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg"
|
||||||
a command-line argument.
|
under Windows) for a line reading: "noprint=yes".</p>
|
||||||
|
|
||||||
If a "--printdelay=..." option isn't being sent on the command line,
|
<p>Either remove that line, or simply run Tux Paint with the
|
||||||
check Tux Paint's configuration file ("~/.tuxpaintrc" under Linux and
|
command-line argument: "--print", which will override the configuration
|
||||||
Unix, "tuxpaint.cfg" under Windows) for a line reading:
|
file's setting.</p>
|
||||||
"printdelay=...".
|
|
||||||
|
|
||||||
Either remove that line, set the delay value to 0 (no delay), or
|
<p>Or use Tux Paint Config. and make sure
|
||||||
decrease the delay to a value you prefer. (See README.txt).
|
"Allow Printing" (under "Printing") is checked.</p>
|
||||||
Or, you can simply run Tux Paint with the command-line argument:
|
</li>
|
||||||
"--printdelay=0", which will override the configuration file's setting,
|
</ul>
|
||||||
and allow unlimited printing. (You won't have to wait between prints.)
|
|
||||||
|
|
||||||
|
<h2>Saving</h2>
|
||||||
|
<ul>
|
||||||
|
<li><em>Tux Paint always saves over my old picture!</em>
|
||||||
|
<p>The "save over" option is enabled. (This disables the prompt
|
||||||
|
that would appear when you click 'Save.')</p>
|
||||||
|
|
||||||
I simply can't print! The button is greyed out!
|
<p>If you're running Tux Paint from a command-line, make sure you're
|
||||||
------------------------------------------------
|
not giving it a "--saveover" option.</p>
|
||||||
The "no print" option is on.
|
|
||||||
|
|
||||||
If you're running Tux Paint from a command-line, make sure you're
|
<p>If you're running Tux Paint by double-clicking an icon, check the
|
||||||
not giving it a "--noprint" option.
|
properties of the icon to see if "--saveover" is listed as an argument.</p>
|
||||||
|
|
||||||
If you're running Tux Paint by double-clicking an icon, check the
|
<p>If "--saveover" isn't on the command-line, check Tux Paint's
|
||||||
properties of the icon to see if "--noprint" is listed as an argument.
|
configuration file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg"
|
||||||
|
under Windows) for a line reading: "saveover=yes".</p>
|
||||||
|
|
||||||
If "--noprint" isn't on the command-line, check Tux Paint's configuration
|
<p>Either remove that line, or simply run Tux Paint with the
|
||||||
file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg" under Windows)
|
command-line argument: "--saveoverask", which will override the
|
||||||
for a line reading: "noprint=yes".
|
configuration file's setting.</p>
|
||||||
|
|
||||||
Either remove that line, or simply run Tux Paint with the command-line
|
<p>Or use Tux Paint Config. and make sure
|
||||||
argument: "--print", which will override the configuration file's setting.
|
"Ask Before Overwriting" (under "Saving") is checked.</p>
|
||||||
|
|
||||||
|
<p>Also, see "Tux Paint always saves a new picture!", below.</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
Saving
|
<li><em>Tux Paint always saves a new picture!</em>
|
||||||
------
|
<p>The "never save over" option is enabled. (This disables the prompt
|
||||||
Tux Paint always saves over my old picture!
|
that would appear when you click 'Save.')</p>
|
||||||
-------------------------------------------
|
|
||||||
The "save over" option is enabled. (This disables the prompt
|
|
||||||
that would appear when you click 'Save.')
|
|
||||||
|
|
||||||
If you're running Tux Paint from a command-line, make sure you're
|
<p>If you're running Tux Paint from a command-line, make sure you're
|
||||||
not giving it a "--saveover" option.
|
not giving it a "--saveovernew" option.</p>
|
||||||
|
|
||||||
If you're running Tux Paint by double-clicking an icon, check the
|
<p>If you're running Tux Paint by double-clicking an icon, check the
|
||||||
properties of the icon to see if "--saveover" is listed as an argument.
|
properties of the icon to see if "--saveovernew" is listed as an
|
||||||
|
argument.</p>
|
||||||
|
|
||||||
If "--saveover" isn't on the command-line, check Tux Paint's configuration
|
<p>If "--saveovernew" isn't on the command-line, check Tux Paint's
|
||||||
file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg" under Windows)
|
configuration file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg"
|
||||||
for a line reading: "saveover=yes".
|
under Windows) for a line reading: "saveover=new".</p>
|
||||||
|
|
||||||
Either remove that line, or simply run Tux Paint with the command-line
|
<p>Either remove that line, or simply run Tux Paint with the
|
||||||
argument: "--saveoverask", which will override the configuration file's
|
command-line argument: "--saveoverask", which will override the
|
||||||
setting.
|
configuration file's setting.</p>
|
||||||
|
|
||||||
Also, see "Tux Paint always saves a new picture!", below.
|
<p>Or use Tux Paint Config. and make sure
|
||||||
|
"Ask Before Overwriting" (under "Saving") is checked.</p>
|
||||||
|
|
||||||
|
<p>Also, see "Tux Paint always saves over my old picture!", above.</p>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
Tux Paint always saves a new picture!
|
<h2>Audio Problems</h2>
|
||||||
-------------------------------------
|
<ul>
|
||||||
The "never save over" option is enabled. (This disables the prompt
|
<li><em>There's no sound!</em>
|
||||||
that would appear when you click 'Save.')
|
<p>First, check the obvious:</p>
|
||||||
|
|
||||||
If you're running Tux Paint from a command-line, make sure you're
|
<ul>
|
||||||
not giving it a "--saveovernew" option.
|
<li>Are you certain you're using the computer with the sound card?
|
||||||
|
<li>Are your speakers connected and turned on?
|
||||||
|
<li>Is the volume turned up on your speakers?
|
||||||
|
<li>Is the volume turned up in your Operating System's "mixer?"
|
||||||
|
<li>Are any other programs running that use sound? (They may be
|
||||||
|
'blocking' Tux Paint)
|
||||||
|
<li>(Unix/Linux) Are you using a sound system, such as aRts, ESD or
|
||||||
|
GStreamer? If so, try setting the "SDL_AUDIODRIVER" environment variable
|
||||||
|
before running Tux Paint (e.g., "export SDL_AUDIODRIVER=arts").
|
||||||
|
Or, run Tux Paint through the system's rerouter (e.g.,
|
||||||
|
run "artsdsp tuxpaint" or "esddsp tuxpaint", instead of
|
||||||
|
simply "tuxpaint").
|
||||||
|
</ul>
|
||||||
|
|
||||||
If you're running Tux Paint by double-clicking an icon, check the
|
<p>If sound seems to work otherwise (and you're sure no other program is
|
||||||
properties of the icon to see if "--saveovernew" is listed as an argument.
|
"blocking" the sound device), then Tux Paint is either running with
|
||||||
|
a "no sound" option or was compiled with sound support disabled entirely.</p>
|
||||||
|
|
||||||
If "--saveovernew" isn't on the command-line, check Tux Paint's
|
<p>To test whether sound support was enabled when Tux Paint was
|
||||||
configuration file ("~/.tuxpaintrc" under Linux and Unix, "tuxpaint.cfg"
|
compiled, run Tux Paint from a command line, like so:</p>
|
||||||
under Windows) for a line reading: "saveover=new".
|
|
||||||
|
|
||||||
Either remove that line, or simply run Tux Paint with the command-line
|
|
||||||
argument: "--saveoverask", which will override the configuration file's
|
|
||||||
setting.
|
|
||||||
|
|
||||||
Also, see "Tux Paint always saves over my old picture!", above.
|
|
||||||
|
|
||||||
|
|
||||||
Audio Problems
|
|
||||||
--------------
|
|
||||||
There's no sound!
|
|
||||||
-----------------
|
|
||||||
First, check the obvious:
|
|
||||||
|
|
||||||
* Are you certain you're using the computer with the sound card? ;^)
|
|
||||||
* Are your speakers connected and turned on?
|
|
||||||
* Is the volume turned up on your speakers?
|
|
||||||
* Is the volume turned up in your Operating System's "mixer?"
|
|
||||||
* Are any other programs running that use sound? (They may be
|
|
||||||
'blocking' Tux Paint)
|
|
||||||
|
|
||||||
If sound seems to work otherwise (and you're sure no other program is
|
|
||||||
"blocking" the sound device), then Tux Paint is either running with
|
|
||||||
a "no sound" option or was compiled with sound support disabled entirely.
|
|
||||||
|
|
||||||
To test whether sound support was enabled when Tux Paint was compiled,
|
|
||||||
run Tux Paint from a command line, like so:
|
|
||||||
|
|
||||||
|
<blockquote><p><code>
|
||||||
tuxpaint --version
|
tuxpaint --version
|
||||||
|
</code></p></blockquote>
|
||||||
|
|
||||||
If, amongst the other information, you see "Sound disabled", then the
|
<p>If, amongst the other information, you see "Sound disabled", then the
|
||||||
version of Tux Paint you're running has sound disabled. Recompiled
|
version of Tux Paint you're running has sound disabled. Recompile
|
||||||
Tux Paint, and be sure NOT to build the "nosound" target.
|
Tux Paint, and be sure NOT to build the "nosound" target.
|
||||||
(i.e., don't run "make nosound") Be sure SDL_mixer library is available!
|
(i.e., don't run "make nosound") Be sure the SDL_mixer library and
|
||||||
|
its development headers are available!</p>
|
||||||
|
|
||||||
If Tux Paint wasn't build without sound support, make sure you're
|
<p>If Tux Paint wasn't build without sound support, make sure you're
|
||||||
not running Tux Paint with the "--nosound" option as a command-line
|
not running Tux Paint with the "--nosound" option as a command-line
|
||||||
argument.
|
argument.</p>
|
||||||
|
|
||||||
If it's not, then check the configuration file ("~/.tuxpaintrc" under
|
<p>If it's not, then check the configuration file ("~/.tuxpaintrc" under
|
||||||
Linux and Unix, and "tuxpaint.cfg" under Windows) for a line reading:
|
Linux and Unix, and "tuxpaint.cfg" under Windows) for a line reading:
|
||||||
"nosound=yes".
|
"nosound=yes".</p>
|
||||||
|
|
||||||
Either remove that line, or simply run Tux Paint with the command-line
|
<p>Either remove that line, or simply run Tux Paint with the
|
||||||
argument: "--sound", which will override the configuration file's setting.
|
command-line argument: "--sound", which will override the configuration
|
||||||
|
file's setting.</p>
|
||||||
|
|
||||||
|
<p>Or use Tux Paint Config. and make sure
|
||||||
|
"Enable Sound Effects" (under "Video & Sound") is checked.</p>
|
||||||
|
|
||||||
The sound effects sound strange
|
<li><em>The sound effects sound strange</em>
|
||||||
-------------------------------
|
<p>This could have to do with how SDL and SDL_mixer were initialized.
|
||||||
This could have to do with how SDL and SDL_mixer were initialized.
|
(The buffer size chosen.)</p>
|
||||||
(The buffer size chosen.)
|
|
||||||
|
|
||||||
Please e-mail us with details about your computer system.
|
<p>Please e-mail us with details about your computer system.
|
||||||
(Operating system and version, sound card, which version of Tux Paint
|
(Operating system and version, sound card, which version of Tux Paint
|
||||||
you're running (run "tuxpaint --version" to verify), and so on.)
|
you're running (run "tuxpaint --version" to verify), and so on.)</p>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2>Fullscreen Mode Problems</h2>
|
||||||
|
<ul>
|
||||||
|
<li><em>When I run Tux Paint full-screen and ALT-TAB out, the window turns
|
||||||
|
black!</em>
|
||||||
|
|
||||||
Fullscreen Mode Problems
|
<p>This is apparently a bug in the SDL library. Sorry.</p>
|
||||||
------------------------
|
|
||||||
When I run Tux Paint full-screen and ALT-TAB out, the window turns black!
|
|
||||||
-------------------------------------------------------------------------
|
|
||||||
This is apparently a bug in the SDL library. Sorry.
|
|
||||||
|
|
||||||
|
<li><em>When I run Tux Paint full-screen, it has large borders around
|
||||||
|
it</em>
|
||||||
|
|
||||||
When I run Tux Paint full-screen, it has large borders around it
|
<p>Linux users - Your X-Window server is probably not set with the
|
||||||
----------------------------------------------------------------
|
ability to switch to the desired resolution: 800×600.
|
||||||
Linux users - Your X-Window server is probably not set with the
|
(or whatever resolution you have Tux Paint set to run at.)
|
||||||
ability to switch to the desired resolution: 640 x 480.
|
(This is typically done manually under the X-Window server by
|
||||||
(This is typically done manually under the XFree86 server by
|
pressing [Ctrl]-[Alt]-[KeyPad Plus] and -[KeyPad Minus].)</p>
|
||||||
pressing [Ctrl]-[Alt]-[KeyPad Plus] and -[KeyPad Minus].)
|
|
||||||
|
|
||||||
For this to work, your monitor must support that resolution, and
|
<p>For this to work, your monitor must support that resolution, and
|
||||||
you need to have it listed in your X server configuration.
|
you need to have it listed in your X server configuration.</p>
|
||||||
|
|
||||||
Check the "Display" subsection of the "Screen" section of your
|
<p>Check the "Display" subsection of the "Screen" section of your
|
||||||
XFree86 configuration file (typically "/etc/X11/XF86Config-4" or
|
XFree86 or X.org configuration file (typically "/etc/X11/XF86Config-4" or
|
||||||
"/etc/X11/XF86Config", depending on the version of XFree86 you're
|
"/etc/X11/XF86Config", depending on the version of XFree86 you're
|
||||||
using; 3.x or 4.x, respectively).
|
using; 3.x or 4.x, respectively, or "/etc/X11/xorg.conf" for X.org).</p>
|
||||||
|
|
||||||
Add "640x480" to the appropriate "Modes" line. (e.g., in
|
<p>Add "800x600" (or whatever resolution(s) you want) to the appropriate
|
||||||
the "Display" subsection that contains 16-bit color depth ("Depth 16"),
|
"Modes" line. (e.g., in the "Display" subsection that contains 24-bit color
|
||||||
which is what Tux Paint tries to use.)
|
depth ("Depth 24"), which is what Tux Paint tries to use.)
|
||||||
|
e.g.:<p>
|
||||||
e.g.:
|
|
||||||
|
|
||||||
|
<blockquote><p><code>
|
||||||
Modes "1280x1024" "1024x768" "800x600" "640x480"
|
Modes "1280x1024" "1024x768" "800x600" "640x480"
|
||||||
|
</code></p></blockquote>
|
||||||
|
|
||||||
Note that some Linux distributions have tools that can make these
|
<p>Note that some Linux distributions have tools that can make these
|
||||||
changes for you. Debian users can run the command
|
changes for you. Debian users can run the command
|
||||||
"dpkg-reconfigure xserver-xfree86" as root, for example.
|
"dpkg-reconfigure xserver-xfree86" as root, for example.</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li><em>Tux Paint keeps running in Full Screen mode - I want it
|
||||||
|
windowed!</em>
|
||||||
|
<p>The "fullscreen" option is set.</p>
|
||||||
|
|
||||||
Tux Paint keeps running in Full Screen mode - I want it windowed!
|
<p>If you're running Tux Paint from a command-line, make sure you're
|
||||||
-----------------------------------------------------------------
|
not giving it a "--fullscreen" option.</p>
|
||||||
The "fullscreen" option is set.
|
|
||||||
|
|
||||||
If you're running Tux Paint from a command-line, make sure you're
|
<p>If you're running Tux Paint by double-clicking an icon, check the
|
||||||
not giving it a "--fullscreen" option.
|
properties of the icon to see if "--fullscreen" is listed as an argument.</p>
|
||||||
|
|
||||||
If you're running Tux Paint by double-clicking an icon, check the
|
<p>If "--fullscreen" isn't on the command-line, check Tux Paint's
|
||||||
properties of the icon to see if "--fullscreen" is listed as an argument.
|
configuration file ("~/.tuxpaintrc" under Linux and Unix,
|
||||||
|
"tuxpaint.cfg" under Windows) for a line reading: "fullscreen=yes".</p>
|
||||||
|
|
||||||
If "--fullscreen" isn't on the command-line, check Tux Paint's
|
<p>Either remove that line, or simply run Tux Paint with the
|
||||||
configuration file ("~/.tuxpaintrc" under Linux and Unix,
|
command-line argument: "--windowed", which will override the configuration
|
||||||
"tuxpaint.cfg" under Windows) for a line reading: "fullscreen=yes".
|
file's setting.</p>
|
||||||
|
|
||||||
Either remove that line, or simply run Tux Paint with the command-line
|
<p>Or use Tux Paint Config. and make sure
|
||||||
argument: "--windowed", which will override the configuration file's
|
"Fullscreen" (under "Video & Sound") is not checked.</p>
|
||||||
setting.
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2>Other Probelms</h2>
|
||||||
|
<ul>
|
||||||
|
<li><em>Tux Paint won't run</em>
|
||||||
|
<p>If Tux Paint aborts with the message:
|
||||||
|
"You're already running a copy of Tux Paint!",
|
||||||
|
this means it has been launched in the last 30 seconds.
|
||||||
|
(On Unix/Linux, this message would appear in a terminal console if you
|
||||||
|
ran Tux Paint from a command-line. On Windows, this message would
|
||||||
|
appear in a file named "stdout.txt" in the same folder where TuxPaint.exe
|
||||||
|
resides (e.g., C:\Program Files\TuxPaint).</p>
|
||||||
|
|
||||||
Other Probelms
|
<p>A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix,
|
||||||
--------------
|
"userdata\lockfile.dat" on Windows) is used to make sure Tux Paint
|
||||||
Tux Paint won't run
|
isn't run too many times at once (e.g., due to a child impatiently
|
||||||
-------------------
|
clicking its icon more than once).</p>
|
||||||
If Tux Paint aborts with the message:
|
|
||||||
"You're already running a copy of Tux Paint!",
|
|
||||||
this means it has been launched in the last 30 seconds.
|
|
||||||
|
|
||||||
A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix,
|
<p>Even if the lockfile exists, it contains the 'time' Tux Paint was
|
||||||
"userdata\lockfile.dat" on Windows) is used to make sure Tux Paint
|
last run. If it's been more than 30 seconds, Tux Paint should run fine,
|
||||||
isn't run too many times at once (e.g., due to a child impatiently
|
and simply update the lockfile with the current time.</p>
|
||||||
clicking its icon more than once).
|
|
||||||
|
|
||||||
Even if the lockfile exists, it contains the 'time' Tux Paint was last
|
<p>If multiple users are sharing the directory where this file is stored
|
||||||
run. If it's been more than 30 seconds, Tux Paint should run fine,
|
(e.g., on a shared network drive), then you'll need to disable this
|
||||||
and simply update the lockfile with the current time.
|
feature.</p>
|
||||||
|
|
||||||
If multiple users are sharing the directory where this file is stored
|
<p>To disable the lockfile, add the "--nolockfile" argument to
|
||||||
(e.g., on a shared network drive), then you'll need to disable this
|
Tux Paint's command-line.</p>
|
||||||
feature.
|
</li>
|
||||||
|
|
||||||
To disable the lockfile, add the "--nolockfile" argument to Tux Paint's
|
<li><em>I can't quit Tux Paint</em>
|
||||||
command-line.
|
<p>The "noquit" option is set. This disables the "Quit" button in
|
||||||
|
Tux Paint's toolbar (greying it out), and prevents Tux Paint from
|
||||||
|
being quit using the [Escape] key.</p>
|
||||||
|
|
||||||
|
<p>If Tux Paint is not in fullscreen mode, simply click the
|
||||||
|
window close button on Tux Paint's title bar.
|
||||||
|
(i.e., the "(x)" at the upper right.)</p>
|
||||||
|
|
||||||
I can't quit Tux Paint
|
<p>If Tux Paint is in fullscreen mode, you will need to use the
|
||||||
----------------------
|
[Shift] + [Control] + [Escape] sequence on the keyboard to
|
||||||
The "noquit" option is set. This disables the "Quit" button in
|
quit Tux Paint.</p>
|
||||||
Tux Paint's toolbar (greying it out), and prevents Tux Paint from
|
|
||||||
being quit using the [Escape] key.
|
|
||||||
|
|
||||||
If Tux Paint is not in fullscreen mode, simply click the
|
<p>(Note: with or without "noquit" set, you can always use the
|
||||||
window close button on Tux Paint's title bar.
|
[Alt] + [F4] combination on your keyboard to quit Tux Paint.)</p>
|
||||||
(i.e., the "(x) at the upper right.)
|
</li>
|
||||||
|
|
||||||
If Tux Paint is in fullscreen mode, you will need to use the
|
<li><em>I don't want "noquit" mode enabled!</em>
|
||||||
[Shift] + [Control] + [Escape] sequence on the keyboard to
|
<p>If you're running Tux Paint from a command-line, make sure you're
|
||||||
quit Tux Paint.
|
not giving it a "--noquit" option.</p>
|
||||||
|
|
||||||
(Note: with or without "noquit" set, you can always use the
|
<p>If you're running Tux Paint by double-clicking an icon, check the
|
||||||
[Alt] + [F4] combination on your keyboard to quit Tux Paint.)
|
properties of the icon to see if "--noquit" is listed as an argument.</p>
|
||||||
|
|
||||||
|
<p>If "--noquit" isn't on the command-line, check Tux Paint's
|
||||||
|
configuration file ("~/.tuxpaintrc" under Linux and Unix,
|
||||||
|
"tuxpaint.cfg" under Windows) for a line reading: "noquit=yes".</p>
|
||||||
|
|
||||||
I don't want "noquit" mode enabled!
|
<p>Either remove that line, or simply run Tux Paint with the
|
||||||
-----------------------------------
|
command-line argument: "--quit", which will override the configuration file's
|
||||||
If you're running Tux Paint from a command-line, make sure you're
|
setting.</p>
|
||||||
not giving it a "--noquit" option.
|
|
||||||
|
|
||||||
If you're running Tux Paint by double-clicking an icon, check the
|
<p>Or use Tux Paint Config. and make sure
|
||||||
properties of the icon to see if "--noquit" is listed as an argument.
|
"Disable Quit Button and [Escape] Key" (under "Simplification")
|
||||||
|
is not checked.</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
If "--noquit" isn't on the command-line, check Tux Paint's
|
<li><em>Tux Paint keeps writing weird messages to the screen / to a text
|
||||||
configuration file ("~/.tuxpaintrc" under Linux and Unix,
|
file</em>
|
||||||
"tuxpaint.cfg" under Windows) for a line reading: "noquit=yes".
|
<p>A few messages are normal, but if Tux Paint is being extremely
|
||||||
|
verbose (like listing the name of every rubber-stamp image it finds while
|
||||||
|
loading them), then it was probably compiled with debugging output turned
|
||||||
|
on.</p>
|
||||||
|
|
||||||
Either remove that line, or simply run Tux Paint with the command-line
|
<p>Rebuild Tux Paint from source. Be sure to remove or comment out any
|
||||||
argument: "--quit", which will override the configuration file's
|
line that says:</p>
|
||||||
setting.
|
|
||||||
|
|
||||||
|
<blockquote><p><code>
|
||||||
Tux Paint keeps writing weird messages to the screen / to a text file
|
|
||||||
---------------------------------------------------------------------
|
|
||||||
A few messages are normal, but if Tux Paint is being extremely verbose
|
|
||||||
(like listing the name of every rubber-stamp image it finds while loading
|
|
||||||
them), then it was probably compiled with debugging output turned on.
|
|
||||||
|
|
||||||
Rebuild Tux Paint from source. Be sure to remove or comment out any
|
|
||||||
line that says:
|
|
||||||
|
|
||||||
#define DEBUG
|
#define DEBUG
|
||||||
|
</code></p></blockquote>
|
||||||
|
|
||||||
in the "tuxpaint.c" file in the "src" directory.
|
<p>in the "tuxpaint.c" file in the "src" directory.</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li><em>Tux Paint is using options I didn't specify!</em>
|
||||||
Tux Paint is using options I didn't specify!
|
<p>By default, Tux Paint first looks at configuration files for
|
||||||
--------------------------------------------
|
options.</p>
|
||||||
By default, Tux Paint first looks at configuration files for
|
|
||||||
options.
|
|
||||||
|
|
||||||
Unix and Linux
|
<ul>
|
||||||
--------------
|
<li><i>Unix and Linux</i>
|
||||||
Under Unix and Linux, it first examines the system-wide
|
<p>Under Unix and Linux, it first examines the system-wide
|
||||||
configuration file, located here:
|
configuration file, located here:</p>
|
||||||
|
|
||||||
|
<blockquote><p><code>
|
||||||
/etc/tuxpaint/tuxpaint.conf
|
/etc/tuxpaint/tuxpaint.conf
|
||||||
|
</code></p></blockquote>
|
||||||
|
|
||||||
It then examines the user's personal configuration file:
|
<p>It then examines the user's personal configuration file:</p>
|
||||||
|
|
||||||
|
<blockquote><p><code>
|
||||||
~/.tuxpaintrc
|
~/.tuxpaintrc
|
||||||
|
</code></p></blockquote>
|
||||||
|
|
||||||
Finally, any options sent as command-line arguments are used.
|
<p>Finally, any options sent as command-line arguments are used.</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
Windows
|
<li><i>Windows</i>
|
||||||
-------
|
<p>Under Windows, Tux Paint first examines the configuration file:</p>
|
||||||
Under Windows, Tux Paint first examines the configuration file:
|
|
||||||
|
|
||||||
|
<blockquote><p><code>
|
||||||
tuxpaint.cfg
|
tuxpaint.cfg
|
||||||
|
</blockquote></p></code>
|
||||||
|
|
||||||
Then, any options sent as command-line arguments are used.
|
<p>Then, any options sent as command-line arguments are used.</p>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p>This means that if anything is set in a configuration file that
|
||||||
|
you don't want set, you'll need to either change the config. file
|
||||||
|
(if you can), or override the option on the command-line.</p>
|
||||||
|
|
||||||
This means that if anything is set in a configuration file that
|
<p>For example, if "/etc/tuxpaint/tuxpaint.conf" includes an option
|
||||||
you don't want set, you'll need to either change the config. file
|
to disable sound:</p>
|
||||||
(if you can), or override the option on the command-line.
|
|
||||||
|
|
||||||
For example, if "/etc/tuxpaint/tuxpaint.conf" includes an option
|
|
||||||
to disable sound:
|
|
||||||
|
|
||||||
|
<blockquote><p><code>
|
||||||
nosound=yes
|
nosound=yes
|
||||||
|
</blockquote></p></code>
|
||||||
|
|
||||||
You can reenable sound by either adding this option to your own
|
<p>You can reenable sound by either adding this option to your own
|
||||||
".tuxpainrc" file:
|
".tuxpainrc" file:</p>
|
||||||
|
|
||||||
|
<blockquote><p><code>
|
||||||
sound=yes
|
sound=yes
|
||||||
|
</blockquote></p></code>
|
||||||
|
|
||||||
Or by using this command-line argument:
|
<p>Or by using this command-line argument:</p>
|
||||||
|
|
||||||
|
<blockquote><p><code>
|
||||||
--sound
|
--sound
|
||||||
|
</blockquote></p></code>
|
||||||
|
|
||||||
|
<p>Linux and Unix users can also disable the system-wide configuration
|
||||||
|
file by including the following command-line argument:</p>
|
||||||
|
|
||||||
Linux and Unix users can also disable the system-wide configuration
|
<blockquote><p><code>
|
||||||
file by including the following command-line argument:
|
|
||||||
|
|
||||||
--nosysconfig
|
--nosysconfig
|
||||||
|
</blockquote></p></code>
|
||||||
|
|
||||||
Tux Paint will then only look at "~/.tuxpaintrc" and command-line
|
<p>Tux Paint will then only look at "~/.tuxpaintrc" and command-line
|
||||||
arguments to determine what options should be set.
|
arguments to determine what options should be set.</p>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2>Help / Contact</h2>
|
||||||
|
<p>Any questions you don't see answered? Let me know!</p>
|
||||||
|
|
||||||
Help / Contact
|
<blockquote><p><a href="mailto:bill@newbreedsoftware.com"
|
||||||
--------------
|
>bill@newbreedsoftware.com</a></p></blockquote>
|
||||||
Any questions you don't see answered? Let me know!
|
|
||||||
|
|
||||||
bill@newbreedsoftware.com
|
<p>Or post to our 'tuxpaint-users' mailing list:</p>
|
||||||
|
|
||||||
Or post to our 'tuxpaint-dev' mailing list:
|
<blockquote><p><a href="http://www.newbreedsoftware.com/tuxpaint/lists/"
|
||||||
|
>http://www.newbreedsoftware.com/tuxpaint/lists/</a></p></blockquote>
|
||||||
http://www.newbreedsoftware.com/tuxpaint/lists/
|
|
||||||
</pre>
|
|
||||||
|
|
||||||
</body></html>
|
</body></html>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue