Commit graph

2191 commits

Author SHA1 Message Date
Bill Kendrick
7d1bd7fac9 Regen POT/PO after adding Fill->Brush tool 2021-10-19 00:42:48 -07:00
Bill Kendrick
71da1f1a6a Mend swapped args to draw_brush_fill() 2021-10-19 00:31:01 -07:00
Bill Kendrick
dcdebe9882 New Fill tool mode: Brush
Similar to solid fill (classic mode), but allows freehand
filling of an area.

Closes https://sourceforge.net/p/tuxpaint/feature-requests/207/
2021-10-19 00:26:26 -07:00
dolphin6k
d7f0a47e37 Missing format specifier and wrong maximum length for swprintf(). 2021-10-17 21:08:39 +09:00
dolphin6k
90baae6dfe Fixed crash bug regarding onscreen_keyboard and labels.
Every version after when onscreen-keyboard implimented has this bug,
which first became apparent in Windows 10. (Because of more strict
memory handling or something?)
Recommend every windows user to upgrade to 0.9.26-5.
2021-10-17 08:43:44 +09:00
dolphin6k
e1492d3b65 Left Alt key also mapped to the switch for Japanese. (I found my laptop does not have right Alt ;-)
How about for Thai?
2021-10-15 16:49:24 +09:00
dolphin6k
20bd72e75c Also removed old windows specific code mtw() from tuxpaint.c 2021-10-10 17:50:18 +09:00
dolphin6k
bedc2b43ad Removed old unnecessary windows specific code which cause crash bug. 2021-10-10 14:49:33 +09:00
dolphin6k
527fc27a2a Updated Japanese translations 2021-10-07 13:07:26 +09:00
Pere Pujal i Carabantes
13313846bf Updating Catalan. 2021-10-06 23:34:03 +02:00
Pere Pujal i Carabantes
8d7897029f Run update-po.sh to expose new strings. 2021-10-06 23:07:22 +02:00
Pere Pujal i Carabantes
3e5b136c2c Updating Catalan. 2021-10-03 00:15:15 +02:00
Bill Kendrick
5b6b1a39c5 Merge branch 'master' of ssh://git.code.sf.net/p/tuxpaint/tuxpaint 2021-09-25 23:49:39 -07:00
Bill Kendrick
d248b7041a Avoid crashing if Magic returns NULL icon img
Was blindly calling thumbnail() on what came back
(which would be NULL if the image failed to load).

Also, mend bug where magic group arrays were being cleared
at the same time as stamp group ones; the latter is larger.
2021-09-25 23:48:45 -07:00
Mark Kim
4b83412ea7 IM debugging updates
- Control debugging via debug.h (previously im.c had its own
  defined constant to control this.)
- Remove reference to an undefined symbol im_event_fp within a DEBUG
  block.

Also:
- Explicitly include i18n.h required by im.c (though it appears to be
  getting included by another file indirectly.)  This should be a no-op
  change.
2021-09-23 17:07:40 -04:00
Jacques Chion
42e0effe9b update rainbow 2021-09-23 11:38:29 +02:00
Bill Kendrick
786dbed777 Magic group change: mend problem w/ color options 2021-09-23 00:39:15 -07:00
Bill Kendrick
2f9526f986 Refresh PO & POT to sync up with source code
No string changes
2021-09-23 00:17:48 -07:00
Bill Kendrick
e3d1f85ac9 Magic tool pagination now possible 2021-09-23 00:15:27 -07:00
Bill Kendrick
901230c710 Storing Magic tools within groups
Still a WIP; no way to paginate yet.  (So now, only able to
access group #0 (MAGIC_TYPE_DISTORTS) magic tools)
2021-09-23 00:00:31 -07:00
Bill Kendrick
7381c936c4 Trim space off the end of a gettext()'d string
Didn't find any others, when I checked via

  find . -name "*.c" -exec grep -H "gettext" {} \; | grep ' ")'
2021-09-20 23:37:56 -07:00
Bill Kendrick
3963d74f43 Show Magic tool group pagination buttons
Make room for them, but they don't do anything yet.
2021-09-20 23:36:19 -07:00
Bill Kendrick
3eece8635c WIP Working on Magic tool grouping
Fretwork is in one group; Blocks, Chalk, and Drip in another.
The rest do not currently report (so will not load!).
No UI change to the Magic tool interface yet.
2021-09-20 23:09:33 -07:00
Bill Kendrick
0ed588521f Add missing Fretwork magic tool docs 2021-09-20 22:55:41 -07:00
Bill Kendrick
f1e297260a Mend undo buffer surface dimensions bug
Undo buffer canvases were not always the same dimensions
as the drawing surface, if buttonsize was adjusted.
(Adversely affected "Shift" magic tool.)
2021-09-20 22:05:33 -07:00
Jacques Chion
cbf2b5b2fa updating translation, without putting files from tuxpaint-docs 2021-09-18 11:01:02 +02:00
Bill Kendrick
e1b80eb5d9 Portuguese translation update
Welcome, new contributor Hugo Carvalho!
2021-09-17 10:38:35 -07:00
Shin-ichi TOYAMAA
61eeb794f4 Updated Japanese translations. 2021-09-13 10:55:59 +09:00
Bill Kendrick
3487236f93 Animated brushes can rotate now
Takes advantage of SDL_gfxBlitRGBA(), also from SDL_gfx.
2021-09-08 00:53:47 -07:00
Bill Kendrick
a3080eef18 WIP Rotational brushes now supported
Unlike "directional" brushes, in which a 3x3 grid representing the
8 cardinal directions (45 degree steps) is used, only a single brush
image is required, and Tux Paint will rotate it between 0 and 360 degrees,
depending on the direction the mouse is going.

The brush's ".dat" file should contain a line consisting of the word
"rotate".

Note: This adds a dependency on "SDL_gfx" library (Homepage:
https://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/
SourceForge project page: https://sourceforge.net/projects/sdlgfx/)
as this feature use it's "rotozoom" functionality.

WIP -- Doesn't handle animated brushes correctly yet!

Closes https://sourceforge.net/p/tuxpaint/feature-requests/122/
2021-09-06 23:45:35 -07:00
Bill Kendrick
8a97e83a7b Always show the appropriate tips for Fill/Shapes
Always show the appropriate instructions at the bottom when the
"Fill" (depends on which sub-tool chosen) and "Shapes" (depends
on whether "simpleshapes" option is set) tools are selected
(e.g., when returning from the "Open" dialog).

Closes https://sourceforge.net/p/tuxpaint/feature-requests/186/
2021-09-06 22:07:37 -07:00
Bill Kendrick
8bf9594d75 Icelandic TP updates
From Sveinn í Felli
2021-09-06 12:59:07 -07:00
Jacques Chion
e82f0ab6b4 fixing a mistake 2021-09-06 14:23:58 +02:00
Jacques Chion
db14f16a60 updating translation 2021-09-06 14:12:29 +02:00
Bill Kendrick
fa23c099f2 "Opposite" Magic tool: Complementary colors
Closes https://sourceforge.net/p/tuxpaint/feature-requests/136/
2021-09-06 01:36:08 -07:00
Bill Kendrick
664cfe4c5a Randomly animated brushes didn't get their icon
Mended
2021-09-05 23:21:05 -07:00
Bill Kendrick
2ee0080ffd Icons denoting animated/directional on brushes
Closes https://sourceforge.net/p/tuxpaint/bugs/183/
2021-09-05 23:16:20 -07:00
Bill Kendrick
36c4be5549 Update POs to include text from new Panels tool 2021-09-05 14:50:18 -07:00
Bill Kendrick
fed3b80359 Ensure Scottish Gaelic has hints to find fonts 2021-09-02 00:18:49 -07:00
Bill Kendrick
75adcc36af Ensure Greek has have hints to find the best fonts
(See https://sourceforge.net/p/tuxpaint/bugs/232/)
2021-09-02 00:09:52 -07:00
GunChleoc
b0f5e1265a Update gd translation 2021-08-18 10:25:15 +01:00
Bill Kendrick
4b0394fd96 Move src/manpage/ to man/ 2021-08-14 22:15:14 -07:00
Bill Kendrick
856ca6dc49 Remove Polish translation of Tux Paint's man page
Remove the very outdated Polish translation of Tux Paint's man page.
2021-08-14 21:44:12 -07:00
Bill Kendrick
d2a4dca86c Each "OPTIONS..." section of manpage gets a blurb 2021-08-09 23:20:16 -07:00
Bill Kendrick
ed5979602e Reorganized options listed in Tux Paint's man page
... and utilize subsections, in doing so.
2021-08-09 23:11:33 -07:00
Bill Kendrick
9c2fa458b8 Ensure command-line options covered more places
Ensured Tux Paint's built-in help ("tuxpaint --help"),
Unix manual ("man page"), and command-line option
tab-completion list all cover the full set of Tux Paint
options.  Some were missing in a few places.
2021-08-08 00:22:05 -07:00
Bill Kendrick
cf99582672 Bump version to 0.9.27 2021-08-07 23:38:50 -07:00
Bill Kendrick
0dbdb35455 manpage updates ahead of 0.9.26
Added more credits to manpage.  Avoiding word-wrapping
URLs and email addresses.  Saved out as UTF-8, rather than
Latin-1 encoding.
2021-06-28 15:43:43 -07:00
Karl Ove Hufthammer
c4ef59cc16 Update Norwegian Nynorsk and Norwegian Bokmål translations 2021-06-28 19:44:36 +02:00
Jacques Chion
795b574c7d updating translation 2021-06-14 11:04:03 +02:00