Added "--nostamps" to disable Stamp tool. (Speeds up loading; reduces RAM)
This commit is contained in:
parent
82e231c7d2
commit
1100b76284
5 changed files with 112 additions and 39 deletions
|
|
@ -64,6 +64,11 @@ http://www.newbreedsoftware.com/tuxpaint/
|
|||
|
||||
* Added a set of square brushes (similar to the various round ones).
|
||||
|
||||
* Added "--nostamps" option to disable stamp tool.
|
||||
(When it's not needed, they just take time to load, and RAM to store.)
|
||||
|
||||
* Added missing "--nosysconfig" to "--help" usage output.
|
||||
|
||||
|
||||
2003.February.22 (0.9.10)
|
||||
* UTF-8 stamp descriptions word-wrap around spaces.
|
||||
|
|
|
|||
30
docs/FAQ.txt
30
docs/FAQ.txt
|
|
@ -6,7 +6,7 @@ Copyright 2003 by Bill Kendrick
|
|||
bill@newbreedsoftware.com
|
||||
http://www.newbreedsoftware.com/tuxpaint/
|
||||
|
||||
September 14, 2002 - January 5, 2003
|
||||
September 14, 2002 - June 14, 2003
|
||||
|
||||
|
||||
Frequently Asked Questions:
|
||||
|
|
@ -35,7 +35,8 @@ Frequently Asked Questions:
|
|||
#define LOW_QUALITY_FLOOD_FILL
|
||||
|
||||
in the "tuxpaint.c" file in the "src" directory.
|
||||
|
||||
|
||||
|
||||
Stamp outlines are always rectangles
|
||||
------------------------------------
|
||||
Tux Paint was built with low-quality (but faster) stamp outlines.
|
||||
|
|
@ -48,6 +49,31 @@ Frequently Asked Questions:
|
|||
in the "tuxpaint.c" file in the "src" directory.
|
||||
|
||||
|
||||
The Rubber Stamp tool is greyed out!
|
||||
------------------------------------
|
||||
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,
|
||||
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,
|
||||
you can just create your own. See the README documentation for
|
||||
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,
|
||||
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.)
|
||||
|
||||
If so, either change/remove the "nostamps" option, or you can
|
||||
override it with "--stamps" on the command line or
|
||||
"nostamps=no" or "stamps=yes" in a configuration file.
|
||||
|
||||
|
||||
Interface Problems
|
||||
------------------
|
||||
Stamp thumbnails in the Stamp Selector look bad
|
||||
|
|
|
|||
|
|
@ -274,6 +274,15 @@ Options
|
|||
This can help when Tux Paint is run on very slow
|
||||
computers, or displayed on a remote X-Window display.
|
||||
|
||||
nostamps=yes
|
||||
|
||||
This option tells Tux Paint to not load any rubber stamp
|
||||
images, which in turn ends up disabling the Stamps tool.
|
||||
|
||||
This can speed up Tux Paint when it first loads up, and
|
||||
reduce memory usage while it's running. Of course, no
|
||||
stamps will be available at all.
|
||||
|
||||
savedir DIRECTORY
|
||||
|
||||
Use this option to change where Tux Paint saves pictures.
|
||||
|
|
|
|||
|
|
@ -368,6 +368,16 @@ New Breed Software</p>
|
|||
or displayed on a remote X-Window display.</p>
|
||||
</dd>
|
||||
|
||||
<dt><code><b>nostamps=yes</b></code></dt>
|
||||
<dd>
|
||||
<p>This option tells Tux Paint to not load any rubber stamp
|
||||
images, which in turn ends up disabling the <b>Stamps</b> tool.</p>
|
||||
|
||||
<p>This can speed up Tux Paint when it first loads up,
|
||||
and reduce memory usage while it's running. Of course, no stamps
|
||||
will be available at all.</p>
|
||||
</dd>
|
||||
|
||||
<dt><code><b>savedir <i>DIRECTORY</i></b></code></dt>
|
||||
<dd>
|
||||
<p>Use this option to change where Tux Paint saves pictures.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue