Merge branch 'master' into sdl2.0
This commit is contained in:
commit
afa562680e
160 changed files with 12539 additions and 9026 deletions
|
|
@ -2,13 +2,21 @@ CHANGES.txt for Tux Paint
|
|||
|
||||
Tux Paint - A simple drawing program for children.
|
||||
|
||||
Copyright (c) 2002-2020
|
||||
Copyright (c) 2002-2021
|
||||
Various contributors (see below, and AUTHORS.txt)
|
||||
http://www.tuxpaint.org/
|
||||
|
||||
$Id$
|
||||
|
||||
2020.December.27 (0.9.26)
|
||||
2021.January.15 (0.9.26)
|
||||
* New Magic Tools:
|
||||
----------------
|
||||
* Pixels
|
||||
Draws large squares, for classic computer 'pixel art' style drawings.
|
||||
|
||||
* Clone
|
||||
Clones (copies, via painting) part of a drawing to another position.
|
||||
|
||||
* Documentation updates
|
||||
---------------------
|
||||
* Expanded the steps for making and posting releases.
|
||||
|
|
@ -16,6 +24,23 @@ $Id$
|
|||
* Mended some broken relative links in README.html that
|
||||
pointed to other parts of the docs.
|
||||
|
||||
* Documented how to build Tux Paint using old macOS
|
||||
Mark K. Kim <markuskimius@gmail.com>
|
||||
|
||||
* Other Improvements
|
||||
------------------
|
||||
* If parent of export directory doesn't exist, Tux Paint will
|
||||
try to create it as well.
|
||||
(Only one level up; e.g., with an export location like
|
||||
/path/to/Pictures/TuxPaint/, it will try to create
|
||||
/path/to/Pictures/ if it doesn't exist, but not its parents).
|
||||
h/t Tim Dickson
|
||||
|
||||
* Translation Updates:
|
||||
--------------------
|
||||
* Galician translation
|
||||
Miguel Bouzada <mbouzada@gmail.com>
|
||||
|
||||
2020.December.27 (0.9.25)
|
||||
* New Features
|
||||
------------
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
Release checklist for Tux Paint
|
||||
Last updated 2020-12-27 -bjk
|
||||
Last updated 2021-01-13 -bjk
|
||||
|
||||
Preparing
|
||||
---------
|
||||
|
|
@ -43,6 +43,8 @@ a .tar.gz source tarball, and making the tarball available for download.
|
|||
If not, correct the issues! Then replace the original with the new
|
||||
version 'tidy' created.
|
||||
|
||||
* Rebuild 'tuxpaint.desktop' by running "make" in "src/po/")
|
||||
|
||||
* Don't forget to commit the changes! (git add ... / git commit / git push)
|
||||
|
||||
|
||||
|
|
@ -97,3 +99,67 @@ Time to release:
|
|||
|
||||
* Copy latest release's documentation to the tuxpaint.org website.
|
||||
|
||||
Website updates
|
||||
---------------
|
||||
* List new features on http://www.tuxpaint.org/features/
|
||||
|
||||
* Add any new requirements to http://www.tuxpaint.org/requirements/
|
||||
|
||||
Announcements
|
||||
-------------
|
||||
* Managed by Tux Paint
|
||||
|
||||
+ Tux Paint website
|
||||
- Site: http://www.tuxpaint.org/
|
||||
- Submissions: [add announcement to /latest/]
|
||||
|
||||
+ Tux Paint on Facebook
|
||||
- Site: https://www.facebook.com/TuxPaint
|
||||
- Submissions: [currently managed by Bill K.]
|
||||
|
||||
+ Tux Paint on Twitter
|
||||
- Site: https://www.facebook.com/TuxPaint
|
||||
- Submissions: [currently managed by Bill K.]
|
||||
|
||||
* News sites & magazines
|
||||
|
||||
+ Linux Today
|
||||
- Site: https://www.linuxtoday.com/
|
||||
- Twitter: https://twitter.com/linuxtoday
|
||||
- Submissions: https://www.linuxtoday.com/contribute.html
|
||||
|
||||
+ 9to5Linux
|
||||
- Site: https://9to5linux.com/
|
||||
- Twitter: https://twitter.com/9to5linux
|
||||
- Submissions: https://9to5linux.com/contact-us
|
||||
|
||||
+ Fossbytes
|
||||
- Site: https://fossbytes.com/
|
||||
- Twitter: https://twitter.com/Fossbytes14
|
||||
- Submissions: admin [at] fossbytes.com
|
||||
|
||||
+ EdTech K12 Magazine
|
||||
- Site: https://edtechmagazine.com/k12/
|
||||
- Twitter: https://twitter.com/EdTech_K12
|
||||
- Submissions: https://edtechmagazine.com/k12/contact-us (?)
|
||||
|
||||
* Software databases
|
||||
|
||||
+ MacUpdate
|
||||
- Site: https://www.macupdate.com/
|
||||
- Submissions: [currently managed by Bill K.]
|
||||
|
||||
* Linux repositories
|
||||
|
||||
+ Fedora -- process TBD
|
||||
+ openSUSE -- process TBD
|
||||
+ Debian -- process TBD
|
||||
+ Ubuntu -- process TBD
|
||||
+ Slackware -- process TBD
|
||||
+ ...others?
|
||||
|
||||
* Paid promotions
|
||||
|
||||
+ Facebook boost
|
||||
+ Newswire.com
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
Options Documentation
|
||||
|
||||
Copyright (c) 2002-2020 by various contributors; see AUTHORS.txt
|
||||
Copyright (c) 2002-2021 by various contributors; see AUTHORS.txt
|
||||
http://www.tuxpaint.org/
|
||||
|
||||
December 27, 2020
|
||||
|
|
@ -607,9 +607,14 @@ Windows Users
|
|||
Note: When the defaults are used, a new "TuxPaint" subdirectory
|
||||
will be created and used. (e.g., "~/Pictures/TuxPaint") When the
|
||||
"--exportdir" option is used, the exact path specified will be
|
||||
used (no "TuxPaint" subdirectory is created). It is expected
|
||||
that the parent directory exists. (The directory itself will be
|
||||
created, if it doesn't.)
|
||||
used (no "TuxPaint" subdirectory is created).
|
||||
|
||||
The directory itself (e.g., "~/Pictures/TuxPaint") will be
|
||||
created, if it doesn't exist.
|
||||
|
||||
If the parent directory (e.g., "~/Pictures") also does not
|
||||
exist, Tux Paint will attempt to create it as well (but not any
|
||||
directories higher than that).
|
||||
|
||||
Example: exportdir=/home/penguin/TuxPaintExports
|
||||
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@
|
|||
|
||||
A simple drawing program for children
|
||||
|
||||
Copyright 2002-2020 by various contributors; see AUTHORS.txt
|
||||
Copyright 2002-2021 by various contributors; see AUTHORS.txt
|
||||
http://www.tuxpaint.org/
|
||||
|
||||
June 14, 2002 - December 27, 2020
|
||||
June 14, 2002 - January 13, 2021
|
||||
|
||||
----------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
</h2>
|
||||
|
||||
<p>
|
||||
Copyright (c) 2002-2020 by various contributors; see
|
||||
Copyright (c) 2002-2021 by various contributors; see
|
||||
AUTHORS.txt<br>
|
||||
<a href=
|
||||
"http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
||||
|
|
@ -1274,9 +1274,16 @@
|
|||
and used. (e.g., "<code>~/Pictures/TuxPaint</code>")
|
||||
When the "<code>--exportdir</code>" option is used, the
|
||||
exact path specified will be used (no
|
||||
"<code>TuxPaint</code>" subdirectory is created). It is
|
||||
expected that the parent directory exists. (The
|
||||
directory itself will be created, if it doesn't.)
|
||||
"<code>TuxPaint</code>" subdirectory is created).
|
||||
</p>
|
||||
<p>
|
||||
The directory itself (e.g., "<code>~/Pictures/TuxPaint</code>")
|
||||
will be created, if it doesn't exist.
|
||||
</p>
|
||||
<p>
|
||||
If the <em>parent</em> directory (e.g., "<code>~/Pictures</code>")
|
||||
also does not exist, Tux Paint will attempt to create it
|
||||
as well (but not any directories higher than that).
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
|
|
|||
|
|
@ -28,14 +28,14 @@
|
|||
</h3>
|
||||
|
||||
<p>
|
||||
Copyright 2002-2020 by various contributors; see
|
||||
Copyright 2002-2021 by various contributors; see
|
||||
AUTHORS.txt<br>
|
||||
<a href=
|
||||
"http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
June 14, 2002 - December 27, 2020
|
||||
June 14, 2002 - January 13, 2021
|
||||
</p>
|
||||
</center>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue