0.9.23a; doc: less hungry progress, verbose debug
Documenting Mark Kim's recent changes: * Less CPU-hungry progress bar (during Stamp loading) * Verbose debugging options * (Also, mentioned debugging _at all_, in INSTALL.txt) Bumping version to 0.9.23a, to match the test build he's working on for macOS.
This commit is contained in:
parent
8d9e187cc9
commit
33de9841c0
15 changed files with 44 additions and 24 deletions
4
Makefile
4
Makefile
|
|
@ -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 - August 30, 2018
|
# June 14, 2002 - September 24, 2018
|
||||||
|
|
||||||
|
|
||||||
# The version number, for release:
|
# The version number, for release:
|
||||||
|
|
||||||
VER_VERSION:=0.9.23
|
VER_VERSION:=0.9.23a
|
||||||
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
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,19 @@ http://www.tuxpaint.org/
|
||||||
|
|
||||||
$Id$
|
$Id$
|
||||||
|
|
||||||
|
2018.Sept.24 (0.9.23a)
|
||||||
|
* Bug Fixes
|
||||||
|
---------
|
||||||
|
* Reduce launch time by calling progress bar less frequently
|
||||||
|
while loading stamps.
|
||||||
|
Mark K. Kim <mkkim214@gmail.com>
|
||||||
|
|
||||||
|
* Misc
|
||||||
|
----
|
||||||
|
* Verbose debugging, and "DEBUG_PRINTF()" macro now available;
|
||||||
|
see debugging options in INSTALL.txt.
|
||||||
|
Mark K. Kim <mkkim214@gmail.com>
|
||||||
|
|
||||||
2018.August.30 (0.9.23)
|
2018.August.30 (0.9.23)
|
||||||
* New tools
|
* New tools
|
||||||
---------
|
---------
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
version 0.9.23
|
version 0.9.23a
|
||||||
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
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
version 0.9.23
|
version 0.9.23a
|
||||||
Extending Tux Paint
|
Extending Tux Paint
|
||||||
|
|
||||||
Copyright (c) 2002-2018 by various contributors; see AUTHORS.txt
|
Copyright (c) 2002-2018 by various contributors; see AUTHORS.txt
|
||||||
http://www.tuxpaint.org/
|
http://www.tuxpaint.org/
|
||||||
|
|
||||||
June 14, 2002 - August 28, 2018
|
June 14, 2002 - September 24, 2018
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
version 0.9.23
|
version 0.9.23a
|
||||||
Frequently Asked Questions
|
Frequently Asked Questions
|
||||||
|
|
||||||
Copyright (c) 2002-2018 by various contributors; see AUTHORS.txt
|
Copyright (c) 2002-2018 by various contributors; see AUTHORS.txt
|
||||||
http://www.tuxpaint.org/
|
http://www.tuxpaint.org/
|
||||||
|
|
||||||
September 14, 2002 - August 28, 2018
|
September 14, 2002 - September 24, 2018
|
||||||
|
|
||||||
Drawing-related
|
Drawing-related
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ Copyright (c) 2002-2018
|
||||||
Various contributors (see below, and AUTHORS.txt)
|
Various contributors (see below, and AUTHORS.txt)
|
||||||
http://www.tuxpaint.org/
|
http://www.tuxpaint.org/
|
||||||
|
|
||||||
June 27, 2002 - August 19, 2018
|
June 27, 2002 - September 24, 2018
|
||||||
$Id$
|
$Id$
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -367,6 +367,13 @@ Compiling and Installation:
|
||||||
a complete list.
|
a complete list.
|
||||||
|
|
||||||
|
|
||||||
|
Debugging:
|
||||||
|
----------
|
||||||
|
Debugging (to stdout, e.g. terminal, or to a "stdout.txt" file, on Windows)
|
||||||
|
can be enabled by setting "DEBUG" (and, if verbose logging is wanted,
|
||||||
|
"VERBOSE") #define's in src/debug.h.
|
||||||
|
|
||||||
|
|
||||||
Uninstalling Tux Paint:
|
Uninstalling Tux Paint:
|
||||||
-----------------------
|
-----------------------
|
||||||
Windows
|
Windows
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
version 0.9.23
|
version 0.9.23a
|
||||||
|
|
||||||
Options Documentation
|
Options Documentation
|
||||||
|
|
||||||
Copyright (c) 2002-2018 by various contributors; see AUTHORS.txt
|
Copyright (c) 2002-2018 by various contributors; see AUTHORS.txt
|
||||||
http://www.tuxpaint.org/
|
http://www.tuxpaint.org/
|
||||||
|
|
||||||
August 28, 2018
|
September 24, 2018
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
Tux Paint
|
Tux Paint
|
||||||
version 0.9.23
|
version 0.9.23a
|
||||||
|
|
||||||
A simple drawing program for children
|
A simple drawing program for children
|
||||||
|
|
||||||
Copyright 2002-2018 by various contributors; see AUTHORS.txt
|
Copyright 2002-2018 by various contributors; see AUTHORS.txt
|
||||||
http://www.tuxpaint.org/
|
http://www.tuxpaint.org/
|
||||||
|
|
||||||
June 14, 2002 - August 28, 2018
|
June 14, 2002 - September 24, 2018
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ alink="#FF00FF">
|
||||||
alt="Tux Paint"><br>
|
alt="Tux Paint"><br>
|
||||||
version
|
version
|
||||||
|
|
||||||
0.9.23
|
0.9.23a
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
Advanced Stamps HOWTO</h1>
|
Advanced Stamps HOWTO</h1>
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ alt="Tux Paint"><br>
|
||||||
|
|
||||||
version
|
version
|
||||||
|
|
||||||
0.9.23
|
0.9.23a
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
Extending Tux Paint</h1>
|
Extending Tux Paint</h1>
|
||||||
|
|
@ -20,7 +20,7 @@ Extending Tux Paint</h1>
|
||||||
<p>Copyright (c) 2002-2018 by various contributors; see AUTHORS.txt<br/>
|
<p>Copyright (c) 2002-2018 by various contributors; see AUTHORS.txt<br/>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a></p>
|
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a></p>
|
||||||
|
|
||||||
<p>June 14, 2002 - August 28, 2018</p>
|
<p>June 14, 2002 - September 24, 2018</p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<hr size=2 noshade>
|
<hr size=2 noshade>
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ alink="#FF00FF">
|
||||||
alt="Tux Paint"><br>
|
alt="Tux Paint"><br>
|
||||||
version
|
version
|
||||||
|
|
||||||
0.9.23
|
0.9.23a
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
Frequently Asked Questions</h1>
|
Frequently Asked Questions</h1>
|
||||||
|
|
@ -19,7 +19,7 @@ Frequently Asked Questions</h1>
|
||||||
<p>Copyright (c) 2002-2018 by various contributors; see AUTHORS.txt<br/>
|
<p>Copyright (c) 2002-2018 by various contributors; see AUTHORS.txt<br/>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a></p>
|
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a></p>
|
||||||
|
|
||||||
<p>September 14, 2002 - August 28, 2018</p>
|
<p>September 14, 2002 - September 24, 2018</p>
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
<h2>Drawing-related</h2>
|
<h2>Drawing-related</h2>
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ alink="#FF00FF">
|
||||||
|
|
||||||
version
|
version
|
||||||
|
|
||||||
0.9.23
|
0.9.23a
|
||||||
|
|
||||||
</h1>
|
</h1>
|
||||||
<h2>Options Documentation</h2>
|
<h2>Options Documentation</h2>
|
||||||
|
|
@ -19,7 +19,7 @@ version
|
||||||
<p>Copyright (c) 2002-2018 by various contributors; see AUTHORS.txt<br/>
|
<p>Copyright (c) 2002-2018 by various contributors; see AUTHORS.txt<br/>
|
||||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a></p>
|
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a></p>
|
||||||
|
|
||||||
<p>August 28, 2018</p>
|
<p>September 24, 2018</p>
|
||||||
|
|
||||||
|
|
||||||
</center>
|
</center>
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ alt="Tux Paint"><br>
|
||||||
|
|
||||||
version
|
version
|
||||||
|
|
||||||
0.9.23
|
0.9.23a
|
||||||
|
|
||||||
</h1>
|
</h1>
|
||||||
<h3>A simple drawing program for children</h3>
|
<h3>A simple drawing program for children</h3>
|
||||||
|
|
@ -22,7 +22,7 @@ version
|
||||||
|
|
||||||
<p>June 14, 2002 -
|
<p>June 14, 2002 -
|
||||||
|
|
||||||
August 28, 2018</p>
|
September 24, 2018</p>
|
||||||
|
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
.\" tuxpaint.1 - 2018.08.19
|
.\" tuxpaint.1 - 2018.09.24
|
||||||
.TH TUXPAINT 1 "19 August 2018" "0.9.23" "Tux Paint"
|
.TH TUXPAINT 1 "24 September 2018" "0.9.23a" "Tux Paint"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
tuxpaint -- "Tux Paint", a drawing program for young children.
|
tuxpaint -- "Tux Paint", a drawing program for young children.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.23
|
Version: 0.9.23a
|
||||||
Release: 1
|
Release: 1
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
License: GPL
|
License: GPL
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue