3.9.0.3494

This commit is contained in:
Mikhalkovich Stanislav 2024-06-22 19:44:00 +03:00
parent c2ef6fdcd7
commit 73369527c8
5 changed files with 16 additions and 5 deletions

View file

@ -15,7 +15,7 @@ internal static class RevisionClass
public const string Major = "3";
public const string Minor = "9";
public const string Build = "0";
public const string Revision = "3492";
public const string Revision = "3494";
public const string MainVersion = Major + "." + Minor;
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;

View file

@ -1,4 +1,4 @@
%COREVERSION%=0
%REVISION%=3492
%REVISION%=3494
%MINOR%=9
%MAJOR%=3

View file

@ -1 +1 @@
3.9.0.3492
3.9.0.3494

View file

@ -1 +1 @@
!define VERSION '3.9.0.3492'
!define VERSION '3.9.0.3494'

View file

@ -13758,7 +13758,18 @@ end;
/// Преобразует многострочную строку в массив строк
function ToLines(Self: string): array of string; extensionmethod;
begin
Result := Self.Split(|NewLine|, System.StringSplitOptions.None);
Result := Self.Split(|
#13#10, // CR+LF: Win
#10, // LF: Linux
#13 // CR: Mac
// https://en.m.wikipedia.org/wiki/Newline#Unicode
// But standard .Net things like System.IO.StringReader don't support these, so for now - commented out
// #11, // Vertical Tab
// #12, // Form feed
// char($85), // Next Line
// char($2028), // Line Separator
// char($2029), // Paragraph SeparatorS
|, System.StringSplitOptions.None);
end;
procedure PassSpaces(var s: string; var from: integer);