Skip to content

Commit

Permalink
Updating Tux Paint to 0.9.32
Browse files Browse the repository at this point in the history
  • Loading branch information
perepujal committed Jan 30, 2024
1 parent 5a8dc56 commit e82b16e
Show file tree
Hide file tree
Showing 485 changed files with 43,468 additions and 13,377 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ android {
if (buildAsApplication) {
dimension "store"
applicationId "org.tuxpaint"
versionCode 9317
versionName "0.9.32-RC1"
versionCode 9320
versionName "0.9.32"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/jni/tuxpaint/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Various contributors (see AUTHORS.txt)
# https://tuxpaint.org/

# June 14, 2002 - January 14, 2024
# June 14, 2002 - January 27, 2024


# The version number, for release:
Expand Down
16 changes: 15 additions & 1 deletion app/src/main/jni/tuxpaint/docs/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Copyright (c) 2002-2024
Various contributors (see below, and AUTHORS.txt)
https://tuxpaint.org/

2024.January.20 (0.9.32)
2024.January.29 (0.9.32)
* Improvements to Magic tools:
----------------------------
* Magic tool plugin API updates
Expand Down Expand Up @@ -148,6 +148,9 @@ https://tuxpaint.org/
* Albanian translation
Besnik Bleta <[email protected]>

* Albanian documentation (partial; NEW!)
Besnik Bleta <[email protected]>

* Bulgarian translation
Note: Does an overhaul of most of the translations to replace more
polite, plural verb forms, with singular, spoken forms.
Expand All @@ -162,6 +165,9 @@ https://tuxpaint.org/
* Japanese translation
TOYAMA Shin-ichi <[email protected]>

* Japanese documentation
TOYAMA Shin-ichi <[email protected]>

* Portuguese (Portugal) translation
Hugo Carvalho <[email protected]>

Expand All @@ -173,6 +179,14 @@ https://tuxpaint.org/
+ USA Map
Pere Pujal i Carabantes <[email protected]>

* Documentation updates:
----------------------
* MAGIC API documentation glossary will now appear sorted
alphabetically based on the localized versions of terms.
(Reworked how that section of the document is constructed, over in
`tuxpaint-docs` repository.)
Bill Kendrick <[email protected]>

* Ports & Building:
-----------------
* Don't pollute documentation folder ($DOC_PREFIX) with build scripts.
Expand Down
17 changes: 9 additions & 8 deletions app/src/main/jni/tuxpaint/docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,7 @@
# Bill Kendrick
# [email protected]
#
# Sept. 4, 2005 - July 16, 2023

# FIXME: Japanese does not wordwrap in many cases, leading to very long
# lines in the TXT output. Post-processing with `fmt` doesn't look like
# it would help, because it doesn't know how to wrap Japanese, either.
# -bjk 2023.05.02
# HTML2TXT_OPTIONS:=-dump -codepage utf8 -width 80
# HTML2TXT:=links $(HTML2TXT_OPTIONS)
# Sept. 4, 2005 - January 26, 2024

HTML2TXT_OPTIONS:=-dump -cols 80 -no-graph -o pseudo_inlines=f -o display_image=f -T text/html
HTML2TXT:=./w3m.sh $(HTML2TXT_OPTIONS)
Expand Down Expand Up @@ -46,6 +39,9 @@ NL_TEXTFILES:=$(patsubst nl/html/%.html,nl/%.txt,$(NL_HTMLFILES))
RU_HTMLFILES:=$(wildcard ru/html/*.html)
RU_TEXTFILES:=$(patsubst ru/html/%.html,ru/%.txt,$(RU_HTMLFILES))

SQ_HTMLFILES:=$(wildcard sq_AL.UTF-8/html/*.html)
SQ_TEXTFILES:=$(patsubst sq_AL.UTF-8/html/%.html,sq_AL.UTF-8/%.txt,$(SQ_HTMLFILES))

ZH_CN_HTMLFILES:=$(wildcard zh_cn/html/*.html)
ZH_CN_TEXTFILES:=$(patsubst zh_cn/html/%.html,zh_cn/%.txt,$(ZH_CN_HTMLFILES))

Expand All @@ -63,6 +59,7 @@ all: $(EN_TEXTFILES) \
$(JA_TEXTFILES) \
$(NL_TEXTFILES) \
$(RU_TEXTFILES) \
$(SQ_TEXTFILES) \
$(ZH_CN_TEXTFILES) \
$(ZH_TW_TEXTFILES)

Expand All @@ -78,6 +75,7 @@ clean:
$(JA_TEXTFILES) \
$(NL_TEXTFILES) \
$(RU_TEXTFILES) \
$(SQ_TEXTFILES) \
$(ZH_CN_TEXTFILES) \
$(ZH_TW_TEXTFILES)

Expand Down Expand Up @@ -108,6 +106,9 @@ $(NL_TEXTFILES): nl/%.txt: nl/html/%.html
$(RU_TEXTFILES): ru/%.txt: ru/html/%.html
$(HTML2TXT) $< > $@

$(SQ_TEXTFILES): sq_AL.UTF-8/%.txt: sq_AL.UTF-8/html/%.html
$(HTML2TXT) $< > $@

$(ZH_CN_TEXTFILES): zh_cn/%.txt: zh_cn/html/%.html
$(HTML2TXT) $< > $@

Expand Down
7 changes: 4 additions & 3 deletions app/src/main/jni/tuxpaint/docs/en/EXTENDING.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
Tux Paint
version 0.9.32

Copyright © 2002-2023 by various contributors; see AUTHORS.txt.
Copyright © 2002-2024 by various contributors; see AUTHORS.txt.
https://tuxpaint.org/

May 29, 2023
January 26, 2024

+-----------------------------------------+
| Table of Contents |
Expand Down Expand Up @@ -976,7 +976,8 @@ been pressed (one each for: no modifiers, [Shift], [AltGr], and [Shift] +

KEY 133 2.0 Cmp Cmp Cmp Cmp 0

# The ALT or ALTGR keys are used in im to switch the input mode
# The ALT or ALTGR keys are used in 'im' (input methods) to switch the
input mode
KEY 64 2.0 Alt Alt Alt Alt 0

# Space
Expand Down
Loading

0 comments on commit e82b16e

Please sign in to comment.