-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
485 changed files
with
43,468 additions
and
13,377 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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. | ||
|
@@ -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]> | ||
|
||
|
@@ -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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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) | ||
|
@@ -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)) | ||
|
||
|
@@ -63,6 +59,7 @@ all: $(EN_TEXTFILES) \ | |
$(JA_TEXTFILES) \ | ||
$(NL_TEXTFILES) \ | ||
$(RU_TEXTFILES) \ | ||
$(SQ_TEXTFILES) \ | ||
$(ZH_CN_TEXTFILES) \ | ||
$(ZH_TW_TEXTFILES) | ||
|
||
|
@@ -78,6 +75,7 @@ clean: | |
$(JA_TEXTFILES) \ | ||
$(NL_TEXTFILES) \ | ||
$(RU_TEXTFILES) \ | ||
$(SQ_TEXTFILES) \ | ||
$(ZH_CN_TEXTFILES) \ | ||
$(ZH_TW_TEXTFILES) | ||
|
||
|
@@ -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) $< > $@ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.