Skip to content

Commit 9375f8e

Browse files
committed
Changelog, L10N, version, date sign-off patch.
1 parent f86a593 commit 9375f8e

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

Changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -147,3 +147,7 @@ __*Why "v3.0.0" instead of "v1.0.0?"*__ Prior to phpMussel v3, the "phpMussel Co
147147
[2023.12.12; Security; Maikuolan]: Added a method to check whether a name is reserved, and applied it as a guard at the point where signature files are read in. Attempting to perform file operations on reserved names under Windows and some other operating systems could cause the underlying file system to attempt to communicate with a serial port instead of the intended file. PHP is likely to then wait indefinitely for a response it's unlikely to ever receive, thus locking up the process and preventing further requests unless the process is restarted. Although it's infinitesimally unlikely that a user would actually want to use a reserved name for one of their signature files, as the solution is exceedingly simple, with no particular performance impact, I've implemented it accordingly.
148148

149149
[2024.03.11; Maikuolan]: Added L10N for Bosnian, Catalan, Galician, Gujarati, Croatian, and Serbian.
150+
151+
### v3.5.1
152+
153+
[2024.03.21; Bug-fix; jedso]: Change `$this->IPAddr` to `$this->Loader->IPAddr` in `Scanner.php`.

l10n/gu.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# License: GNU/GPLv2
88
# @see LICENSE.txt
99
#
10-
# This file: Gujarati language data (last modified: 2024.03.11).
10+
# This file: Gujarati language data (last modified: 2024.03.19).
1111
##/
1212

1313
SafeBrowseLookup:
@@ -19,9 +19,9 @@ SafeBrowseLookup:
1919
error_log_header: "જો નીચેની કોઈપણ ભૂલો ચાલુ રહે, તો તેની જાણ કરવા અથવા સમર્થન મેળવવા માટે, કૃપા કરીને જ્યારે તમારી પાસે ફાજલ ક્ષણ હોય ત્યારે GitHub પર phpMussel ઇશ્યૂ પેજ પર નવો ઇશ્યૂ બનાવો, પ્રશ્નમાંની ભૂલો સાથે જોડાયેલ અન્ય કોઈપણ સંબંધિત માહિતી સાથે. આભાર."
2020
field:
2121
Date: "તારીખ"
22-
Hash signatures reconstruction: "હેશ સહી પુનઃનિર્માણ"
22+
Hash signatures reconstruction: "હેશ સિગ્નેચર પુનઃનિર્માણ"
2323
IP address: "IP સરનામું"
24-
PE sectional signatures reconstruction: "PE વિભાગીય હસ્તાક્ષરોનું પુનર્નિર્માણ"
24+
PE sectional signatures reconstruction: "PE વિભાગીય સિગ્નેચર પુનર્નિર્માણ"
2525
Scan results (why flagged): "સ્કેન પરિણામો (શા માટે ધ્વજાંકિત)"
2626
label:
2727
Generated by %s: "%s દ્વારા બનાવવામાં આવેલ"
@@ -57,7 +57,7 @@ response:
5757
Only image files are permitted: "માત્ર ઇમેજ ફાઇલોને જ મંજૂરી છે"
5858
Quarantined as: ""%s.qfu" તરીકે સંસર્ગનિષેધમાં."
5959
Recursion depth limit exceeded: "પુનરાવર્તન ઊંડાઈ મર્યાદા ઓળંગાઈ"
60-
Signature file missing: "સહી ફાઇલ ખૂટે છે"
60+
Signature file missing: "સિગ્નેચર ફાઇલ ખૂટે છે"
6161
Started: "શરૂ કર્યું"
6262
Task failed because a necessary component is unavailable: "કાર્ય નિષ્ફળ થયું કારણ કે જરૂરી ઘટક અનુપલબ્ધ છે."
6363
Too many URLs: "ઘણા બધા URL"

src/Loader.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* License: GNU/GPLv2
99
* @see LICENSE.txt
1010
*
11-
* This file: The loader (last modified: 2024.01.05).
11+
* This file: The loader (last modified: 2024.03.21).
1212
*/
1313

1414
namespace phpMussel\Core;
@@ -93,7 +93,7 @@ class Loader
9393
/**
9494
* @var string phpMussel version number (SemVer).
9595
*/
96-
public $ScriptVersion = '3.5.0';
96+
public $ScriptVersion = '3.5.1';
9797

9898
/**
9999
* @var string phpMussel version identifier (complete notation).

src/Scanner.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* License: GNU/GPLv2
99
* @see LICENSE.txt
1010
*
11-
* This file: The scanner (last modified: 2023.12.12).
11+
* This file: The scanner (last modified: 2024.03.21).
1212
*/
1313

1414
namespace phpMussel\Core;

0 commit comments

Comments
 (0)