From 907709e6bd03fa24bdea2f03e873226a5932b61d Mon Sep 17 00:00:00 2001 From: Mikhalkovich Stanislav Date: Tue, 12 Jul 2022 23:22:17 +0300 Subject: [PATCH] =?UTF-8?q?fileslist=5Finstall.pas=20-=20=D1=81=D0=BE?= =?UTF-8?q?=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8=D0=B5=20=D1=81=D0=BA=D1=80=D0=B8?= =?UTF-8?q?=D0=BF=D1=82=D0=B0=20=D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B0=20?= =?UTF-8?q?=D1=84=D0=B0=D0=B9=D0=BB=D0=BE=D0=B2=20=D0=B4=D0=BB=D1=8F=20?= =?UTF-8?q?=D0=9B=D0=B8=D0=BD=D1=83=D0=BA=D1=81-=D0=B8=D0=BD=D1=81=D1=82?= =?UTF-8?q?=D0=B0=D0=BB=D0=BB=D1=8F=D1=86=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Src/Gui/CompletionWindow/AbstractCompletionWindow.cs | 2 +- fileslist_install.pas | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 fileslist_install.pas diff --git a/ICSharpCode.TextEditorLinux/Src/Gui/CompletionWindow/AbstractCompletionWindow.cs b/ICSharpCode.TextEditorLinux/Src/Gui/CompletionWindow/AbstractCompletionWindow.cs index 5f4e734f4..3e8903fdc 100644 --- a/ICSharpCode.TextEditorLinux/Src/Gui/CompletionWindow/AbstractCompletionWindow.cs +++ b/ICSharpCode.TextEditorLinux/Src/Gui/CompletionWindow/AbstractCompletionWindow.cs @@ -167,7 +167,7 @@ namespace ICSharpCode.TextEditor.Gui.CompletionWindow && Environment.OSVersion.Platform != PlatformID.MacOSX ) { - Close(); + //Close(); // Под Mono начинает показываться окно по скобке } if (Environment.OSVersion.Platform == PlatformID.Unix || Environment.OSVersion.Platform == PlatformID.MacOSX) { diff --git a/fileslist_install.pas b/fileslist_install.pas new file mode 100644 index 000000000..560328cbc --- /dev/null +++ b/fileslist_install.pas @@ -0,0 +1,7 @@ +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. \ No newline at end of file