Skip to content

Commit

Permalink
Changelog, L10N, version, date sign-off patch.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maikuolan committed Mar 21, 2024
1 parent f86a593 commit 9375f8e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,3 +147,7 @@ __*Why "v3.0.0" instead of "v1.0.0?"*__ Prior to phpMussel v3, the "phpMussel Co
[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.

[2024.03.11; Maikuolan]: Added L10N for Bosnian, Catalan, Galician, Gujarati, Croatian, and Serbian.

### v3.5.1

[2024.03.21; Bug-fix; jedso]: Change `$this->IPAddr` to `$this->Loader->IPAddr` in `Scanner.php`.
8 changes: 4 additions & 4 deletions l10n/gu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# License: GNU/GPLv2
# @see LICENSE.txt
#
# This file: Gujarati language data (last modified: 2024.03.11).
# This file: Gujarati language data (last modified: 2024.03.19).
##/

SafeBrowseLookup:
Expand All @@ -19,9 +19,9 @@ SafeBrowseLookup:
error_log_header: "જો નીચેની કોઈપણ ભૂલો ચાલુ રહે, તો તેની જાણ કરવા અથવા સમર્થન મેળવવા માટે, કૃપા કરીને જ્યારે તમારી પાસે ફાજલ ક્ષણ હોય ત્યારે GitHub પર phpMussel ઇશ્યૂ પેજ પર નવો ઇશ્યૂ બનાવો, પ્રશ્નમાંની ભૂલો સાથે જોડાયેલ અન્ય કોઈપણ સંબંધિત માહિતી સાથે. આભાર."
field:
Date: "તારીખ"
Hash signatures reconstruction: "હેશ સહી પુનઃનિર્માણ"
Hash signatures reconstruction: "હેશ સિગ્નેચર પુનઃનિર્માણ"
IP address: "IP સરનામું"
PE sectional signatures reconstruction: "PE વિભાગીય હસ્તાક્ષરોનું પુનર્નિર્માણ"
PE sectional signatures reconstruction: "PE વિભાગીય સિગ્નેચર પુનર્નિર્માણ"
Scan results (why flagged): "સ્કેન પરિણામો (શા માટે ધ્વજાંકિત)"
label:
Generated by %s: "%s દ્વારા બનાવવામાં આવેલ"
Expand Down Expand Up @@ -57,7 +57,7 @@ response:
Only image files are permitted: "માત્ર ઇમેજ ફાઇલોને જ મંજૂરી છે"
Quarantined as: ""%s.qfu" તરીકે સંસર્ગનિષેધમાં."
Recursion depth limit exceeded: "પુનરાવર્તન ઊંડાઈ મર્યાદા ઓળંગાઈ"
Signature file missing: "સહી ફાઇલ ખૂટે છે"
Signature file missing: "સિગ્નેચર ફાઇલ ખૂટે છે"
Started: "શરૂ કર્યું"
Task failed because a necessary component is unavailable: "કાર્ય નિષ્ફળ થયું કારણ કે જરૂરી ઘટક અનુપલબ્ધ છે."
Too many URLs: "ઘણા બધા URL"
Expand Down
4 changes: 2 additions & 2 deletions src/Loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* License: GNU/GPLv2
* @see LICENSE.txt
*
* This file: The loader (last modified: 2024.01.05).
* This file: The loader (last modified: 2024.03.21).
*/

namespace phpMussel\Core;
Expand Down Expand Up @@ -93,7 +93,7 @@ class Loader
/**
* @var string phpMussel version number (SemVer).
*/
public $ScriptVersion = '3.5.0';
public $ScriptVersion = '3.5.1';

/**
* @var string phpMussel version identifier (complete notation).
Expand Down
2 changes: 1 addition & 1 deletion src/Scanner.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* License: GNU/GPLv2
* @see LICENSE.txt
*
* This file: The scanner (last modified: 2023.12.12).
* This file: The scanner (last modified: 2024.03.21).
*/

namespace phpMussel\Core;
Expand Down

0 comments on commit 9375f8e

Please sign in to comment.