Set version to 1.8.2

This commit is contained in:
maxpozdeev 2025-02-16 18:40:42 +03:00
parent 5cbe0d93a7
commit 4548aa17de
4 changed files with 14 additions and 9 deletions

View file

@ -62,7 +62,7 @@ foreach ($rows as $i => $row) {
print("| ". str_pad($row[0], $width[0], " ", STR_PAD_BOTH). " | ".
str_pad($row[1], $width[1], " ", STR_PAD_BOTH). " | ".
str_pad($row[2], $width[2], " ", STR_PAD_BOTH). " |\n");
print("|:". str_repeat("-", $width[0]+1). "|". str_repeat("-", $width[1]+1). ":|". str_repeat("-", $width[2]+1). ":|\n");
print("|:". str_repeat("-", $width[0]). "-|-". str_repeat("-", $width[1]). ":|-". str_repeat("-", $width[2]). ":|\n");
}
else {
print("| ". str_pad($row[0], $width[0], " ", STR_PAD_RIGHT). " | ".
@ -98,6 +98,9 @@ function checkArray(string $file, array $src, ?array $a) : int
++$translated;
$translated += checkArray($file, $v, $a[$k]);
}
else if (defined('P_VERBOSE')) {
fwrite(STDERR, "$file: key `$k` is not array\n");
}
}
return $translated;
}

View file

@ -1,11 +1,12 @@
{
"_header": {
"ver": "v1.8.1",
"ver": "v1.8.2",
"date": "2025-02-15",
"language": "English",
"original_name": "English",
"author": "Max Pozdeev",
"author_url": "https://www.mytinytodo.net"
"authors": [
"Max Pozdeev <maxpozdeev@gmail.com> (https://www.mytinytodo.net)"
]
},
"My Tiny Todolist": "My Tiny Todolist",
"powered_by": "Powered by",

View file

@ -1,11 +1,12 @@
{
"_header": {
"ver": "v1.8.1",
"date": "2024-01-23",
"ver": "v1.8.2",
"date": "2025-02-15",
"language": "Russian",
"original_name": "Русский",
"author": "Max Pozdeev",
"author_url": "https://www.mytinytodo.net"
"authors": [
"Max Pozdeev <maxpozdeev@gmail.com> (https://www.mytinytodo.net)"
]
},
"My Tiny Todolist": "My Tiny Todolist",
"powered_by": "Работает на",

View file

@ -4,6 +4,6 @@ namespace mytinytodo;
class Version
{
const VERSION = '1.8.1';
const VERSION = '1.8.2';
const DB_VERSION = '1.8';
}