Syncing docs again, after wrapping up path nonsense
This commit is contained in:
parent
e268b598ff
commit
a655146677
69 changed files with 830 additions and 992 deletions
|
|
@ -99,7 +99,7 @@ macOS
|
|||
your system's "Application Support" folder (found under "Library" at the
|
||||
root of your filesystem):
|
||||
|
||||
/Library/Application Support/TuxPaint/
|
||||
/Library/Application Support/TuxPaint/data/
|
||||
|
||||
When you upgrade to a newer version of Tux Paint, the contents of this
|
||||
"TuxPaint" folder will stay the same, and remain accessible by all users of
|
||||
|
|
@ -118,7 +118,7 @@ Windows
|
|||
Your personal Tux Paint folder is stored in your personal "Application
|
||||
Data". For example, on newer Windows:
|
||||
|
||||
C:\Documents and Settings\(username)\Application Data\TuxPaint\
|
||||
C:\Users\username\AppData\Roaming\TuxPaint\
|
||||
|
||||
|
||||
|
||||
|
|
@ -127,18 +127,14 @@ macOS
|
|||
Your personal Tux Paint folder is stored in your personal "Application
|
||||
Support" folder:
|
||||
|
||||
/Users/(username)/Library/Application Support/TuxPaint/
|
||||
/Users/username/Library/Application Support/TuxPaint/
|
||||
|
||||
|
||||
|
||||
Linux and Unix
|
||||
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your
|
||||
account's home directory: "$(HOME)/.tuxpaint/" (also known as "~/.tuxpaint/
|
||||
").
|
||||
|
||||
That is, if your home directory is "/home/tux", then your personal Tux
|
||||
Paint files go in "/home/tux/.tuxpaint/".
|
||||
account's home directory: "/home/username/.tuxpaint/".
|
||||
|
||||
Don't forget the period (".") before the "tuxpaint"!
|
||||
|
||||
|
|
@ -149,8 +145,8 @@ To add your own brushes, stamps, 'starters,' templates, and fonts, create
|
|||
subdirectories under your personal Tux Paint directory named "brushes", "stamps
|
||||
", "starters", "templates", "fonts", respectively.
|
||||
|
||||
(For example, if you created a brush named "flower.png", you would put it in "~
|
||||
/.tuxpaint/brushes/" under Linux or Unix.)
|
||||
(For example, if you created a brush named "flower.png", you would put it in
|
||||
"/home/username/.tuxpaint/brushes/" under Linux or Unix.)
|
||||
|
||||
Brushes
|
||||
|
||||
|
|
|
|||
|
|
@ -887,9 +887,9 @@ Panel Add/Remove programs section.
|
|||
macOS
|
||||
|
||||
Delete "TuxPaint.app" from the "Applications" folder. Data files, including the
|
||||
configuration files, stamps, and saved pictures, may be found in "/Library/
|
||||
Application Support/TuxPaint" (all users) and "/Users/USERNAME/Library/
|
||||
Application Support/TuxPaint" (individual users).
|
||||
configuration files, stamps, and saved pictures, may be found in
|
||||
"/Library/Application Support/TuxPaint/" (all users) and
|
||||
"/Users/username/Library/Application Support/TuxPaint/" (individual users).
|
||||
|
||||
Linux
|
||||
|
||||
|
|
|
|||
|
|
@ -59,8 +59,7 @@ at:
|
|||
|
||||
macOS Users
|
||||
|
||||
The file you should create is called "tuxpaint.cfg" and it should be placed in
|
||||
your home folder, under the sub-folder: Library/Application Support/TuxPaint
|
||||
/Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg
|
||||
|
||||
System-Wide Configuration File
|
||||
|
||||
|
|
@ -87,8 +86,7 @@ C:\Program Files\TuxPaint\tuxpaint.cfg
|
|||
|
||||
Haiku Users
|
||||
|
||||
The file you should create is called "tuxpaint.conf" and it should be placed in
|
||||
/boot/home/config/settings/TuxPaint
|
||||
/boot/home/config/settings/TuxPaint/tuxpaint.conf
|
||||
|
||||
⚙ You can disable reading of this file altogether, leaving the settings as
|
||||
defaults (which can then be overridden by your personal config. file and/or
|
||||
|
|
@ -1174,27 +1172,27 @@ Save Printer Configuration
|
|||
Group) configuration. (Try running the command-line "xdg-user-dir
|
||||
PICTURES" to find out.)
|
||||
Typically (in an English locale), this will be a "Pictures"
|
||||
subdirectory in your home directory (i.e., "$HOME/Pictures" aka "~/
|
||||
Pictures").
|
||||
Tux Paint will fall back to using that typical directory, of no XDG
|
||||
subdirectory in your home directory (i.e.,
|
||||
"/home/username/Pictures").
|
||||
Tux Paint will fall back to using that typical directory, if no XDG
|
||||
configuration can be read, or nothing is set for
|
||||
"XDG_PICTURES_DIR".
|
||||
o Windows - "My Pictures" directory for each user (normaly "c:\Users\
|
||||
USERNAME\Pictures").
|
||||
o Windows - "My Pictures" directory for each user (normaly
|
||||
"C:\Users\username\My Pictures")
|
||||
You can directly open the folder as follows:
|
||||
# Press "[Windows]+[R]" key to open "Run ..." dialogue.
|
||||
# Enter "Shell:My Pictures" in the text box and push [OK].
|
||||
o macOS — TBD!
|
||||
|
||||
💡 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).
|
||||
be created and used. (e.g., "/home/username/Pictures/TuxPaint") When
|
||||
the "--exportdir" option is used, the exact path specified will be used
|
||||
(no "TuxPaint" subdirectory is created).
|
||||
|
||||
The directory itself (e.g., "~/Pictures/TuxPaint") will be created, if
|
||||
it doesn't exist.
|
||||
The directory itself (e.g., "/home/username/Pictures/TuxPaint") will be
|
||||
created, if it doesn't exist.
|
||||
|
||||
If the parent directory (e.g., "~/Pictures/TuxPaint") also does not
|
||||
If the parent directory (e.g., "/home/username/Pictures") also does not
|
||||
exist, Tux Paint will attempt to create it as well (but not any
|
||||
directories higher than that).
|
||||
|
||||
|
|
@ -1284,17 +1282,15 @@ Save Printer Configuration
|
|||
|
||||
If you do not override it, the default location is:
|
||||
|
||||
o Linux & Unix — Under a hidden directory named ".tuxpaint" in your
|
||||
home directory (aka "~" or "$HOME")
|
||||
Example: /home/username/.tuxpaint/brushes/
|
||||
o Windows — Inside a folder named "TuxPaint" in your "Application
|
||||
Data" folder.
|
||||
Example: C:\Documents and Settings\Username\Application Data\
|
||||
TuxPaint\brushes\
|
||||
o macOS — Inside a folder named "TuxPaint" in your "Application
|
||||
Support" folder.
|
||||
Example: /Users/Username/Library/Application Support/TuxPaint/
|
||||
brushes/
|
||||
Linux / Unix
|
||||
/home/username/.tuxpaint/
|
||||
|
||||
Windows
|
||||
C:\Users\username\AppData\Roaming\TuxPaint\
|
||||
|
||||
macoS
|
||||
/Users/username/Library/Application Support/TuxPaint/
|
||||
|
||||
|
||||
📜 Note: Prior to version 0.9.18, Tux Paint would use the same setting
|
||||
or default as for "savedir" to search for data files. As of version
|
||||
|
|
@ -1614,13 +1610,12 @@ Button Shortcuts
|
|||
|
||||
Overriding System Config. Options
|
||||
|
||||
(For Linux and Unix users)
|
||||
|
||||
If any of the above options are set in "/etc/tuxpaint/tuxpaint.conf", you
|
||||
can override them in your own "/home/username/.tuxpaintrc" file.
|
||||
If any of the above options are set in a system-wide configuration file
|
||||
(e.g. "/etc/tuxpaint/tuxpaint.conf" on Linux), you may override them in
|
||||
your own personal configuration file (e.g. "/home/username/.tuxpaintrc")
|
||||
|
||||
For true/false options, like "noprint" and "grab", you can simply say they
|
||||
equal 'no' in your "/home/username/.tuxpaintrc" file:
|
||||
equal 'no' in your personal configuration file:
|
||||
|
||||
noprint=no
|
||||
uppercase=no
|
||||
|
|
@ -1774,11 +1769,11 @@ Button Shortcuts
|
|||
|
||||
--nosysconfig
|
||||
|
||||
Under Linux and Unix, this prevents the system-wide configuration file,
|
||||
"/etc/tuxpaint/tuxpaint.conf", from being read.
|
||||
This prevents the system-wide configuration file (e.g.
|
||||
"/etc/tuxpaint/tuxpaint.conf" on Linux), from being read.
|
||||
|
||||
Only your own configuration file, "/home/username/.tuxpaintrc", if it
|
||||
exists, will be used.
|
||||
Only your own configuration file (e.g. "/home/username/.tuxpaintrc" on
|
||||
Linux) — if it exists — will be used.
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1266,6 +1266,9 @@ Using Tux Paint:
|
|||
Tux Paint's configuration.
|
||||
+ 'Magic' Tool Documentation ("magic-docs")
|
||||
Documentation for each of the currently-installed 'Magic' tools.
|
||||
+ Frequently Asked Questions ("FAQs") about Tux Paint
|
||||
Answers to, and solutions for, some common questions about, and
|
||||
problems with, using Tux Paint.
|
||||
|
||||
|
||||
How to extend Tux Paint:
|
||||
|
|
|
|||
|
|
@ -172,13 +172,11 @@
|
|||
Where this directory goes depends on what value was set for "<code>DATA_PREFIX</code>" when Tux Paint was built. See 'Install documentation' for details. </p>
|
||||
<p>
|
||||
By default, though, the directory is: <blockquote>
|
||||
<code>/usr/local/share/tuxpaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/usr/local/share/tuxpaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
<p>
|
||||
If you installed from a package, it is more likely to be: <blockquote>
|
||||
<code>/usr/share/tuxpaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/usr/share/tuxpaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -186,8 +184,7 @@
|
|||
<dd>
|
||||
<p>
|
||||
Tux Paint looks for a directory called '<code>data</code>' in the same directory as the executable. This is the directory that the installer used when installing Tux Paint e.g.: <blockquote>
|
||||
<code style="white-space: nowrap;">C:\Program Files\TuxPaint\data</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\data</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -209,8 +206,7 @@
|
|||
<span title="Information">💡</span> <em>Note:</em> If you install a newer version of Tux Paint and replace or discard the old version, you will lose changes made by following the instructions above, so keep backups of your new content (stamps, brushes, etc.). </p>
|
||||
<p>
|
||||
Tux Paint also looks for files in a "TuxPaint" folder that you can place in your system's "Application Support" folder (found under "Library" at the root of your filesystem): <blockquote>
|
||||
<code style="white-space: nowrap;">/Library/Application Support/TuxPaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/data/</code></nobr> </blockquote>
|
||||
</p>
|
||||
<p>
|
||||
When you upgrade to a newer version of Tux Paint, the contents of this "TuxPaint" folder will stay the same, and remain accessible by all users of Tux Paint. </p>
|
||||
|
|
@ -235,8 +231,7 @@
|
|||
<p>
|
||||
Your personal Tux Paint folder is stored in your personal "Application Data". For example, on newer Windows:
|
||||
<blockquote>
|
||||
<code style="white-space: nowrap;">C:\Documents and Settings\<i>(username)</i>\Application Data\TuxPaint\</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -244,17 +239,14 @@
|
|||
<dd>
|
||||
<p>
|
||||
Your personal Tux Paint folder is stored in your personal "Application Support" folder: <blockquote>
|
||||
<code style= "white-space: nowrap;">/Users/<i>(username)</i>/Library/Application Support/TuxPaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
<dt><strong>Linux and Unix</strong></dt>
|
||||
<dd>
|
||||
<p>
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your account's home directory: "<code>$(HOME)/.tuxpaint/</code>" (also known as "<code>~/.tuxpaint/</code>"). </p>
|
||||
<p>
|
||||
That is, if your home directory is "<code>/home/tux</code>", then your personal Tux Paint files go in "<code>/home/tux/.tuxpaint/</code>". </p>
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your account's home directory: <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/</code>"</nobr>. </p>
|
||||
<p>
|
||||
Don't forget the period ("<code>.</code>") before the "<code>tuxpaint</code>"! </p>
|
||||
</dd>
|
||||
|
|
@ -264,7 +256,7 @@
|
|||
To add your own brushes, stamps, 'starters,' templates, and fonts, create subdirectories under your personal Tux Paint directory named "<code><b>brushes</b></code>", "<code><b>stamps</b></code>", "<code><b>starters</b></code>", "<code><b>templates</b></code>", "<code><b>fonts</b></code>", respectively. </p>
|
||||
|
||||
<p>
|
||||
(For example, if you created a brush named "<code>flower.png</code>", you would put it in "<code>~/.tuxpaint/brushes/</code>" under Linux or Unix.) </p>
|
||||
(For example, if you created a brush named <nobr>"<code style='background: #EEE;'>flower.png</code>"</nobr>, you would put it in <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/brushes/</code>"</nobr> under Linux or Unix.) </p>
|
||||
</section><!-- H2: Personal Files -->
|
||||
</section><!-- H1: Where Files Go -->
|
||||
|
||||
|
|
|
|||
|
|
@ -317,28 +317,28 @@
|
|||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>macOS</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code>/Users/username/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Linux / Unix</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code>/home/username/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Haiku</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
|
|
@ -617,10 +617,10 @@
|
|||
|
||||
<dd>
|
||||
<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 "<code>stdout.txt</code>" in the same folder where <code>TuxPaint.exe</code> resides (e.g., in <nobr>"<code>C:\Program Files\TuxPaint\</code>"</nobr>). </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 "<code>stdout.txt</code>" in the same folder where <code>TuxPaint.exe</code> resides (e.g., in <nobr>"<code style='background: #EEE;'>C:\Program Files\TuxPaint\</code>"</nobr>). </p>
|
||||
|
||||
<p>
|
||||
A lockfile (e.g., <nobr>"<code>/home/username/.tuxpaint/lockfile.dat</code>"</nobr> on Linux and Unix, <nobr>"<code>userdata\lockfile.dat</code>"</nobr> 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). </p>
|
||||
A lockfile (e.g., <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/lockfile.dat</code>"</nobr> on Linux and Unix, <nobr>"<code style='background: #EEE;'>userdata\lockfile.dat</code>"</nobr> 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). </p>
|
||||
|
||||
<p>
|
||||
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. </p>
|
||||
|
|
@ -705,7 +705,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -713,7 +713,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -727,7 +727,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -735,7 +735,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -749,7 +749,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/etc/tuxpaint/tuxpaint.conf</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -757,7 +757,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/home/username/.tuxpaintrc</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/home/username/.tuxpaintrc</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -771,7 +771,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -783,7 +783,7 @@
|
|||
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>
|
||||
|
||||
<p>
|
||||
For example, on Linux and Unix, if <nobr>"<code>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> includes this option to disable sound... </p>
|
||||
For example, on Linux and Unix, if <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> includes this option to disable sound... </p>
|
||||
|
||||
<blockquote>
|
||||
<p>
|
||||
|
|
@ -792,7 +792,7 @@
|
|||
</blockquote>
|
||||
|
||||
<p>
|
||||
...then you can reenable sound by either adding this option to your own <nobr>"<code>/home/username/.tuxpaintrc</code>"</nobr> file: </p>
|
||||
...then you can reenable sound by either adding this option to your own <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaintrc</code>"</nobr> file: </p>
|
||||
|
||||
<blockquote>
|
||||
<p>
|
||||
|
|
|
|||
|
|
@ -723,10 +723,7 @@
|
|||
Make sure the 'Shortcut' tab is selected in the window that appears, and examine the 'Target:' field. You should see something like this: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>
|
||||
"C:\Program Files\TuxPaint\TuxPaint.exe"
|
||||
</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>"C:\Program Files\TuxPaint\TuxPaint.exe"</code></nobr> </blockquote>
|
||||
|
||||
<p>
|
||||
You can now add command-line options which will be enabled when you double-click the icon. </p>
|
||||
|
|
@ -735,10 +732,7 @@
|
|||
For example, to make the game run in fullscreen mode, with simple shapes (no rotation option) and in French, add the options (after 'TuxPaint.exe'), like so: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>
|
||||
"C:\Program Files\TuxPaint\TuxPaint.exe" -f -s --lang french
|
||||
</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>"C:\Program Files\TuxPaint\TuxPaint.exe" -f -s --lang french</code></nobr> </blockquote>
|
||||
|
||||
<p>
|
||||
(See the main documentation for a full list of available command-line options.) </p>
|
||||
|
|
@ -757,7 +751,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "<code>stderr.txt</code>" in your personal saving folder for TuxPaint which is normaly <nobr>"<code>C:\Users\username\AppData\Roaming\TuxPaint\</code>"</nobr>. </p>
|
||||
If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "<code>stderr.txt</code>" in your personal saving folder for TuxPaint which is normaly <nobr>"<code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\</code>"</nobr>. </p>
|
||||
|
||||
<p>
|
||||
It will contain a description of what was wrong. Usually it will just be due to incorrect character-case (capital 'Z' instead of lowercase 'z') or a missing (or extra) '-' (dash). </p>
|
||||
|
|
@ -1375,7 +1369,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
Delete "<code>TuxPaint.app</code>" from the "Applications" folder. Data files, including the configuration files, stamps, and saved pictures, may be found in "<code style="white-space: nowrap;">/Library/Application Support/TuxPaint</code>" (all users) and "<code style="white-space: nowrap;">/Users/<i>USERNAME</i>/Library/Application Support/TuxPaint</code>" (individual users). </p>
|
||||
Delete "<code>TuxPaint.app</code>" from the "Applications" folder. Data files, including the configuration files, stamps, and saved pictures, may be found in <nobr>"<code style='background: #EEE;'>/Library/Application Support/TuxPaint/</code>"</nobr> (all users) and <nobr>"<code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/</code>"</nobr> (individual users). </p>
|
||||
</section><!-- H2: macOS -->
|
||||
|
||||
<section class="indent"><!-- H2: Linux -->
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
</p>
|
||||
|
||||
<p>
|
||||
April 7, 2024 </p>
|
||||
April 27, 2024 </p>
|
||||
</center>
|
||||
</header>
|
||||
|
||||
|
|
@ -169,8 +169,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<code>/home/username/.tuxpaintrc</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>/home/username/.tuxpaintrc</code></nobr> </p>
|
||||
</div>
|
||||
|
||||
<section class="indent"><!-- H3: System-Wide Configuration File -->
|
||||
|
|
@ -183,8 +182,7 @@
|
|||
Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>/etc/tuxpaint/tuxpaint.conf</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code></nobr> </blockquote>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: Linux and Unix Users -->
|
||||
|
||||
|
|
@ -195,7 +193,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
The file you should create is called "<code><b>tuxpaint.cfg</b></code>" and it should be placed in your home folder, under the sub-folder: <code>Library/Application Support/TuxPaint</code> </p>
|
||||
<nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
|
||||
<section class="indent"><!-- H3: System-Wide Configuration File -->
|
||||
<header>
|
||||
|
|
@ -207,8 +205,7 @@
|
|||
Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>/Library/Application Support/TuxPaint/tuxpaint.cfg</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </blockquote>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: macOS Users -->
|
||||
|
||||
|
|
@ -219,8 +216,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<code>C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
|
||||
<p>
|
||||
You can use NotePad or WordPad to create this file. Be sure to save it as Plain Text, and make sure the filename doesn't have ".txt" at the end... </p>
|
||||
|
|
@ -235,8 +231,7 @@
|
|||
Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at: </p>
|
||||
|
||||
<p>
|
||||
<code>C:\Program Files\TuxPaint\tuxpaint.cfg</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: Windows Users -->
|
||||
|
||||
|
|
@ -247,7 +242,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
The file you should create is called "<code><b>tuxpaint.conf</b></code>" and it should be placed in <code>/boot/home/config/settings/TuxPaint</code> </p>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
</section><!-- H2: Haiku Users -->
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1790,19 +1785,19 @@
|
|||
<dt>Linux / Unix</dt>
|
||||
<dd>
|
||||
Under a hidden directory in your home directory:<br/>
|
||||
<nobr><code>/home/username/.tuxpaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/home/username/.tuxpaint/saved/</code></nobr> </dd>
|
||||
|
||||
<dt>Windows</dt>
|
||||
<dd>
|
||||
<nobr><code>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code></nobr> </dd>
|
||||
|
||||
<dt>macOS</dt>
|
||||
<dd>
|
||||
<nobr><code>/Users/username/Library/Application Support/TuxPaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/saved/</code></nobr> </dd>
|
||||
|
||||
<dt>Haiku</dt>
|
||||
<dd>
|
||||
<nobr><code>/boot/home/config/settings/TuxPaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code></nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1828,9 +1823,9 @@
|
|||
|
||||
<ul>
|
||||
<li>Linux & Unix — If available, wherever your desktop environment is configured for pictures to be stored, based on your XDG (X Desktop Group) configuration. (Try running the command-line "<code style="white-space: nowrap;">xdg-user-dir PICTURES</code>" to find out.)<br>
|
||||
Typically (in an English locale), this will be a "<code>Pictures</code>" subdirectory in your home directory (i.e., "<code>$HOME/Pictures</code>" aka "<code>~/Pictures</code>").<br>
|
||||
Tux Paint will fall back to using that typical directory, of no XDG configuration can be read, or nothing is set for "<code>XDG_PICTURES_DIR</code>". </li>
|
||||
<li>Windows - "My Pictures" directory for each user (normaly "c:\Users\<i>USERNAME</i>\Pictures").<br>You can directly open the folder as follows: <ul>
|
||||
Typically (in an English locale), this will be a "<code>Pictures</code>" subdirectory in your home directory (i.e., <nobr>"<code style='background: #EEE;'>/home/username/Pictures</code>"</nobr>).<br>
|
||||
Tux Paint will fall back to using that typical directory, if no XDG configuration can be read, or nothing is set for "<code>XDG_PICTURES_DIR</code>". </li>
|
||||
<li>Windows - "My Pictures" directory for each user (normaly <nobr>"<code style='background: #EEE;'>C:\Users\username\My Pictures</code>"</nobr>)<br>You can directly open the folder as follows: <ul>
|
||||
<li>Press "[Windows]+[R]" key to open "Run ..." dialogue.</li>
|
||||
<li>Enter "Shell:My Pictures" in the text box and push [OK].</li>
|
||||
</ul>
|
||||
|
|
@ -1841,11 +1836,11 @@
|
|||
</ul>
|
||||
|
||||
<p class="note">
|
||||
<span title="Information">💡</span> <strong>Note:</strong> When the defaults are used, a new "<code>TuxPaint</code>" subdirectory will be created 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). </p>
|
||||
<span title="Information">💡</span> <strong>Note:</strong> When the defaults are used, a new "<code>TuxPaint</code>" subdirectory will be created and used. (e.g., <nobr>"<code style='background: #EEE;'>/home/username/Pictures/TuxPaint</code>"</nobr>) When the "<code>--exportdir</code>" option is used, the exact path specified will be used (no "<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>
|
||||
The directory itself (e.g., <nobr>"<code style='background: #EEE;'>/home/username/Pictures/TuxPaint</code>"</nobr>) will be created, if it doesn't exist. </p>
|
||||
<p>
|
||||
If the <em>parent</em> directory (e.g., "<code>~/Pictures/TuxPaint</code>") also does not exist, Tux Paint will attempt to create it as well (but not any directories higher than that). </p>
|
||||
If the <em>parent</em> directory (e.g., <nobr>"<code style='background: #EEE;'>/home/username/Pictures</code>"</nobr>) also does not exist, Tux Paint will attempt to create it as well (but not any directories higher than that). </p>
|
||||
|
||||
<p>
|
||||
Example: <code>exportdir=/home/penguin/TuxPaintExports</code> </p>
|
||||
|
|
@ -1947,16 +1942,17 @@
|
|||
<p>
|
||||
If you do not override it, the <b><i>default</i></b> location is: </p>
|
||||
|
||||
<ul>
|
||||
<li>Linux & Unix — Under a hidden directory named "<code>.tuxpaint</code>" in your home directory (aka "<code>~</code>" or "<code>$HOME</code>")<br>
|
||||
Example: <code>/home/<i>username</i>/.tuxpaint/brushes/</code> </li>
|
||||
<dl>
|
||||
<dt>Linux / Unix</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>/home/username/.tuxpaint/</code></nobr></dd>
|
||||
|
||||
<li>Windows — Inside a folder named "<code>TuxPaint</code>" in your "<code>Application Data</code>" folder.<br>
|
||||
Example: <code>C:\Documents and Settings\<i>Username</i>\Application Data\TuxPaint\brushes\</code> </li>
|
||||
<dt>Windows</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\</code></nobr></dd>
|
||||
|
||||
<li>macOS — Inside a folder named "<code>TuxPaint</code>" in your "<code>Application Support</code>" folder.<br>
|
||||
Example: <code>/Users/<i>Username</i>/Library/Application Support/TuxPaint/brushes/</code> </li>
|
||||
</ul>
|
||||
<dt>macoS</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/</code></nobr></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
<span title="Version variation">📜</span> <strong>Note:</strong> Prior to version 0.9.18, Tux Paint would use the same setting or default as for "<code>savedir</code>" to search for data files. As of version 0.9.18, they may be specified separately. </p>
|
||||
|
|
@ -2377,14 +2373,10 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<i>(For Linux and Unix users)</i>
|
||||
</p>
|
||||
If any of the above options are set in a system-wide configuration file (e.g. <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> on Linux), you may override them in your own personal configuration file (e.g. <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaintrc</code>"</nobr>) </p>
|
||||
|
||||
<p>
|
||||
If any of the above options are set in "<code>/etc/tuxpaint/tuxpaint.conf</code>", you can override them in your own "<code>/home/username/.tuxpaintrc</code>" file. </p>
|
||||
|
||||
<p>
|
||||
For true/false options, like "<code>noprint</code>" and "<code>grab</code>", you can simply say they equal 'no' in your "<code>/home/username/.tuxpaintrc</code>" file: </p>
|
||||
For true/false options, like "<code>noprint</code>" and "<code>grab</code>", you can simply say they equal 'no' in your personal configuration file: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>noprint=no<br>
|
||||
|
|
@ -2555,10 +2547,10 @@
|
|||
|
||||
<dd>
|
||||
<p>
|
||||
Under Linux and Unix, this prevents the system-wide configuration file, "<code>/etc/tuxpaint/tuxpaint.conf</code>", from being read. </p>
|
||||
This prevents the system-wide configuration file (e.g. <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> on Linux), from being read. </p>
|
||||
|
||||
<p>
|
||||
Only your own configuration file, "<code>/home/username/.tuxpaintrc</code>", if it exists, will be used. </p>
|
||||
Only your own configuration file (e.g. <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaintrc</code>"</nobr> on Linux) — if it exists — will be used. </p>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
|
@ -2579,7 +2571,7 @@
|
|||
|
||||
<dd>
|
||||
<p>
|
||||
Display the version number and date of the copy of Tux Paint you are running. The "--verbose-version" also lists what compile-time options were set. (See INSTALL and FAQ). </p>
|
||||
Display the version number and date of the copy of Tux Paint you are running. The "<code>--verbose-version</code>" also lists what compile-time options were set. (See <a href="INSTALL.html">INSTALL</a> and <a href="FAQ.html">FAQ</a>). </p>
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
</p>
|
||||
|
||||
<p>
|
||||
April 8, 2024 </p>
|
||||
April 27, 2024 </p>
|
||||
</center>
|
||||
</header>
|
||||
<table border="2"
|
||||
|
|
@ -318,7 +318,7 @@
|
|||
If you're using the 'portable' (ZIP-file) version of Tux Paint, or if you used the 'Tux Paint Installer,' but chose not to have shortcuts installed, you'll need to double-click the "<code>tuxpaint.exe</code>" icon in the "<code>Tux Paint</code>" folder on your computer. </p>
|
||||
|
||||
<p>
|
||||
By default, the 'Tux Paint Installer' will put Tux Paint's folder in <nobr>"<code>C:\Program Files\TuxPaint\</code>"</nobr>, though you may have changed this when you ran the installer. </p>
|
||||
By default, the 'Tux Paint Installer' will put Tux Paint's folder in <nobr>"<code style='background: #EEE;'>C:\Program Files\TuxPaint\</code>"</nobr>, though you may have changed this when you ran the installer. </p>
|
||||
|
||||
<p>
|
||||
If you used the 'ZIP-file' download, Tux Paint's folder will be wherever you extracted the contents of the ZIP file. </p>
|
||||
|
|
@ -1676,28 +1676,28 @@
|
|||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>macOS</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code>/Users/username/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Linux / Unix</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code>/home/username/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Haiku</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1818,6 +1818,10 @@
|
|||
<li>
|
||||
<a href="../magic-docs/html/index.html">'Magic' Tool Documentation ("<code>magic-docs</code>")</a><br>
|
||||
Documentation for each of the currently-installed 'Magic' tools. </li>
|
||||
|
||||
<li>
|
||||
<a href="FAQ.html">Frequently Asked Questions ("FAQs") about Tux Paint</a><br>
|
||||
Answers to, and solutions for, some common questions about, and problems with, using Tux Paint. </li>
|
||||
</ul>
|
||||
</dd>
|
||||
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@ macOS
|
|||
your system's "Application Support" folder (found under "Library" at the
|
||||
root of your filesystem):
|
||||
|
||||
/Library/Application Support/TuxPaint/
|
||||
/Library/Application Support/TuxPaint/data/
|
||||
|
||||
When you upgrade to a newer version of Tux Paint, the contents of this
|
||||
"TuxPaint" folder will stay the same, and remain accessible by all users of
|
||||
|
|
@ -118,7 +118,7 @@ Windows
|
|||
Your personal Tux Paint folder is stored in your personal "Application
|
||||
Data". For example, on newer Windows:
|
||||
|
||||
C:\Documents and Settings\(username)\Application Data\TuxPaint\
|
||||
C:\Users\username\AppData\Roaming\TuxPaint\
|
||||
|
||||
|
||||
|
||||
|
|
@ -127,18 +127,14 @@ macOS
|
|||
Your personal Tux Paint folder is stored in your personal "Application
|
||||
Support" folder:
|
||||
|
||||
/Users/(username)/Library/Application Support/TuxPaint/
|
||||
/Users/username/Library/Application Support/TuxPaint/
|
||||
|
||||
|
||||
|
||||
Linux and Unix
|
||||
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your
|
||||
account's home directory: "$(HOME)/.tuxpaint/" (also known as "~/.tuxpaint/
|
||||
").
|
||||
|
||||
That is, if your home directory is "/home/tux", then your personal Tux
|
||||
Paint files go in "/home/tux/.tuxpaint/".
|
||||
account's home directory: "/home/username/.tuxpaint/".
|
||||
|
||||
Don't forget the period (".") before the "tuxpaint"!
|
||||
|
||||
|
|
@ -149,8 +145,8 @@ To add your own brushes, stamps, 'starters,' templates, and fonts, create
|
|||
subdirectories under your personal Tux Paint directory named "brushes", "stamps
|
||||
", "starters", "templates", "fonts", respectively.
|
||||
|
||||
(For example, if you created a brush named "flower.png", you would put it in "~
|
||||
/.tuxpaint/brushes/" under Linux or Unix.)
|
||||
(For example, if you created a brush named "flower.png", you would put it in
|
||||
"/home/username/.tuxpaint/brushes/" under Linux or Unix.)
|
||||
|
||||
Brushes
|
||||
|
||||
|
|
|
|||
|
|
@ -887,9 +887,9 @@ Panel Add/Remove programs section.
|
|||
macOS
|
||||
|
||||
Delete "TuxPaint.app" from the "Applications" folder. Data files, including the
|
||||
configuration files, stamps, and saved pictures, may be found in "/Library/
|
||||
Application Support/TuxPaint" (all users) and "/Users/USERNAME/Library/
|
||||
Application Support/TuxPaint" (individual users).
|
||||
configuration files, stamps, and saved pictures, may be found in
|
||||
"/Library/Application Support/TuxPaint/" (all users) and
|
||||
"/Users/username/Library/Application Support/TuxPaint/" (individual users).
|
||||
|
||||
Linux
|
||||
|
||||
|
|
|
|||
|
|
@ -59,8 +59,7 @@ at:
|
|||
|
||||
macOS Users
|
||||
|
||||
The file you should create is called "tuxpaint.cfg" and it should be placed in
|
||||
your home folder, under the sub-folder: Library/Application Support/TuxPaint
|
||||
/Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg
|
||||
|
||||
System-Wide Configuration File
|
||||
|
||||
|
|
@ -87,8 +86,7 @@ C:\Program Files\TuxPaint\tuxpaint.cfg
|
|||
|
||||
Haiku Users
|
||||
|
||||
The file you should create is called "tuxpaint.conf" and it should be placed in
|
||||
/boot/home/config/settings/TuxPaint
|
||||
/boot/home/config/settings/TuxPaint/tuxpaint.conf
|
||||
|
||||
⚙ You can disable reading of this file altogether, leaving the settings as
|
||||
defaults (which can then be overridden by your personal config. file and/or
|
||||
|
|
@ -1174,27 +1172,27 @@ Save Printer Configuration
|
|||
Group) configuration. (Try running the command-line "xdg-user-dir
|
||||
PICTURES" to find out.)
|
||||
Typically (in an English locale), this will be a "Pictures"
|
||||
subdirectory in your home directory (i.e., "$HOME/Pictures" aka "~/
|
||||
Pictures").
|
||||
Tux Paint will fall back to using that typical directory, of no XDG
|
||||
subdirectory in your home directory (i.e.,
|
||||
"/home/username/Pictures").
|
||||
Tux Paint will fall back to using that typical directory, if no XDG
|
||||
configuration can be read, or nothing is set for
|
||||
"XDG_PICTURES_DIR".
|
||||
o Windows - "My Pictures" directory for each user (normaly "c:\Users\
|
||||
USERNAME\Pictures").
|
||||
o Windows - "My Pictures" directory for each user (normaly
|
||||
"C:\Users\username\My Pictures")
|
||||
You can directly open the folder as follows:
|
||||
# Press "[Windows]+[R]" key to open "Run ..." dialogue.
|
||||
# Enter "Shell:My Pictures" in the text box and push [OK].
|
||||
o macOS — TBD!
|
||||
|
||||
💡 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).
|
||||
be created and used. (e.g., "/home/username/Pictures/TuxPaint") When
|
||||
the "--exportdir" option is used, the exact path specified will be used
|
||||
(no "TuxPaint" subdirectory is created).
|
||||
|
||||
The directory itself (e.g., "~/Pictures/TuxPaint") will be created, if
|
||||
it doesn't exist.
|
||||
The directory itself (e.g., "/home/username/Pictures/TuxPaint") will be
|
||||
created, if it doesn't exist.
|
||||
|
||||
If the parent directory (e.g., "~/Pictures/TuxPaint") also does not
|
||||
If the parent directory (e.g., "/home/username/Pictures") also does not
|
||||
exist, Tux Paint will attempt to create it as well (but not any
|
||||
directories higher than that).
|
||||
|
||||
|
|
@ -1284,17 +1282,15 @@ Save Printer Configuration
|
|||
|
||||
If you do not override it, the default location is:
|
||||
|
||||
o Linux & Unix — Under a hidden directory named ".tuxpaint" in your
|
||||
home directory (aka "~" or "$HOME")
|
||||
Example: /home/username/.tuxpaint/brushes/
|
||||
o Windows — Inside a folder named "TuxPaint" in your "Application
|
||||
Data" folder.
|
||||
Example: C:\Documents and Settings\Username\Application Data\
|
||||
TuxPaint\brushes\
|
||||
o macOS — Inside a folder named "TuxPaint" in your "Application
|
||||
Support" folder.
|
||||
Example: /Users/Username/Library/Application Support/TuxPaint/
|
||||
brushes/
|
||||
Linux / Unix
|
||||
/home/username/.tuxpaint/
|
||||
|
||||
Windows
|
||||
C:\Users\username\AppData\Roaming\TuxPaint\
|
||||
|
||||
macoS
|
||||
/Users/username/Library/Application Support/TuxPaint/
|
||||
|
||||
|
||||
📜 Note: Prior to version 0.9.18, Tux Paint would use the same setting
|
||||
or default as for "savedir" to search for data files. As of version
|
||||
|
|
@ -1614,13 +1610,12 @@ Button Shortcuts
|
|||
|
||||
Overriding System Config. Options
|
||||
|
||||
(For Linux and Unix users)
|
||||
|
||||
If any of the above options are set in "/etc/tuxpaint/tuxpaint.conf", you
|
||||
can override them in your own "/home/username/.tuxpaintrc" file.
|
||||
If any of the above options are set in a system-wide configuration file
|
||||
(e.g. "/etc/tuxpaint/tuxpaint.conf" on Linux), you may override them in
|
||||
your own personal configuration file (e.g. "/home/username/.tuxpaintrc")
|
||||
|
||||
For true/false options, like "noprint" and "grab", you can simply say they
|
||||
equal 'no' in your "/home/username/.tuxpaintrc" file:
|
||||
equal 'no' in your personal configuration file:
|
||||
|
||||
noprint=no
|
||||
uppercase=no
|
||||
|
|
@ -1774,11 +1769,11 @@ Button Shortcuts
|
|||
|
||||
--nosysconfig
|
||||
|
||||
Under Linux and Unix, this prevents the system-wide configuration file,
|
||||
"/etc/tuxpaint/tuxpaint.conf", from being read.
|
||||
This prevents the system-wide configuration file (e.g.
|
||||
"/etc/tuxpaint/tuxpaint.conf" on Linux), from being read.
|
||||
|
||||
Only your own configuration file, "/home/username/.tuxpaintrc", if it
|
||||
exists, will be used.
|
||||
Only your own configuration file (e.g. "/home/username/.tuxpaintrc" on
|
||||
Linux) — if it exists — will be used.
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1266,6 +1266,9 @@ Using Tux Paint:
|
|||
Tux Paint's configuration.
|
||||
+ 'Magic' Tool Documentation ("magic-docs")
|
||||
Documentation for each of the currently-installed 'Magic' tools.
|
||||
+ Frequently Asked Questions ("FAQs") about Tux Paint
|
||||
Answers to, and solutions for, some common questions about, and
|
||||
problems with, using Tux Paint.
|
||||
|
||||
|
||||
How to extend Tux Paint:
|
||||
|
|
|
|||
|
|
@ -172,13 +172,11 @@
|
|||
Where this directory goes depends on what value was set for "<code>DATA_PREFIX</code>" when Tux Paint was built. See 'Install documentation' for details. </p>
|
||||
<p>
|
||||
By default, though, the directory is: <blockquote>
|
||||
<code>/usr/local/share/tuxpaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/usr/local/share/tuxpaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
<p>
|
||||
If you installed from a package, it is more likely to be: <blockquote>
|
||||
<code>/usr/share/tuxpaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/usr/share/tuxpaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -186,8 +184,7 @@
|
|||
<dd>
|
||||
<p>
|
||||
Tux Paint looks for a directory called '<code>data</code>' in the same directory as the executable. This is the directory that the installer used when installing Tux Paint e.g.: <blockquote>
|
||||
<code style="white-space: nowrap;">C:\Program Files\TuxPaint\data</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\data</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -209,8 +206,7 @@
|
|||
<span title="Information">💡</span> <em>Note:</em> If you install a newer version of Tux Paint and replace or discard the old version, you will lose changes made by following the instructions above, so keep backups of your new content (stamps, brushes, etc.). </p>
|
||||
<p>
|
||||
Tux Paint also looks for files in a "TuxPaint" folder that you can place in your system's "Application Support" folder (found under "Library" at the root of your filesystem): <blockquote>
|
||||
<code style="white-space: nowrap;">/Library/Application Support/TuxPaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/data/</code></nobr> </blockquote>
|
||||
</p>
|
||||
<p>
|
||||
When you upgrade to a newer version of Tux Paint, the contents of this "TuxPaint" folder will stay the same, and remain accessible by all users of Tux Paint. </p>
|
||||
|
|
@ -235,8 +231,7 @@
|
|||
<p>
|
||||
Your personal Tux Paint folder is stored in your personal "Application Data". For example, on newer Windows:
|
||||
<blockquote>
|
||||
<code style="white-space: nowrap;">C:\Documents and Settings\<i>(username)</i>\Application Data\TuxPaint\</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -244,17 +239,14 @@
|
|||
<dd>
|
||||
<p>
|
||||
Your personal Tux Paint folder is stored in your personal "Application Support" folder: <blockquote>
|
||||
<code style= "white-space: nowrap;">/Users/<i>(username)</i>/Library/Application Support/TuxPaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
<dt><strong>Linux and Unix</strong></dt>
|
||||
<dd>
|
||||
<p>
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your account's home directory: "<code>$(HOME)/.tuxpaint/</code>" (also known as "<code>~/.tuxpaint/</code>"). </p>
|
||||
<p>
|
||||
That is, if your home directory is "<code>/home/tux</code>", then your personal Tux Paint files go in "<code>/home/tux/.tuxpaint/</code>". </p>
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your account's home directory: <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/</code>"</nobr>. </p>
|
||||
<p>
|
||||
Don't forget the period ("<code>.</code>") before the "<code>tuxpaint</code>"! </p>
|
||||
</dd>
|
||||
|
|
@ -264,7 +256,7 @@
|
|||
To add your own brushes, stamps, 'starters,' templates, and fonts, create subdirectories under your personal Tux Paint directory named "<code><b>brushes</b></code>", "<code><b>stamps</b></code>", "<code><b>starters</b></code>", "<code><b>templates</b></code>", "<code><b>fonts</b></code>", respectively. </p>
|
||||
|
||||
<p>
|
||||
(For example, if you created a brush named "<code>flower.png</code>", you would put it in "<code>~/.tuxpaint/brushes/</code>" under Linux or Unix.) </p>
|
||||
(For example, if you created a brush named <nobr>"<code style='background: #EEE;'>flower.png</code>"</nobr>, you would put it in <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/brushes/</code>"</nobr> under Linux or Unix.) </p>
|
||||
</section><!-- H2: Personal Files -->
|
||||
</section><!-- H1: Where Files Go -->
|
||||
|
||||
|
|
|
|||
|
|
@ -317,28 +317,28 @@
|
|||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>macOS</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code>/Users/username/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Linux / Unix</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code>/home/username/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Haiku</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
|
|
@ -617,10 +617,10 @@
|
|||
|
||||
<dd>
|
||||
<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 "<code>stdout.txt</code>" in the same folder where <code>TuxPaint.exe</code> resides (e.g., in <nobr>"<code>C:\Program Files\TuxPaint\</code>"</nobr>). </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 "<code>stdout.txt</code>" in the same folder where <code>TuxPaint.exe</code> resides (e.g., in <nobr>"<code style='background: #EEE;'>C:\Program Files\TuxPaint\</code>"</nobr>). </p>
|
||||
|
||||
<p>
|
||||
A lockfile (e.g., <nobr>"<code>/home/username/.tuxpaint/lockfile.dat</code>"</nobr> on Linux and Unix, <nobr>"<code>userdata\lockfile.dat</code>"</nobr> 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). </p>
|
||||
A lockfile (e.g., <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/lockfile.dat</code>"</nobr> on Linux and Unix, <nobr>"<code style='background: #EEE;'>userdata\lockfile.dat</code>"</nobr> 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). </p>
|
||||
|
||||
<p>
|
||||
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. </p>
|
||||
|
|
@ -705,7 +705,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -713,7 +713,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -727,7 +727,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -735,7 +735,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -749,7 +749,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/etc/tuxpaint/tuxpaint.conf</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -757,7 +757,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/home/username/.tuxpaintrc</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/home/username/.tuxpaintrc</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -771,7 +771,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -783,7 +783,7 @@
|
|||
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>
|
||||
|
||||
<p>
|
||||
For example, on Linux and Unix, if <nobr>"<code>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> includes this option to disable sound... </p>
|
||||
For example, on Linux and Unix, if <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> includes this option to disable sound... </p>
|
||||
|
||||
<blockquote>
|
||||
<p>
|
||||
|
|
@ -792,7 +792,7 @@
|
|||
</blockquote>
|
||||
|
||||
<p>
|
||||
...then you can reenable sound by either adding this option to your own <nobr>"<code>/home/username/.tuxpaintrc</code>"</nobr> file: </p>
|
||||
...then you can reenable sound by either adding this option to your own <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaintrc</code>"</nobr> file: </p>
|
||||
|
||||
<blockquote>
|
||||
<p>
|
||||
|
|
|
|||
|
|
@ -723,10 +723,7 @@
|
|||
Make sure the 'Shortcut' tab is selected in the window that appears, and examine the 'Target:' field. You should see something like this: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>
|
||||
"C:\Program Files\TuxPaint\TuxPaint.exe"
|
||||
</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>"C:\Program Files\TuxPaint\TuxPaint.exe"</code></nobr> </blockquote>
|
||||
|
||||
<p>
|
||||
You can now add command-line options which will be enabled when you double-click the icon. </p>
|
||||
|
|
@ -735,10 +732,7 @@
|
|||
For example, to make the game run in fullscreen mode, with simple shapes (no rotation option) and in French, add the options (after 'TuxPaint.exe'), like so: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>
|
||||
"C:\Program Files\TuxPaint\TuxPaint.exe" -f -s --lang french
|
||||
</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>"C:\Program Files\TuxPaint\TuxPaint.exe" -f -s --lang french</code></nobr> </blockquote>
|
||||
|
||||
<p>
|
||||
(See the main documentation for a full list of available command-line options.) </p>
|
||||
|
|
@ -757,7 +751,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "<code>stderr.txt</code>" in your personal saving folder for TuxPaint which is normaly <nobr>"<code>C:\Users\username\AppData\Roaming\TuxPaint\</code>"</nobr>. </p>
|
||||
If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "<code>stderr.txt</code>" in your personal saving folder for TuxPaint which is normaly <nobr>"<code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\</code>"</nobr>. </p>
|
||||
|
||||
<p>
|
||||
It will contain a description of what was wrong. Usually it will just be due to incorrect character-case (capital 'Z' instead of lowercase 'z') or a missing (or extra) '-' (dash). </p>
|
||||
|
|
@ -1375,7 +1369,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
Delete "<code>TuxPaint.app</code>" from the "Applications" folder. Data files, including the configuration files, stamps, and saved pictures, may be found in "<code style="white-space: nowrap;">/Library/Application Support/TuxPaint</code>" (all users) and "<code style="white-space: nowrap;">/Users/<i>USERNAME</i>/Library/Application Support/TuxPaint</code>" (individual users). </p>
|
||||
Delete "<code>TuxPaint.app</code>" from the "Applications" folder. Data files, including the configuration files, stamps, and saved pictures, may be found in <nobr>"<code style='background: #EEE;'>/Library/Application Support/TuxPaint/</code>"</nobr> (all users) and <nobr>"<code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/</code>"</nobr> (individual users). </p>
|
||||
</section><!-- H2: macOS -->
|
||||
|
||||
<section class="indent"><!-- H2: Linux -->
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
</p>
|
||||
|
||||
<p>
|
||||
abril 7, 2024 </p>
|
||||
abril 27, 2024 </p>
|
||||
</center>
|
||||
</header>
|
||||
|
||||
|
|
@ -169,8 +169,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<code>/home/username/.tuxpaintrc</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>/home/username/.tuxpaintrc</code></nobr> </p>
|
||||
</div>
|
||||
|
||||
<section class="indent"><!-- H3: System-Wide Configuration File -->
|
||||
|
|
@ -183,8 +182,7 @@
|
|||
Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>/etc/tuxpaint/tuxpaint.conf</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code></nobr> </blockquote>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: Linux and Unix Users -->
|
||||
|
||||
|
|
@ -195,7 +193,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
The file you should create is called "<code><b>tuxpaint.cfg</b></code>" and it should be placed in your home folder, under the sub-folder: <code>Library/Application Support/TuxPaint</code> </p>
|
||||
<nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
|
||||
<section class="indent"><!-- H3: System-Wide Configuration File -->
|
||||
<header>
|
||||
|
|
@ -207,8 +205,7 @@
|
|||
Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>/Library/Application Support/TuxPaint/tuxpaint.cfg</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </blockquote>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: macOS Users -->
|
||||
|
||||
|
|
@ -219,8 +216,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<code>C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
|
||||
<p>
|
||||
You can use NotePad or WordPad to create this file. Be sure to save it as Plain Text, and make sure the filename doesn't have ".txt" at the end... </p>
|
||||
|
|
@ -235,8 +231,7 @@
|
|||
Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at: </p>
|
||||
|
||||
<p>
|
||||
<code>C:\Program Files\TuxPaint\tuxpaint.cfg</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: Windows Users -->
|
||||
|
||||
|
|
@ -247,7 +242,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
The file you should create is called "<code><b>tuxpaint.conf</b></code>" and it should be placed in <code>/boot/home/config/settings/TuxPaint</code> </p>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
</section><!-- H2: Haiku Users -->
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1790,19 +1785,19 @@
|
|||
<dt>Linux / Unix</dt>
|
||||
<dd>
|
||||
Under a hidden directory in your home directory:<br/>
|
||||
<nobr><code>/home/username/.tuxpaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/home/username/.tuxpaint/saved/</code></nobr> </dd>
|
||||
|
||||
<dt>Windows</dt>
|
||||
<dd>
|
||||
<nobr><code>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code></nobr> </dd>
|
||||
|
||||
<dt>macOS</dt>
|
||||
<dd>
|
||||
<nobr><code>/Users/username/Library/Application Support/TuxPaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/saved/</code></nobr> </dd>
|
||||
|
||||
<dt>Haiku</dt>
|
||||
<dd>
|
||||
<nobr><code>/boot/home/config/settings/TuxPaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code></nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1828,9 +1823,9 @@
|
|||
|
||||
<ul>
|
||||
<li>Linux & Unix — If available, wherever your desktop environment is configured for pictures to be stored, based on your XDG (X Desktop Group) configuration. (Try running the command-line "<code style="white-space: nowrap;">xdg-user-dir PICTURES</code>" to find out.)<br>
|
||||
Typically (in an English locale), this will be a "<code>Pictures</code>" subdirectory in your home directory (i.e., "<code>$HOME/Pictures</code>" aka "<code>~/Pictures</code>").<br>
|
||||
Tux Paint will fall back to using that typical directory, of no XDG configuration can be read, or nothing is set for "<code>XDG_PICTURES_DIR</code>". </li>
|
||||
<li>Windows - "My Pictures" directory for each user (normaly "c:\Users\<i>USERNAME</i>\Pictures").<br>You can directly open the folder as follows: <ul>
|
||||
Typically (in an English locale), this will be a "<code>Pictures</code>" subdirectory in your home directory (i.e., <nobr>"<code style='background: #EEE;'>/home/username/Pictures</code>"</nobr>).<br>
|
||||
Tux Paint will fall back to using that typical directory, if no XDG configuration can be read, or nothing is set for "<code>XDG_PICTURES_DIR</code>". </li>
|
||||
<li>Windows - "My Pictures" directory for each user (normaly <nobr>"<code style='background: #EEE;'>C:\Users\username\My Pictures</code>"</nobr>)<br>You can directly open the folder as follows: <ul>
|
||||
<li>Press "[Windows]+[R]" key to open "Run ..." dialogue.</li>
|
||||
<li>Enter "Shell:My Pictures" in the text box and push [OK].</li>
|
||||
</ul>
|
||||
|
|
@ -1841,11 +1836,11 @@
|
|||
</ul>
|
||||
|
||||
<p class="note">
|
||||
<span title="Information">💡</span> <strong>Note:</strong> When the defaults are used, a new "<code>TuxPaint</code>" subdirectory will be created 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). </p>
|
||||
<span title="Information">💡</span> <strong>Note:</strong> When the defaults are used, a new "<code>TuxPaint</code>" subdirectory will be created and used. (e.g., <nobr>"<code style='background: #EEE;'>/home/username/Pictures/TuxPaint</code>"</nobr>) When the "<code>--exportdir</code>" option is used, the exact path specified will be used (no "<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>
|
||||
The directory itself (e.g., <nobr>"<code style='background: #EEE;'>/home/username/Pictures/TuxPaint</code>"</nobr>) will be created, if it doesn't exist. </p>
|
||||
<p>
|
||||
If the <em>parent</em> directory (e.g., "<code>~/Pictures/TuxPaint</code>") also does not exist, Tux Paint will attempt to create it as well (but not any directories higher than that). </p>
|
||||
If the <em>parent</em> directory (e.g., <nobr>"<code style='background: #EEE;'>/home/username/Pictures</code>"</nobr>) also does not exist, Tux Paint will attempt to create it as well (but not any directories higher than that). </p>
|
||||
|
||||
<p>
|
||||
Example: <code>exportdir=/home/penguin/TuxPaintExports</code> </p>
|
||||
|
|
@ -1947,16 +1942,17 @@
|
|||
<p>
|
||||
If you do not override it, the <b><i>default</i></b> location is: </p>
|
||||
|
||||
<ul>
|
||||
<li>Linux & Unix — Under a hidden directory named "<code>.tuxpaint</code>" in your home directory (aka "<code>~</code>" or "<code>$HOME</code>")<br>
|
||||
Example: <code>/home/<i>username</i>/.tuxpaint/brushes/</code> </li>
|
||||
<dl>
|
||||
<dt>Linux / Unix</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>/home/username/.tuxpaint/</code></nobr></dd>
|
||||
|
||||
<li>Windows — Inside a folder named "<code>TuxPaint</code>" in your "<code>Application Data</code>" folder.<br>
|
||||
Example: <code>C:\Documents and Settings\<i>Username</i>\Application Data\TuxPaint\brushes\</code> </li>
|
||||
<dt>Windows</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\</code></nobr></dd>
|
||||
|
||||
<li>macOS — Inside a folder named "<code>TuxPaint</code>" in your "<code>Application Support</code>" folder.<br>
|
||||
Example: <code>/Users/<i>Username</i>/Library/Application Support/TuxPaint/brushes/</code> </li>
|
||||
</ul>
|
||||
<dt>macoS</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/</code></nobr></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
<span title="Version variation">📜</span> <strong>Note:</strong> Prior to version 0.9.18, Tux Paint would use the same setting or default as for "<code>savedir</code>" to search for data files. As of version 0.9.18, they may be specified separately. </p>
|
||||
|
|
@ -2377,14 +2373,10 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<i>(For Linux and Unix users)</i>
|
||||
</p>
|
||||
If any of the above options are set in a system-wide configuration file (e.g. <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> on Linux), you may override them in your own personal configuration file (e.g. <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaintrc</code>"</nobr>) </p>
|
||||
|
||||
<p>
|
||||
If any of the above options are set in "<code>/etc/tuxpaint/tuxpaint.conf</code>", you can override them in your own "<code>/home/username/.tuxpaintrc</code>" file. </p>
|
||||
|
||||
<p>
|
||||
For true/false options, like "<code>noprint</code>" and "<code>grab</code>", you can simply say they equal 'no' in your "<code>/home/username/.tuxpaintrc</code>" file: </p>
|
||||
For true/false options, like "<code>noprint</code>" and "<code>grab</code>", you can simply say they equal 'no' in your personal configuration file: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>noprint=no<br>
|
||||
|
|
@ -2555,10 +2547,10 @@
|
|||
|
||||
<dd>
|
||||
<p>
|
||||
Under Linux and Unix, this prevents the system-wide configuration file, "<code>/etc/tuxpaint/tuxpaint.conf</code>", from being read. </p>
|
||||
This prevents the system-wide configuration file (e.g. <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> on Linux), from being read. </p>
|
||||
|
||||
<p>
|
||||
Only your own configuration file, "<code>/home/username/.tuxpaintrc</code>", if it exists, will be used. </p>
|
||||
Only your own configuration file (e.g. <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaintrc</code>"</nobr> on Linux) — if it exists — will be used. </p>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
|
@ -2579,7 +2571,7 @@
|
|||
|
||||
<dd>
|
||||
<p>
|
||||
Display the version number and date of the copy of Tux Paint you are running. The "--verbose-version" also lists what compile-time options were set. (See INSTALL and FAQ). </p>
|
||||
Display the version number and date of the copy of Tux Paint you are running. The "<code>--verbose-version</code>" also lists what compile-time options were set. (See <a href="INSTALL.html">INSTALL</a> and <a href="FAQ.html">FAQ</a>). </p>
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
</p>
|
||||
|
||||
<p>
|
||||
abril 8, 2024 </p>
|
||||
abril 27, 2024 </p>
|
||||
</center>
|
||||
</header>
|
||||
<table border="2"
|
||||
|
|
@ -318,7 +318,7 @@
|
|||
If you're using the 'portable' (ZIP-file) version of Tux Paint, or if you used the 'Tux Paint Installer,' but chose not to have shortcuts installed, you'll need to double-click the "<code>tuxpaint.exe</code>" icon in the "<code>Tux Paint</code>" folder on your computer. </p>
|
||||
|
||||
<p>
|
||||
By default, the 'Tux Paint Installer' will put Tux Paint's folder in <nobr>"<code>C:\Program Files\TuxPaint\</code>"</nobr>, though you may have changed this when you ran the installer. </p>
|
||||
By default, the 'Tux Paint Installer' will put Tux Paint's folder in <nobr>"<code style='background: #EEE;'>C:\Program Files\TuxPaint\</code>"</nobr>, though you may have changed this when you ran the installer. </p>
|
||||
|
||||
<p>
|
||||
If you used the 'ZIP-file' download, Tux Paint's folder will be wherever you extracted the contents of the ZIP file. </p>
|
||||
|
|
@ -1676,28 +1676,28 @@
|
|||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>macOS</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code>/Users/username/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Linux / Unix</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code>/home/username/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Haiku</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1818,6 +1818,10 @@
|
|||
<li>
|
||||
<a href="../magic-docs/html/index.html">'Magic' Tool Documentation ("<code>magic-docs</code>")</a><br>
|
||||
Documentation for each of the currently-installed 'Magic' tools. </li>
|
||||
|
||||
<li>
|
||||
<a href="FAQ.html">Frequently Asked Questions ("FAQs") about Tux Paint</a><br>
|
||||
Answers to, and solutions for, some common questions about, and problems with, using Tux Paint. </li>
|
||||
</ul>
|
||||
</dd>
|
||||
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ macOS
|
|||
vous pouvez placer dans votre dossier système "Application Support" (situé
|
||||
sous "Library" à la racine de votre système de fichiers) :
|
||||
|
||||
/Library/Application Support/TuxPaint/
|
||||
/Library/Application Support/TuxPaint/data/
|
||||
|
||||
Lorsque vous passez à une version plus récente de Tux Paint , le contenu de
|
||||
ce dossier "TuxPaint" restera à la même place et restera accessible à tous
|
||||
|
|
@ -126,8 +126,7 @@ Windows
|
|||
Votre dossier personnel Tux Paint est stocké dans votre dossier
|
||||
"Application Data". Par exemple, sur un Windows plus récent :
|
||||
|
||||
C:\Documents and Settings\(nom d'utilisateur)\Application Data\TuxPaint
|
||||
\
|
||||
C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\
|
||||
|
||||
|
||||
|
||||
|
|
@ -136,18 +135,14 @@ macOS
|
|||
Votre dossier personnel Tux Paint est stocké dans votre dossier
|
||||
«Application Support» :
|
||||
|
||||
/Users/(nom d'utilisateur)/Library/Application Support/TuxPaint/
|
||||
/Users/nom d'utilisateur/Library/Application Support/TuxPaint/
|
||||
|
||||
|
||||
|
||||
Linux et Unix
|
||||
|
||||
Vos fichiers personnels Tux Paint vont dans un 'répertoire caché' que l'on
|
||||
trouve dans votre répertoire personnel "$(HOME)/.tuxpaint/" (également
|
||||
appelé "~/.tuxpaint/".
|
||||
|
||||
Autrement dit, si votre répertoire personnel est "/home/tux", alors votre
|
||||
répertoire Tux Paint est "/home/tux/.tuxpaint/".
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your
|
||||
account's home directory: "/home/nom d'utilisateur/.tuxpaint/".
|
||||
|
||||
N'oubliez pas le point (" .") avant le "tuxpaint" !
|
||||
|
||||
|
|
@ -159,8 +154,8 @@ et des polices créez des sous-répertoires dans votre répertoire personnel Tux
|
|||
Paint nommés respectivement "brushes", "stamps", "starters", "templates", "
|
||||
fonts".
|
||||
|
||||
(Par exemple, si vous avez créé un pinceau nommé "flower.png", vous le mettrez
|
||||
dans "~/.tuxpaint/brushes/" sous Linux ou Unix.)
|
||||
(For example, if you created a brush named "flower.png", you would put it in
|
||||
"/home/nom d'utilisateur/.tuxpaint/brushes/" under Linux or Unix.)
|
||||
|
||||
Pinceaux
|
||||
|
||||
|
|
|
|||
|
|
@ -923,11 +923,11 @@ dans la Section Ajout / Suppression de programmes du Panneau de configuration.
|
|||
|
||||
macOS
|
||||
|
||||
Enlevez "TuxPaint.app" du dossier "Applications". Les fichiers de données les
|
||||
fichiers de configuration, les tampons et les images sauvegardées peuvent être
|
||||
trouvées dans "/Bibliothèque/Support d'Application/Tux Paint" (pour tous les
|
||||
utilisateurs) et "/Users/USERNAME/Library/Application Support/TuxPaint" pour
|
||||
les utilisateurs individuels.
|
||||
Delete "TuxPaint.app" from the "Applications" folder. Data files, including the
|
||||
configuration files, stamps, and saved pictures, may be found in
|
||||
"/Library/Application Support/TuxPaint/" (all users) and
|
||||
"/Users/nom d'utilisateur/Library/Application Support/TuxPaint/" (individual
|
||||
users).
|
||||
|
||||
Linux
|
||||
|
||||
|
|
|
|||
|
|
@ -61,9 +61,7 @@ activés.) Il se trouve normalement ici :
|
|||
|
||||
Utilisateurs de macOS
|
||||
|
||||
Le fichier que vous devez créer s'appelle "tuxpaint.cfg" et il doit être placé
|
||||
dans votre dossier de départ, sous le sous-dossier : Library/Application
|
||||
Support/TuxPaint
|
||||
/Users/nom d'utilisateur/Library/Application Support/TuxPaint/tuxpaint.cfg
|
||||
|
||||
Fichier de configuration pour l'ensemble du système
|
||||
|
||||
|
|
@ -91,8 +89,7 @@ C:\Program Files\TuxPaint\tuxpaint.cfg
|
|||
|
||||
Haiku Users
|
||||
|
||||
The file you should create is called "tuxpaint.conf" and it should be placed in
|
||||
/boot/home/config/settings/TuxPaint
|
||||
/boot/home/config/settings/TuxPaint/tuxpaint.conf
|
||||
|
||||
⚙ Vous pouvez désactiver complètement la lecture de ce fichier, en laissant les
|
||||
paramètres par défaut (qui peuvent ensuite être remplacés par votre fichier
|
||||
|
|
@ -1236,32 +1233,32 @@ Sauvegarder la configuration d'impression
|
|||
en fonction de votre configuration XDG (X Desktop Group). (Essayez
|
||||
d'exécuter en ligne de commande "xdg-user-dir PICTURES" pour le
|
||||
savoir.)
|
||||
Typiquement (dans un environnement local anglais), ce sera "Images"
|
||||
dans votre répertoire personnel (c'est-à-dire "$HOME/Images" aka "~
|
||||
/Images").
|
||||
Tux Paint utilisera ce répertoire typique, si aucune configuration
|
||||
XDG ne peut être lue, ou rien n'est défini pour "XDG_PICTURES_DIR".
|
||||
o Windows - "Mes images" répertoire de chaque utilisateur
|
||||
(normalement "c:\Users\USERNAME\Pictures").
|
||||
Vous pouvez ouvrir directement le répertoire comme ceci :
|
||||
Typically (in an English locale), this will be a "Images"
|
||||
subdirectory in your home directory (i.e.,
|
||||
"/home/nom d'utilisateur/Images").
|
||||
Tux Paint will fall back to using that typical directory, if no XDG
|
||||
configuration can be read, or nothing is set for
|
||||
"XDG_PICTURES_DIR".
|
||||
o Windows - "Mes images" directory for each user (normaly
|
||||
"C:\Users\nom d'utilisateur\My Pictures")
|
||||
You can directly open the folder as follows:
|
||||
# Pressez la touche "[Windows]+[R]" pour ouvrir la boîte de
|
||||
dialogue "Exécuter ...".
|
||||
# Tapez "Shell:My Pictures" dans la zone de saisie et cliquez sur
|
||||
OK.
|
||||
o macOS — TBD!
|
||||
|
||||
💡 Note : Quand les réglages par défaut sont utilisés, un nouveau
|
||||
sous-répertoire "TuxPaint" sera créé puis utilisé(par ex "~/Images/
|
||||
TuxPaint"). Quand l'option "--exportdir" est utilisée, le chemin exact
|
||||
qui a été spécifié sera utilisé (pas de sous-répertoire "TuxPaint"
|
||||
créé).
|
||||
💡 Note: When the defaults are used, a new "TuxPaint" subdirectory will
|
||||
be created and used. (e.g., "/home/nom d'utilisateur/Images/TuxPaint")
|
||||
When the "--exportdir" option is used, the exact path specified will be
|
||||
used (no "TuxPaint" subdirectory is created).
|
||||
|
||||
Le répertoire lui-même (par ex. "~/Images/TuxPaint") sera créé, s'il
|
||||
n'existe pas.
|
||||
The directory itself (e.g., "/home/nom d'utilisateur/Images/TuxPaint")
|
||||
will be created, if it doesn't exist.
|
||||
|
||||
Si le répertoire parent (par ex "~/Images/TuxPaint") n'existe pas non
|
||||
plus, Tux Paint essayera aussi de le créer (mais de répertoire plus
|
||||
haut que celui-là).
|
||||
If the parent directory (e.g., "/home/nom d'utilisateur/Images") also
|
||||
does not exist, Tux Paint will attempt to create it as well (but not
|
||||
any directories higher than that).
|
||||
|
||||
Exemple: exportdir=/home/penguin/TuxPaintExports
|
||||
|
||||
|
|
@ -1355,17 +1352,15 @@ Sauvegarder la configuration d'impression
|
|||
|
||||
Si vous ne le changez pas, l' emplacement par défaut est :
|
||||
|
||||
o Linux & Unix - Sous un répertoire caché nommé ".tuxpaint" dans
|
||||
votre répertoire personnel (aka "~" ou "$HOME")
|
||||
Exemple: /home/username/.tuxpaint/brushes/
|
||||
o Windows - Dans un dossier nommé "TuxPaint" dans votre dossier
|
||||
"Application Data".
|
||||
Exemple: C:\Documents and Settings\Username\Application Data\
|
||||
TuxPaint\brushes\
|
||||
o macOS - Dans un dossier nommé "TuxPaint" dans votre dossier
|
||||
"Application Support".
|
||||
Exemple: /Users/Username/Library/Application Support/TuxPaint/
|
||||
brushes/
|
||||
Linux / Unix
|
||||
/home/nom d'utilisateur/.tuxpaint/
|
||||
|
||||
Windows
|
||||
C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\
|
||||
|
||||
macoS
|
||||
/Users/nom d'utilisateur/Library/Application Support/TuxPaint/
|
||||
|
||||
|
||||
📜 Note : Avant la version 0.9.18, Tux Paint utlisait les mêmes réglages
|
||||
que "savedir" pour chercher les fichiers de données. Depuis la version
|
||||
|
|
@ -1706,15 +1701,13 @@ Boutons pour raccourcis
|
|||
|
||||
Écraser des options de System Config
|
||||
|
||||
(Pour les utilisateurs Linux et Unix)
|
||||
If any of the above options are set in a system-wide configuration file
|
||||
(e.g. "/etc/tuxpaint/tuxpaint.conf" on Linux), you may override them in
|
||||
your own personal configuration file (e.g.
|
||||
"/home/nom d'utilisateur/.tuxpaintrc")
|
||||
|
||||
Si l'une des options ci-dessus est définie dans " /etc/tuxpaint/
|
||||
tuxpaint.conf", vous pouvez la remplacer dans votre propre fichier "/home/
|
||||
nom d'utilisateur/.tuxpaintrc ".
|
||||
|
||||
Pour les options vrai / faux, comme "noprint" et "grab", vous pouvez
|
||||
simplement dire qu'elles sont égales à "no" dans votre fichier "/home/nom
|
||||
d'utilisateur/.tuxpaintrc" :
|
||||
For true/false options, like "noprint" and "grab", you can simply say they
|
||||
equal 'no' in your personal configuration file:
|
||||
|
||||
noprint=no
|
||||
uppercase=no
|
||||
|
|
@ -1869,11 +1862,12 @@ Boutons pour raccourcis
|
|||
|
||||
--nosysconfig
|
||||
|
||||
Sous Linux et Unix, cela empêche la lecture du fichier de configuration
|
||||
système "/etc/tuxpaint/tuxpaint.conf".
|
||||
This prevents the system-wide configuration file (e.g.
|
||||
"/etc/tuxpaint/tuxpaint.conf" on Linux), from being read.
|
||||
|
||||
Seul votre propre fichier de configuration, "/home/nom d'utilisateur
|
||||
/.tuxpaintrc", s'il existe, sera utilisé.
|
||||
Only your own configuration file (e.g.
|
||||
"/home/nom d'utilisateur/.tuxpaintrc" on Linux) — if it exists — will
|
||||
be used.
|
||||
|
||||
|
||||
|
||||
|
|
@ -1886,9 +1880,9 @@ Boutons pour raccourcis
|
|||
--version
|
||||
--verbose-version
|
||||
|
||||
Affiche le numéro de version et la date de la copie de Tux Paint que
|
||||
vous utilisez. La "--verbose-version" répertorie également les options
|
||||
de compilation définies. (Voir INSTALL et FAQ.
|
||||
Display the version number and date of the copy of Tux Paint you are
|
||||
running. The "--verbose-version" also lists what compile-time options
|
||||
were set. (See INSTALL and FAQ).
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1354,6 +1354,9 @@ Utiliser Tux Paint :
|
|||
l'outil Tux Paint Config.
|
||||
+ Documentation sur l'outil 'Magie' ("magic-docs")
|
||||
Documentation pour chacun des outils "Magic" actuellement installés.
|
||||
+ Frequently Asked Questions ("FAQs") about Tux Paint
|
||||
Answers to, and solutions for, some common questions about, and
|
||||
problems with, using Tux Paint.
|
||||
|
||||
|
||||
Extensions pour Tux Paint :
|
||||
|
|
|
|||
|
|
@ -172,13 +172,11 @@
|
|||
L'emplacement de ce répertoire dépend de la valeur définie pour "<code>DATA_PREFIX</code>" lors de la construction de Tux Paint . Voir INSTALL. pour plus de détails. </p>
|
||||
<p>
|
||||
Par défaut, ce répertoire est : <blockquote>
|
||||
<code>/usr/local/share/tuxpaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/usr/local/share/tuxpaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
<p>
|
||||
Si vous l'avez installé à partir d'un paquetage, c'est plutôt : <blockquote>
|
||||
<code>/usr/share/tuxpaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/usr/share/tuxpaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -186,8 +184,7 @@
|
|||
<dd>
|
||||
<p>
|
||||
Tux Paint recherche un répertoire appelé 'data' dans le même répertoire que l'exécutable. C'est le répertoire que l'installateur a utilisé lors de l'installation de Tux Paint, par exemple : <blockquote>
|
||||
<code style="white-space: nowrap;">C:\Program Files\TuxPaint\data</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\data</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -209,8 +206,7 @@
|
|||
<span title="Information">💡</span> <em>Remarque :</em> Si vous installez une version plus récente de Tux Paint et remplacez ou supprimez l'ancienne version, vous perdrez les modifications apportées avec les instructions ci-dessus, faites donc des sauvegardes de votre nouveau contenu (tampons,pinceaux, etc.). </p>
|
||||
<p>
|
||||
Tux Paint recherche également les fichiers dans un dossier "Tux Paint" que vous pouvez placer dans votre dossier système "Application Support" (situé sous "Library" à la racine de votre système de fichiers) : <blockquote>
|
||||
<code style="white-space: nowrap;">/Library/Application Support/TuxPaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/data/</code></nobr> </blockquote>
|
||||
</p>
|
||||
<p>
|
||||
Lorsque vous passez à une version plus récente de Tux Paint , le contenu de ce dossier "TuxPaint" restera à la même place et restera accessible à tous les utilisateurs de Tux Paint . </p>
|
||||
|
|
@ -235,8 +231,7 @@
|
|||
<p>
|
||||
Votre dossier personnel Tux Paint est stocké dans votre dossier "Application Data". Par exemple, sur un Windows plus récent :
|
||||
<blockquote>
|
||||
<code style="white-space: nowrap;">C:\Documents and Settings\<i>(nom d'utilisateur)</i>\Application Data\TuxPaint\</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -244,17 +239,14 @@
|
|||
<dd>
|
||||
<p>
|
||||
Votre dossier personnel Tux Paint est stocké dans votre dossier «Application Support» : <blockquote>
|
||||
<code style= "white-space: nowrap;">/Users/<i>(nom d'utilisateur)</i>/Library/Application Support/TuxPaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Users/nom d'utilisateur/Library/Application Support/TuxPaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
<dt><strong>Linux et Unix</strong></dt>
|
||||
<dd>
|
||||
<p>
|
||||
Vos fichiers personnels Tux Paint vont dans un 'répertoire caché' que l'on trouve dans votre répertoire personnel "<code>$(HOME)/.tuxpaint/</code>" (également appelé "<code>~/.tuxpaint/</code>". </p>
|
||||
<p>
|
||||
Autrement dit, si votre répertoire personnel est "<code>/home/tux</code>", alors votre répertoire Tux Paint est "<code>/home/tux/.tuxpaint/</code>". </p>
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your account's home directory: <nobr>"<code style='background: #EEE;'>/home/nom d'utilisateur/.tuxpaint/</code>"</nobr>. </p>
|
||||
<p>
|
||||
N'oubliez pas le point (" <code>.</code>") avant le "<code>tuxpaint</code>" ! </p>
|
||||
</dd>
|
||||
|
|
@ -264,7 +256,7 @@
|
|||
Pour ajouter des pinceaux, des tampons, des 'images de démarrage',des modèles et des polices créez des sous-répertoires dans votre répertoire personnel Tux Paint nommés respectivement "<code><b>brushes</b></code>", "<code><b>stamps</b></code>", "<code><b>starters</b></code>", "<code><b>templates</b></code>", "<code><b>fonts</b></code>". </p>
|
||||
|
||||
<p>
|
||||
(Par exemple, si vous avez créé un pinceau nommé "<code>flower.png</code>", vous le mettrez dans "<code>~/.tuxpaint/brushes/</code>" sous Linux ou Unix.) </p>
|
||||
(For example, if you created a brush named <nobr>"<code style='background: #EEE;'>flower.png</code>"</nobr>, you would put it in <nobr>"<code style='background: #EEE;'>/home/nom d'utilisateur/.tuxpaint/brushes/</code>"</nobr> under Linux or Unix.) </p>
|
||||
</section><!-- H2: Personal Files -->
|
||||
</section><!-- H1: Where Files Go -->
|
||||
|
||||
|
|
|
|||
|
|
@ -317,28 +317,28 @@
|
|||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code>C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>macOS</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code>/Users/nom d'utilisateur/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/Users/nom d'utilisateur/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Linux / Unix</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code>/home/nom d'utilisateur/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/home/nom d'utilisateur/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Haiku</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
|
|
@ -618,10 +618,10 @@ cible "nosound". (c'est-à-dire, ne lancez pas "<code>make nosound</code>") Assu
|
|||
|
||||
<dd>
|
||||
<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 "<code>stdout.txt</code>" in the same folder where <code>TuxPaint.exe</code> resides (e.g., in <nobr>"<code>C:\Program Files\TuxPaint\</code>"</nobr>). </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 "<code>stdout.txt</code>" in the same folder where <code>TuxPaint.exe</code> resides (e.g., in <nobr>"<code style='background: #EEE;'>C:\Program Files\TuxPaint\</code>"</nobr>). </p>
|
||||
|
||||
<p>
|
||||
A lockfile (e.g., <nobr>"<code>/home/nom d'utilisateur/.tuxpaint/lockfile.dat</code>"</nobr> on Linux and Unix, <nobr>"<code>userdata\lockfile.dat</code>"</nobr> 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). </p>
|
||||
A lockfile (e.g., <nobr>"<code style='background: #EEE;'>/home/nom d'utilisateur/.tuxpaint/lockfile.dat</code>"</nobr> on Linux and Unix, <nobr>"<code style='background: #EEE;'>userdata\lockfile.dat</code>"</nobr> 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). </p>
|
||||
|
||||
<p>
|
||||
Même si le fichier de verrouillage existe, il contient l'heure de la dernière exécution de Tux Paint. Si cela fait plus de 30 secondes, Tux Paint devrait fonctionner correctement et simplement mettre à jour le fichier de verrouillage avec l'heure courante. </p>
|
||||
|
|
@ -706,7 +706,7 @@ cible "nosound". (c'est-à-dire, ne lancez pas "<code>make nosound</code>") Assu
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -714,7 +714,7 @@ cible "nosound". (c'est-à-dire, ne lancez pas "<code>make nosound</code>") Assu
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -728,7 +728,7 @@ cible "nosound". (c'est-à-dire, ne lancez pas "<code>make nosound</code>") Assu
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -736,7 +736,7 @@ cible "nosound". (c'est-à-dire, ne lancez pas "<code>make nosound</code>") Assu
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/Users/nom d'utilisateur/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/Users/nom d'utilisateur/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -750,7 +750,7 @@ cible "nosound". (c'est-à-dire, ne lancez pas "<code>make nosound</code>") Assu
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/etc/tuxpaint/tuxpaint.conf</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -758,7 +758,7 @@ cible "nosound". (c'est-à-dire, ne lancez pas "<code>make nosound</code>") Assu
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/home/nom d'utilisateur/.tuxpaintrc</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/home/nom d'utilisateur/.tuxpaintrc</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -772,7 +772,7 @@ cible "nosound". (c'est-à-dire, ne lancez pas "<code>make nosound</code>") Assu
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -784,7 +784,7 @@ cible "nosound". (c'est-à-dire, ne lancez pas "<code>make nosound</code>") Assu
|
|||
Cela signifie que si quelque chose est défini dans un fichier de configuration que vous ne souhaitez pas activer, vous devrez soit modifier le fichier config. fichier (si vous le pouvez), ou changer l'option par le biais de la ligne de commande. </p>
|
||||
|
||||
<p>
|
||||
For example, on Linux and Unix, if <nobr>"<code>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> includes this option to disable sound... </p>
|
||||
For example, on Linux and Unix, if <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> includes this option to disable sound... </p>
|
||||
|
||||
<blockquote>
|
||||
<p>
|
||||
|
|
@ -793,7 +793,7 @@ cible "nosound". (c'est-à-dire, ne lancez pas "<code>make nosound</code>") Assu
|
|||
</blockquote>
|
||||
|
||||
<p>
|
||||
...then you can reenable sound by either adding this option to your own <nobr>"<code>/home/nom d'utilisateur/.tuxpaintrc</code>"</nobr> file: </p>
|
||||
...then you can reenable sound by either adding this option to your own <nobr>"<code style='background: #EEE;'>/home/nom d'utilisateur/.tuxpaintrc</code>"</nobr> file: </p>
|
||||
|
||||
<blockquote>
|
||||
<p>
|
||||
|
|
|
|||
|
|
@ -723,10 +723,7 @@
|
|||
Assurez-vous que l'onglet "Raccourci" est sélectionné dans la fenêtre qui apparaît et examinez le champ «Cible:». Vous devriez voir quelque chose comme ceci : </p>
|
||||
|
||||
<blockquote>
|
||||
<code>
|
||||
"C:\Program Files\TuxPaint\TuxPaint.exe"
|
||||
</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>"C:\Program Files\TuxPaint\TuxPaint.exe"</code></nobr> </blockquote>
|
||||
|
||||
<p>
|
||||
Vous pouvez maintenant ajouter des options de ligne de commande qui seront activées lorsque vous double-cliquez sur l'icône. </p>
|
||||
|
|
@ -735,10 +732,7 @@
|
|||
Par exemple, pour faire fonctionner le jeu en mode plein écran, avec des formes simples (pas d'option de rotation) et en français, ajoutez les options (après 'TuxPaint.exe'), comme ceci : </p>
|
||||
|
||||
<blockquote>
|
||||
<code>
|
||||
"C:\Program Files\TuxPaint\TuxPaint.exe" -f -s --lang french
|
||||
</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>"C:\Program Files\TuxPaint\TuxPaint.exe" -f -s --lang french</code></nobr> </blockquote>
|
||||
|
||||
<p>
|
||||
(Voir «README.txt» pour une liste complète des options de ligne de commande disponibles.) </p>
|
||||
|
|
@ -757,7 +751,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "<code>stderr.txt</code>" in your personal saving folder for TuxPaint which is normaly <nobr>"<code>C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\</code>"</nobr>. </p>
|
||||
If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "<code>stderr.txt</code>" in your personal saving folder for TuxPaint which is normaly <nobr>"<code style='background: #EEE;'>C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\</code>"</nobr>. </p>
|
||||
|
||||
<p>
|
||||
Il contiendra une description de ce qui n'allait pas. Habituellement, ce sera simplement dû à une casse de caractère incorrecte (majuscule 'Z' à la place de 'z' minuscule) ou un '-' (tiret) manquant (en trop). </p>
|
||||
|
|
@ -1375,7 +1369,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
Enlevez "<code>TuxPaint.app</code>" du dossier "Applications". Les fichiers de données les fichiers de configuration, les tampons et les images sauvegardées peuvent être trouvées dans "<code style="white-space: nowrap;">/Bibliothèque/Support d'Application/Tux Paint</code>" (pour tous les utilisateurs) et "<code style="white-space: nowrap;">/Users/<i>USERNAME</i>/Library/Application Support/TuxPaint</code>" pour les utilisateurs individuels. </p>
|
||||
Delete "<code>TuxPaint.app</code>" from the "Applications" folder. Data files, including the configuration files, stamps, and saved pictures, may be found in <nobr>"<code style='background: #EEE;'>/Library/Application Support/TuxPaint/</code>"</nobr> (all users) and <nobr>"<code style='background: #EEE;'>/Users/nom d'utilisateur/Library/Application Support/TuxPaint/</code>"</nobr> (individual users). </p>
|
||||
</section><!-- H2: macOS -->
|
||||
|
||||
<section class="indent"><!-- H2: Linux -->
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
</p>
|
||||
|
||||
<p>
|
||||
avril 7, 2024 </p>
|
||||
avril 27, 2024 </p>
|
||||
</center>
|
||||
</header>
|
||||
|
||||
|
|
@ -169,8 +169,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<code>/home/nom d'utilisateur/.tuxpaintrc</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>/home/nom d'utilisateur/.tuxpaintrc</code></nobr> </p>
|
||||
</div>
|
||||
|
||||
<section class="indent"><!-- H3: System-Wide Configuration File -->
|
||||
|
|
@ -183,8 +182,7 @@
|
|||
Avant la lecture de ce fichier, un fichier de configuration à l'échelle du système est lu. (Par défaut, cette configuration n'a pas de paramètres activés.) Il se trouve normalement ici : </p>
|
||||
|
||||
<blockquote>
|
||||
<code>/etc/tuxpaint/tuxpaint.conf</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code></nobr> </blockquote>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: Linux and Unix Users -->
|
||||
|
||||
|
|
@ -195,7 +193,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
Le fichier que vous devez créer s'appelle "<code><b>tuxpaint.cfg</b></code>" et il doit être placé dans votre dossier de départ, sous le sous-dossier : <code>Library/Application Support/TuxPaint</code> </p>
|
||||
<nobr><code style='background: #EEE;'>/Users/nom d'utilisateur/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
|
||||
<section class="indent"><!-- H3: System-Wide Configuration File -->
|
||||
<header>
|
||||
|
|
@ -207,8 +205,7 @@
|
|||
Avant la lecture de ce fichier, un fichier de configuration à l'échelle du système est lu. (Par défaut, cette configuration n'a pas de paramètres activés.) Il se trouve normalement ici : </p>
|
||||
|
||||
<blockquote>
|
||||
<code>/Library/Application Support/TuxPaint/tuxpaint.cfg</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </blockquote>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: macOS Users -->
|
||||
|
||||
|
|
@ -219,8 +216,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<code>C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\tuxpaint.cfg</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
|
||||
<p>
|
||||
Vous pouvez utiliser NotePad ou WordPad pour créer ce fichier. Assurez-vous de l'enregistrer en tant que texte brut et assurez-vous que le nom de fichier ne contient pas ".txt" à la fin ... </p>
|
||||
|
|
@ -235,8 +231,7 @@
|
|||
Avant la lecture de ce fichier, un fichier de configuration à l'échelle du système est lu. (Par défaut, cette configuration n'a pas de paramètres activés.) Il se trouve normalement ici : </p>
|
||||
|
||||
<p>
|
||||
<code>C:\Program Files\TuxPaint\tuxpaint.cfg</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: Windows Users -->
|
||||
|
||||
|
|
@ -247,7 +242,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
The file you should create is called "<code><b>tuxpaint.conf</b></code>" and it should be placed in <code>/boot/home/config/settings/TuxPaint</code> </p>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
</section><!-- H2: Haiku Users -->
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1790,19 +1785,19 @@
|
|||
<dt>Linux / Unix</dt>
|
||||
<dd>
|
||||
Under a hidden directory in your home directory:<br/>
|
||||
<nobr><code>/home/nom d'utilisateur/.tuxpaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/home/nom d'utilisateur/.tuxpaint/saved/</code></nobr> </dd>
|
||||
|
||||
<dt>Windows</dt>
|
||||
<dd>
|
||||
<nobr><code>C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\saved\</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\saved\</code></nobr> </dd>
|
||||
|
||||
<dt>macOS</dt>
|
||||
<dd>
|
||||
<nobr><code>/Users/nom d'utilisateur/Library/Application Support/TuxPaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/Users/nom d'utilisateur/Library/Application Support/TuxPaint/saved/</code></nobr> </dd>
|
||||
|
||||
<dt>Haiku</dt>
|
||||
<dd>
|
||||
<nobr><code>/boot/home/config/settings/TuxPaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code></nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1828,9 +1823,9 @@
|
|||
|
||||
<ul>
|
||||
<li>Linux et Unix - Si disponible, quel que soit l'endroit où votre environnement de bureau est configuré pour le stockage des images, en fonction de votre configuration XDG (X Desktop Group). (Essayez d'exécuter en ligne de commande "<code style="white-space: nowrap;">xdg-user-dir PICTURES</code>" pour le savoir.)<br>
|
||||
Typiquement (dans un environnement local anglais), ce sera "<code>Images</code>" dans votre répertoire personnel (c'est-à-dire "<code>$HOME/Images</code>" aka "<code>~/Images</code>").<br>
|
||||
Tux Paint utilisera ce répertoire typique, si aucune configuration XDG ne peut être lue, ou rien n'est défini pour "<code>XDG_PICTURES_DIR</code>". </li>
|
||||
<li>Windows - "Mes images" répertoire de chaque utilisateur (normalement "c:\Users\<i>USERNAME</i>\Pictures").<br>Vous pouvez ouvrir directement le répertoire comme ceci : <ul>
|
||||
Typically (in an English locale), this will be a "<code>Images</code>" subdirectory in your home directory (i.e., <nobr>"<code style='background: #EEE;'>/home/nom d'utilisateur/Images</code>"</nobr>).<br>
|
||||
Tux Paint will fall back to using that typical directory, if no XDG configuration can be read, or nothing is set for "<code>XDG_PICTURES_DIR</code>". </li>
|
||||
<li>Windows - "Mes images" directory for each user (normaly <nobr>"<code style='background: #EEE;'>C:\Users\nom d'utilisateur\My Pictures</code>"</nobr>)<br>You can directly open the folder as follows: <ul>
|
||||
<li>Pressez la touche "[Windows]+[R]" pour ouvrir la boîte de dialogue "Exécuter ...".</li>
|
||||
<li>Tapez "Shell:My Pictures" dans la zone de saisie et cliquez sur OK.</li>
|
||||
</ul>
|
||||
|
|
@ -1841,11 +1836,11 @@
|
|||
</ul>
|
||||
|
||||
<p class="note">
|
||||
<span title="Information">💡</span> <strong>Note : </strong>Quand les réglages par défaut sont utilisés, un nouveau sous-répertoire "<code>TuxPaint</code>" sera créé puis utilisé(par ex "<code>~/Images/TuxPaint</code>"). Quand l'option "<code>--exportdir</code>" est utilisée, le chemin exact qui a été spécifié sera utilisé (pas de sous-répertoire "<code>TuxPaint</code>" créé). </p>
|
||||
<span title="Information">💡</span> <strong>Note:</strong> When the defaults are used, a new "<code>TuxPaint</code>" subdirectory will be created and used. (e.g., <nobr>"<code style='background: #EEE;'>/home/nom d'utilisateur/Images/TuxPaint</code>"</nobr>) When the "<code>--exportdir</code>" option is used, the exact path specified will be used (no "<code>TuxPaint</code>" subdirectory is created). </p>
|
||||
<p>
|
||||
Le répertoire lui-même (par ex. "<code>~/Images/TuxPaint</code>") sera créé, s'il n'existe pas. </p>
|
||||
The directory itself (e.g., <nobr>"<code style='background: #EEE;'>/home/nom d'utilisateur/Images/TuxPaint</code>"</nobr>) will be created, if it doesn't exist. </p>
|
||||
<p>
|
||||
Si le répertoire <em>parent</em> (par ex "<code>~/Images/TuxPaint</code>") n'existe pas non plus, Tux Paint essayera aussi de le créer (mais de répertoire plus haut que celui-là). </p>
|
||||
If the <em>parent</em> directory (e.g., <nobr>"<code style='background: #EEE;'>/home/nom d'utilisateur/Images</code>"</nobr>) also does not exist, Tux Paint will attempt to create it as well (but not any directories higher than that). </p>
|
||||
|
||||
<p>
|
||||
Exemple: <code>exportdir=/home/penguin/TuxPaintExports</code> </p>
|
||||
|
|
@ -1947,16 +1942,17 @@
|
|||
<p>
|
||||
Si vous ne le changez pas, l' emplacement par défaut est : </p>
|
||||
|
||||
<ul>
|
||||
<li>Linux & Unix - Sous un répertoire caché nommé "<code>.tuxpaint</code>" dans votre répertoire personnel (aka "<code>~</code>" ou "<code>$HOME</code>")<br>
|
||||
Exemple: <code>/home/<i>username</i>/.tuxpaint/brushes/</code> </li>
|
||||
<dl>
|
||||
<dt>Linux / Unix</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>/home/nom d'utilisateur/.tuxpaint/</code></nobr></dd>
|
||||
|
||||
<li>Windows - Dans un dossier nommé "<code>TuxPaint</code>" dans votre dossier "<code>Application Data</code>".<br>
|
||||
Exemple: <code>C:\Documents and Settings\<i>Username</i>\Application Data\TuxPaint\brushes\</code> </li>
|
||||
<dt>Windows</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\</code></nobr></dd>
|
||||
|
||||
<li>macOS - Dans un dossier nommé "<code>TuxPaint</code>" dans votre dossier "<code>Application Support</code>".<br>
|
||||
Exemple: <code>/Users/<i>Username</i>/Library/Application Support/TuxPaint/brushes/</code> </li>
|
||||
</ul>
|
||||
<dt>macoS</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>/Users/nom d'utilisateur/Library/Application Support/TuxPaint/</code></nobr></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
<span title="Version variation">📜</span> <strong>Note : </strong>Avant la version 0.9.18, Tux Paint utlisait les mêmes réglages que "<code>savedir</code>" pour chercher les fichiers de données. Depuis la version 0.9.18, ils peuvent être spécifiés séparément. </p>
|
||||
|
|
@ -2377,14 +2373,10 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<i>(Pour les utilisateurs Linux et Unix)</i>
|
||||
</p>
|
||||
If any of the above options are set in a system-wide configuration file (e.g. <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> on Linux), you may override them in your own personal configuration file (e.g. <nobr>"<code style='background: #EEE;'>/home/nom d'utilisateur/.tuxpaintrc</code>"</nobr>) </p>
|
||||
|
||||
<p>
|
||||
Si l'une des options ci-dessus est définie dans " <code>/etc/tuxpaint/tuxpaint.conf</code>", vous pouvez la remplacer dans votre propre fichier "<code>/home/nom d'utilisateur/.tuxpaintrc</code> ". </p>
|
||||
|
||||
<p>
|
||||
Pour les options vrai / faux, comme "<code>noprint</code>" et "<code>grab</code>", vous pouvez simplement dire qu'elles sont égales à "no" dans votre fichier "<code>/home/nom d'utilisateur/.tuxpaintrc</code>" : </p>
|
||||
For true/false options, like "<code>noprint</code>" and "<code>grab</code>", you can simply say they equal 'no' in your personal configuration file: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>noprint=no<br>
|
||||
|
|
@ -2555,10 +2547,10 @@
|
|||
|
||||
<dd>
|
||||
<p>
|
||||
Sous Linux et Unix, cela empêche la lecture du fichier de configuration système "<code>/etc/tuxpaint/tuxpaint.conf</code>". </p>
|
||||
This prevents the system-wide configuration file (e.g. <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> on Linux), from being read. </p>
|
||||
|
||||
<p>
|
||||
Seul votre propre fichier de configuration, "<code>/home/nom d'utilisateur/.tuxpaintrc</code>", s'il existe, sera utilisé. </p>
|
||||
Only your own configuration file (e.g. <nobr>"<code style='background: #EEE;'>/home/nom d'utilisateur/.tuxpaintrc</code>"</nobr> on Linux) — if it exists — will be used. </p>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
|
@ -2579,7 +2571,7 @@
|
|||
|
||||
<dd>
|
||||
<p>
|
||||
Affiche le numéro de version et la date de la copie de Tux Paint que vous utilisez. La "--verbose-version" répertorie également les options de compilation définies. (Voir INSTALL et FAQ. </p>
|
||||
Display the version number and date of the copy of Tux Paint you are running. The "<code>--verbose-version</code>" also lists what compile-time options were set. (See <a href="INSTALL.html">INSTALL</a> and <a href="FAQ.html">FAQ</a>). </p>
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
</p>
|
||||
|
||||
<p>
|
||||
avril 8, 2024 </p>
|
||||
avril 27, 2024 </p>
|
||||
</center>
|
||||
</header>
|
||||
<table border="2"
|
||||
|
|
@ -318,7 +318,7 @@
|
|||
Si vous avez installé Tux Paint en utilisant le téléchargement 'ZIP-file', ou si vous avez utilisé 'Tux Paint Installer', mais que vous avez choisi de ne pas installer de raccourcis, vous devrez double-cliquer sur l'icône "<code>tuxpaint.exe</code>" dans le dossier "<code>Tux Paint</code>" de votre ordinateur. </p>
|
||||
|
||||
<p>
|
||||
By default, the 'Tux Paint Installer' will put Tux Paint's folder in <nobr>"<code>C:\Program Files\TuxPaint\</code>"</nobr>, though you may have changed this when you ran the installer. </p>
|
||||
By default, the 'Tux Paint Installer' will put Tux Paint's folder in <nobr>"<code style='background: #EEE;'>C:\Program Files\TuxPaint\</code>"</nobr>, though you may have changed this when you ran the installer. </p>
|
||||
|
||||
<p>
|
||||
Si vous avez utilisé le téléchargement de 'ZIP-file', le dossier de Tux Paint sera là où vous l'avez placé lorsque vous avez décompressé le fichier ZIP. </p>
|
||||
|
|
@ -1676,28 +1676,28 @@
|
|||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code>C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>macOS</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code>/Users/nom d'utilisateur/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/Users/nom d'utilisateur/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Linux / Unix</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code>/home/nom d'utilisateur/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/home/nom d'utilisateur/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Haiku</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1818,6 +1818,10 @@
|
|||
<li>
|
||||
<a href="../magic-docs/html/index.html">Documentation sur l'outil 'Magie' ("<code>magic-docs</code>")</a><br>
|
||||
Documentation pour chacun des outils "Magic" actuellement installés. </li>
|
||||
|
||||
<li>
|
||||
<a href="FAQ.html">Frequently Asked Questions ("FAQs") about Tux Paint</a><br>
|
||||
Answers to, and solutions for, some common questions about, and problems with, using Tux Paint. </li>
|
||||
</ul>
|
||||
</dd>
|
||||
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ macOS
|
|||
seu sistema no cartafol «Application Support» (atópase en «Library» na raíz
|
||||
do seu sistema de ficheiros):
|
||||
|
||||
/Library/Application Support/TuxPaint/
|
||||
/Library/Application Support/TuxPaint/data/
|
||||
|
||||
Cando actualice a unha versión máis recente de Tux Paint, o contido deste
|
||||
cartafol «TuxPaint» seguirá sendo o mesmo e permanecerá accesíbel por todos
|
||||
|
|
@ -123,7 +123,7 @@ Windows
|
|||
O seu cartafol persoal de Tux Paint almacénase nos seus «Datos da
|
||||
aplicación» persoais. Por exemplo, nos Windows máis recentes:
|
||||
|
||||
C:\Documentos e axustes\(nome de usuario)\Datos da aplicación\TuxPaint\
|
||||
C:\Users\nome de usuario\AppData\Roaming\TuxPaint\
|
||||
|
||||
|
||||
|
||||
|
|
@ -132,18 +132,14 @@ macOS
|
|||
O seu cartafol persoal de Tux Paint almacénase no cartafol persoal
|
||||
«Application Support»:
|
||||
|
||||
/Users/(nome de usuario)/Library/Application Support/TuxPaint/
|
||||
/Users/nome de usuario/Library/Application Support/TuxPaint/
|
||||
|
||||
|
||||
|
||||
Linux e Unix
|
||||
|
||||
Os seus ficheiros persoais de Tux Paint van a un «directorio agochado» que
|
||||
se atopa no directorio persoal da súa conta: «$(HOME)/.tuxpaint/» (tamén
|
||||
coñecido como «~/.tuxpaint/»).
|
||||
|
||||
É dicir, se o seu directorio persoal é «/home/tux», entón os ficheiros
|
||||
persoais de Tux Paint entrarán en «/home/tux/.tuxpaint/».
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your
|
||||
account's home directory: "/home/nome de usuario/.tuxpaint/".
|
||||
|
||||
Non esqueza o punto («.») antes de «tuxpaint»!
|
||||
|
||||
|
|
@ -155,8 +151,8 @@ tipos de letra, cree subdirectorios no seu directorio persoal de Tux Paint
|
|||
chamados «brushes», «stamps», «starters», «templates», «fonts», ,
|
||||
respectivamente.
|
||||
|
||||
(Por exemplo, se creou un pincel chamado «flor.png», poñeríao en «~/.tuxpaint/
|
||||
brushes/» en Linux ou Unix.)
|
||||
(For example, if you created a brush named "flor.png", you would put it in
|
||||
"/home/nome de usuario/.tuxpaint/brushes/" under Linux or Unix.)
|
||||
|
||||
Pinceis
|
||||
|
||||
|
|
|
|||
|
|
@ -896,9 +896,10 @@ Eliminar programas do Panel de control.
|
|||
macOS
|
||||
|
||||
Delete "TuxPaint.app" from the "Applications" folder. Data files, including the
|
||||
configuration files, stamps, and saved pictures, may be found in "/Library/
|
||||
Application Support/TuxPaint" (all users) and "/Users/USERNAME/Library/
|
||||
Application Support/TuxPaint" (individual users).
|
||||
configuration files, stamps, and saved pictures, may be found in
|
||||
"/Library/Application Support/TuxPaint/" (all users) and
|
||||
"/Users/nome de usuario/Library/Application Support/TuxPaint/" (individual
|
||||
users).
|
||||
|
||||
Linux
|
||||
|
||||
|
|
|
|||
|
|
@ -60,8 +60,7 @@ at:
|
|||
|
||||
Usuarios de macOS
|
||||
|
||||
O ficheiro que debe crear chámase «tuxpaint.cfg» e debería colocalo no seu
|
||||
cartafol persoal, baixo o subcartafol: Library/Application Support/TuxPaint
|
||||
/Users/nome de usuario/Library/Application Support/TuxPaint/tuxpaint.cfg
|
||||
|
||||
Ficheiro de configuración de todo o sistema
|
||||
|
||||
|
|
@ -89,8 +88,7 @@ C:\Program Files\TuxPaint\tuxpaint.cfg
|
|||
|
||||
Haiku Users
|
||||
|
||||
The file you should create is called "tuxpaint.conf" and it should be placed in
|
||||
/boot/home/config/settings/TuxPaint
|
||||
/boot/home/config/settings/TuxPaint/tuxpaint.conf
|
||||
|
||||
⚙ You can disable reading of this file altogether, leaving the settings as
|
||||
defaults (which can then be overridden by your personal config. file and/or
|
||||
|
|
@ -1185,14 +1183,15 @@ Save Printer Configuration
|
|||
escritorio estea configurado para que se almacenen imaxes, en
|
||||
función da configuración XDG (X Desktop Group). (Probe a executar a
|
||||
liña de ordes «xdg-user-dir PICTURES» para descubrilo.)
|
||||
Normalmente (na configuración local inglesa), este será un
|
||||
subdirectorio «Imaxes» no seu directorio persoal (é dicir, «$HOME/
|
||||
Imaxes» tamén coñecido como «~/Imaxes»).
|
||||
Tux Paint volverá usar ese directorio habitual, se non se pode ler
|
||||
a configuración XDG, ou non se estabelece nada «XDG_PICTURES_DIR».
|
||||
o Windows: Directorio «As miñas imaxes» para cada usuario
|
||||
(normalmente «c:\Users\NOME_DE_USUARIO\Pictures»).
|
||||
Pode abrir directamente o cartafol do seguinte xeito:
|
||||
Typically (in an English locale), this will be a "Imaxes"
|
||||
subdirectory in your home directory (i.e.,
|
||||
"/home/nome de usuario/Imaxes").
|
||||
Tux Paint will fall back to using that typical directory, if no XDG
|
||||
configuration can be read, or nothing is set for
|
||||
"XDG_PICTURES_DIR".
|
||||
o Windows - "As miñas imaxes" directory for each user (normaly
|
||||
"C:\Users\nome de usuario\My Pictures")
|
||||
You can directly open the folder as follows:
|
||||
# Prema a tecla «[Windows]+[R]» para abrir o diálogo
|
||||
«Executar...».
|
||||
# Escriba «Shell: As miñas imaxes« na caixa de texto e prema en
|
||||
|
|
@ -1200,16 +1199,16 @@ Save Printer Configuration
|
|||
o macOS — TBD!
|
||||
|
||||
💡 Note: When the defaults are used, a new "TuxPaint" subdirectory will
|
||||
be created and used. (e.g., "~/Imaxes/TuxPaint") When the "--exportdir"
|
||||
option is used, the exact path specified will be used (no "TuxPaint"
|
||||
subdirectory is created).
|
||||
be created and used. (e.g., "/home/nome de usuario/Imaxes/TuxPaint")
|
||||
When the "--exportdir" option is used, the exact path specified will be
|
||||
used (no "TuxPaint" subdirectory is created).
|
||||
|
||||
O directorio en si (p. ex.: «~/Imaxes/TuxPaint») crearase, se non
|
||||
existe.
|
||||
The directory itself (e.g., "/home/nome de usuario/Imaxes/TuxPaint")
|
||||
will be created, if it doesn't exist.
|
||||
|
||||
Se o directorio pai (por exemplo, «~/Imaxes/TuxPaint») tampouco existe,
|
||||
Tux Paint tentará crealo tamén (pero non ningún directorio superior a
|
||||
ese).
|
||||
If the parent directory (e.g., "/home/nome de usuario/Imaxes") also
|
||||
does not exist, Tux Paint will attempt to create it as well (but not
|
||||
any directories higher than that).
|
||||
|
||||
Exemplo: exportdir=/home/penguin/TuxPaintExports
|
||||
|
||||
|
|
@ -1298,17 +1297,15 @@ Save Printer Configuration
|
|||
|
||||
Se non o anula, a ubicación predeterminada é:
|
||||
|
||||
o Linux e Unix: baixo un directorio agochado chamado «.tuxpaint» no
|
||||
seu directorio persoal (tamén coñecido como «~» ou «$HOME»)
|
||||
Exemplo: /home/username/.tuxpaint/brushes/
|
||||
o Windows: Dentro un cartafol chamado «TuxPaint» no seu cartafol
|
||||
«Application Data».
|
||||
Exemplo: C:\Documents and Settings\Username\Application Data\
|
||||
TuxPaint\brushes\
|
||||
o macOS: Dentro un cartafol chamado «TuxPaint» no seu cartafol
|
||||
«Application Support».
|
||||
Exemplo: /Users/Username/Library/Application Support/TuxPaint/
|
||||
brushes/
|
||||
Linux / Unix
|
||||
/home/nome de usuario/.tuxpaint/
|
||||
|
||||
Windows
|
||||
C:\Users\nome de usuario\AppData\Roaming\TuxPaint\
|
||||
|
||||
macoS
|
||||
/Users/nome de usuario/Library/Application Support/TuxPaint/
|
||||
|
||||
|
||||
📜 Note: Prior to version 0.9.18, Tux Paint would use the same setting
|
||||
or default as for "savedir" to search for data files. As of version
|
||||
|
|
@ -1642,15 +1639,13 @@ Button Shortcuts
|
|||
|
||||
Anulación da configuración do sistema. Opcións
|
||||
|
||||
(Para usuarios de Linux e Unix)
|
||||
If any of the above options are set in a system-wide configuration file
|
||||
(e.g. "/etc/tuxpaint/tuxpaint.conf" on Linux), you may override them in
|
||||
your own personal configuration file (e.g.
|
||||
"/home/nome de usuario/.tuxpaintrc")
|
||||
|
||||
Se algunha das opcións anteriores está estabelecida en «/etc/tuxpaint/
|
||||
tuxpaint.conf», pode anulala no seu propio ficheiro «/home/nome de usuario
|
||||
/.tuxpaintrc».
|
||||
|
||||
Para opcións verdadeiro/falso, como «noprint» e «grab», pode simplemente
|
||||
dicir que son iguais a «no» no seu ficheiro «/home/nome de usuario
|
||||
/.tuxpaintrc»:
|
||||
For true/false options, like "noprint" and "grab", you can simply say they
|
||||
equal 'no' in your personal configuration file:
|
||||
|
||||
noprint=no
|
||||
uppercase=no
|
||||
|
|
@ -1805,11 +1800,12 @@ Button Shortcuts
|
|||
|
||||
--nosysconfig
|
||||
|
||||
En Linux e Unix, isto evita ler o ficheiro de configuración de todo o
|
||||
sistema, «/etc/tuxpaint/tuxpaint.conf».
|
||||
This prevents the system-wide configuration file (e.g.
|
||||
"/etc/tuxpaint/tuxpaint.conf" on Linux), from being read.
|
||||
|
||||
Só se empregará o seu propio ficheiro de configuración, «/home/nome de
|
||||
usuario/.tuxpaintrc», se existe.
|
||||
Only your own configuration file (e.g.
|
||||
"/home/nome de usuario/.tuxpaintrc" on Linux) — if it exists — will be
|
||||
used.
|
||||
|
||||
|
||||
|
||||
|
|
@ -1822,10 +1818,9 @@ Button Shortcuts
|
|||
--version
|
||||
--verbose-version
|
||||
|
||||
Amosa o número de versión e a data da copia de Tux Paint que está a
|
||||
executar. O «--verbose-version» tamén lista as opcións de tempo de
|
||||
compilación definidas. (Vexa INSTALL [INSTALAR] e FAQ [Preguntas
|
||||
frecuentes] ).
|
||||
Display the version number and date of the copy of Tux Paint you are
|
||||
running. The "--verbose-version" also lists what compile-time options
|
||||
were set. (See INSTALL and FAQ).
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1293,6 +1293,9 @@ Using Tux Paint:
|
|||
+ Documentación da ferramenta «Maxia» («magic-docs»)
|
||||
Documentación para cada unha das ferramentas de «Maxia» instaladas
|
||||
actualmente.
|
||||
+ Frequently Asked Questions ("FAQs") about Tux Paint
|
||||
Answers to, and solutions for, some common questions about, and
|
||||
problems with, using Tux Paint.
|
||||
|
||||
|
||||
How to extend Tux Paint:
|
||||
|
|
|
|||
|
|
@ -172,13 +172,11 @@
|
|||
Onde vai este directorio depende do valor estabelecido para «<code>DATA_PREFIX</code>» cando se construíu Tux Paint. Vexa a «Documentación de instalación» para máis detalles. </p>
|
||||
<p>
|
||||
De xeito predeterminado, o directorio é: <blockquote>
|
||||
<code>/usr/local/share/tuxpaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/usr/local/share/tuxpaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
<p>
|
||||
Se instalou dende un paquete, o máis probábel é que sexa: <blockquote>
|
||||
<code>/usr/share/tuxpaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/usr/share/tuxpaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -186,8 +184,7 @@
|
|||
<dd>
|
||||
<p>
|
||||
Tux Paint busca un directorio chamado «<code>data</code>» no mesmo directorio que o executábel. Este é o directorio que utilizou o instalador ao instalar Tux Paint p. ex.: <blockquote>
|
||||
<code style="white-space: nowrap;">C:\Program Files\TuxPaint\data</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\data</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -209,8 +206,7 @@
|
|||
<span title="Information">💡</span> <em>Nota:</em> Se instala unha versión máis recente de Tux Paint e substitúe ou desbota a versión antiga, perderá os cambios feitos seguindo as instrucións anteriores, así que garde as copias de seguridade do seu novo contido (selos, pinceis, etc.) . </p>
|
||||
<p>
|
||||
Tux Paint tamén busca ficheiros nun cartafol «TuxPaint» que pode colocar no seu sistema no cartafol «Application Support» (atópase en «Library» na raíz do seu sistema de ficheiros): <blockquote>
|
||||
<code style="white-space: nowrap;">/Library/Application Support/TuxPaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/data/</code></nobr> </blockquote>
|
||||
</p>
|
||||
<p>
|
||||
Cando actualice a unha versión máis recente de Tux Paint, o contido deste cartafol «TuxPaint» seguirá sendo o mesmo e permanecerá accesíbel por todos os usuarios de Tux Paint. </p>
|
||||
|
|
@ -235,8 +231,7 @@
|
|||
<p>
|
||||
O seu cartafol persoal de Tux Paint almacénase nos seus «Datos da aplicación» persoais. Por exemplo, nos Windows máis recentes:
|
||||
<blockquote>
|
||||
<code style="white-space: nowrap;">C:\Documentos e axustes\<i>(nome de usuario)</i>\Datos da aplicación\TuxPaint\</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\nome de usuario\AppData\Roaming\TuxPaint\</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -244,17 +239,14 @@
|
|||
<dd>
|
||||
<p>
|
||||
O seu cartafol persoal de Tux Paint almacénase no cartafol persoal «Application Support»: <blockquote>
|
||||
<code style= "white-space: nowrap;">/Users/<i>(nome de usuario)</i>/Library/Application Support/TuxPaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Users/nome de usuario/Library/Application Support/TuxPaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
<dt><strong>Linux e Unix</strong></dt>
|
||||
<dd>
|
||||
<p>
|
||||
Os seus ficheiros persoais de Tux Paint van a un «directorio agochado» que se atopa no directorio persoal da súa conta: «<code>$(HOME)/.tuxpaint/</code>» (tamén coñecido como «<code>~/.tuxpaint/</code>»). </p>
|
||||
<p>
|
||||
É dicir, se o seu directorio persoal é «<code>/home/tux</code>», entón os ficheiros persoais de Tux Paint entrarán en «<code>/home/tux/.tuxpaint/</code>». </p>
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your account's home directory: <nobr>"<code style='background: #EEE;'>/home/nome de usuario/.tuxpaint/</code>"</nobr>. </p>
|
||||
<p>
|
||||
Non esqueza o punto («<code>.</code>») antes de «<code>tuxpaint</code>»! </p>
|
||||
</dd>
|
||||
|
|
@ -264,7 +256,7 @@
|
|||
Para engadir os seus propios pinceis, selos, «imaxes de comezo», modelos e tipos de letra, cree subdirectorios no seu directorio persoal de Tux Paint chamados «<code><b>brushes</b></code>», «<code><b>stamps</b></code>», «<code><b>starters</b></code>», «<code><b>templates</b></code>», «<code><b>fonts</b></code>», , respectivamente. </p>
|
||||
|
||||
<p>
|
||||
(Por exemplo, se creou un pincel chamado «<code>flor.png</code>», poñeríao en «<code>~/.tuxpaint/brushes/</code>» en Linux ou Unix.) </p>
|
||||
(For example, if you created a brush named <nobr>"<code style='background: #EEE;'>flor.png</code>"</nobr>, you would put it in <nobr>"<code style='background: #EEE;'>/home/nome de usuario/.tuxpaint/brushes/</code>"</nobr> under Linux or Unix.) </p>
|
||||
</section><!-- H2: Personal Files -->
|
||||
</section><!-- H1: Where Files Go -->
|
||||
|
||||
|
|
|
|||
|
|
@ -317,28 +317,28 @@
|
|||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code>C:\Users\nome de usuario\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>C:\Users\nome de usuario\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>macOS</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code>/Users/nome de usuario/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/Users/nome de usuario/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Linux / Unix</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code>/home/nome de usuario/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/home/nome de usuario/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Haiku</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
|
|
@ -617,10 +617,10 @@
|
|||
|
||||
<dd>
|
||||
<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 "<code>stdout.txt</code>" in the same folder where <code>TuxPaint.exe</code> resides (e.g., in <nobr>"<code>C:\Program Files\TuxPaint\</code>"</nobr>). </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 "<code>stdout.txt</code>" in the same folder where <code>TuxPaint.exe</code> resides (e.g., in <nobr>"<code style='background: #EEE;'>C:\Program Files\TuxPaint\</code>"</nobr>). </p>
|
||||
|
||||
<p>
|
||||
A lockfile (e.g., <nobr>"<code>/home/nome de usuario/.tuxpaint/lockfile.dat</code>"</nobr> on Linux and Unix, <nobr>"<code>userdata\lockfile.dat</code>"</nobr> 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). </p>
|
||||
A lockfile (e.g., <nobr>"<code style='background: #EEE;'>/home/nome de usuario/.tuxpaint/lockfile.dat</code>"</nobr> on Linux and Unix, <nobr>"<code style='background: #EEE;'>userdata\lockfile.dat</code>"</nobr> 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). </p>
|
||||
|
||||
<p>
|
||||
Mesmo se o ficheiro de bloqueo existe, contén a «hora» na que se executou Tux Paint por última vez. Se pasaron máis de 30 segundos, Tux Paint debería funcionar ben e simplemente actualiza o ficheiro de bloqueo coa hora actual. </p>
|
||||
|
|
@ -705,7 +705,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -713,7 +713,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>C:\Users\nome de usuario\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\nome de usuario\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -727,7 +727,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -735,7 +735,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/Users/nome de usuario/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/Users/nome de usuario/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -749,7 +749,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/etc/tuxpaint/tuxpaint.conf</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -757,7 +757,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/home/nome de usuario/.tuxpaintrc</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/home/nome de usuario/.tuxpaintrc</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -771,7 +771,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -783,7 +783,7 @@
|
|||
Isto significa que se estabelece algo nun ficheiro de configuración que non quere estabelecer, terá que cambiar o ficheiro de configuración (se pode) ou anular a opción na liña de ordes. </p>
|
||||
|
||||
<p>
|
||||
For example, on Linux and Unix, if <nobr>"<code>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> includes this option to disable sound... </p>
|
||||
For example, on Linux and Unix, if <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> includes this option to disable sound... </p>
|
||||
|
||||
<blockquote>
|
||||
<p>
|
||||
|
|
@ -792,7 +792,7 @@
|
|||
</blockquote>
|
||||
|
||||
<p>
|
||||
...then you can reenable sound by either adding this option to your own <nobr>"<code>/home/nome de usuario/.tuxpaintrc</code>"</nobr> file: </p>
|
||||
...then you can reenable sound by either adding this option to your own <nobr>"<code style='background: #EEE;'>/home/nome de usuario/.tuxpaintrc</code>"</nobr> file: </p>
|
||||
|
||||
<blockquote>
|
||||
<p>
|
||||
|
|
|
|||
|
|
@ -723,10 +723,7 @@
|
|||
Asegúrese de que a lapela «Atallo» está seleccionada na xanela que aparece e examine o campo «Obxectivo:». Debería ver algo así: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>
|
||||
"C:\Program Files\TuxPaint\TuxPaint.exe"
|
||||
</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>"C:\Program Files\TuxPaint\TuxPaint.exe"</code></nobr> </blockquote>
|
||||
|
||||
<p>
|
||||
Agora pode engadir opcións de liña de ordes que se activarán ao facer dobre clic na icona. </p>
|
||||
|
|
@ -735,10 +732,7 @@
|
|||
Por exemplo, para que o xogo se execute en modo de pantalla completa, con formas sinxelas (sen opción de rotación) e en francés, engada as opcións (após «TuxPaint.exe»), así: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>
|
||||
"C:\Program Files\TuxPaint\TuxPaint.exe" -f -s --lang french
|
||||
</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>"C:\Program Files\TuxPaint\TuxPaint.exe" -f -s --lang french</code></nobr> </blockquote>
|
||||
|
||||
<p>
|
||||
(Vexa a documentación principal para obter unha lista completa das opcións dispoñíbeis da liña de ordes.) </p>
|
||||
|
|
@ -757,7 +751,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "<code>stderr.txt</code>" in your personal saving folder for TuxPaint which is normaly <nobr>"<code>C:\Users\nome de usuario\AppData\Roaming\TuxPaint\</code>"</nobr>. </p>
|
||||
If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "<code>stderr.txt</code>" in your personal saving folder for TuxPaint which is normaly <nobr>"<code style='background: #EEE;'>C:\Users\nome de usuario\AppData\Roaming\TuxPaint\</code>"</nobr>. </p>
|
||||
|
||||
<p>
|
||||
Conterá unha descrición do que estaba mal. Normalmente só se debe a maiúsculas e minúsculas incorrectas (maiúsculas «Z» no canto de minúsculas «z») ou a falta (ou exceso) de «-» (guións). </p>
|
||||
|
|
@ -1375,7 +1369,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
Delete "<code>TuxPaint.app</code>" from the "Applications" folder. Data files, including the configuration files, stamps, and saved pictures, may be found in "<code style="white-space: nowrap;">/Library/Application Support/TuxPaint</code>" (all users) and "<code style="white-space: nowrap;">/Users/<i>USERNAME</i>/Library/Application Support/TuxPaint</code>" (individual users). </p>
|
||||
Delete "<code>TuxPaint.app</code>" from the "Applications" folder. Data files, including the configuration files, stamps, and saved pictures, may be found in <nobr>"<code style='background: #EEE;'>/Library/Application Support/TuxPaint/</code>"</nobr> (all users) and <nobr>"<code style='background: #EEE;'>/Users/nome de usuario/Library/Application Support/TuxPaint/</code>"</nobr> (individual users). </p>
|
||||
</section><!-- H2: macOS -->
|
||||
|
||||
<section class="indent"><!-- H2: Linux -->
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
</p>
|
||||
|
||||
<p>
|
||||
7 de Abril de 2024 </p>
|
||||
27 de Abril de 2024 </p>
|
||||
</center>
|
||||
</header>
|
||||
|
||||
|
|
@ -169,8 +169,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<code>/home/nome de usuario/.tuxpaintrc</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>/home/nome de usuario/.tuxpaintrc</code></nobr> </p>
|
||||
</div>
|
||||
|
||||
<section class="indent"><!-- H3: System-Wide Configuration File -->
|
||||
|
|
@ -183,8 +182,7 @@
|
|||
Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>/etc/tuxpaint/tuxpaint.conf</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code></nobr> </blockquote>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: Linux and Unix Users -->
|
||||
|
||||
|
|
@ -195,7 +193,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
O ficheiro que debe crear chámase «<code><b>tuxpaint.cfg</b></code>» e debería colocalo no seu cartafol persoal, baixo o subcartafol: <code>Library/Application Support/TuxPaint</code> </p>
|
||||
<nobr><code style='background: #EEE;'>/Users/nome de usuario/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
|
||||
<section class="indent"><!-- H3: System-Wide Configuration File -->
|
||||
<header>
|
||||
|
|
@ -207,8 +205,7 @@
|
|||
Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>/Library/Application Support/TuxPaint/tuxpaint.cfg</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </blockquote>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: macOS Users -->
|
||||
|
||||
|
|
@ -219,8 +216,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<code>C:\Users\nome de usuario\AppData\Roaming\TuxPaint\tuxpaint.cfg</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\nome de usuario\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
|
||||
<p>
|
||||
Pode usar NotePad ou WordPad para crear este ficheiro. Asegúrese de gardalo como texto simple e asegúrese de que o nome do ficheiro non teña «.txt» ao final... </p>
|
||||
|
|
@ -235,8 +231,7 @@
|
|||
Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at: </p>
|
||||
|
||||
<p>
|
||||
<code>C:\Program Files\TuxPaint\tuxpaint.cfg</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: Windows Users -->
|
||||
|
||||
|
|
@ -247,7 +242,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
The file you should create is called "<code><b>tuxpaint.conf</b></code>" and it should be placed in <code>/boot/home/config/settings/TuxPaint</code> </p>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
</section><!-- H2: Haiku Users -->
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1790,19 +1785,19 @@
|
|||
<dt>Linux / Unix</dt>
|
||||
<dd>
|
||||
Under a hidden directory in your home directory:<br/>
|
||||
<nobr><code>/home/nome de usuario/.tuxpaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/home/nome de usuario/.tuxpaint/saved/</code></nobr> </dd>
|
||||
|
||||
<dt>Windows</dt>
|
||||
<dd>
|
||||
<nobr><code>C:\Users\nome de usuario\AppData\Roaming\TuxPaint\saved\</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\nome de usuario\AppData\Roaming\TuxPaint\saved\</code></nobr> </dd>
|
||||
|
||||
<dt>macOS</dt>
|
||||
<dd>
|
||||
<nobr><code>/Users/nome de usuario/Library/Application Support/TuxPaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/Users/nome de usuario/Library/Application Support/TuxPaint/saved/</code></nobr> </dd>
|
||||
|
||||
<dt>Haiku</dt>
|
||||
<dd>
|
||||
<nobr><code>/boot/home/config/settings/TuxPaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code></nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1828,9 +1823,9 @@
|
|||
|
||||
<ul>
|
||||
<li>Linux e Unix: se está dispoñíbel, onde queira que o seu contorno de escritorio estea configurado para que se almacenen imaxes, en función da configuración XDG (X Desktop Group). (Probe a executar a liña de ordes «<code style="white-space: nowrap;">xdg-user-dir PICTURES</code>» para descubrilo.)<br>
|
||||
Normalmente (na configuración local inglesa), este será un subdirectorio «<code>Imaxes</code>» no seu directorio persoal (é dicir, «<code>$HOME/Imaxes</code>» tamén coñecido como «<code>~/Imaxes</code>»).<br>
|
||||
Tux Paint volverá usar ese directorio habitual, se non se pode ler a configuración XDG, ou non se estabelece nada «<code>XDG_PICTURES_DIR</code>». </li>
|
||||
<li>Windows: Directorio «As miñas imaxes» para cada usuario (normalmente «c:\Users\<i>NOME_DE_USUARIO</i>\Pictures»). <br>Pode abrir directamente o cartafol do seguinte xeito: <ul>
|
||||
Typically (in an English locale), this will be a "<code>Imaxes</code>" subdirectory in your home directory (i.e., <nobr>"<code style='background: #EEE;'>/home/nome de usuario/Imaxes</code>"</nobr>).<br>
|
||||
Tux Paint will fall back to using that typical directory, if no XDG configuration can be read, or nothing is set for "<code>XDG_PICTURES_DIR</code>". </li>
|
||||
<li>Windows - "As miñas imaxes" directory for each user (normaly <nobr>"<code style='background: #EEE;'>C:\Users\nome de usuario\My Pictures</code>"</nobr>)<br>You can directly open the folder as follows: <ul>
|
||||
<li>Prema a tecla «[Windows]+[R]» para abrir o diálogo «Executar...».</li>
|
||||
<li>Escriba «Shell: As miñas imaxes« na caixa de texto e prema en [Aceptar.]</li>
|
||||
</ul>
|
||||
|
|
@ -1841,11 +1836,11 @@
|
|||
</ul>
|
||||
|
||||
<p class="note">
|
||||
<span title="Information">💡</span> <strong>Note:</strong> When the defaults are used, a new "<code>TuxPaint</code>" subdirectory will be created and used. (e.g., "<code>~/Imaxes/TuxPaint</code>") When the "<code>--exportdir</code>" option is used, the exact path specified will be used (no "<code>TuxPaint</code>" subdirectory is created). </p>
|
||||
<span title="Information">💡</span> <strong>Note:</strong> When the defaults are used, a new "<code>TuxPaint</code>" subdirectory will be created and used. (e.g., <nobr>"<code style='background: #EEE;'>/home/nome de usuario/Imaxes/TuxPaint</code>"</nobr>) When the "<code>--exportdir</code>" option is used, the exact path specified will be used (no "<code>TuxPaint</code>" subdirectory is created). </p>
|
||||
<p>
|
||||
O directorio en si (p. ex.: «<code>~/Imaxes/TuxPaint</code>») crearase, se non existe. </p>
|
||||
The directory itself (e.g., <nobr>"<code style='background: #EEE;'>/home/nome de usuario/Imaxes/TuxPaint</code>"</nobr>) will be created, if it doesn't exist. </p>
|
||||
<p>
|
||||
Se o directorio <em>pai</em> (por exemplo, «<code>~/Imaxes/TuxPaint</code>») tampouco existe, Tux Paint tentará crealo tamén (pero non ningún directorio superior a ese). </p>
|
||||
If the <em>parent</em> directory (e.g., <nobr>"<code style='background: #EEE;'>/home/nome de usuario/Imaxes</code>"</nobr>) also does not exist, Tux Paint will attempt to create it as well (but not any directories higher than that). </p>
|
||||
|
||||
<p>
|
||||
Exemplo: <code>exportdir=/home/penguin/TuxPaintExports</code> </p>
|
||||
|
|
@ -1947,16 +1942,17 @@
|
|||
<p>
|
||||
Se non o anula, a ubicación <b><i>predeterminada</i></b> é: </p>
|
||||
|
||||
<ul>
|
||||
<li>Linux e Unix: baixo un directorio agochado chamado «<code>.tuxpaint</code>» no seu directorio persoal (tamén coñecido como «<code>~</code>» ou «<code>$HOME</code>»)<br>
|
||||
Exemplo: <code>/home/<i>username</i>/.tuxpaint/brushes/</code> </li>
|
||||
<dl>
|
||||
<dt>Linux / Unix</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>/home/nome de usuario/.tuxpaint/</code></nobr></dd>
|
||||
|
||||
<li>Windows: Dentro un cartafol chamado «<code>TuxPaint</code>» no seu cartafol «<code>Application Data</code>».<br>
|
||||
Exemplo: <code>C:\Documents and Settings\<i>Username</i>\Application Data\TuxPaint\brushes\</code> </li>
|
||||
<dt>Windows</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>C:\Users\nome de usuario\AppData\Roaming\TuxPaint\</code></nobr></dd>
|
||||
|
||||
<li>macOS: Dentro un cartafol chamado «<code>TuxPaint</code>» no seu cartafol «<code>Application Support</code>».<br>
|
||||
Exemplo: <code>/Users/<i>Username</i>/Library/Application Support/TuxPaint/brushes/</code> </li>
|
||||
</ul>
|
||||
<dt>macoS</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>/Users/nome de usuario/Library/Application Support/TuxPaint/</code></nobr></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
<span title="Version variation">📜</span> <strong>Note:</strong> Prior to version 0.9.18, Tux Paint would use the same setting or default as for "<code>savedir</code>" to search for data files. As of version 0.9.18, they may be specified separately. </p>
|
||||
|
|
@ -2377,14 +2373,10 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<i>(Para usuarios de Linux e Unix)</i>
|
||||
</p>
|
||||
If any of the above options are set in a system-wide configuration file (e.g. <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> on Linux), you may override them in your own personal configuration file (e.g. <nobr>"<code style='background: #EEE;'>/home/nome de usuario/.tuxpaintrc</code>"</nobr>) </p>
|
||||
|
||||
<p>
|
||||
Se algunha das opcións anteriores está estabelecida en «<code>/etc/tuxpaint/tuxpaint.conf</code>», pode anulala no seu propio ficheiro «<code>/home/nome de usuario/.tuxpaintrc</code>». </p>
|
||||
|
||||
<p>
|
||||
Para opcións verdadeiro/falso, como «<code>noprint</code>» e «<code>grab</code>», pode simplemente dicir que son iguais a «no» no seu ficheiro «<code>/home/nome de usuario/.tuxpaintrc</code>»: </p>
|
||||
For true/false options, like "<code>noprint</code>" and "<code>grab</code>", you can simply say they equal 'no' in your personal configuration file: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>noprint=no<br>
|
||||
|
|
@ -2555,10 +2547,10 @@
|
|||
|
||||
<dd>
|
||||
<p>
|
||||
En Linux e Unix, isto evita ler o ficheiro de configuración de todo o sistema, «<code>/etc/tuxpaint/tuxpaint.conf</code>». </p>
|
||||
This prevents the system-wide configuration file (e.g. <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> on Linux), from being read. </p>
|
||||
|
||||
<p>
|
||||
Só se empregará o seu propio ficheiro de configuración, «<code>/home/nome de usuario/.tuxpaintrc</code>», se existe. </p>
|
||||
Only your own configuration file (e.g. <nobr>"<code style='background: #EEE;'>/home/nome de usuario/.tuxpaintrc</code>"</nobr> on Linux) — if it exists — will be used. </p>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
|
@ -2579,7 +2571,7 @@
|
|||
|
||||
<dd>
|
||||
<p>
|
||||
Amosa o número de versión e a data da copia de Tux Paint que está a executar. O «--verbose-version» tamén lista as opcións de tempo de compilación definidas. (Vexa INSTALL [INSTALAR] e FAQ [Preguntas frecuentes] ). </p>
|
||||
Display the version number and date of the copy of Tux Paint you are running. The "<code>--verbose-version</code>" also lists what compile-time options were set. (See <a href="INSTALL.html">INSTALL</a> and <a href="FAQ.html">FAQ</a>). </p>
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
</p>
|
||||
|
||||
<p>
|
||||
8 de Abril de 2024 </p>
|
||||
27 de Abril de 2024 </p>
|
||||
</center>
|
||||
</header>
|
||||
<table border="2"
|
||||
|
|
@ -318,7 +318,7 @@
|
|||
Se está a usar a versión «portátil» (ficheiro ZIP) de Tux Paint ou se usou o «Instalador de Tux Paint», pero escolleu non ter instalados atallos, terá que facer dobre clic na icona «<code>tuxpaint.exe</code>» no cartafol «<code>Tux Paint</code>» do seu computador. </p>
|
||||
|
||||
<p>
|
||||
By default, the 'Tux Paint Installer' will put Tux Paint's folder in <nobr>"<code>C:\Program Files\TuxPaint\</code>"</nobr>, though you may have changed this when you ran the installer. </p>
|
||||
By default, the 'Tux Paint Installer' will put Tux Paint's folder in <nobr>"<code style='background: #EEE;'>C:\Program Files\TuxPaint\</code>"</nobr>, though you may have changed this when you ran the installer. </p>
|
||||
|
||||
<p>
|
||||
Se usou a descarga de «ficheiro ZIP», o cartafol de Tux Paint estará onde teña extraído o contido do ficheiro ZIP. </p>
|
||||
|
|
@ -1676,28 +1676,28 @@
|
|||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code>C:\Users\nome de usuario\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>C:\Users\nome de usuario\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>macOS</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code>/Users/nome de usuario/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/Users/nome de usuario/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Linux / Unix</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code>/home/nome de usuario/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/home/nome de usuario/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Haiku</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1818,6 +1818,10 @@
|
|||
<li>
|
||||
<a href="../magic-docs/html/index.html">Documentación da ferramenta «Maxia» («<code>magic-docs</code>»)</a><br>
|
||||
Documentación para cada unha das ferramentas de «Maxia» instaladas actualmente. </li>
|
||||
|
||||
<li>
|
||||
<a href="FAQ.html">Frequently Asked Questions ("FAQs") about Tux Paint</a><br>
|
||||
Answers to, and solutions for, some common questions about, and problems with, using Tux Paint. </li>
|
||||
</ul>
|
||||
</dd>
|
||||
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@ macOS
|
|||
your system's "Application Support" folder (found under "Library" at the
|
||||
root of your filesystem):
|
||||
|
||||
/Library/Application Support/TuxPaint/
|
||||
/Library/Application Support/TuxPaint/data/
|
||||
|
||||
When you upgrade to a newer version of Tux Paint, the contents of this
|
||||
"TuxPaint" folder will stay the same, and remain accessible by all users of
|
||||
|
|
@ -118,7 +118,7 @@ Windows
|
|||
Your personal Tux Paint folder is stored in your personal "Application
|
||||
Data". For example, on newer Windows:
|
||||
|
||||
C:\Documents and Settings\(username)\Application Data\TuxPaint\
|
||||
C:\Users\username\AppData\Roaming\TuxPaint\
|
||||
|
||||
|
||||
|
||||
|
|
@ -127,18 +127,14 @@ macOS
|
|||
Your personal Tux Paint folder is stored in your personal "Application
|
||||
Support" folder:
|
||||
|
||||
/Users/(username)/Library/Application Support/TuxPaint/
|
||||
/Users/username/Library/Application Support/TuxPaint/
|
||||
|
||||
|
||||
|
||||
Linux and Unix
|
||||
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your
|
||||
account's home directory: "$(HOME)/.tuxpaint/" (also known as "~/.tuxpaint/
|
||||
").
|
||||
|
||||
That is, if your home directory is "/home/tux", then your personal Tux
|
||||
Paint files go in "/home/tux/.tuxpaint/".
|
||||
account's home directory: "/home/username/.tuxpaint/".
|
||||
|
||||
Don't forget the period (".") before the "tuxpaint"!
|
||||
|
||||
|
|
@ -149,8 +145,8 @@ To add your own brushes, stamps, 'starters,' templates, and fonts, create
|
|||
subdirectories under your personal Tux Paint directory named "brushes", "stamps
|
||||
", "starters", "templates", "fonts", respectively.
|
||||
|
||||
(For example, if you created a brush named "flower.png", you would put it in "~
|
||||
/.tuxpaint/brushes/" under Linux or Unix.)
|
||||
(For example, if you created a brush named "flower.png", you would put it in
|
||||
"/home/username/.tuxpaint/brushes/" under Linux or Unix.)
|
||||
|
||||
Brushes
|
||||
|
||||
|
|
|
|||
|
|
@ -887,9 +887,9 @@ Panel Add/Remove programs section.
|
|||
macOS
|
||||
|
||||
Delete "TuxPaint.app" from the "Applications" folder. Data files, including the
|
||||
configuration files, stamps, and saved pictures, may be found in "/Library/
|
||||
Application Support/TuxPaint" (all users) and "/Users/USERNAME/Library/
|
||||
Application Support/TuxPaint" (individual users).
|
||||
configuration files, stamps, and saved pictures, may be found in
|
||||
"/Library/Application Support/TuxPaint/" (all users) and
|
||||
"/Users/username/Library/Application Support/TuxPaint/" (individual users).
|
||||
|
||||
Linux
|
||||
|
||||
|
|
|
|||
|
|
@ -59,8 +59,7 @@ at:
|
|||
|
||||
macOS Users
|
||||
|
||||
The file you should create is called "tuxpaint.cfg" and it should be placed in
|
||||
your home folder, under the sub-folder: Library/Application Support/TuxPaint
|
||||
/Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg
|
||||
|
||||
System-Wide Configuration File
|
||||
|
||||
|
|
@ -87,8 +86,7 @@ C:\Program Files\TuxPaint\tuxpaint.cfg
|
|||
|
||||
Haiku Users
|
||||
|
||||
The file you should create is called "tuxpaint.conf" and it should be placed in
|
||||
/boot/home/config/settings/TuxPaint
|
||||
/boot/home/config/settings/TuxPaint/tuxpaint.conf
|
||||
|
||||
⚙ You can disable reading of this file altogether, leaving the settings as
|
||||
defaults (which can then be overridden by your personal config. file and/or
|
||||
|
|
@ -1174,27 +1172,27 @@ Save Printer Configuration
|
|||
Group) configuration. (Try running the command-line "xdg-user-dir
|
||||
PICTURES" to find out.)
|
||||
Typically (in an English locale), this will be a "Pictures"
|
||||
subdirectory in your home directory (i.e., "$HOME/Pictures" aka "~/
|
||||
Pictures").
|
||||
Tux Paint will fall back to using that typical directory, of no XDG
|
||||
subdirectory in your home directory (i.e.,
|
||||
"/home/username/Pictures").
|
||||
Tux Paint will fall back to using that typical directory, if no XDG
|
||||
configuration can be read, or nothing is set for
|
||||
"XDG_PICTURES_DIR".
|
||||
o Windows - "My Pictures" directory for each user (normaly "c:\Users\
|
||||
USERNAME\Pictures").
|
||||
o Windows - "My Pictures" directory for each user (normaly
|
||||
"C:\Users\username\My Pictures")
|
||||
You can directly open the folder as follows:
|
||||
# Press "[Windows]+[R]" key to open "Run ..." dialogue.
|
||||
# Enter "Shell:My Pictures" in the text box and push [OK].
|
||||
o macOS — TBD!
|
||||
|
||||
💡 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).
|
||||
be created and used. (e.g., "/home/username/Pictures/TuxPaint") When
|
||||
the "--exportdir" option is used, the exact path specified will be used
|
||||
(no "TuxPaint" subdirectory is created).
|
||||
|
||||
The directory itself (e.g., "~/Pictures/TuxPaint") will be created, if
|
||||
it doesn't exist.
|
||||
The directory itself (e.g., "/home/username/Pictures/TuxPaint") will be
|
||||
created, if it doesn't exist.
|
||||
|
||||
If the parent directory (e.g., "~/Pictures/TuxPaint") also does not
|
||||
If the parent directory (e.g., "/home/username/Pictures") also does not
|
||||
exist, Tux Paint will attempt to create it as well (but not any
|
||||
directories higher than that).
|
||||
|
||||
|
|
@ -1284,17 +1282,15 @@ Save Printer Configuration
|
|||
|
||||
If you do not override it, the default location is:
|
||||
|
||||
o Linux & Unix — Under a hidden directory named ".tuxpaint" in your
|
||||
home directory (aka "~" or "$HOME")
|
||||
Example: /home/username/.tuxpaint/brushes/
|
||||
o Windows — Inside a folder named "TuxPaint" in your "Application
|
||||
Data" folder.
|
||||
Example: C:\Documents and Settings\Username\Application Data\
|
||||
TuxPaint\brushes\
|
||||
o macOS — Inside a folder named "TuxPaint" in your "Application
|
||||
Support" folder.
|
||||
Example: /Users/Username/Library/Application Support/TuxPaint/
|
||||
brushes/
|
||||
Linux / Unix
|
||||
/home/username/.tuxpaint/
|
||||
|
||||
Windows
|
||||
C:\Users\username\AppData\Roaming\TuxPaint\
|
||||
|
||||
macoS
|
||||
/Users/username/Library/Application Support/TuxPaint/
|
||||
|
||||
|
||||
📜 Note: Prior to version 0.9.18, Tux Paint would use the same setting
|
||||
or default as for "savedir" to search for data files. As of version
|
||||
|
|
@ -1614,13 +1610,12 @@ Button Shortcuts
|
|||
|
||||
Overriding System Config. Options
|
||||
|
||||
(For Linux and Unix users)
|
||||
|
||||
If any of the above options are set in "/etc/tuxpaint/tuxpaint.conf", you
|
||||
can override them in your own "/home/username/.tuxpaintrc" file.
|
||||
If any of the above options are set in a system-wide configuration file
|
||||
(e.g. "/etc/tuxpaint/tuxpaint.conf" on Linux), you may override them in
|
||||
your own personal configuration file (e.g. "/home/username/.tuxpaintrc")
|
||||
|
||||
For true/false options, like "noprint" and "grab", you can simply say they
|
||||
equal 'no' in your "/home/username/.tuxpaintrc" file:
|
||||
equal 'no' in your personal configuration file:
|
||||
|
||||
noprint=no
|
||||
uppercase=no
|
||||
|
|
@ -1774,11 +1769,11 @@ Button Shortcuts
|
|||
|
||||
--nosysconfig
|
||||
|
||||
Under Linux and Unix, this prevents the system-wide configuration file,
|
||||
"/etc/tuxpaint/tuxpaint.conf", from being read.
|
||||
This prevents the system-wide configuration file (e.g.
|
||||
"/etc/tuxpaint/tuxpaint.conf" on Linux), from being read.
|
||||
|
||||
Only your own configuration file, "/home/username/.tuxpaintrc", if it
|
||||
exists, will be used.
|
||||
Only your own configuration file (e.g. "/home/username/.tuxpaintrc" on
|
||||
Linux) — if it exists — will be used.
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1266,6 +1266,9 @@ Using Tux Paint:
|
|||
Tux Paint's configuration.
|
||||
+ 'Magic' Tool Documentation ("magic-docs")
|
||||
Documentation for each of the currently-installed 'Magic' tools.
|
||||
+ Frequently Asked Questions ("FAQs") about Tux Paint
|
||||
Answers to, and solutions for, some common questions about, and
|
||||
problems with, using Tux Paint.
|
||||
|
||||
|
||||
How to extend Tux Paint:
|
||||
|
|
|
|||
|
|
@ -172,13 +172,11 @@
|
|||
Where this directory goes depends on what value was set for "<code>DATA_PREFIX</code>" when Tux Paint was built. See 'Install documentation' for details. </p>
|
||||
<p>
|
||||
By default, though, the directory is: <blockquote>
|
||||
<code>/usr/local/share/tuxpaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/usr/local/share/tuxpaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
<p>
|
||||
If you installed from a package, it is more likely to be: <blockquote>
|
||||
<code>/usr/share/tuxpaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/usr/share/tuxpaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -186,8 +184,7 @@
|
|||
<dd>
|
||||
<p>
|
||||
Tux Paint looks for a directory called '<code>data</code>' in the same directory as the executable. This is the directory that the installer used when installing Tux Paint e.g.: <blockquote>
|
||||
<code style="white-space: nowrap;">C:\Program Files\TuxPaint\data</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\data</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -209,8 +206,7 @@
|
|||
<span title="Information">💡</span> <em>Note:</em> If you install a newer version of Tux Paint and replace or discard the old version, you will lose changes made by following the instructions above, so keep backups of your new content (stamps, brushes, etc.). </p>
|
||||
<p>
|
||||
Tux Paint also looks for files in a "TuxPaint" folder that you can place in your system's "Application Support" folder (found under "Library" at the root of your filesystem): <blockquote>
|
||||
<code style="white-space: nowrap;">/Library/Application Support/TuxPaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/data/</code></nobr> </blockquote>
|
||||
</p>
|
||||
<p>
|
||||
When you upgrade to a newer version of Tux Paint, the contents of this "TuxPaint" folder will stay the same, and remain accessible by all users of Tux Paint. </p>
|
||||
|
|
@ -235,8 +231,7 @@
|
|||
<p>
|
||||
Your personal Tux Paint folder is stored in your personal "Application Data". For example, on newer Windows:
|
||||
<blockquote>
|
||||
<code style="white-space: nowrap;">C:\Documents and Settings\<i>(username)</i>\Application Data\TuxPaint\</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -244,17 +239,14 @@
|
|||
<dd>
|
||||
<p>
|
||||
Your personal Tux Paint folder is stored in your personal "Application Support" folder: <blockquote>
|
||||
<code style= "white-space: nowrap;">/Users/<i>(username)</i>/Library/Application Support/TuxPaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
<dt><strong>Linux and Unix</strong></dt>
|
||||
<dd>
|
||||
<p>
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your account's home directory: "<code>$(HOME)/.tuxpaint/</code>" (also known as "<code>~/.tuxpaint/</code>"). </p>
|
||||
<p>
|
||||
That is, if your home directory is "<code>/home/tux</code>", then your personal Tux Paint files go in "<code>/home/tux/.tuxpaint/</code>". </p>
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your account's home directory: <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/</code>"</nobr>. </p>
|
||||
<p>
|
||||
Don't forget the period ("<code>.</code>") before the "<code>tuxpaint</code>"! </p>
|
||||
</dd>
|
||||
|
|
@ -264,7 +256,7 @@
|
|||
To add your own brushes, stamps, 'starters,' templates, and fonts, create subdirectories under your personal Tux Paint directory named "<code><b>brushes</b></code>", "<code><b>stamps</b></code>", "<code><b>starters</b></code>", "<code><b>templates</b></code>", "<code><b>fonts</b></code>", respectively. </p>
|
||||
|
||||
<p>
|
||||
(For example, if you created a brush named "<code>flower.png</code>", you would put it in "<code>~/.tuxpaint/brushes/</code>" under Linux or Unix.) </p>
|
||||
(For example, if you created a brush named <nobr>"<code style='background: #EEE;'>flower.png</code>"</nobr>, you would put it in <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/brushes/</code>"</nobr> under Linux or Unix.) </p>
|
||||
</section><!-- H2: Personal Files -->
|
||||
</section><!-- H1: Where Files Go -->
|
||||
|
||||
|
|
|
|||
|
|
@ -317,28 +317,28 @@
|
|||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>macOS</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code>/Users/username/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Linux / Unix</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code>/home/username/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Haiku</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
|
|
@ -617,10 +617,10 @@
|
|||
|
||||
<dd>
|
||||
<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 "<code>stdout.txt</code>" in the same folder where <code>TuxPaint.exe</code> resides (e.g., in <nobr>"<code>C:\Program Files\TuxPaint\</code>"</nobr>). </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 "<code>stdout.txt</code>" in the same folder where <code>TuxPaint.exe</code> resides (e.g., in <nobr>"<code style='background: #EEE;'>C:\Program Files\TuxPaint\</code>"</nobr>). </p>
|
||||
|
||||
<p>
|
||||
A lockfile (e.g., <nobr>"<code>/home/username/.tuxpaint/lockfile.dat</code>"</nobr> on Linux and Unix, <nobr>"<code>userdata\lockfile.dat</code>"</nobr> 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). </p>
|
||||
A lockfile (e.g., <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/lockfile.dat</code>"</nobr> on Linux and Unix, <nobr>"<code style='background: #EEE;'>userdata\lockfile.dat</code>"</nobr> 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). </p>
|
||||
|
||||
<p>
|
||||
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. </p>
|
||||
|
|
@ -705,7 +705,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -713,7 +713,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -727,7 +727,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -735,7 +735,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -749,7 +749,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/etc/tuxpaint/tuxpaint.conf</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -757,7 +757,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/home/username/.tuxpaintrc</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/home/username/.tuxpaintrc</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -771,7 +771,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -783,7 +783,7 @@
|
|||
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>
|
||||
|
||||
<p>
|
||||
For example, on Linux and Unix, if <nobr>"<code>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> includes this option to disable sound... </p>
|
||||
For example, on Linux and Unix, if <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> includes this option to disable sound... </p>
|
||||
|
||||
<blockquote>
|
||||
<p>
|
||||
|
|
@ -792,7 +792,7 @@
|
|||
</blockquote>
|
||||
|
||||
<p>
|
||||
...then you can reenable sound by either adding this option to your own <nobr>"<code>/home/username/.tuxpaintrc</code>"</nobr> file: </p>
|
||||
...then you can reenable sound by either adding this option to your own <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaintrc</code>"</nobr> file: </p>
|
||||
|
||||
<blockquote>
|
||||
<p>
|
||||
|
|
|
|||
|
|
@ -723,10 +723,7 @@
|
|||
Make sure the 'Shortcut' tab is selected in the window that appears, and examine the 'Target:' field. You should see something like this: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>
|
||||
"C:\Program Files\TuxPaint\TuxPaint.exe"
|
||||
</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>"C:\Program Files\TuxPaint\TuxPaint.exe"</code></nobr> </blockquote>
|
||||
|
||||
<p>
|
||||
You can now add command-line options which will be enabled when you double-click the icon. </p>
|
||||
|
|
@ -735,10 +732,7 @@
|
|||
For example, to make the game run in fullscreen mode, with simple shapes (no rotation option) and in French, add the options (after 'TuxPaint.exe'), like so: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>
|
||||
"C:\Program Files\TuxPaint\TuxPaint.exe" -f -s --lang french
|
||||
</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>"C:\Program Files\TuxPaint\TuxPaint.exe" -f -s --lang french</code></nobr> </blockquote>
|
||||
|
||||
<p>
|
||||
(See the main documentation for a full list of available command-line options.) </p>
|
||||
|
|
@ -757,7 +751,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "<code>stderr.txt</code>" in your personal saving folder for TuxPaint which is normaly <nobr>"<code>C:\Users\username\AppData\Roaming\TuxPaint\</code>"</nobr>. </p>
|
||||
If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "<code>stderr.txt</code>" in your personal saving folder for TuxPaint which is normaly <nobr>"<code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\</code>"</nobr>. </p>
|
||||
|
||||
<p>
|
||||
It will contain a description of what was wrong. Usually it will just be due to incorrect character-case (capital 'Z' instead of lowercase 'z') or a missing (or extra) '-' (dash). </p>
|
||||
|
|
@ -1375,7 +1369,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
Delete "<code>TuxPaint.app</code>" from the "Applications" folder. Data files, including the configuration files, stamps, and saved pictures, may be found in "<code style="white-space: nowrap;">/Library/Application Support/TuxPaint</code>" (all users) and "<code style="white-space: nowrap;">/Users/<i>USERNAME</i>/Library/Application Support/TuxPaint</code>" (individual users). </p>
|
||||
Delete "<code>TuxPaint.app</code>" from the "Applications" folder. Data files, including the configuration files, stamps, and saved pictures, may be found in <nobr>"<code style='background: #EEE;'>/Library/Application Support/TuxPaint/</code>"</nobr> (all users) and <nobr>"<code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/</code>"</nobr> (individual users). </p>
|
||||
</section><!-- H2: macOS -->
|
||||
|
||||
<section class="indent"><!-- H2: Linux -->
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
</p>
|
||||
|
||||
<p>
|
||||
apríl 7, 2024 </p>
|
||||
apríl 27, 2024 </p>
|
||||
</center>
|
||||
</header>
|
||||
|
||||
|
|
@ -169,8 +169,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<code>/home/username/.tuxpaintrc</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>/home/username/.tuxpaintrc</code></nobr> </p>
|
||||
</div>
|
||||
|
||||
<section class="indent"><!-- H3: System-Wide Configuration File -->
|
||||
|
|
@ -183,8 +182,7 @@
|
|||
Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>/etc/tuxpaint/tuxpaint.conf</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code></nobr> </blockquote>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: Linux and Unix Users -->
|
||||
|
||||
|
|
@ -195,7 +193,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
The file you should create is called "<code><b>tuxpaint.cfg</b></code>" and it should be placed in your home folder, under the sub-folder: <code>Library/Application Support/TuxPaint</code> </p>
|
||||
<nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
|
||||
<section class="indent"><!-- H3: System-Wide Configuration File -->
|
||||
<header>
|
||||
|
|
@ -207,8 +205,7 @@
|
|||
Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>/Library/Application Support/TuxPaint/tuxpaint.cfg</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </blockquote>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: macOS Users -->
|
||||
|
||||
|
|
@ -219,8 +216,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<code>C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
|
||||
<p>
|
||||
You can use NotePad or WordPad to create this file. Be sure to save it as Plain Text, and make sure the filename doesn't have ".txt" at the end... </p>
|
||||
|
|
@ -235,8 +231,7 @@
|
|||
Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at: </p>
|
||||
|
||||
<p>
|
||||
<code>C:\Program Files\TuxPaint\tuxpaint.cfg</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: Windows Users -->
|
||||
|
||||
|
|
@ -247,7 +242,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
The file you should create is called "<code><b>tuxpaint.conf</b></code>" and it should be placed in <code>/boot/home/config/settings/TuxPaint</code> </p>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
</section><!-- H2: Haiku Users -->
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1790,19 +1785,19 @@
|
|||
<dt>Linux / Unix</dt>
|
||||
<dd>
|
||||
Under a hidden directory in your home directory:<br/>
|
||||
<nobr><code>/home/username/.tuxpaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/home/username/.tuxpaint/saved/</code></nobr> </dd>
|
||||
|
||||
<dt>Windows</dt>
|
||||
<dd>
|
||||
<nobr><code>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code></nobr> </dd>
|
||||
|
||||
<dt>macOS</dt>
|
||||
<dd>
|
||||
<nobr><code>/Users/username/Library/Application Support/TuxPaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/saved/</code></nobr> </dd>
|
||||
|
||||
<dt>Haiku</dt>
|
||||
<dd>
|
||||
<nobr><code>/boot/home/config/settings/TuxPaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code></nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1828,9 +1823,9 @@
|
|||
|
||||
<ul>
|
||||
<li>Linux & Unix — If available, wherever your desktop environment is configured for pictures to be stored, based on your XDG (X Desktop Group) configuration. (Try running the command-line "<code style="white-space: nowrap;">xdg-user-dir PICTURES</code>" to find out.)<br>
|
||||
Typically (in an English locale), this will be a "<code>Pictures</code>" subdirectory in your home directory (i.e., "<code>$HOME/Pictures</code>" aka "<code>~/Pictures</code>").<br>
|
||||
Tux Paint will fall back to using that typical directory, of no XDG configuration can be read, or nothing is set for "<code>XDG_PICTURES_DIR</code>". </li>
|
||||
<li>Windows - "My Pictures" directory for each user (normaly "c:\Users\<i>USERNAME</i>\Pictures").<br>You can directly open the folder as follows: <ul>
|
||||
Typically (in an English locale), this will be a "<code>Pictures</code>" subdirectory in your home directory (i.e., <nobr>"<code style='background: #EEE;'>/home/username/Pictures</code>"</nobr>).<br>
|
||||
Tux Paint will fall back to using that typical directory, if no XDG configuration can be read, or nothing is set for "<code>XDG_PICTURES_DIR</code>". </li>
|
||||
<li>Windows - "My Pictures" directory for each user (normaly <nobr>"<code style='background: #EEE;'>C:\Users\username\My Pictures</code>"</nobr>)<br>You can directly open the folder as follows: <ul>
|
||||
<li>Press "[Windows]+[R]" key to open "Run ..." dialogue.</li>
|
||||
<li>Enter "Shell:My Pictures" in the text box and push [OK].</li>
|
||||
</ul>
|
||||
|
|
@ -1841,11 +1836,11 @@
|
|||
</ul>
|
||||
|
||||
<p class="note">
|
||||
<span title="Information">💡</span> <strong>Note:</strong> When the defaults are used, a new "<code>TuxPaint</code>" subdirectory will be created 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). </p>
|
||||
<span title="Information">💡</span> <strong>Note:</strong> When the defaults are used, a new "<code>TuxPaint</code>" subdirectory will be created and used. (e.g., <nobr>"<code style='background: #EEE;'>/home/username/Pictures/TuxPaint</code>"</nobr>) When the "<code>--exportdir</code>" option is used, the exact path specified will be used (no "<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>
|
||||
The directory itself (e.g., <nobr>"<code style='background: #EEE;'>/home/username/Pictures/TuxPaint</code>"</nobr>) will be created, if it doesn't exist. </p>
|
||||
<p>
|
||||
If the <em>parent</em> directory (e.g., "<code>~/Pictures/TuxPaint</code>") also does not exist, Tux Paint will attempt to create it as well (but not any directories higher than that). </p>
|
||||
If the <em>parent</em> directory (e.g., <nobr>"<code style='background: #EEE;'>/home/username/Pictures</code>"</nobr>) also does not exist, Tux Paint will attempt to create it as well (but not any directories higher than that). </p>
|
||||
|
||||
<p>
|
||||
Example: <code>exportdir=/home/penguin/TuxPaintExports</code> </p>
|
||||
|
|
@ -1947,16 +1942,17 @@
|
|||
<p>
|
||||
If you do not override it, the <b><i>default</i></b> location is: </p>
|
||||
|
||||
<ul>
|
||||
<li>Linux & Unix — Under a hidden directory named "<code>.tuxpaint</code>" in your home directory (aka "<code>~</code>" or "<code>$HOME</code>")<br>
|
||||
Example: <code>/home/<i>username</i>/.tuxpaint/brushes/</code> </li>
|
||||
<dl>
|
||||
<dt>Linux / Unix</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>/home/username/.tuxpaint/</code></nobr></dd>
|
||||
|
||||
<li>Windows — Inside a folder named "<code>TuxPaint</code>" in your "<code>Application Data</code>" folder.<br>
|
||||
Example: <code>C:\Documents and Settings\<i>Username</i>\Application Data\TuxPaint\brushes\</code> </li>
|
||||
<dt>Windows</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\</code></nobr></dd>
|
||||
|
||||
<li>macOS — Inside a folder named "<code>TuxPaint</code>" in your "<code>Application Support</code>" folder.<br>
|
||||
Example: <code>/Users/<i>Username</i>/Library/Application Support/TuxPaint/brushes/</code> </li>
|
||||
</ul>
|
||||
<dt>macoS</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/</code></nobr></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
<span title="Version variation">📜</span> <strong>Note:</strong> Prior to version 0.9.18, Tux Paint would use the same setting or default as for "<code>savedir</code>" to search for data files. As of version 0.9.18, they may be specified separately. </p>
|
||||
|
|
@ -2377,14 +2373,10 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<i>(For Linux and Unix users)</i>
|
||||
</p>
|
||||
If any of the above options are set in a system-wide configuration file (e.g. <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> on Linux), you may override them in your own personal configuration file (e.g. <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaintrc</code>"</nobr>) </p>
|
||||
|
||||
<p>
|
||||
If any of the above options are set in "<code>/etc/tuxpaint/tuxpaint.conf</code>", you can override them in your own "<code>/home/username/.tuxpaintrc</code>" file. </p>
|
||||
|
||||
<p>
|
||||
For true/false options, like "<code>noprint</code>" and "<code>grab</code>", you can simply say they equal 'no' in your "<code>/home/username/.tuxpaintrc</code>" file: </p>
|
||||
For true/false options, like "<code>noprint</code>" and "<code>grab</code>", you can simply say they equal 'no' in your personal configuration file: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>noprint=no<br>
|
||||
|
|
@ -2555,10 +2547,10 @@
|
|||
|
||||
<dd>
|
||||
<p>
|
||||
Under Linux and Unix, this prevents the system-wide configuration file, "<code>/etc/tuxpaint/tuxpaint.conf</code>", from being read. </p>
|
||||
This prevents the system-wide configuration file (e.g. <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> on Linux), from being read. </p>
|
||||
|
||||
<p>
|
||||
Only your own configuration file, "<code>/home/username/.tuxpaintrc</code>", if it exists, will be used. </p>
|
||||
Only your own configuration file (e.g. <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaintrc</code>"</nobr> on Linux) — if it exists — will be used. </p>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
|
@ -2579,7 +2571,7 @@
|
|||
|
||||
<dd>
|
||||
<p>
|
||||
Display the version number and date of the copy of Tux Paint you are running. The "--verbose-version" also lists what compile-time options were set. (See INSTALL and FAQ). </p>
|
||||
Display the version number and date of the copy of Tux Paint you are running. The "<code>--verbose-version</code>" also lists what compile-time options were set. (See <a href="INSTALL.html">INSTALL</a> and <a href="FAQ.html">FAQ</a>). </p>
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
</p>
|
||||
|
||||
<p>
|
||||
apríl 8, 2024 </p>
|
||||
apríl 27, 2024 </p>
|
||||
</center>
|
||||
</header>
|
||||
<table border="2"
|
||||
|
|
@ -318,7 +318,7 @@
|
|||
If you're using the 'portable' (ZIP-file) version of Tux Paint, or if you used the 'Tux Paint Installer,' but chose not to have shortcuts installed, you'll need to double-click the "<code>tuxpaint.exe</code>" icon in the "<code>Tux Paint</code>" folder on your computer. </p>
|
||||
|
||||
<p>
|
||||
By default, the 'Tux Paint Installer' will put Tux Paint's folder in <nobr>"<code>C:\Program Files\TuxPaint\</code>"</nobr>, though you may have changed this when you ran the installer. </p>
|
||||
By default, the 'Tux Paint Installer' will put Tux Paint's folder in <nobr>"<code style='background: #EEE;'>C:\Program Files\TuxPaint\</code>"</nobr>, though you may have changed this when you ran the installer. </p>
|
||||
|
||||
<p>
|
||||
If you used the 'ZIP-file' download, Tux Paint's folder will be wherever you extracted the contents of the ZIP file. </p>
|
||||
|
|
@ -1676,28 +1676,28 @@
|
|||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>macOS</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code>/Users/username/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Linux / Unix</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code>/home/username/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Haiku</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1818,6 +1818,10 @@
|
|||
<li>
|
||||
<a href="../magic-docs/html/index.html">'Magic' Tool Documentation ("<code>magic-docs</code>")</a><br>
|
||||
Documentation for each of the currently-installed 'Magic' tools. </li>
|
||||
|
||||
<li>
|
||||
<a href="FAQ.html">Frequently Asked Questions ("FAQs") about Tux Paint</a><br>
|
||||
Answers to, and solutions for, some common questions about, and problems with, using Tux Paint. </li>
|
||||
</ul>
|
||||
</dd>
|
||||
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@ macOS
|
|||
your system's "Application Support" folder (found under "Library" at the
|
||||
root of your filesystem):
|
||||
|
||||
/Library/Application Support/TuxPaint/
|
||||
/Library/Application Support/TuxPaint/data/
|
||||
|
||||
When you upgrade to a newer version of Tux Paint, the contents of this
|
||||
"TuxPaint" folder will stay the same, and remain accessible by all users of
|
||||
|
|
@ -118,7 +118,7 @@ Windows
|
|||
Your personal Tux Paint folder is stored in your personal "Application
|
||||
Data". For example, on newer Windows:
|
||||
|
||||
C:\Documents and Settings\(username)\Application Data\TuxPaint\
|
||||
C:\Users\username\AppData\Roaming\TuxPaint\
|
||||
|
||||
|
||||
|
||||
|
|
@ -127,18 +127,14 @@ macOS
|
|||
Your personal Tux Paint folder is stored in your personal "Application
|
||||
Support" folder:
|
||||
|
||||
/Users/(username)/Library/Application Support/TuxPaint/
|
||||
/Users/username/Library/Application Support/TuxPaint/
|
||||
|
||||
|
||||
|
||||
Linux and Unix
|
||||
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your
|
||||
account's home directory: "$(HOME)/.tuxpaint/" (also known as "~/.tuxpaint/
|
||||
").
|
||||
|
||||
That is, if your home directory is "/home/tux", then your personal Tux
|
||||
Paint files go in "/home/tux/.tuxpaint/".
|
||||
account's home directory: "/home/username/.tuxpaint/".
|
||||
|
||||
Don't forget the period (".") before the "tuxpaint"!
|
||||
|
||||
|
|
@ -149,8 +145,8 @@ To add your own brushes, stamps, 'starters,' templates, and fonts, create
|
|||
subdirectories under your personal Tux Paint directory named "brushes", "stamps
|
||||
", "starters", "templates", "fonts", respectively.
|
||||
|
||||
(For example, if you created a brush named "flower.png", you would put it in "~
|
||||
/.tuxpaint/brushes/" under Linux or Unix.)
|
||||
(For example, if you created a brush named "flower.png", you would put it in
|
||||
"/home/username/.tuxpaint/brushes/" under Linux or Unix.)
|
||||
|
||||
Brushes
|
||||
|
||||
|
|
|
|||
|
|
@ -887,9 +887,9 @@ Panel Add/Remove programs section.
|
|||
macOS
|
||||
|
||||
Delete "TuxPaint.app" from the "Applications" folder. Data files, including the
|
||||
configuration files, stamps, and saved pictures, may be found in "/Library/
|
||||
Application Support/TuxPaint" (all users) and "/Users/USERNAME/Library/
|
||||
Application Support/TuxPaint" (individual users).
|
||||
configuration files, stamps, and saved pictures, may be found in
|
||||
"/Library/Application Support/TuxPaint/" (all users) and
|
||||
"/Users/username/Library/Application Support/TuxPaint/" (individual users).
|
||||
|
||||
Linux
|
||||
|
||||
|
|
|
|||
|
|
@ -60,8 +60,7 @@ Linux 及び Unix のユーザー
|
|||
|
||||
macOS のユーザー
|
||||
|
||||
ユーザー毎の設定ファイルは、ホームフォルダ以下のサブフォルダ Library/
|
||||
Application Support/TuxPaint 内に "tuxpaint.cfg" というファイル名で作成します。
|
||||
/Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg
|
||||
|
||||
システム全体の設定ファイル
|
||||
|
||||
|
|
@ -89,8 +88,7 @@ C:\Program Files\TuxPaint\tuxpaint.cfg
|
|||
|
||||
Haiku Users
|
||||
|
||||
The file you should create is called "tuxpaint.conf" and it should be placed in
|
||||
/boot/home/config/settings/TuxPaint
|
||||
/boot/home/config/settings/TuxPaint/tuxpaint.conf
|
||||
|
||||
⚙ コマンドラインオプション "--nosysconfig" 用いると、システム全体の設定ファイル
|
||||
は無視され、ユーザー毎の設定ファイルやコマンドラインオプションによる変更のみが
|
||||
|
|
@ -1167,31 +1165,31 @@ altprint=mod
|
|||
o Linux および Unix — XDG (X Desktop Group) 標準に基づく設定が利用可
|
||||
能な場合、個々のデスクトップ環境において画像保存用として設定されて
|
||||
いるディレクトリ("xdg-user-dir PICTURES" コマンドで確認できます)
|
||||
英語環境では一般的にユーザーのホームディレクトリ("$HOME/Pictures"
|
||||
あるいは "~/Pictures")以下の "Pictures" ディレクトリになります。
|
||||
(日本語環境では "画像")
|
||||
XDGの設定が読み取れない場合や、"XDG_PICTURES_DIR "に何も設定されて
|
||||
いない場合は、上記の英語環境で一般的なディレクトリ(~/Pictures)を
|
||||
使用します。
|
||||
o Windows — 各ユーザーの "ピクチャ" ディレクトリ(通常は "C:\Users\
|
||||
ユーザー名\Pictures")。
|
||||
また、次のようにして、フォルダを直接開くこともできます:
|
||||
Typically (in an English locale), this will be a "Pictures"
|
||||
subdirectory in your home directory (i.e.,
|
||||
"/home/username/Pictures").
|
||||
Tux Paint will fall back to using that typical directory, if no XDG
|
||||
configuration can be read, or nothing is set for
|
||||
"XDG_PICTURES_DIR".
|
||||
o Windows - "ピクチャ" directory for each user (normaly
|
||||
"C:\Users\username\My Pictures")
|
||||
You can directly open the folder as follows:
|
||||
# "[Windows]+[R]" キーを押して "ファイル名を指定して実行" ダイア
|
||||
ログを開く。
|
||||
# テキストボックスに "Shell:My Pictures" と入力して [OK] を押す。
|
||||
o macOS — TBD!
|
||||
|
||||
💡 注: 標準では、サブディレクトリ "TuxPaint" が作成されます。(例: "~/
|
||||
Pictures/TuxPaint")一方、"--exportdir" オプションを用いると、指定され
|
||||
たパスがそのまま使用されます(サブディレクトリ "TuxPaint" は作成されま
|
||||
せん)。
|
||||
💡 Note: When the defaults are used, a new "TuxPaint" subdirectory will
|
||||
be created and used. (e.g., "/home/username/Pictures/TuxPaint") When
|
||||
the "--exportdir" option is used, the exact path specified will be used
|
||||
(no "TuxPaint" subdirectory is created).
|
||||
|
||||
ディレクトリ(例: "~/Pictures/TuxPaint")が存在しない場合は新たに作成さ
|
||||
れます。
|
||||
The directory itself (e.g., "/home/username/Pictures/TuxPaint") will be
|
||||
created, if it doesn't exist.
|
||||
|
||||
一つ上の親ディレクトリ(例: "~/Pictures/TuxPaint")が存在しない場合も
|
||||
ディレクトリの作成を試みますが、それ以上の階層のディレクトリを作成する
|
||||
ことはありません。
|
||||
If the parent directory (e.g., "/home/username/Pictures") also does not
|
||||
exist, Tux Paint will attempt to create it as well (but not any
|
||||
directories higher than that).
|
||||
|
||||
例: exportdir=/home/penguin/TuxPaintExports
|
||||
|
||||
|
|
@ -1276,16 +1274,15 @@ altprint=mod
|
|||
|
||||
特に設定していなければ、標準のディレクトリは次の場所にあります:
|
||||
|
||||
o Linux および Unix — ユーザーのホームディレクトリ("~" または
|
||||
"$HOME")にある隠しディレクトリ ".tuxpaint" 以下
|
||||
例: /home/username/.tuxpaint/brushes/
|
||||
o Windows — ユーザーごとの "Application Data" フォルダーにある
|
||||
"TuxPaint" フォルダー以下
|
||||
例: C:\Documents and Settings\Username\Application Data\TuxPaint\
|
||||
brushes\
|
||||
o macOS — ユーザーごとの "Application Support" フォルダーにある
|
||||
"TuxPaint" フォルダー以下
|
||||
例: /Users/Username/Library/Application Support/TuxPaint/brushes/
|
||||
Linux / Unix
|
||||
/home/username/.tuxpaint/
|
||||
|
||||
Windows
|
||||
C:\Users\username\AppData\Roaming\TuxPaint\
|
||||
|
||||
macoS
|
||||
/Users/username/Library/Application Support/TuxPaint/
|
||||
|
||||
|
||||
📜 注: バージョン 0.9.18 以前では、個人用データの検索先として "savedir"
|
||||
の指定と同じディレクトリを使用していましたが、0.9.18 以降では個別に設定
|
||||
|
|
@ -1606,14 +1603,12 @@ altprint=mod
|
|||
|
||||
システム全体の設定を上書きする
|
||||
|
||||
(Linux および Unix ユーザー向け)
|
||||
If any of the above options are set in a system-wide configuration file
|
||||
(e.g. "/etc/tuxpaint/tuxpaint.conf" on Linux), you may override them in
|
||||
your own personal configuration file (e.g. "/home/username/.tuxpaintrc")
|
||||
|
||||
"/etc/tuxpaint/tuxpaint.conf" でオプションが設定されている場合でも、ユー
|
||||
ザー各自の "/home/username/.tuxpaintrc" ファイルの設定が優先されます。
|
||||
|
||||
"noprint" や "grab" のように、真か偽で設定するオプションでは、ユーザー毎の
|
||||
"/home/username/.tuxpaintrc" ファイルで、例えば次のように、単純に「'no' に
|
||||
等しい」と設定することができます:
|
||||
For true/false options, like "noprint" and "grab", you can simply say they
|
||||
equal 'no' in your personal configuration file:
|
||||
|
||||
noprint=no
|
||||
uppercase=no
|
||||
|
|
@ -1767,11 +1762,11 @@ altprint=mod
|
|||
|
||||
--nosysconfig
|
||||
|
||||
Linux および Unix において、システム全体の設定ファイル "/etc/tuxpaint/
|
||||
tuxpaint.conf" から設定を読み込まないようにします。
|
||||
This prevents the system-wide configuration file (e.g.
|
||||
"/etc/tuxpaint/tuxpaint.conf" on Linux), from being read.
|
||||
|
||||
ユーザーごとの設定ファイル "/home/username/.tuxpaintrc" が存在すれば、
|
||||
このファイルのみから設定を読み込みます。
|
||||
Only your own configuration file (e.g. "/home/username/.tuxpaintrc" on
|
||||
Linux) — if it exists — will be used.
|
||||
|
||||
|
||||
|
||||
|
|
@ -1784,10 +1779,9 @@ altprint=mod
|
|||
--version
|
||||
--verbose-version
|
||||
|
||||
プログラムのバージョンとリリース日を表示します。"--verbose-version" オ
|
||||
プションでは、コンパイル時のオプションも追加で表示します。(ドキュメン
|
||||
ト "Tux Paint のインストール" および "よくある質問" もごらんくださ
|
||||
い。)
|
||||
Display the version number and date of the copy of Tux Paint you are
|
||||
running. The "--verbose-version" also lists what compile-time options
|
||||
were set. (See INSTALL and FAQ).
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1182,6 +1182,9 @@ Tux Paint の使用:
|
|||
Config を使用したくない人向け。
|
||||
+ 「まほう」ツールに関するドキュメント ("magic-docs")
|
||||
インストールされている、それぞれの「まほう」ツールに関する説明。
|
||||
+ Frequently Asked Questions ("FAQs") about Tux Paint
|
||||
Answers to, and solutions for, some common questions about, and
|
||||
problems with, using Tux Paint.
|
||||
|
||||
|
||||
Tux Paint の拡張:
|
||||
|
|
|
|||
|
|
@ -172,13 +172,11 @@
|
|||
Where this directory goes depends on what value was set for "<code>DATA_PREFIX</code>" when Tux Paint was built. See 'Install documentation' for details. </p>
|
||||
<p>
|
||||
By default, though, the directory is: <blockquote>
|
||||
<code>/usr/local/share/tuxpaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/usr/local/share/tuxpaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
<p>
|
||||
If you installed from a package, it is more likely to be: <blockquote>
|
||||
<code>/usr/share/tuxpaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/usr/share/tuxpaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -186,8 +184,7 @@
|
|||
<dd>
|
||||
<p>
|
||||
Tux Paint looks for a directory called '<code>data</code>' in the same directory as the executable. This is the directory that the installer used when installing Tux Paint e.g.: <blockquote>
|
||||
<code style="white-space: nowrap;">C:\Program Files\TuxPaint\data</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\data</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -209,8 +206,7 @@
|
|||
<span title="Information">💡</span> <em>Note:</em> If you install a newer version of Tux Paint and replace or discard the old version, you will lose changes made by following the instructions above, so keep backups of your new content (stamps, brushes, etc.). </p>
|
||||
<p>
|
||||
Tux Paint also looks for files in a "TuxPaint" folder that you can place in your system's "Application Support" folder (found under "Library" at the root of your filesystem): <blockquote>
|
||||
<code style="white-space: nowrap;">/Library/Application Support/TuxPaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/data/</code></nobr> </blockquote>
|
||||
</p>
|
||||
<p>
|
||||
When you upgrade to a newer version of Tux Paint, the contents of this "TuxPaint" folder will stay the same, and remain accessible by all users of Tux Paint. </p>
|
||||
|
|
@ -235,8 +231,7 @@
|
|||
<p>
|
||||
Your personal Tux Paint folder is stored in your personal "Application Data". For example, on newer Windows:
|
||||
<blockquote>
|
||||
<code style="white-space: nowrap;">C:\Documents and Settings\<i>(username)</i>\Application Data\TuxPaint\</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -244,17 +239,14 @@
|
|||
<dd>
|
||||
<p>
|
||||
Your personal Tux Paint folder is stored in your personal "Application Support" folder: <blockquote>
|
||||
<code style= "white-space: nowrap;">/Users/<i>(username)</i>/Library/Application Support/TuxPaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
<dt><strong>Linux and Unix</strong></dt>
|
||||
<dd>
|
||||
<p>
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your account's home directory: "<code>$(HOME)/.tuxpaint/</code>" (also known as "<code>~/.tuxpaint/</code>"). </p>
|
||||
<p>
|
||||
That is, if your home directory is "<code>/home/tux</code>", then your personal Tux Paint files go in "<code>/home/tux/.tuxpaint/</code>". </p>
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your account's home directory: <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/</code>"</nobr>. </p>
|
||||
<p>
|
||||
Don't forget the period ("<code>.</code>") before the "<code>tuxpaint</code>"! </p>
|
||||
</dd>
|
||||
|
|
@ -264,7 +256,7 @@
|
|||
To add your own brushes, stamps, 'starters,' templates, and fonts, create subdirectories under your personal Tux Paint directory named "<code><b>brushes</b></code>", "<code><b>stamps</b></code>", "<code><b>starters</b></code>", "<code><b>templates</b></code>", "<code><b>fonts</b></code>", respectively. </p>
|
||||
|
||||
<p>
|
||||
(For example, if you created a brush named "<code>flower.png</code>", you would put it in "<code>~/.tuxpaint/brushes/</code>" under Linux or Unix.) </p>
|
||||
(For example, if you created a brush named <nobr>"<code style='background: #EEE;'>flower.png</code>"</nobr>, you would put it in <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/brushes/</code>"</nobr> under Linux or Unix.) </p>
|
||||
</section><!-- H2: Personal Files -->
|
||||
</section><!-- H1: Where Files Go -->
|
||||
|
||||
|
|
|
|||
|
|
@ -317,28 +317,28 @@
|
|||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>macOS</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code>/Users/username/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Linux / Unix</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code>/home/username/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Haiku</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
|
|
@ -617,10 +617,10 @@
|
|||
|
||||
<dd>
|
||||
<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 "<code>stdout.txt</code>" in the same folder where <code>TuxPaint.exe</code> resides (e.g., in <nobr>"<code>C:\Program Files\TuxPaint\</code>"</nobr>). </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 "<code>stdout.txt</code>" in the same folder where <code>TuxPaint.exe</code> resides (e.g., in <nobr>"<code style='background: #EEE;'>C:\Program Files\TuxPaint\</code>"</nobr>). </p>
|
||||
|
||||
<p>
|
||||
A lockfile (e.g., <nobr>"<code>/home/username/.tuxpaint/lockfile.dat</code>"</nobr> on Linux and Unix, <nobr>"<code>userdata\lockfile.dat</code>"</nobr> 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). </p>
|
||||
A lockfile (e.g., <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/lockfile.dat</code>"</nobr> on Linux and Unix, <nobr>"<code style='background: #EEE;'>userdata\lockfile.dat</code>"</nobr> 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). </p>
|
||||
|
||||
<p>
|
||||
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. </p>
|
||||
|
|
@ -705,7 +705,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -713,7 +713,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -727,7 +727,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -735,7 +735,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -749,7 +749,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/etc/tuxpaint/tuxpaint.conf</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -757,7 +757,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/home/username/.tuxpaintrc</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/home/username/.tuxpaintrc</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -771,7 +771,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -783,7 +783,7 @@
|
|||
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>
|
||||
|
||||
<p>
|
||||
For example, on Linux and Unix, if <nobr>"<code>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> includes this option to disable sound... </p>
|
||||
For example, on Linux and Unix, if <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> includes this option to disable sound... </p>
|
||||
|
||||
<blockquote>
|
||||
<p>
|
||||
|
|
@ -792,7 +792,7 @@
|
|||
</blockquote>
|
||||
|
||||
<p>
|
||||
...then you can reenable sound by either adding this option to your own <nobr>"<code>/home/username/.tuxpaintrc</code>"</nobr> file: </p>
|
||||
...then you can reenable sound by either adding this option to your own <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaintrc</code>"</nobr> file: </p>
|
||||
|
||||
<blockquote>
|
||||
<p>
|
||||
|
|
|
|||
|
|
@ -723,10 +723,7 @@
|
|||
Make sure the 'Shortcut' tab is selected in the window that appears, and examine the 'Target:' field. You should see something like this: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>
|
||||
"C:\Program Files\TuxPaint\TuxPaint.exe"
|
||||
</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>"C:\Program Files\TuxPaint\TuxPaint.exe"</code></nobr> </blockquote>
|
||||
|
||||
<p>
|
||||
You can now add command-line options which will be enabled when you double-click the icon. </p>
|
||||
|
|
@ -735,10 +732,7 @@
|
|||
For example, to make the game run in fullscreen mode, with simple shapes (no rotation option) and in French, add the options (after 'TuxPaint.exe'), like so: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>
|
||||
"C:\Program Files\TuxPaint\TuxPaint.exe" -f -s --lang french
|
||||
</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>"C:\Program Files\TuxPaint\TuxPaint.exe" -f -s --lang french</code></nobr> </blockquote>
|
||||
|
||||
<p>
|
||||
(See the main documentation for a full list of available command-line options.) </p>
|
||||
|
|
@ -757,7 +751,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "<code>stderr.txt</code>" in your personal saving folder for TuxPaint which is normaly <nobr>"<code>C:\Users\username\AppData\Roaming\TuxPaint\</code>"</nobr>. </p>
|
||||
If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "<code>stderr.txt</code>" in your personal saving folder for TuxPaint which is normaly <nobr>"<code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\</code>"</nobr>. </p>
|
||||
|
||||
<p>
|
||||
It will contain a description of what was wrong. Usually it will just be due to incorrect character-case (capital 'Z' instead of lowercase 'z') or a missing (or extra) '-' (dash). </p>
|
||||
|
|
@ -1375,7 +1369,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
Delete "<code>TuxPaint.app</code>" from the "Applications" folder. Data files, including the configuration files, stamps, and saved pictures, may be found in "<code style="white-space: nowrap;">/Library/Application Support/TuxPaint</code>" (all users) and "<code style="white-space: nowrap;">/Users/<i>USERNAME</i>/Library/Application Support/TuxPaint</code>" (individual users). </p>
|
||||
Delete "<code>TuxPaint.app</code>" from the "Applications" folder. Data files, including the configuration files, stamps, and saved pictures, may be found in <nobr>"<code style='background: #EEE;'>/Library/Application Support/TuxPaint/</code>"</nobr> (all users) and <nobr>"<code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/</code>"</nobr> (individual users). </p>
|
||||
</section><!-- H2: macOS -->
|
||||
|
||||
<section class="indent"><!-- H2: Linux -->
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
</p>
|
||||
|
||||
<p>
|
||||
2024年4月 7日 </p>
|
||||
2024年4月27日 </p>
|
||||
</center>
|
||||
</header>
|
||||
|
||||
|
|
@ -169,8 +169,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<code>/home/username/.tuxpaintrc</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>/home/username/.tuxpaintrc</code></nobr> </p>
|
||||
</div>
|
||||
|
||||
<section class="indent"><!-- H3: System-Wide Configuration File -->
|
||||
|
|
@ -183,8 +182,7 @@
|
|||
ユーザー毎の設定ファイルが読み込まれる前に、以下の場所にある、システムの全ユーザーに適用される設定ファイルが読み込まれます。(標準では、全ての変更が無効にされています) </p>
|
||||
|
||||
<blockquote>
|
||||
<code>/etc/tuxpaint/tuxpaint.conf</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code></nobr> </blockquote>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: Linux and Unix Users -->
|
||||
|
||||
|
|
@ -195,7 +193,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
ユーザー毎の設定ファイルは、ホームフォルダ以下のサブフォルダ <code>Library/Application Support/TuxPaint</code> 内に "<code><b>tuxpaint.cfg</b></code>" というファイル名で作成します。 </p>
|
||||
<nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
|
||||
<section class="indent"><!-- H3: System-Wide Configuration File -->
|
||||
<header>
|
||||
|
|
@ -207,8 +205,7 @@
|
|||
ユーザー毎の設定ファイルが読み込まれる前に、以下の場所にある、システムの全ユーザーに適用される設定ファイルが読み込まれます。(標準では、全ての変更が無効にされています) </p>
|
||||
|
||||
<blockquote>
|
||||
<code>/Library/Application Support/TuxPaint/tuxpaint.cfg</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </blockquote>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: macOS Users -->
|
||||
|
||||
|
|
@ -219,8 +216,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<code>C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
|
||||
<p>
|
||||
設定ファイルはメモ帳やワードパッドで作成できますが、必ずテキストファイルとして保存するよう注意して下さい。また、ファイル名に ".txt" という拡張子をつけないようにします。 </p>
|
||||
|
|
@ -235,8 +231,7 @@
|
|||
ユーザー毎の設定ファイルが読み込まれる前に、以下の場所にある、システムの全ユーザーに適用される設定ファイルが読み込まれます。(標準では、全ての変更が無効にされています) </p>
|
||||
|
||||
<p>
|
||||
<code>C:\Program Files\TuxPaint\tuxpaint.cfg</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: Windows Users -->
|
||||
|
||||
|
|
@ -247,7 +242,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
The file you should create is called "<code><b>tuxpaint.conf</b></code>" and it should be placed in <code>/boot/home/config/settings/TuxPaint</code> </p>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
</section><!-- H2: Haiku Users -->
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1790,19 +1785,19 @@
|
|||
<dt>Linux / Unix</dt>
|
||||
<dd>
|
||||
Under a hidden directory in your home directory:<br/>
|
||||
<nobr><code>/home/username/.tuxpaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/home/username/.tuxpaint/saved/</code></nobr> </dd>
|
||||
|
||||
<dt>Windows</dt>
|
||||
<dd>
|
||||
<nobr><code>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code></nobr> </dd>
|
||||
|
||||
<dt>macOS</dt>
|
||||
<dd>
|
||||
<nobr><code>/Users/username/Library/Application Support/TuxPaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/saved/</code></nobr> </dd>
|
||||
|
||||
<dt>Haiku</dt>
|
||||
<dd>
|
||||
<nobr><code>/boot/home/config/settings/TuxPaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code></nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1828,9 +1823,9 @@
|
|||
|
||||
<ul>
|
||||
<li>Linux および Unix — XDG (X Desktop Group) 標準に基づく設定が利用可能な場合、個々のデスクトップ環境において画像保存用として設定されているディレクトリ("<code style="white-space: nowrap;">xdg-user-dir PICTURES</code>" コマンドで確認できます)<br>
|
||||
英語環境では一般的にユーザーのホームディレクトリ("<code>$HOME/Pictures</code>" あるいは "<code>~/Pictures</code>")以下の "<code>Pictures</code>" ディレクトリになります。(日本語環境では "画像")<br>
|
||||
XDGの設定が読み取れない場合や、"<code>XDG_PICTURES_DIR</code> "に何も設定されていない場合は、上記の英語環境で一般的なディレクトリ(~/Pictures)を使用します。 </li>
|
||||
<li>Windows — 各ユーザーの "ピクチャ" ディレクトリ(通常は "C:\Users\<i>ユーザー名</i>\Pictures")。<br>また、次のようにして、フォルダを直接開くこともできます: <ul>
|
||||
Typically (in an English locale), this will be a "<code>Pictures</code>" subdirectory in your home directory (i.e., <nobr>"<code style='background: #EEE;'>/home/username/Pictures</code>"</nobr>).<br>
|
||||
Tux Paint will fall back to using that typical directory, if no XDG configuration can be read, or nothing is set for "<code>XDG_PICTURES_DIR</code>". </li>
|
||||
<li>Windows - "ピクチャ" directory for each user (normaly <nobr>"<code style='background: #EEE;'>C:\Users\username\My Pictures</code>"</nobr>)<br>You can directly open the folder as follows: <ul>
|
||||
<li>"[Windows]+[R]" キーを押して "ファイル名を指定して実行" ダイアログを開く。</li>
|
||||
<li>テキストボックスに "Shell:My Pictures" と入力して [OK] を押す。</li>
|
||||
</ul>
|
||||
|
|
@ -1841,11 +1836,11 @@
|
|||
</ul>
|
||||
|
||||
<p class="note">
|
||||
<span title="Information">💡</span> <strong>注:</strong> 標準では、サブディレクトリ "<code>TuxPaint</code>" が作成されます。(例: "<code>~/Pictures/TuxPaint</code>")一方、"<code>--exportdir</code>" オプションを用いると、指定されたパスがそのまま使用されます(サブディレクトリ "<code>TuxPaint</code>" は作成されません)。 </p>
|
||||
<span title="Information">💡</span> <strong>Note:</strong> When the defaults are used, a new "<code>TuxPaint</code>" subdirectory will be created and used. (e.g., <nobr>"<code style='background: #EEE;'>/home/username/Pictures/TuxPaint</code>"</nobr>) When the "<code>--exportdir</code>" option is used, the exact path specified will be used (no "<code>TuxPaint</code>" subdirectory is created). </p>
|
||||
<p>
|
||||
ディレクトリ(例: "<code>~/Pictures/TuxPaint</code>")が存在しない場合は新たに作成されます。 </p>
|
||||
The directory itself (e.g., <nobr>"<code style='background: #EEE;'>/home/username/Pictures/TuxPaint</code>"</nobr>) will be created, if it doesn't exist. </p>
|
||||
<p>
|
||||
一つ上の<em>親ディレクトリ</em>(例: "<code>~/Pictures/TuxPaint</code>")が存在しない場合もディレクトリの作成を試みますが、それ以上の階層のディレクトリを作成することはありません。 </p>
|
||||
If the <em>parent</em> directory (e.g., <nobr>"<code style='background: #EEE;'>/home/username/Pictures</code>"</nobr>) also does not exist, Tux Paint will attempt to create it as well (but not any directories higher than that). </p>
|
||||
|
||||
<p>
|
||||
例: <code>exportdir=/home/penguin/TuxPaintExports</code> </p>
|
||||
|
|
@ -1947,16 +1942,17 @@
|
|||
<p>
|
||||
特に設定していなければ、標準のディレクトリは次の場所にあります: </p>
|
||||
|
||||
<ul>
|
||||
<li>Linux および Unix — ユーザーのホームディレクトリ("<code>~</code>" または "<code>$HOME</code>")にある隠しディレクトリ "<code>.tuxpaint</code>" 以下<br>
|
||||
例: <code>/home/<i>username</i>/.tuxpaint/brushes/</code> </li>
|
||||
<dl>
|
||||
<dt>Linux / Unix</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>/home/username/.tuxpaint/</code></nobr></dd>
|
||||
|
||||
<li>Windows — ユーザーごとの "<code>Application Data</code>" フォルダーにある "<code>TuxPaint</code>" フォルダー以下<br>
|
||||
例: <code>C:\Documents and Settings\<i>Username</i>\Application Data\TuxPaint\brushes\</code> </li>
|
||||
<dt>Windows</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\</code></nobr></dd>
|
||||
|
||||
<li>macOS — ユーザーごとの "<code>Application Support</code>" フォルダーにある "<code>TuxPaint</code>" フォルダー以下<br>
|
||||
例: <code>/Users/<i>Username</i>/Library/Application Support/TuxPaint/brushes/</code> </li>
|
||||
</ul>
|
||||
<dt>macoS</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/</code></nobr></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
<span title="Version variation">📜</span> <strong>注:</strong> バージョン 0.9.18 以前では、個人用データの検索先として "<code>savedir</code>" の指定と同じディレクトリを使用していましたが、0.9.18 以降では個別に設定できるようになりました。 </p>
|
||||
|
|
@ -2377,14 +2373,10 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<i>(Linux および Unix ユーザー向け)</i>
|
||||
</p>
|
||||
If any of the above options are set in a system-wide configuration file (e.g. <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> on Linux), you may override them in your own personal configuration file (e.g. <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaintrc</code>"</nobr>) </p>
|
||||
|
||||
<p>
|
||||
"<code>/etc/tuxpaint/tuxpaint.conf</code>" でオプションが設定されている場合でも、ユーザー各自の "<code>/home/username/.tuxpaintrc</code>" ファイルの設定が優先されます。 </p>
|
||||
|
||||
<p>
|
||||
"<code>noprint</code>" や "<code>grab</code>" のように、真か偽で設定するオプションでは、ユーザー毎の "<code>/home/username/.tuxpaintrc</code>" ファイルで、例えば次のように、単純に 「'no' に等しい」と設定することができます: </p>
|
||||
For true/false options, like "<code>noprint</code>" and "<code>grab</code>", you can simply say they equal 'no' in your personal configuration file: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>noprint=no<br>
|
||||
|
|
@ -2555,10 +2547,10 @@
|
|||
|
||||
<dd>
|
||||
<p>
|
||||
Linux および Unix において、システム全体の設定ファイル "<code>/etc/tuxpaint/tuxpaint.conf</code>" から設定を読み込まないようにします。 </p>
|
||||
This prevents the system-wide configuration file (e.g. <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> on Linux), from being read. </p>
|
||||
|
||||
<p>
|
||||
ユーザーごとの設定ファイル "<code>/home/username/.tuxpaintrc</code>" が存在すれば、このファイルのみから設定を読み込みます。 </p>
|
||||
Only your own configuration file (e.g. <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaintrc</code>"</nobr> on Linux) — if it exists — will be used. </p>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
|
@ -2579,7 +2571,7 @@
|
|||
|
||||
<dd>
|
||||
<p>
|
||||
プログラムのバージョンとリリース日を表示します。"--verbose-version" オプションでは、コンパイル時のオプションも追加で表示します。(ドキュメント "Tux Paint のインストール" および "よくある質問" もごらんください。) </p>
|
||||
Display the version number and date of the copy of Tux Paint you are running. The "<code>--verbose-version</code>" also lists what compile-time options were set. (See <a href="INSTALL.html">INSTALL</a> and <a href="FAQ.html">FAQ</a>). </p>
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
</p>
|
||||
|
||||
<p>
|
||||
2024年4月 8日 </p>
|
||||
2024年4月27日 </p>
|
||||
</center>
|
||||
</header>
|
||||
<table border="2"
|
||||
|
|
@ -318,7 +318,7 @@
|
|||
ポータブル版(ZIPファイル版)をダウンロードして Tux Paint をインストールした場合や、インストーラーでショートカットを作成しなかった場合は、"<code>Tux Paint</code>"のフォルダにある "<code>tuxpaint.exe</code>" のアイコンをダブルクリックします。 </p>
|
||||
|
||||
<p>
|
||||
By default, the 'Tux Paint Installer' will put Tux Paint's folder in <nobr>"<code>C:\Program Files\TuxPaint\</code>"</nobr>, though you may have changed this when you ran the installer. </p>
|
||||
By default, the 'Tux Paint Installer' will put Tux Paint's folder in <nobr>"<code style='background: #EEE;'>C:\Program Files\TuxPaint\</code>"</nobr>, though you may have changed this when you ran the installer. </p>
|
||||
|
||||
<p>
|
||||
ZIP ファイルを用いた場合、「Tux Paint」のフォルダは、任意の場所に配置できます。 </p>
|
||||
|
|
@ -1676,28 +1676,28 @@
|
|||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>C:\Users\username\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>macOS</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code>/Users/username/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/Users/username/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Linux / Unix</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code>/home/username/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/home/username/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Haiku</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1818,6 +1818,10 @@
|
|||
<li>
|
||||
<a href="../magic-docs/html/index.html">「まほう」ツールに関するドキュメント ("<code>magic-docs</code>")</a><br>
|
||||
インストールされている、それぞれの「まほう」ツールに関する説明。 </li>
|
||||
|
||||
<li>
|
||||
<a href="FAQ.html">Frequently Asked Questions ("FAQs") about Tux Paint</a><br>
|
||||
Answers to, and solutions for, some common questions about, and problems with, using Tux Paint. </li>
|
||||
</ul>
|
||||
</dd>
|
||||
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ macOS
|
|||
mund ta vendosni te dosja “Application Support” e sistemit (gjendet nën
|
||||
"Library", në rrënjë të sistemit tuaj të kartelave):
|
||||
|
||||
/Library/Application Support/TuxPaint/
|
||||
/Library/Application Support/TuxPaint/data/
|
||||
|
||||
Kur e përditësoni Tux Paint-in me një version të ri, lënda e kësaj dosjeje
|
||||
“TuxPaint” do të mbesë e njëjtë dhe do të mbesë e përdorshme nga krejt
|
||||
|
|
@ -121,8 +121,7 @@ Windows
|
|||
Dosja juaj personale Tux Paint gjedenet te “Application Data” juaj
|
||||
personale. Për shembull, në Windows-e më të rinj:
|
||||
|
||||
C:\Dokumente dhe Rregullime\(emër përdoruesi)\Të dhëna Aplikacioni\
|
||||
TuxPaint\
|
||||
C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\
|
||||
|
||||
|
||||
|
||||
|
|
@ -131,18 +130,14 @@ macOS
|
|||
Dosja juaj personale Tux Paint gjendet në dosjen tuaj personale
|
||||
“Application Support”:
|
||||
|
||||
/Users/(emër përdoruesi)/Library/Application Support/TuxPaint/
|
||||
/Users/emër përdoruesi/Library/Application Support/TuxPaint/
|
||||
|
||||
|
||||
|
||||
Linux dhe Unix
|
||||
|
||||
Kartelat tuaja personale Tux Paint shkojnë te një “drejtori e fshehur” që
|
||||
gjendet në drejtorinë shtëpi të llogarisë tuaj: “$(HOME)/.tuxpaint/” (e
|
||||
njohur edhe si “~/.tuxpaint/”).
|
||||
|
||||
Pra, nëse drejtoria juaj shtëpi është “/home/tux”, atëherë kartelat tuaja
|
||||
personale Tux Paint shkojnë te “/home/tux/.tuxpaint/”.
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your
|
||||
account's home directory: "/home/emër përdoruesi/.tuxpaint/".
|
||||
|
||||
Mos harroni pikën (“.”) para “tuxpaint”!
|
||||
|
||||
|
|
@ -153,8 +148,8 @@ Që të shoni penelat, stampat, “fillesat”, gjedhet dhe shkronjat tuaja, kri
|
|||
nëndrejtori nën drejtorinë tuaj personale Tux Paint të quajtuara “brushes”, “
|
||||
stamps”, “starters”, “templates”, “fonts”, përkatësisht.
|
||||
|
||||
(Për shembull, nëse krijoni një penel të quajtur “flower.png”, do ta vendosnit
|
||||
te “~/.tuxpaint/brushes/”, nën Linux ose Unix.)
|
||||
(For example, if you created a brush named "flower.png", you would put it in
|
||||
"/home/emër përdoruesi/.tuxpaint/brushes/" under Linux or Unix.)
|
||||
|
||||
Penela
|
||||
|
||||
|
|
|
|||
|
|
@ -888,9 +888,10 @@ Panel Add/Remove programs section.
|
|||
macOS
|
||||
|
||||
Delete "TuxPaint.app" from the "Applications" folder. Data files, including the
|
||||
configuration files, stamps, and saved pictures, may be found in "/Library/
|
||||
Application Support/TuxPaint" (all users) and "/Users/EMËRPËRDORUESI/Library/
|
||||
Application Support/TuxPaint" (individual users).
|
||||
configuration files, stamps, and saved pictures, may be found in
|
||||
"/Library/Application Support/TuxPaint/" (all users) and
|
||||
"/Users/emër përdoruesi/Library/Application Support/TuxPaint/" (individual
|
||||
users).
|
||||
|
||||
Linux
|
||||
|
||||
|
|
|
|||
|
|
@ -59,8 +59,7 @@ at:
|
|||
|
||||
Përdorues të MacOS-it
|
||||
|
||||
The file you should create is called "tuxpaint.cfg" and it should be placed in
|
||||
your home folder, under the sub-folder: Library/Application Support/TuxPaint
|
||||
/Users/emër përdoruesi/Library/Application Support/TuxPaint/tuxpaint.cfg
|
||||
|
||||
Kartelë Formësimi Për Mbarë Sistemin
|
||||
|
||||
|
|
@ -87,8 +86,7 @@ C:\Program Files\TuxPaint\tuxpaint.cfg
|
|||
|
||||
Haiku Users
|
||||
|
||||
The file you should create is called "tuxpaint.conf" and it should be placed in
|
||||
/boot/home/config/settings/TuxPaint
|
||||
/boot/home/config/settings/TuxPaint/tuxpaint.conf
|
||||
|
||||
⚙ You can disable reading of this file altogether, leaving the settings as
|
||||
defaults (which can then be overridden by your personal config. file and/or
|
||||
|
|
@ -1174,29 +1172,29 @@ Ruaje Formësimin e Shtypësit
|
|||
Group) configuration. (Try running the command-line "xdg-user-dir
|
||||
PICTURES" to find out.)
|
||||
Typically (in an English locale), this will be a "Foto"
|
||||
subdirectory in your home directory (i.e., "$HOME/Foto" aka "~/
|
||||
Foto").
|
||||
Tux Paint will fall back to using that typical directory, of no XDG
|
||||
subdirectory in your home directory (i.e.,
|
||||
"/home/emër përdoruesi/Foto").
|
||||
Tux Paint will fall back to using that typical directory, if no XDG
|
||||
configuration can be read, or nothing is set for
|
||||
"XDG_PICTURES_DIR".
|
||||
o Windows - "Fotot e Mia" directory for each user (normaly "c:\Users\
|
||||
EMËR PËRDORUESI\Pictures").
|
||||
o Windows - "Fotot e Mia" directory for each user (normaly
|
||||
"C:\Users\emër përdoruesi\My Pictures")
|
||||
You can directly open the folder as follows:
|
||||
# Shtypni “[Windows]+[R]”" që të hapet dialogu “Xhironi …”.
|
||||
# Enter "Shell:My Pictures" in the text box and push [OK].
|
||||
o macOS — TBD!
|
||||
|
||||
💡 Note: When the defaults are used, a new "TuxPaint" subdirectory will
|
||||
be created and used. (e.g., "~/Foto/TuxPaint") When the "--exportdir"
|
||||
option is used, the exact path specified will be used (no "TuxPaint"
|
||||
subdirectory is created).
|
||||
be created and used. (e.g., "/home/emër përdoruesi/Foto/TuxPaint") When
|
||||
the "--exportdir" option is used, the exact path specified will be used
|
||||
(no "TuxPaint" subdirectory is created).
|
||||
|
||||
The directory itself (e.g., "~/Foto/TuxPaint") will be created, if it
|
||||
doesn't exist.
|
||||
The directory itself (e.g., "/home/emër përdoruesi/Foto/TuxPaint") will
|
||||
be created, if it doesn't exist.
|
||||
|
||||
If the parent directory (e.g., "~/Foto/TuxPaint") also does not exist,
|
||||
Tux Paint will attempt to create it as well (but not any directories
|
||||
higher than that).
|
||||
If the parent directory (e.g., "/home/emër përdoruesi/Foto") also does
|
||||
not exist, Tux Paint will attempt to create it as well (but not any
|
||||
directories higher than that).
|
||||
|
||||
Shembull: exportdir=/home/penguin/TuxPaintExports
|
||||
|
||||
|
|
@ -1284,17 +1282,15 @@ Ruaje Formësimin e Shtypësit
|
|||
|
||||
If you do not override it, the default location is:
|
||||
|
||||
o Linux & Unix — Under a hidden directory named ".tuxpaint" in your
|
||||
home directory (aka "~" or "$HOME")
|
||||
Shembull: /home/username/.tuxpaint/brushes/
|
||||
o Windows — Inside a folder named "TuxPaint" in your "Application
|
||||
Data" folder.
|
||||
Shembull: C:\Documents and Settings\Username\Application Data\
|
||||
TuxPaint\brushes\
|
||||
o macOS — Inside a folder named "TuxPaint" in your "Application
|
||||
Support" folder.
|
||||
Shembull: /Users/Username/Library/Application Support/TuxPaint/
|
||||
brushes/
|
||||
Linux / Unix
|
||||
/home/emër përdoruesi/.tuxpaint/
|
||||
|
||||
Windows
|
||||
C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\
|
||||
|
||||
macoS
|
||||
/Users/emër përdoruesi/Library/Application Support/TuxPaint/
|
||||
|
||||
|
||||
📜 Note: Prior to version 0.9.18, Tux Paint would use the same setting
|
||||
or default as for "savedir" to search for data files. As of version
|
||||
|
|
@ -1615,13 +1611,13 @@ Shkurtore butonash
|
|||
|
||||
Anashkalim Mundësish të Formësimit të Ssistemit
|
||||
|
||||
(Për përdorues Linux-esh dhe Unix-esh)
|
||||
|
||||
If any of the above options are set in "/etc/tuxpaint/tuxpaint.conf", you
|
||||
can override them in your own "/home/emër përdoruesi/.tuxpaintrc" file.
|
||||
If any of the above options are set in a system-wide configuration file
|
||||
(e.g. "/etc/tuxpaint/tuxpaint.conf" on Linux), you may override them in
|
||||
your own personal configuration file (e.g.
|
||||
"/home/emër përdoruesi/.tuxpaintrc")
|
||||
|
||||
For true/false options, like "noprint" and "grab", you can simply say they
|
||||
equal 'no' in your "/home/emër përdoruesi/.tuxpaintrc" file:
|
||||
equal 'no' in your personal configuration file:
|
||||
|
||||
noprint=no
|
||||
uppercase=no
|
||||
|
|
@ -1775,11 +1771,12 @@ Shkurtore butonash
|
|||
|
||||
--nosysconfig
|
||||
|
||||
Under Linux and Unix, this prevents the system-wide configuration file,
|
||||
"/etc/tuxpaint/tuxpaint.conf", from being read.
|
||||
This prevents the system-wide configuration file (e.g.
|
||||
"/etc/tuxpaint/tuxpaint.conf" on Linux), from being read.
|
||||
|
||||
Only your own configuration file, "/home/emër përdoruesi/.tuxpaintrc",
|
||||
if it exists, will be used.
|
||||
Only your own configuration file (e.g.
|
||||
"/home/emër përdoruesi/.tuxpaintrc" on Linux) — if it exists — will be
|
||||
used.
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1271,6 +1271,9 @@ Përdorim i Tux Paint-it:
|
|||
Tux Paint's configuration.
|
||||
+ Dokumentim i Mjetit “Magjik” (“magic-docs”)
|
||||
Documentation for each of the currently-installed 'Magic' tools.
|
||||
+ Frequently Asked Questions ("FAQs") about Tux Paint
|
||||
Answers to, and solutions for, some common questions about, and
|
||||
problems with, using Tux Paint.
|
||||
|
||||
|
||||
Si të zgjerohet Tux Paint-i:
|
||||
|
|
|
|||
|
|
@ -172,13 +172,11 @@
|
|||
Ku gjendet kjo drejtori varet nga vlera që qe caktuar për “<code>DATA_PREFIX</code>”, kur u montua Tux Paint-i. Për hollësi, shihni “Dokumentim instalimit”. </p>
|
||||
<p>
|
||||
Si parazgjedhje, ama, drejtoria është: <blockquote>
|
||||
<code>/usr/local/share/tuxpaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/usr/local/share/tuxpaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
<p>
|
||||
Nëse e instaluat prej një pakete, ka më tepër gjasa të jetë: <blockquote>
|
||||
<code>/usr/share/tuxpaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/usr/share/tuxpaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -186,8 +184,7 @@
|
|||
<dd>
|
||||
<p>
|
||||
Tux Paint-i kërkon për një drejtori të quajtur '<code>data</code>' në të njëjtën drejtori me të ekzekutueshmin. Kjo është një drejtori që instaluesi përdori kur instaloi Tux Paint-ni, p.sh.,: <blockquote>
|
||||
<code style="white-space: nowrap;">C:\Program Files\TuxPaint\data</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\data</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -209,8 +206,7 @@
|
|||
<span title="Information">💡</span> <em>Shënim:</em> Nëse instaloni një version më të ri të Tux Paint-it dhe zëvendësoni, ose hidhni tej versionin e vjetër, duke ndjekur udhëzimet e mësipërme do të humbni ndryshimet e bëra, ndaj mbani kopjeruajtje të lëndës që krijoni rishtas (stampa, penela, etj.). </p>
|
||||
<p>
|
||||
Tux Paint-i kërkon gjithashtu për kartela në dosjen “TuxPaint” të cilën mund ta vendosni te dosja “Application Support” e sistemit (gjendet nën "Library", në rrënjë të sistemit tuaj të kartelave): <blockquote>
|
||||
<code style="white-space: nowrap;">/Library/Application Support/TuxPaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/data/</code></nobr> </blockquote>
|
||||
</p>
|
||||
<p>
|
||||
Kur e përditësoni Tux Paint-in me një version të ri, lënda e kësaj dosjeje “TuxPaint” do të mbesë e njëjtë dhe do të mbesë e përdorshme nga krejt përdoruesit e Tux Paint-it. </p>
|
||||
|
|
@ -235,8 +231,7 @@
|
|||
<p>
|
||||
Dosja juaj personale Tux Paint gjedenet te “Application Data” juaj personale. Për shembull, në Windows-e më të rinj:
|
||||
<blockquote>
|
||||
<code style="white-space: nowrap;">C:\Dokumente dhe Rregullime\<i>(emër përdoruesi)</i>\Të dhëna Aplikacioni\TuxPaint\</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
|
|
@ -244,17 +239,14 @@
|
|||
<dd>
|
||||
<p>
|
||||
Dosja juaj personale Tux Paint gjendet në dosjen tuaj personale “Application Support”: <blockquote>
|
||||
<code style= "white-space: nowrap;">/Users/<i>(emër përdoruesi)</i>/Library/Application Support/TuxPaint/</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Users/emër përdoruesi/Library/Application Support/TuxPaint/</code></nobr> </blockquote>
|
||||
</p>
|
||||
</dd>
|
||||
|
||||
<dt><strong>Linux dhe Unix</strong></dt>
|
||||
<dd>
|
||||
<p>
|
||||
Kartelat tuaja personale Tux Paint shkojnë te një “drejtori e fshehur” që gjendet në drejtorinë shtëpi të llogarisë tuaj: “<code>$(HOME)/.tuxpaint/</code>” (e njohur edhe si “<code>~/.tuxpaint/</code>”). </p>
|
||||
<p>
|
||||
Pra, nëse drejtoria juaj shtëpi është “<code>/home/tux</code>”, atëherë kartelat tuaja personale Tux Paint shkojnë te “<code>/home/tux/.tuxpaint/</code>”. </p>
|
||||
Your personal Tux Paint files go into a 'hidden directory' found in your account's home directory: <nobr>"<code style='background: #EEE;'>/home/emër përdoruesi/.tuxpaint/</code>"</nobr>. </p>
|
||||
<p>
|
||||
Mos harroni pikën (“<code>.</code>”) para “<code>tuxpaint</code>”! </p>
|
||||
</dd>
|
||||
|
|
@ -264,7 +256,7 @@
|
|||
Që të shoni penelat, stampat, “fillesat”, gjedhet dhe shkronjat tuaja, krijoni nëndrejtori nën drejtorinë tuaj personale Tux Paint të quajtuara “<code><b>brushes</b></code>”, “<code><b>stamps</b></code>”, “<code><b>starters</b></code>”, “<code><b>templates</b></code>”, “<code><b>fonts</b></code>”, përkatësisht. </p>
|
||||
|
||||
<p>
|
||||
(Për shembull, nëse krijoni një penel të quajtur “<code>flower.png</code>”, do ta vendosnit te “<code>~/.tuxpaint/brushes/</code>”, nën Linux ose Unix.) </p>
|
||||
(For example, if you created a brush named <nobr>"<code style='background: #EEE;'>flower.png</code>"</nobr>, you would put it in <nobr>"<code style='background: #EEE;'>/home/emër përdoruesi/.tuxpaint/brushes/</code>"</nobr> under Linux or Unix.) </p>
|
||||
</section><!-- H2: Personal Files -->
|
||||
</section><!-- H1: Where Files Go -->
|
||||
|
||||
|
|
|
|||
|
|
@ -317,28 +317,28 @@
|
|||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code>C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>macOS</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code>/Users/emër përdoruesi/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/Users/emër përdoruesi/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Linux / Unix</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code>/home/emër përdoruesi/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/home/emër përdoruesi/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Haiku</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
|
|
@ -617,10 +617,10 @@
|
|||
|
||||
<dd>
|
||||
<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 "<code>stdout.txt</code>" in the same folder where <code>TuxPaint.exe</code> resides (e.g., in <nobr>"<code>C:\Program Files\TuxPaint\</code>"</nobr>). </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 "<code>stdout.txt</code>" in the same folder where <code>TuxPaint.exe</code> resides (e.g., in <nobr>"<code style='background: #EEE;'>C:\Program Files\TuxPaint\</code>"</nobr>). </p>
|
||||
|
||||
<p>
|
||||
A lockfile (e.g., <nobr>"<code>/home/emër përdoruesi/.tuxpaint/lockfile.dat</code>"</nobr> on Linux and Unix, <nobr>"<code>userdata\lockfile.dat</code>"</nobr> 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). </p>
|
||||
A lockfile (e.g., <nobr>"<code style='background: #EEE;'>/home/emër përdoruesi/.tuxpaint/lockfile.dat</code>"</nobr> on Linux and Unix, <nobr>"<code style='background: #EEE;'>userdata\lockfile.dat</code>"</nobr> 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). </p>
|
||||
|
||||
<p>
|
||||
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. </p>
|
||||
|
|
@ -705,7 +705,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -713,7 +713,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -727,7 +727,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -735,7 +735,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/Users/emër përdoruesi/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/Users/emër përdoruesi/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -749,7 +749,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/etc/tuxpaint/tuxpaint.conf</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -757,7 +757,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/home/emër përdoruesi/.tuxpaintrc</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/home/emër përdoruesi/.tuxpaintrc</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -771,7 +771,7 @@
|
|||
|
||||
<blockquote>
|
||||
<p>
|
||||
<nobr><code>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
|
|
@ -783,7 +783,7 @@
|
|||
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>
|
||||
|
||||
<p>
|
||||
For example, on Linux and Unix, if <nobr>"<code>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> includes this option to disable sound... </p>
|
||||
For example, on Linux and Unix, if <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> includes this option to disable sound... </p>
|
||||
|
||||
<blockquote>
|
||||
<p>
|
||||
|
|
@ -792,7 +792,7 @@
|
|||
</blockquote>
|
||||
|
||||
<p>
|
||||
...then you can reenable sound by either adding this option to your own <nobr>"<code>/home/emër përdoruesi/.tuxpaintrc</code>"</nobr> file: </p>
|
||||
...then you can reenable sound by either adding this option to your own <nobr>"<code style='background: #EEE;'>/home/emër përdoruesi/.tuxpaintrc</code>"</nobr> file: </p>
|
||||
|
||||
<blockquote>
|
||||
<p>
|
||||
|
|
|
|||
|
|
@ -723,10 +723,7 @@
|
|||
Make sure the 'Shortcut' tab is selected in the window that appears, and examine the 'Target:' field. You should see something like this: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>
|
||||
"C:\Program Files\TuxPaint\TuxPaint.exe"
|
||||
</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>"C:\Program Files\TuxPaint\TuxPaint.exe"</code></nobr> </blockquote>
|
||||
|
||||
<p>
|
||||
You can now add command-line options which will be enabled when you double-click the icon. </p>
|
||||
|
|
@ -735,10 +732,7 @@
|
|||
For example, to make the game run in fullscreen mode, with simple shapes (no rotation option) and in French, add the options (after 'TuxPaint.exe'), like so: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>
|
||||
"C:\Program Files\TuxPaint\TuxPaint.exe" -f -s --lang french
|
||||
</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>"C:\Program Files\TuxPaint\TuxPaint.exe" -f -s --lang french</code></nobr> </blockquote>
|
||||
|
||||
<p>
|
||||
(Për një listë të plotë të mundësive të gatshme për rresht urdhrash, shihni dokumentimin kryesor) </p>
|
||||
|
|
@ -757,7 +751,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "<code>stderr.txt</code>" in your personal saving folder for TuxPaint which is normaly <nobr>"<code>C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\</code>"</nobr>. </p>
|
||||
If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "<code>stderr.txt</code>" in your personal saving folder for TuxPaint which is normaly <nobr>"<code style='background: #EEE;'>C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\</code>"</nobr>. </p>
|
||||
|
||||
<p>
|
||||
It will contain a description of what was wrong. Usually it will just be due to incorrect character-case (capital 'Z' instead of lowercase 'z') or a missing (or extra) '-' (dash). </p>
|
||||
|
|
@ -1375,7 +1369,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
Delete "<code>TuxPaint.app</code>" from the "Applications" folder. Data files, including the configuration files, stamps, and saved pictures, may be found in "<code style="white-space: nowrap;">/Library/Application Support/TuxPaint</code>" (all users) and "<code style="white-space: nowrap;">/Users/<i>EMËRPËRDORUESI</i>/Library/Application Support/TuxPaint</code>" (individual users). </p>
|
||||
Delete "<code>TuxPaint.app</code>" from the "Applications" folder. Data files, including the configuration files, stamps, and saved pictures, may be found in <nobr>"<code style='background: #EEE;'>/Library/Application Support/TuxPaint/</code>"</nobr> (all users) and <nobr>"<code style='background: #EEE;'>/Users/emër përdoruesi/Library/Application Support/TuxPaint/</code>"</nobr> (individual users). </p>
|
||||
</section><!-- H2: macOS -->
|
||||
|
||||
<section class="indent"><!-- H2: Linux -->
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
</p>
|
||||
|
||||
<p>
|
||||
7 prill 2024 </p>
|
||||
27 prill 2024 </p>
|
||||
</center>
|
||||
</header>
|
||||
|
||||
|
|
@ -169,8 +169,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<code>/home/emër përdoruesi/.tuxpaintrc</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>/home/emër përdoruesi/.tuxpaintrc</code></nobr> </p>
|
||||
</div>
|
||||
|
||||
<section class="indent"><!-- H3: System-Wide Configuration File -->
|
||||
|
|
@ -183,8 +182,7 @@
|
|||
Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>/etc/tuxpaint/tuxpaint.conf</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code></nobr> </blockquote>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: Linux and Unix Users -->
|
||||
|
||||
|
|
@ -195,7 +193,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
The file you should create is called "<code><b>tuxpaint.cfg</b></code>" and it should be placed in your home folder, under the sub-folder: <code>Library/Application Support/TuxPaint</code> </p>
|
||||
<nobr><code style='background: #EEE;'>/Users/emër përdoruesi/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </p>
|
||||
|
||||
<section class="indent"><!-- H3: System-Wide Configuration File -->
|
||||
<header>
|
||||
|
|
@ -207,8 +205,7 @@
|
|||
Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>/Library/Application Support/TuxPaint/tuxpaint.cfg</code>
|
||||
</blockquote>
|
||||
<nobr><code style='background: #EEE;'>/Library/Application Support/TuxPaint/tuxpaint.cfg</code></nobr> </blockquote>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: macOS Users -->
|
||||
|
||||
|
|
@ -219,8 +216,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<code>C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\tuxpaint.cfg</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
|
||||
<p>
|
||||
You can use NotePad or WordPad to create this file. Be sure to save it as Plain Text, and make sure the filename doesn't have ".txt" at the end... </p>
|
||||
|
|
@ -235,8 +231,7 @@
|
|||
Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at: </p>
|
||||
|
||||
<p>
|
||||
<code>C:\Program Files\TuxPaint\tuxpaint.cfg</code>
|
||||
</p>
|
||||
<nobr><code style='background: #EEE;'>C:\Program Files\TuxPaint\tuxpaint.cfg</code></nobr> </p>
|
||||
</section><!-- H3: System-Wide Configuration File -->
|
||||
</section><!-- H2: Windows Users -->
|
||||
|
||||
|
|
@ -247,7 +242,7 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
The file you should create is called "<code><b>tuxpaint.conf</b></code>" and it should be placed in <code>/boot/home/config/settings/TuxPaint</code> </p>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/tuxpaint.conf</code></nobr> </p>
|
||||
</section><!-- H2: Haiku Users -->
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1790,19 +1785,19 @@
|
|||
<dt>Linux / Unix</dt>
|
||||
<dd>
|
||||
Under a hidden directory in your home directory:<br/>
|
||||
<nobr><code>/home/emër përdoruesi/.tuxpaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/home/emër përdoruesi/.tuxpaint/saved/</code></nobr> </dd>
|
||||
|
||||
<dt>Windows</dt>
|
||||
<dd>
|
||||
<nobr><code>C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\saved\</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\saved\</code></nobr> </dd>
|
||||
|
||||
<dt>macOS</dt>
|
||||
<dd>
|
||||
<nobr><code>/Users/emër përdoruesi/Library/Application Support/TuxPaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/Users/emër përdoruesi/Library/Application Support/TuxPaint/saved/</code></nobr> </dd>
|
||||
|
||||
<dt>Haiku</dt>
|
||||
<dd>
|
||||
<nobr><code>/boot/home/config/settings/TuxPaint/saved/</code></nobr> </dd>
|
||||
<nobr><code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code></nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1828,9 +1823,9 @@
|
|||
|
||||
<ul>
|
||||
<li>Linux & Unix — If available, wherever your desktop environment is configured for pictures to be stored, based on your XDG (X Desktop Group) configuration. (Try running the command-line "<code style="white-space: nowrap;">xdg-user-dir PICTURES</code>" to find out.)<br>
|
||||
Typically (in an English locale), this will be a "<code>Foto</code>" subdirectory in your home directory (i.e., "<code>$HOME/Foto</code>" aka "<code>~/Foto</code>").<br>
|
||||
Tux Paint will fall back to using that typical directory, of no XDG configuration can be read, or nothing is set for "<code>XDG_PICTURES_DIR</code>". </li>
|
||||
<li>Windows - "Fotot e Mia" directory for each user (normaly "c:\Users\<i>EMËR PËRDORUESI</i>\Pictures").<br>You can directly open the folder as follows: <ul>
|
||||
Typically (in an English locale), this will be a "<code>Foto</code>" subdirectory in your home directory (i.e., <nobr>"<code style='background: #EEE;'>/home/emër përdoruesi/Foto</code>"</nobr>).<br>
|
||||
Tux Paint will fall back to using that typical directory, if no XDG configuration can be read, or nothing is set for "<code>XDG_PICTURES_DIR</code>". </li>
|
||||
<li>Windows - "Fotot e Mia" directory for each user (normaly <nobr>"<code style='background: #EEE;'>C:\Users\emër përdoruesi\My Pictures</code>"</nobr>)<br>You can directly open the folder as follows: <ul>
|
||||
<li>Shtypni “[Windows]+[R]”" që të hapet dialogu “Xhironi …”.</li>
|
||||
<li>Enter "Shell:My Pictures" in the text box and push [OK].</li>
|
||||
</ul>
|
||||
|
|
@ -1841,11 +1836,11 @@
|
|||
</ul>
|
||||
|
||||
<p class="note">
|
||||
<span title="Information">💡</span> <strong>Note:</strong> When the defaults are used, a new "<code>TuxPaint</code>" subdirectory will be created and used. (e.g., "<code>~/Foto/TuxPaint</code>") When the "<code>--exportdir</code>" option is used, the exact path specified will be used (no "<code>TuxPaint</code>" subdirectory is created). </p>
|
||||
<span title="Information">💡</span> <strong>Note:</strong> When the defaults are used, a new "<code>TuxPaint</code>" subdirectory will be created and used. (e.g., <nobr>"<code style='background: #EEE;'>/home/emër përdoruesi/Foto/TuxPaint</code>"</nobr>) When the "<code>--exportdir</code>" option is used, the exact path specified will be used (no "<code>TuxPaint</code>" subdirectory is created). </p>
|
||||
<p>
|
||||
The directory itself (e.g., "<code>~/Foto/TuxPaint</code>") will be created, if it doesn't exist. </p>
|
||||
The directory itself (e.g., <nobr>"<code style='background: #EEE;'>/home/emër përdoruesi/Foto/TuxPaint</code>"</nobr>) will be created, if it doesn't exist. </p>
|
||||
<p>
|
||||
If the <em>parent</em> directory (e.g., "<code>~/Foto/TuxPaint</code>") also does not exist, Tux Paint will attempt to create it as well (but not any directories higher than that). </p>
|
||||
If the <em>parent</em> directory (e.g., <nobr>"<code style='background: #EEE;'>/home/emër përdoruesi/Foto</code>"</nobr>) also does not exist, Tux Paint will attempt to create it as well (but not any directories higher than that). </p>
|
||||
|
||||
<p>
|
||||
Shembull: <code>exportdir=/home/penguin/TuxPaintExports</code> </p>
|
||||
|
|
@ -1947,16 +1942,17 @@
|
|||
<p>
|
||||
If you do not override it, the <b><i>default</i></b> location is: </p>
|
||||
|
||||
<ul>
|
||||
<li>Linux & Unix — Under a hidden directory named "<code>.tuxpaint</code>" in your home directory (aka "<code>~</code>" or "<code>$HOME</code>")<br>
|
||||
Shembull: <code>/home/<i>username</i>/.tuxpaint/brushes/</code> </li>
|
||||
<dl>
|
||||
<dt>Linux / Unix</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>/home/emër përdoruesi/.tuxpaint/</code></nobr></dd>
|
||||
|
||||
<li>Windows — Inside a folder named "<code>TuxPaint</code>" in your "<code>Application Data</code>" folder.<br>
|
||||
Shembull: <code>C:\Documents and Settings\<i>Username</i>\Application Data\TuxPaint\brushes\</code> </li>
|
||||
<dt>Windows</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\</code></nobr></dd>
|
||||
|
||||
<li>macOS — Inside a folder named "<code>TuxPaint</code>" in your "<code>Application Support</code>" folder.<br>
|
||||
Shembull: <code>/Users/<i>Username</i>/Library/Application Support/TuxPaint/brushes/</code> </li>
|
||||
</ul>
|
||||
<dt>macoS</dt>
|
||||
<dd><nobr><code style='background: #EEE;'>/Users/emër përdoruesi/Library/Application Support/TuxPaint/</code></nobr></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
<span title="Version variation">📜</span> <strong>Note:</strong> Prior to version 0.9.18, Tux Paint would use the same setting or default as for "<code>savedir</code>" to search for data files. As of version 0.9.18, they may be specified separately. </p>
|
||||
|
|
@ -2377,14 +2373,10 @@
|
|||
</header>
|
||||
|
||||
<p>
|
||||
<i>(Për përdorues Linux-esh dhe Unix-esh)</i>
|
||||
</p>
|
||||
If any of the above options are set in a system-wide configuration file (e.g. <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> on Linux), you may override them in your own personal configuration file (e.g. <nobr>"<code style='background: #EEE;'>/home/emër përdoruesi/.tuxpaintrc</code>"</nobr>) </p>
|
||||
|
||||
<p>
|
||||
If any of the above options are set in "<code>/etc/tuxpaint/tuxpaint.conf</code>", you can override them in your own "<code>/home/emër përdoruesi/.tuxpaintrc</code>" file. </p>
|
||||
|
||||
<p>
|
||||
For true/false options, like "<code>noprint</code>" and "<code>grab</code>", you can simply say they equal 'no' in your "<code>/home/emër përdoruesi/.tuxpaintrc</code>" file: </p>
|
||||
For true/false options, like "<code>noprint</code>" and "<code>grab</code>", you can simply say they equal 'no' in your personal configuration file: </p>
|
||||
|
||||
<blockquote>
|
||||
<code>noprint=no<br>
|
||||
|
|
@ -2555,10 +2547,10 @@
|
|||
|
||||
<dd>
|
||||
<p>
|
||||
Under Linux and Unix, this prevents the system-wide configuration file, "<code>/etc/tuxpaint/tuxpaint.conf</code>", from being read. </p>
|
||||
This prevents the system-wide configuration file (e.g. <nobr>"<code style='background: #EEE;'>/etc/tuxpaint/tuxpaint.conf</code>"</nobr> on Linux), from being read. </p>
|
||||
|
||||
<p>
|
||||
Only your own configuration file, "<code>/home/emër përdoruesi/.tuxpaintrc</code>", if it exists, will be used. </p>
|
||||
Only your own configuration file (e.g. <nobr>"<code style='background: #EEE;'>/home/emër përdoruesi/.tuxpaintrc</code>"</nobr> on Linux) — if it exists — will be used. </p>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
|
@ -2579,7 +2571,7 @@
|
|||
|
||||
<dd>
|
||||
<p>
|
||||
Display the version number and date of the copy of Tux Paint you are running. The "--verbose-version" also lists what compile-time options were set. (See INSTALL and FAQ). </p>
|
||||
Display the version number and date of the copy of Tux Paint you are running. The "<code>--verbose-version</code>" also lists what compile-time options were set. (See <a href="INSTALL.html">INSTALL</a> and <a href="FAQ.html">FAQ</a>). </p>
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
</p>
|
||||
|
||||
<p>
|
||||
8 prill 2024 </p>
|
||||
27 prill 2024 </p>
|
||||
</center>
|
||||
</header>
|
||||
<table border="2"
|
||||
|
|
@ -318,7 +318,7 @@
|
|||
If you're using the 'portable' (ZIP-file) version of Tux Paint, or if you used the 'Tux Paint Installer,' but chose not to have shortcuts installed, you'll need to double-click the "<code>tuxpaint.exe</code>" icon in the "<code>Tux Paint</code>" folder on your computer. </p>
|
||||
|
||||
<p>
|
||||
By default, the 'Tux Paint Installer' will put Tux Paint's folder in <nobr>"<code>C:\Program Files\TuxPaint\</code>"</nobr>, though you may have changed this when you ran the installer. </p>
|
||||
By default, the 'Tux Paint Installer' will put Tux Paint's folder in <nobr>"<code style='background: #EEE;'>C:\Program Files\TuxPaint\</code>"</nobr>, though you may have changed this when you ran the installer. </p>
|
||||
|
||||
<p>
|
||||
If you used the 'ZIP-file' download, Tux Paint's folder will be wherever you extracted the contents of the ZIP file. </p>
|
||||
|
|
@ -1676,28 +1676,28 @@
|
|||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code>C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
In the user's "AppData" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>macOS</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code>/Users/emër përdoruesi/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "Application Support" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/Users/emër përdoruesi/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Linux / Unix</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code>/home/emër përdoruesi/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "home directory" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/home/emër përdoruesi/.tuxpaint/saved/</code>"</nobr> </dd>
|
||||
|
||||
<dt>
|
||||
<cite>Haiku</cite>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
In the user's "settings" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
|
||||
</dl>
|
||||
|
||||
<p class="note">
|
||||
|
|
@ -1818,6 +1818,10 @@
|
|||
<li>
|
||||
<a href="../magic-docs/html/index.html">Dokumentim i Mjetit “Magjik” (“<code>magic-docs</code>”)</a><br>
|
||||
Documentation for each of the currently-installed 'Magic' tools. </li>
|
||||
|
||||
<li>
|
||||
<a href="FAQ.html">Frequently Asked Questions ("FAQs") about Tux Paint</a><br>
|
||||
Answers to, and solutions for, some common questions about, and problems with, using Tux Paint. </li>
|
||||
</ul>
|
||||
</dd>
|
||||
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
<h3 align="center">Author:
|
||||
Bill Kendrick <<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>></h3>
|
||||
<p>Place three or more connected points on your picture to form a polygon; it will be filled with the currently-chosen color. (Connect the final (red) point to the initial (green) point.)</p>
|
||||
<p align=center><img src="../../../html/images/magic_examples/filled_polygon.png"></p>
|
||||
<p>This tool is operated in a freehand fashion.</p>
|
||||
<p>This tool offers color choices.</p>
|
||||
<hr size="1" noshade />
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
<h3 align="center">Auteur :
|
||||
Bill Kendrick <<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>></h3>
|
||||
<p>Place three or more connected points on your picture to form a polygon; it will be filled with the currently-chosen color. (Connect the final (red) point to the initial (green) point.)</p>
|
||||
<p align=center><img src="../../../html/images/magic_examples/filled_polygon.png"></p>
|
||||
<p>Cet outil permet de travailler en mode à main levée.</p>
|
||||
<p>Cet outil permet de choisir des couleurs.</p>
|
||||
<hr size="1" noshade />
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
<h3 align="center">Author:
|
||||
Bill Kendrick <<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>></h3>
|
||||
<p>Place three or more connected points on your picture to form a polygon; it will be filled with the currently-chosen color. (Connect the final (red) point to the initial (green) point.)</p>
|
||||
<p align=center><img src="../../../html/images/magic_examples/filled_polygon.png"></p>
|
||||
<p>This tool is operated in a freehand fashion.</p>
|
||||
<p>This tool offers color choices.</p>
|
||||
<hr size="1" noshade />
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
<h3 align="center">Author:
|
||||
Bill Kendrick <<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>></h3>
|
||||
<p>Place three or more connected points on your picture to form a polygon; it will be filled with the currently-chosen color. (Connect the final (red) point to the initial (green) point.)</p>
|
||||
<p align=center><img src="../../../html/images/magic_examples/filled_polygon.png"></p>
|
||||
<p>This tool is operated in a freehand fashion.</p>
|
||||
<p>This tool offers color choices.</p>
|
||||
<hr size="1" noshade />
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
<h3 align="center">Author:
|
||||
Bill Kendrick <<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>></h3>
|
||||
<p>Place three or more connected points on your picture to form a polygon; it will be filled with the currently-chosen color. (Connect the final (red) point to the initial (green) point.)</p>
|
||||
<p align=center><img src="../../../html/images/magic_examples/filled_polygon.png"></p>
|
||||
<p>This tool is operated in a freehand fashion.</p>
|
||||
<p>This tool offers color choices.</p>
|
||||
<hr size="1" noshade />
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
<h3 align="center">Autor:
|
||||
Bill Kendrick <<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>></h3>
|
||||
<p>Place three or more connected points on your picture to form a polygon; it will be filled with the currently-chosen color. (Connect the final (red) point to the initial (green) point.)</p>
|
||||
<p align=center><img src="../../../html/images/magic_examples/filled_polygon.png"></p>
|
||||
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
|
||||
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
|
||||
<hr size="1" noshade />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue