Merge branch 'master' of ssh://git.code.sf.net/p/tuxpaint/tuxpaint

This commit is contained in:
Pere Pujal i Carabantes 2020-12-30 20:05:17 +01:00
commit 3fcba585d2
19 changed files with 899 additions and 652 deletions

View file

@ -4,12 +4,12 @@
# Various contributors (see AUTHORS.txt) # Various contributors (see AUTHORS.txt)
# http://www.tuxpaint.org/ # http://www.tuxpaint.org/
# June 14, 2002 - October 15, 2020 # June 14, 2002 - December 27, 2020
# The version number, for release: # The version number, for release:
VER_VERSION:=0.9.25 VER_VERSION:=0.9.26
ifdef SOURCE_DATE_EPOCH ifdef SOURCE_DATE_EPOCH
VER_DATE=$(shell date -u -d "@$(SOURCE_DATE_EPOCH)" "+%Y-%m-%d" 2>/dev/null || date -u -r "$(SOURCE_DATE_EPOCH)" "+%Y-%m-%d" 2>/dev/null || date -u "+%Y-%m-%d") VER_DATE=$(shell date -u -d "@$(SOURCE_DATE_EPOCH)" "+%Y-%m-%d" 2>/dev/null || date -u -r "$(SOURCE_DATE_EPOCH)" "+%Y-%m-%d" 2>/dev/null || date -u "+%Y-%m-%d")
else else
@ -83,6 +83,9 @@ RSRC_CMD:=$($(OS)_RSRC_CMD)
beos_MIMESET_CMD:=mimeset -f tuxpaint beos_MIMESET_CMD:=mimeset -f tuxpaint
MIMESET_CMD:=$($(OS)_MIMESET_CMD) MIMESET_CMD:=$($(OS)_MIMESET_CMD)
macos_RAD_CMD:=[[ ! -d Resources/share ]] && mkdir -p Resources/share && ln -s ../../data Resources/share/tuxpaint || :
RAD_CMD:=$($(OS)_RAD_CMD)
windows_SO_TYPE:=dll windows_SO_TYPE:=dll
macos_SO_TYPE:=dylib macos_SO_TYPE:=dylib
beos_SO_TYPE:=so beos_SO_TYPE:=so
@ -607,7 +610,7 @@ clean:
@-rm -f templates/.thumbs/*.png @-rm -f templates/.thumbs/*.png
@if [ -d templates/.thumbs ]; then rmdir templates/.thumbs; fi @if [ -d templates/.thumbs ]; then rmdir templates/.thumbs; fi
@-if [ "x$(BUNDLE)" != "x" ]; then rm -rf $(BUNDLE); fi @-if [ "x$(BUNDLE)" != "x" ]; then rm -rf $(BUNDLE); fi
@-rm -f TuxPaint.dmg temp.dmg; rm -rf magic/*.dSYM @-rm -f TuxPaint.dmg temp.dmg; rm -rf magic/*.dSYM Resources
@echo @echo
# "make uninstall" should remove the various parts from their # "make uninstall" should remove the various parts from their
@ -1052,6 +1055,7 @@ tuxpaint: obj/tuxpaint.o obj/i18n.o obj/im.o obj/cursor.o obj/pixels.o \
$(CC) $(CFLAGS) $(LDFLAGS) $(DEBUG_FLAGS) $(SDL_CFLAGS) $(FRIBIDI_CFLAGS) $(DEFS) \ $(CC) $(CFLAGS) $(LDFLAGS) $(DEBUG_FLAGS) $(SDL_CFLAGS) $(FRIBIDI_CFLAGS) $(DEFS) \
-o tuxpaint $^ \ -o tuxpaint $^ \
$(SDL_LIBS) $(SVG_LIB) $(ARCH_LINKS) $(SDL_LIBS) $(SVG_LIB) $(ARCH_LINKS)
@$(RAD_CMD)
@$(RSRC_CMD) @$(RSRC_CMD)
@$(MIMESET_CMD) @$(MIMESET_CMD)

View file

@ -1,24 +0,0 @@
This folder exists to ease testing under macOS. Please ignore but do not
delete. More details are below.
macOS requires all files in an application have a specific folder structure.
We create this structure under the folder "TuxPaint.app" when `make install` is
run. But `make install` takes a long time to run under macOS due to the large
number of files that need to be copied, as well as all the processing we do to
those files (see custom/macos.sh for what we need to do.) This makes testing
even a small code change time consuming.
That's the problem this folder solves: Instead of creating the folder
structure under TuxPaint.app every time to test a code change to be able to run
the application, we pre-build the folder structure around the tuxpaint binary
so the binary can be executed directly without re-creating the folder structure
every time. Luckily for us, this only require that we only have a single
folder "Resources" in the root folder of the tuxpaint source code (with some
subfolders and symlinks underneath the Resources folder.)
I hope my fellow Tux Paint contributors will forgive me for taking up yet
another whole folder for use by a single platform, let alone almost empty, in
the root folder of the source code distribution meant for multiple platforms.
Mark Kim
2018.06.27

View file

@ -1 +0,0 @@
../../data

View file

@ -8,7 +8,15 @@ http://www.tuxpaint.org/
$Id$ $Id$
2020.December.12 (0.9.25) 2020.December.27 (0.9.26)
* Documentation updates
---------------------
* Expanded the steps for making and posting releases.
* Mended some broken relative links in README.html that
pointed to other parts of the docs.
2020.December.27 (0.9.25)
* New Features * New Features
------------ ------------
* Export drawings: * Export drawings:

View file

@ -1,5 +1,8 @@
Release checklist for Tux Paint Release checklist for Tux Paint
Last updated 2020-07-27 -bjk Last updated 2020-12-27 -bjk
Preparing
---------
Do these things _prior_ to cutting a release -- that is, prior to Do these things _prior_ to cutting a release -- that is, prior to
tagging in the source code repository, running "make release" to roll tagging in the source code repository, running "make release" to roll
@ -32,7 +35,6 @@ a .tar.gz source tarball, and making the tarball available for download.
* Tidy the HTML documentation * Tidy the HTML documentation
Using
(Be sure to run "make" in "docs/", to produce plaintext alternatives!) (Be sure to run "make" in "docs/", to produce plaintext alternatives!)
tidy -i --markup yes --vertical-space yes --indent yes --indent-attributes yes INFILE.html > OUTFILE.html tidy -i --markup yes --vertical-space yes --indent yes --indent-attributes yes INFILE.html > OUTFILE.html
@ -43,3 +45,55 @@ a .tar.gz source tarball, and making the tarball available for download.
* Don't forget to commit the changes! (git add ... / git commit / git push) * Don't forget to commit the changes! (git add ... / git commit / git push)
Time to release:
----------------
* Tag & roll a release tarball (example here was from 0.9.25):
$ git pull
$ make clean
$ git tag tuxpaint-0_9_25-2020-12-27
$ git push origin tuxpaint-0_9_25-2020-12-27 # or --tags
$ make release
* Upload each project's ".tar.gz" file from their "build/" subdirs
to ftp.tuxpaint.org.
* Place them in the appropriate subdirectories (source/, config/,
and stamps/) under "unix/x/tuxpaint/".
* Copy "docs/CHANGES.txt" from each project onto the FTP site
(Tux Paint's goes in the toplevel, the others go in config/ and
stamps/).
* Create a new PAD file (e.g. `pads/tuxpaint-0.9.25.xml`) on the
FTP site.
* Replace the "pads/tuxpaint-LATEST.xml" symlink on the FTP site with
a new one that points to the new PAD file.
* At SourceForge, go to "Files" and use "Add Folder" under each project
to create new release file subdirectories. (e.g., "0.9.25" under
https://sourceforge.net/projects/tuxpaint/files/tuxpaint/)
* Upload the files! Either from local copies, via a web browser,
or by SCP, Rsync, or SFTP (see
https://sourceforge.net/p/forge/documentation/Release%20Files%20for%20Download/#scp)
e.g.:
$ sftp wkendrick@frs.sourceforge.net
sftp> cd /home/frs/project/tuxpaint/
sftp> cd tuxpaint/0.9.25/
sftp> lcd source
sftp> put tuxpaint-0.9.25.tar.gz
sftp> cd ../..
sftp> lcd ..
[repeat for tuxpaint-config and tuxpaint-stamps]
* Copy latest release's documentation to the tuxpaint.org website.

View file

@ -1,5 +1,5 @@
Tux Paint Tux Paint
version 0.9.25 version 0.9.26
Advanced Stamps HOWTO Advanced Stamps HOWTO
Copyright 2006-2008 by Albert Cahalan for the Tux Paint project Copyright 2006-2008 by Albert Cahalan for the Tux Paint project

View file

@ -1,11 +1,11 @@
Extending Extending
Tux Paint Tux Paint
version 0.9.25 version 0.9.26
Copyright (c) 2002-2020 by various contributors; see AUTHORS.txt Copyright (c) 2002-2020 by various contributors; see AUTHORS.txt
http://www.tuxpaint.org/ http://www.tuxpaint.org/
June 14, 2002 - August 29, 2020 June 14, 2002 - December 27, 2020
---------------------------------------------------------------------- ----------------------------------------------------------------------
@ -123,7 +123,7 @@ Where Files Go
C:\Documents and Settings\(username)\Application Data\TuxPaint\ C:\Documents and Settings\(username)\Application Data\TuxPaint\
Mac OS X macOS
Your personal Tux Paint folder is stored in your "Application Your personal Tux Paint folder is stored in your "Application
Support" folder: Support" folder:
@ -652,7 +652,7 @@ Translations
msgstr "Haz clic y arrastra para dibujar ladrillos grandes." msgstr "Haz clic y arrastra para dibujar ladrillos grandes."
A graphical tool, called poEdit (http://www.poedit.net/), is available A graphical tool, called poEdit (http://www.poedit.net/), is available
for Linux, Windows and Mac OS X. for Linux, Windows and macOS.
Note: It is best to always work off of the latest Tux Paint text catalog Note: It is best to always work off of the latest Tux Paint text catalog
template ("tuxpaint.pot"), since new text is added, and old text is template ("tuxpaint.pot"), since new text is added, and old text is

View file

@ -1,18 +1,17 @@
Tux Paint Tux Paint
version 0.9.25 version 0.9.26
Frequently Asked Questions Frequently Asked Questions
Copyright (c) 2002-2020 by various contributors; see AUTHORS.txt Copyright (c) 2002-2020 by various contributors; see AUTHORS.txt
http://www.tuxpaint.org/ http://www.tuxpaint.org/
September 14, 2002 - October 30, 2020 September 14, 2002 - December 27, 2020
---------------------------------------------------------------------- ----------------------------------------------------------------------
Drawing-related Drawing-related
Fonts I added to Tux Paint only show squares Fonts I added to Tux Paint only show squares
The TrueType Font you're using might have the wrong encoding. If The TrueType Font you're using might have the wrong encoding. If
it's 'custom' encoded, for example, you can try running it through it's 'custom' encoded, for example, you can try running it through
FontForge (http://fontforge.sourceforge.net/) to convert it to an FontForge (http://fontforge.sourceforge.net/) to convert it to an
@ -88,7 +87,6 @@ Interface Problems
in the "tuxpaint.c" file in the "src" directory. in the "tuxpaint.c" file in the "src" directory.
Pictures in the 'Open' dialog look bad Pictures in the 'Open' dialog look bad
"Low Quality Thumbnails" is probably enabled. See: "Stamp "Low Quality Thumbnails" is probably enabled. See: "Stamp
thumbnails in the Stamp Selector look bad", above. thumbnails in the Stamp Selector look bad", above.
@ -131,12 +129,10 @@ Interface Problems
(under "Languages") is not checked. (under "Languages") is not checked.
Tux Paint is in a different language! Tux Paint is in a different language!
Make sure your locale setting is correct. See "Tux Paint won't Make sure your locale setting is correct. See "Tux Paint won't
switch to my language", below. switch to my language", below.
Tux Paint won't switch to my language Tux Paint won't switch to my language
* Linux and Unix users: Make sure the locale is available * Linux and Unix users: Make sure the locale is available
Make sure the locale you want is available. Check your Make sure the locale you want is available. Check your
@ -271,7 +267,7 @@ Saving
e.g., C:\Documents and Settings\Username\Application e.g., C:\Documents and Settings\Username\Application
Data\TuxPaint\saved Data\TuxPaint\saved
Mac OS X macOS
In the user's "Application Support" folder: In the user's "Application Support" folder:
e.g., /Users/Username/Library/Applicaton e.g., /Users/Username/Library/Applicaton
Support/TuxPaint/saved/ Support/TuxPaint/saved/
@ -340,7 +336,6 @@ Saving
Audio Problems Audio Problems
There's no sound! There's no sound!
* First, check the obvious: * First, check the obvious:
* Are your speakers connected and turned on? * Are your speakers connected and turned on?
* Is the volume turned up on your speakers? * Is the volume turned up on your speakers?
@ -446,7 +441,6 @@ Audio Problems
Fullscreen Mode Problems Fullscreen Mode Problems
When I run Tux Paint full-screen and ALT-TAB out, the window turns black! 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. This is apparently a bug in the SDL library. Sorry.
When I run Tux Paint full-screen, it has large borders around it When I run Tux Paint full-screen, it has large borders around it

View file

@ -1,12 +1,12 @@
Tux Paint Tux Paint
version 0.9.25 version 0.9.26
Options Documentation Options Documentation
Copyright (c) 2002-2020 by various contributors; see AUTHORS.txt Copyright (c) 2002-2020 by various contributors; see AUTHORS.txt
http://www.tuxpaint.org/ http://www.tuxpaint.org/
August 14, 2020 December 27, 2020
---------------------------------------------------------------------- ----------------------------------------------------------------------
@ -48,7 +48,7 @@ Linux and Unix Users
--nosysconfig --nosysconfig
Mac OS X Users macOS Users
The file you should create is called "tuxpaint.cfg" and it should be The file you should create is called "tuxpaint.cfg" and it should be
placed in your home folder, under the sub-folder: Library/Application placed in your home folder, under the sub-folder: Library/Application
@ -179,7 +179,7 @@ Windows Users
the 'Print' button is clicked while the [Alt] modifier key is the 'Print' button is clicked while the [Alt] modifier key is
being held. (This is typically used for providing a print being held. (This is typically used for providing a print
dialog, similar to when pressing [Alt]+'Print' in Windows and dialog, similar to when pressing [Alt]+'Print' in Windows and
Mac OS X.) macOS.)
If this option is not specifically not set, the default command If this option is not specifically not set, the default command
is KDE's graphical print dialog: is KDE's graphical print dialog:

View file

@ -1,12 +1,12 @@
Tux Paint Tux Paint
version 0.9.25 version 0.9.26
A simple drawing program for children A simple drawing program for children
Copyright 2002-2020 by various contributors; see AUTHORS.txt Copyright 2002-2020 by various contributors; see AUTHORS.txt
http://www.tuxpaint.org/ http://www.tuxpaint.org/
June 14, 2002 - November 21, 2020 June 14, 2002 - December 27, 2020
---------------------------------------------------------------------- ----------------------------------------------------------------------

View file

@ -20,7 +20,7 @@
width="205" width="205"
height="210" height="210"
alt="Tux&nbsp;Paint"><br> alt="Tux&nbsp;Paint"><br>
version 0.9.25<br> version 0.9.26<br>
Advanced Stamps HOWTO Advanced Stamps HOWTO
</h1> </h1>

File diff suppressed because it is too large Load diff

View file

@ -20,7 +20,7 @@
width="205" width="205"
height="210" height="210"
alt="Tux&nbsp;Paint"><br> alt="Tux&nbsp;Paint"><br>
version 0.9.25<br> version 0.9.26<br>
Frequently Asked Questions Frequently Asked Questions
</h1> </h1>
@ -32,7 +32,7 @@
</p> </p>
<p> <p>
September 14, 2002 - October 30, 2020 September 14, 2002 - December 27, 2020
</p> </p>
</center> </center>
@ -43,17 +43,23 @@
</h2> </h2>
<dl> <dl>
<dt><h3>Fonts I added to Tux&nbsp;Paint only show squares</h3></dt> <dt>
Fonts I added to Tux&nbsp;Paint only show squares
</dt>
<dd> <dd>
The TrueType Font you're using might have the wrong The TrueType Font you're using might have the wrong
encoding. If it's 'custom' encoded, for example, you can encoding. If it's 'custom' encoded, for example, you can
try running it through FontForge (<a href= try running it through FontForge (<a href=
"http://fontforge.sourceforge.net/">http://fontforge.sourceforge.net/</a>) "http://fontforge.sourceforge.net/">http://fontforge.sourceforge.net/</a>)
to convert it to an ISO-8859 format. (Email us if you to convert it to an ISO-8859 format. (Email us if you need
need help with special fonts.) help with special fonts.)
</dd> </dd>
<dt><h3>The Rubber Stamp tool is greyed out!<h3></dt> <dt>
The Rubber Stamp tool is greyed out!
</dt>
<dd> <dd>
<p> <p>
This means that Tux&nbsp;Paint either couldn't find any This means that Tux&nbsp;Paint either couldn't find any
@ -94,7 +100,10 @@
</p> </p>
</dd> </dd>
<dt><h3>The Magic "Fill" Tool Looks Bad</h3></dt> <dt>
The Magic "Fill" Tool Looks Bad
</dt>
<dd> <dd>
<p> <p>
Tux&nbsp;Paint is probably comparing exact pixel colors Tux&nbsp;Paint is probably comparing exact pixel colors
@ -121,7 +130,10 @@
</p> </p>
</dd> </dd>
<dt><h3>Stamp outlines are always rectangles</h3></dt> <dt>
Stamp outlines are always rectangles
</dt>
<dd> <dd>
<p> <p>
Tux&nbsp;Paint was built with low-quality (but faster) Tux&nbsp;Paint was built with low-quality (but faster)
@ -152,7 +164,10 @@
</h2> </h2>
<dl> <dl>
<dt><h3>Stamp thumbnails in the Stamp Selector look bad</h3></dt> <dt>
Stamp thumbnails in the Stamp Selector look bad
</dt>
<dd> <dd>
<p> <p>
Tux&nbsp;Paint was probably compiled with the faster, Tux&nbsp;Paint was probably compiled with the faster,
@ -179,13 +194,20 @@
</p> </p>
</dd> </dd>
<dt><h3>Pictures in the 'Open' dialog look bad</h3></dt> <dt>
Pictures in the 'Open' dialog look bad
</dt>
<dd> <dd>
"Low Quality Thumbnails" is probably enabled. See: "Stamp "Low Quality Thumbnails" is probably enabled. See: "Stamp
thumbnails in the Stamp Selector look bad", above. thumbnails in the Stamp Selector look bad", above.
</dd> </dd>
<dt><h3>The color picker buttons are ugly squares, not pretty buttons!</h3></dt> <dt>
The color picker buttons are ugly squares, not pretty
buttons!
</dt>
<dd> <dd>
<p> <p>
Tux&nbsp;Paint was probably compiled with the nice Tux&nbsp;Paint was probably compiled with the nice
@ -212,7 +234,10 @@
</p> </p>
</dd> </dd>
<dt><h3>All of the text is in uppercase!</h3></dt> <dt>
All of the text is in uppercase!
</dt>
<dd> <dd>
<p> <p>
The "uppercase" option is on. The "uppercase" option is on.
@ -252,13 +277,19 @@
</p> </p>
</dd> </dd>
<dt><h3>Tux&nbsp;Paint is in a different language!</h3></dt> <dt>
Tux&nbsp;Paint is in a different language!
</dt>
<dd> <dd>
Make sure your locale setting is correct. See Make sure your locale setting is correct. See
"Tux&nbsp;Paint won't switch to my language", below. "Tux&nbsp;Paint won't switch to my language", below.
</dd> </dd>
<dt><h3>Tux&nbsp;Paint won't switch to my language</h3></dt> <dt>
Tux&nbsp;Paint won't switch to my language
</dt>
<dd> <dd>
<ul> <ul>
<li> <li>
@ -273,45 +304,45 @@
</p> </p>
<p> <p>
Note: Debian and derivative (e.g., Ubuntu) users can simply run Note: Debian and derivative (e.g., Ubuntu) users can
"<code>dpkg-reconfigure locales</code>" if the simply run "<code>dpkg-reconfigure locales</code>" if
locales are managed by "dpkg." the locales are managed by "dpkg."
</p> </p>
</li> </li>
<li>If you're using the "<code>--lang</code>" <li>If you're using the "<code>--lang</code>"
command-line option command-line option
<p> <p>
Try using the "<code>--locale</code>" Try using the "<code>--locale</code>" command-line
command-line option, or your operating system's option, or your operating system's locale settings
locale settings (e.g., the "<code>$LANG</code>" (e.g., the "<code>$LANG</code>" environment
environment variable), and please e-mail us variable), and please e-mail us regarding your
regarding your trouble. trouble.
</p> </p>
</li> </li>
<li>If you're using the "<code>--locale</code>" <li>If you're using the "<code>--locale</code>"
command-line option command-line option
<p> <p>
If this doesn't work, please e-mail us regarding If this doesn't work, please e-mail us regarding your
your trouble. trouble.
</p> </p>
</li> </li>
<li>If you're trying to use your Operating System's <li>If you're trying to use your Operating System's
locale locale
<p> <p>
If this doesn't work, please e-mail us regarding If this doesn't work, please e-mail us regarding your
your trouble. trouble.
</p> </p>
</li> </li>
<li>Make sure you have the necessary font <li>Make sure you have the necessary font
<p> <p>
Some translations require their own font. Chinese Some translations require their own font. Chinese and
and Korean, for example, need Chinese and Korean Korean, for example, need Chinese and Korean TrueType
TrueType Fonts installed and placed in the proper Fonts installed and placed in the proper location,
location, respectively. respectively.
</p> </p>
<p> <p>
@ -337,8 +368,11 @@
</h2> </h2>
<dl> <dl>
<dt><h3>Tux&nbsp;Paint won't print, gives an error, or prints <dt>
garbage (Unix/Linux)</h3></dt> Tux&nbsp;Paint won't print, gives an error, or prints
garbage (Unix/Linux)
</dt>
<dd> <dd>
<p> <p>
Tux&nbsp;Paint prints by creating a PostScript rendition Tux&nbsp;Paint prints by creating a PostScript rendition
@ -369,8 +403,11 @@
</p> </p>
</dd> </dd>
<dt><h3>I get the message "You can't print yet!" when I go to <dt>
print!</h3></dt> I get the message "You can't print yet!" when I go to
print!
</dt>
<dd> <dd>
<p> <p>
The "print delay" option is on. You can only print once The "print delay" option is on. You can only print once
@ -418,7 +455,10 @@
</p> </p>
</dd> </dd>
<dt><h3>I simply can't print! The button is greyed out!</h3></dt> <dt>
I simply can't print! The button is greyed out!
</dt>
<dd> <dd>
<p> <p>
The "no print" option is on. The "no print" option is on.
@ -464,7 +504,10 @@
</h2> </h2>
<dl> <dl>
<dt><h3>Where does Tux Paint save my drawings?</h3><dt> <dt>
Where does Tux Paint save my drawings?
</dt>
<dd> <dd>
<p> <p>
Unless you asked Tux&nbsp;Paint to save into a specific Unless you asked Tux&nbsp;Paint to save into a specific
@ -495,7 +538,7 @@
</dd> </dd>
<dt> <dt>
Mac OS X macOS
</dt> </dt>
<dd> <dd>
@ -523,7 +566,10 @@
</p> </p>
</dd> </dd>
<dt><h3>Tux&nbsp;Paint always saves over my old picture!</h3></dt> <dt>
Tux&nbsp;Paint always saves over my old picture!
</dt>
<dd> <dd>
<p> <p>
The "save over" option is enabled. (This disables the The "save over" option is enabled. (This disables the
@ -568,7 +614,10 @@
</p> </p>
</dd> </dd>
<dt><h3>Tux&nbsp;Paint always saves a new picture!</h3></dt> <dt>
Tux&nbsp;Paint always saves a new picture!
</dt>
<dd> <dd>
<p> <p>
The "never save over" option is enabled. (This disables The "never save over" option is enabled. (This disables
@ -621,7 +670,10 @@
</h2> </h2>
<dl> <dl>
<dt><h3>There's no sound!</h3></dt> <dt>
There's no sound!
</dt>
<dd> <dd>
<ul> <ul>
<li> <li>
@ -738,7 +790,10 @@
</ul> </ul>
</dd> </dd>
<dt><h3>Tux Paint makes too much noise! Can I turn them off?</h3></dt> <dt>
Tux Paint makes too much noise! Can I turn them off?
</dt>
<dd> <dd>
<p> <p>
Yes, there are a number of ways to disable sounds in Tux Yes, there are a number of ways to disable sounds in Tux
@ -776,28 +831,36 @@
</ul> </ul>
</dd> </dd>
<dt><h3>The stereo panning of sound effects is bothersome; can sound effects be monophonic?</h3></dt> <dt>
The stereo panning of sound effects is bothersome; can
sound effects be monophonic?
</dt>
<dd> <dd>
<p> <p>
Run Tux&nbsp;Paint with the "no&nbsp;stereo" option: Run Tux&nbsp;Paint with the "no&nbsp;stereo" option:
</p> </p>
<ul> <ul>
<li>Use Tux&nbsp;Paint&nbsp;Config to uncheck the <li>Use Tux&nbsp;Paint&nbsp;Config to uncheck the "Enable
"Enable Stereo Sound" option (under "Video &amp; Sound"). Stereo Sound" option (under "Video &amp; Sound").
</li> </li>
<li>Edit Tux&nbsp;Paint's configuration file (see <li>Edit Tux&nbsp;Paint's configuration file (see
<a href="OPTIONS.html">OPTIONS</a> for details) and <a href="OPTIONS.html">OPTIONS</a> for details) and add
add a line containing "<code>nostereo=yes</code>". a line containing "<code>nostereo=yes</code>".
</li> </li>
<li>Run "<code>tuxpaint&nbsp;--nostereo</code>" from <li>Run "<code>tuxpaint&nbsp;--nostereo</code>" from the
the command line or shortcut or desktop icon. command line or shortcut or desktop icon.
</li> </li>
</ul> </ul>
</dd> </dd>
<dt><h3>The sound effects sound strange</h3><dt> <dt>
The sound effects sound strange
</dt>
<dd> <dd>
<p> <p>
This could have to do with how SDL and SDL_mixer were This could have to do with how SDL and SDL_mixer were
@ -821,14 +884,20 @@
</h2> </h2>
<dl> <dl>
<dt><h3>When I run Tux&nbsp;Paint full-screen and ALT-TAB out, <dt>
the window turns black!</h3></dt> When I run Tux&nbsp;Paint full-screen and ALT-TAB out, the
window turns black!
</dt>
<dd> <dd>
This is apparently a bug in the SDL library. Sorry. This is apparently a bug in the SDL library. Sorry.
</dd> </dd>
<dt><h3>When I run Tux&nbsp;Paint full-screen, it has large <dt>
borders around it</h3></dt> When I run Tux&nbsp;Paint full-screen, it has large borders
around it
</dt>
<dd> <dd>
<p> <p>
Linux users - Your X-Window server is probably not set Linux users - Your X-Window server is probably not set
@ -876,8 +945,11 @@
</p> </p>
</dd> </dd>
<dt><h3>Tux&nbsp;Paint keeps running in Full Screen mode - I <dt>
want it windowed!</h3></dt> Tux&nbsp;Paint keeps running in Full Screen mode - I want
it windowed!
</dt>
<dd> <dd>
<p> <p>
The "fullscreen" option is set. The "fullscreen" option is set.
@ -923,7 +995,10 @@
</h2> </h2>
<dl> <dl>
<dt><h3>Tux&nbsp;Paint won't run</h3></dt> <dt>
Tux&nbsp;Paint won't run
</dt>
<dd> <dd>
<p> <p>
If Tux&nbsp;Paint aborts with the message: "You're If Tux&nbsp;Paint aborts with the message: "You're
@ -965,7 +1040,10 @@
</p> </p>
</dd> </dd>
<dt><h3>I can't quit Tux&nbsp;Paint</h3></dt> <dt>
I can't quit Tux&nbsp;Paint
</dt>
<dd> <dd>
<p> <p>
The "noquit" option is set. This disables the "Quit" The "noquit" option is set. This disables the "Quit"
@ -993,7 +1071,10 @@
</p> </p>
</dd> </dd>
<dt><h3>I don't want "noquit" mode enabled!</h3></dt> <dt>
I don't want "noquit" mode enabled!
</dt>
<dd> <dd>
<p> <p>
If you're running Tux&nbsp;Paint from a command-line, If you're running Tux&nbsp;Paint from a command-line,
@ -1028,8 +1109,11 @@
</p> </p>
</dd> </dd>
<dt><h3>Tux&nbsp;Paint keeps writing weird messages to the <dt>
screen / to a text file</h3></dt> Tux&nbsp;Paint keeps writing weird messages to the screen /
to a text file
</dt>
<dd> <dd>
<p> <p>
A few messages are normal, but if Tux&nbsp;Paint is being A few messages are normal, but if Tux&nbsp;Paint is being
@ -1054,7 +1138,10 @@
</p> </p>
</dd> </dd>
<dt><h3>Tux&nbsp;Paint is using options I didn't specify!</h3></dt> <dt>
Tux&nbsp;Paint is using options I didn't specify!
</dt>
<dd> <dd>
<p> <p>
By default, Tux&nbsp;Paint first looks at configuration By default, Tux&nbsp;Paint first looks at configuration
@ -1178,8 +1265,8 @@
</h2> </h2>
<p> <p>
Any questions you don't see answered? Please let us know! Any questions you don't see answered? Please let us know! You
You can subscribe and post to our "tuxpaint-users" mailing list: can subscribe and post to our "tuxpaint-users" mailing list:
</p> </p>
<blockquote> <blockquote>

View file

@ -17,7 +17,7 @@
<center> <center>
<h1> <h1>
Tux&nbsp;Paint<br> Tux&nbsp;Paint<br>
version 0.9.25 version 0.9.26
</h1> </h1>
<h2> <h2>
@ -32,7 +32,7 @@
</p> </p>
<p> <p>
August 14, 2020 December 27, 2020
</p> </p>
</center> </center>
@ -115,7 +115,7 @@
</blockquote> </blockquote>
<h2> <h2>
Mac&nbsp;OS&nbsp;X Users macOS Users
</h2> </h2>
<blockquote> <blockquote>
@ -389,7 +389,7 @@
the <b>[Alt]</b> modifier key is being held. (This is the <b>[Alt]</b> modifier key is being held. (This is
typically used for providing a print dialog, similar to typically used for providing a print dialog, similar to
when pressing <b>[Alt]</b>+'Print' in Windows and when pressing <b>[Alt]</b>+'Print' in Windows and
Mac&nbsp;OS&nbsp;X.) macOS.)
</p> </p>
<p> <p>
@ -747,10 +747,10 @@
</dt> </dt>
<dd> <dd>
Disable the control buttons shown when using the <b>Shapes</b> Disable the control buttons shown when using the
tool that allow changing how shapes are drawn &mdash; <b>Shapes</b> tool that allow changing how shapes are
centered around the initial mouse click, or with a corner drawn — centered around the initial mouse click, or with
at the initial mouse click. a corner at the initial mouse click.
</dd> </dd>
<dt> <dt>
@ -1459,7 +1459,7 @@
<p> <p>
As an example, you can see the default colors currently As an example, you can see the default colors currently
used in Tux&nbsp;Paint in: "<a href= used in Tux&nbsp;Paint in: "<a href=
"../default_colors.txt"><code>default_colors.txt</code></a>". "../../default_colors.txt"><code>default_colors.txt</code></a>".
</p> </p>
<p> <p>

View file

@ -20,7 +20,7 @@
width="205" width="205"
height="210" height="210"
alt="Tux&nbsp;Paint"><br> alt="Tux&nbsp;Paint"><br>
version 0.9.25 version 0.9.26
</h1> </h1>
<h3> <h3>
@ -35,7 +35,7 @@
</p> </p>
<p> <p>
June 14, 2002 - November 21, 2020 June 14, 2002 - December 27, 2020
</p> </p>
</center> </center>
@ -708,24 +708,26 @@
</p> </p>
<p> <p>
Use the options at the bottom right to choose Use the options at the bottom right to choose the
the shape tool's behavior: shape tool's behavior:
</p> </p>
<dl> <dl>
<dt> <dt>
Shapes from center Shapes from center
</dt> </dt>
<dd> <dd>
The shape will expand from where you initially The shape will expand from where you initially
clicked, and will be centered around that position. clicked, and will be centered around that
(This was Tux&nbsp;Paint's only behavior through position. (This was Tux&nbsp;Paint's only
version 0.9.24.) behavior through version 0.9.24.)
</dd> </dd>
<dt> <dt>
Shapes from corner Shapes from corner
</dt> </dt>
<dd> <dd>
The shape will extend with one corner starting The shape will extend with one corner starting
from where you initially clicked. This is the from where you initially clicked. This is the
@ -736,10 +738,10 @@
</dl> </dl>
<p> <p>
Note: If shape controls are disabled (e.g., with the Note: If shape controls are disabled (e.g., with
"<code>--noshapecontrols</code>" option), the controls the "<code>--noshapecontrols</code>" option), the
will not be presented, and the "shapes from center" controls will not be presented, and the "shapes
method will be used. from center" method will be used.
</p> </p>
<p> <p>
@ -1124,31 +1126,35 @@
<blockquote> <blockquote>
<p> <p>
'Starters' can behave like a page from a coloring 'Starters' can behave like a page from a coloring
book &mdash; a black-and-white outline of a picture, book a black-and-white outline of a picture,
which you can then color in, and the black outline which you can then color in, and the black
remains intact &mdash; or like a 3D photograph, outline remains intact — or like a 3D photograph,
where you draw in between a foreground and background where you draw in between a foreground and
layer. background layer.
</p> </p>
<p> <p>
'Templates' are similar, but simply provide a 'Templates' are similar, but simply provide a
background drawing to work off of. Unlike 'Starters', background drawing to work off of. Unlike
there is no layer that remains in the foreground of 'Starters', there is no layer that remains in the
anything you draw in the picture. foreground of anything you draw in the picture.
</p> </p>
<p> <p>
When using the 'Eraser' tool, the original image When using the 'Eraser' tool, the original image
from the 'Starter' or 'Template' will reappear. from the 'Starter' or 'Template' will reappear.
The 'Flip' and 'Mirror' Magic tools affect the The 'Flip' and 'Mirror' Magic tools affect the
orientation of the 'Starter' or 'Template', as well. orientation of the 'Starter' or 'Template', as
<p> well.
When you load a 'Starter' or 'Template', draw on it,
and then click 'Save,' it creates a new picture file
&mdash; it doesn't overwrite the original, so you
can use it again later (by accessing it from the 'New'
dialoge)..
</p> </p>
<p>
When you load a 'Starter' or 'Template', draw on
it, and then click 'Save,' it creates a new
picture file — it doesn't overwrite the original,
so you can use it again later (by accessing it
from the 'New' dialoge)..
</p>
</blockquote> </blockquote>
<br clear="all"> <br clear="all">
@ -2087,24 +2093,24 @@
"<code>docs</code>" folder/directory) include: "<code>docs</code>" folder/directory) include:
<ul> <ul>
<li> <li>
<a href="../magic-docs/html/">"Magic" Tool Documentation <a href="../magic-docs/html/index.html">"Magic" Tool Documentation
("magic-docs")</a><br> ("magic-docs")</a><br>
Documentation for each of the currently-installed "Magic" Documentation for each of the currently-installed "Magic"
tools. tools.
</li> </li>
<li> <li>
<a href="../AUTHORS.txt">AUTHORS.txt</a><br> <a href="../../AUTHORS.txt">AUTHORS.txt</a><br>
List of authors and contributors. List of authors and contributors.
</li> </li>
<li> <li>
<a href="../CHANGES.txt">CHANGES.txt</a><br> <a href="../../CHANGES.txt">CHANGES.txt</a><br>
Summary of changed between releases. Summary of changed between releases.
</li> </li>
<li> <li>
<a href="../COPYING.txt">COPYING.txt</a><br> <a href="../../COPYING.txt">COPYING.txt</a><br>
Copying license (The GNU General Public License). Copying license (The GNU General Public License).
</li> </li>

View file

@ -7,7 +7,7 @@
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
<string>tuxpaint</string> <string>tuxpaint</string>
<key>CFBundleGetInfoString</key> <key>CFBundleGetInfoString</key>
<string>0.9.25, Copyright 2009-2020, Tux Paint Development Team</string> <string>0.9.26, Copyright 2009-2020, Tux Paint Development Team</string>
<key>CFBundleIconFile</key> <key>CFBundleIconFile</key>
<string>tuxpaint.icns</string> <string>tuxpaint.icns</string>
<key>CFBundleIdentifier</key> <key>CFBundleIdentifier</key>
@ -19,10 +19,10 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.9.25</string> <string>0.9.26</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>TXPT</string> <string>TXPT</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>2020-06-22</string> <string>2020-12-27</string>
</dict> </dict>
</plist> </plist>

View file

@ -1,5 +1,5 @@
.\" tuxpaint.1 - 2020.08.15 .\" tuxpaint.1 - 2020.12.27
.TH TUXPAINT 1 "15 August 2020" "0.9.25" "Tux Paint" .TH TUXPAINT 1 "27 December 2020" "0.9.26" "Tux Paint"
.SH NAME .SH NAME
tuxpaint -- "Tux Paint", a drawing program for young children. tuxpaint -- "Tux Paint", a drawing program for young children.

View file

@ -1,6 +1,6 @@
Summary: A drawing program for young children Summary: A drawing program for young children
Name: tuxpaint Name: tuxpaint
Version: 0.9.25 Version: 0.9.26
Release: 1 Release: 1
License: GPL License: GPL
Group: Multimedia/Graphics Group: Multimedia/Graphics
@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT
%{_mandir}/man1/tp-magic-config.* %{_mandir}/man1/tp-magic-config.*
%changelog %changelog
* Sun Dec 27 2020 <nbs@sonic.net> -
- Set version number 0.9.26
* Mon Jun 22 2020 <nbs@sonic.net> - * Mon Jun 22 2020 <nbs@sonic.net> -
- Set version number 0.9.25 - Set version number 0.9.25

View file

@ -26,8 +26,8 @@ IDI_ICON1 ICON DISCARDABLE "data/images/icon-win32.ico"
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,9,25,0 FILEVERSION 0,9,26,0
PRODUCTVERSION 0,9,25,0 PRODUCTVERSION 0,9,26,0
FILEFLAGSMASK 0x3fL FILEFLAGSMASK 0x3fL
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS 0x21L FILEFLAGS 0x21L
@ -45,14 +45,14 @@ BEGIN
VALUE "Comments", "\0" VALUE "Comments", "\0"
VALUE "CompanyName", "New Breed Software\0" VALUE "CompanyName", "New Breed Software\0"
VALUE "FileDescription", "Tux Paint - Interactive Paint Program.\0" VALUE "FileDescription", "Tux Paint - Interactive Paint Program.\0"
VALUE "FileVersion", "0.9.25\0" VALUE "FileVersion", "0.9.26\0"
VALUE "InternalName", "Tux Paint\0" VALUE "InternalName", "Tux Paint\0"
VALUE "LegalCopyright", "Copyright (C) 2008-2020 by Bill Kendrick, et al\0" VALUE "LegalCopyright", "Copyright (C) 2008-2020 by Bill Kendrick, et al\0"
VALUE "LegalTrademarks", "\0" VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "TuxPaint.exe\0" VALUE "OriginalFilename", "TuxPaint.exe\0"
VALUE "PrivateBuild", "\0" VALUE "PrivateBuild", "\0"
VALUE "ProductName", "Tux Paint\0" VALUE "ProductName", "Tux Paint\0"
VALUE "ProductVersion", "0.9.25\0" VALUE "ProductVersion", "0.9.26\0"
VALUE "SpecialBuild", "win32 build by TOYAMA Shin-ichi\0" VALUE "SpecialBuild", "win32 build by TOYAMA Shin-ichi\0"
END END
END END