Work
This commit is contained in:
parent
907709e6bd
commit
6073807aea
|
|
@ -15,7 +15,7 @@ internal static class RevisionClass
|
||||||
public const string Major = "3";
|
public const string Major = "3";
|
||||||
public const string Minor = "8";
|
public const string Minor = "8";
|
||||||
public const string Build = "3";
|
public const string Build = "3";
|
||||||
public const string Revision = "3136";
|
public const string Revision = "3137";
|
||||||
|
|
||||||
public const string MainVersion = Major + "." + Minor;
|
public const string MainVersion = Major + "." + Minor;
|
||||||
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;
|
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
%COREVERSION%=3
|
|
||||||
%REVISION%=3136
|
|
||||||
%MINOR%=8
|
%MINOR%=8
|
||||||
|
%REVISION%=3137
|
||||||
|
%COREVERSION%=3
|
||||||
%MAJOR%=3
|
%MAJOR%=3
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1 +1 @@
|
||||||
3.8.3.3136
|
3.8.3.3137
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
!define VERSION '3.8.3.3136'
|
!define VERSION '3.8.3.3137'
|
||||||
|
|
|
||||||
|
|
@ -1126,6 +1126,8 @@ type
|
||||||
function peek: integer; override;
|
function peek: integer; override;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
var IsRunningOnMono := System.Type.GetType('Mono.Runtime') <> nil;
|
||||||
|
|
||||||
function SetProcessDPIAware(): boolean; external 'user32.dll';
|
function SetProcessDPIAware(): boolean; external 'user32.dll';
|
||||||
|
|
||||||
function operator*(s: Size; r: real): Size; extensionmethod;
|
function operator*(s: Size; r: real): Size; extensionmethod;
|
||||||
|
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
begin
|
|
||||||
Assign(output,'_GenerateLinuxVersion.bat');
|
|
||||||
var a := EnumerateAllFiles('LinuxInstallerPABC');
|
|
||||||
var b := a.Select(s -> 'copy bin\'+s[20:]+' Release\PascalABCNETLinux\'+s[20:]);//.OrderBy(s->ExtractFileExt(s));
|
|
||||||
b := b.Append(#13#10'powershell Compress-Archive -Force Release\PascalABCNETLinux Release\PascalABCNETLinux.zip');
|
|
||||||
b.PrintLines;
|
|
||||||
end.
|
|
||||||
Loading…
Reference in a new issue