From 8cb90b57dc54f43315e0063412df9c2814f9ded3 Mon Sep 17 00:00:00 2001 From: Ravi Patel Date: Wed, 19 Jun 2024 22:07:48 +0530 Subject: [PATCH] Set ReadOnly property of ZipExtractor information TextBox to true. This fixes #695. --- AutoUpdater.NET/AutoUpdater.NET.csproj | 8 ++++---- AutoUpdater.NET/build/Autoupdater.NET.Official.nuspec | 2 +- ZipExtractor/FormMain.Designer.cs | 1 + ZipExtractor/ZipExtractor.csproj | 8 ++++---- appveyor.yml | 4 ++-- build.bat | 9 +++------ 6 files changed, 15 insertions(+), 17 deletions(-) diff --git a/AutoUpdater.NET/AutoUpdater.NET.csproj b/AutoUpdater.NET/AutoUpdater.NET.csproj index ec10cc03..afe8211f 100644 --- a/AutoUpdater.NET/AutoUpdater.NET.csproj +++ b/AutoUpdater.NET/AutoUpdater.NET.csproj @@ -11,10 +11,10 @@ RBSoft AutoUpdater.NET Copyright © 2012-2024 RBSoft - 1.9.1.0 - 1.9.1.0 - 1.9.1.0 - 1.9.1.0 + 1.9.2.0 + 1.9.2.0 + 1.9.2.0 + 1.9.2.0 true AutoUpdater.NET.snk en diff --git a/AutoUpdater.NET/build/Autoupdater.NET.Official.nuspec b/AutoUpdater.NET/build/Autoupdater.NET.Official.nuspec index 86bb0e62..b0d4dd56 100644 --- a/AutoUpdater.NET/build/Autoupdater.NET.Official.nuspec +++ b/AutoUpdater.NET/build/Autoupdater.NET.Official.nuspec @@ -2,7 +2,7 @@ Autoupdater.NET.Official - 1.9.1.0 + 1.9.2.0 AutoUpdater.NET rbsoft false diff --git a/ZipExtractor/FormMain.Designer.cs b/ZipExtractor/FormMain.Designer.cs index 52995e3a..1daef6e1 100644 --- a/ZipExtractor/FormMain.Designer.cs +++ b/ZipExtractor/FormMain.Designer.cs @@ -63,6 +63,7 @@ private void InitializeComponent() this.textBoxInformation.BorderStyle = System.Windows.Forms.BorderStyle.None; this.textBoxInformation.Location = new System.Drawing.Point(96, 20); this.textBoxInformation.Name = "textBoxInformation"; + this.textBoxInformation.ReadOnly = true; this.textBoxInformation.Size = new System.Drawing.Size(514, 16); this.textBoxInformation.TabIndex = 4; this.textBoxInformation.Text = "Extracting..."; diff --git a/ZipExtractor/ZipExtractor.csproj b/ZipExtractor/ZipExtractor.csproj index 87e50531..a51283f0 100644 --- a/ZipExtractor/ZipExtractor.csproj +++ b/ZipExtractor/ZipExtractor.csproj @@ -9,10 +9,10 @@ RBSoft ZipExtractor Copyright © 2012-2024 RBSoft - 1.5.1.0 - 1.5.1.0 - 1.5.1.0 - 1.5.1.0 + 1.5.2.0 + 1.5.2.0 + 1.5.2.0 + 1.5.2.0 ZipExtractor.ico app.manifest true diff --git a/appveyor.yml b/appveyor.yml index 7818846d..eaf3dbc0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ -version: 1.9.1.{build} +version: 1.9.2.{build} environment: - my_version: 1.9.1 + my_version: 1.9.2 my_secret: secure: vbPRaZLQYpGPr4BrZZ4p6TofpSZMud+FKtlpqjgO8aA= skip_branch_with_pr: true diff --git a/build.bat b/build.bat index 9d4c4f6f..ea6aea42 100644 --- a/build.bat +++ b/build.bat @@ -1,25 +1,22 @@ +:: Build ZipExtractor +msbuild "ZipExtractor\ZipExtractor.csproj" /p:Configuration=Release /verbosity:minimal + :: .NET Framework 4.6.2 -msbuild "ZipExtractor\ZipExtractor.csproj" /p:TargetFramework=net462;Configuration=Release /verbosity:minimal msbuild "AutoUpdater.NET\AutoUpdater.NET.csproj" /p:OutputPath=build\lib\net462;TargetFramework=net462;Configuration=Release /verbosity:minimal :: .NET Core 3.1 -dotnet publish --configuration Release --framework netcoreapp3.1 "ZipExtractor\ZipExtractor.csproj" --output "AutoUpdater.NET\Resources" dotnet publish --configuration Release --framework netcoreapp3.1 "AutoUpdater.NET\AutoUpdater.NET.csproj" --output "AutoUpdater.NET\build\lib\netcoreapp3.1" :: .NET 5.0 -dotnet publish --configuration Release --framework net5.0-windows "ZipExtractor\ZipExtractor.csproj" --output "AutoUpdater.NET\Resources" dotnet publish --configuration Release --framework net5.0-windows "AutoUpdater.NET\AutoUpdater.NET.csproj" --output "AutoUpdater.NET\build\lib\net5.0-windows7.0" :: .NET 6.0 -dotnet publish --configuration Release --framework net6.0-windows "ZipExtractor\ZipExtractor.csproj" --output "AutoUpdater.NET\Resources" dotnet publish --configuration Release --framework net6.0-windows "AutoUpdater.NET\AutoUpdater.NET.csproj" --output "AutoUpdater.NET\build\lib\net6.0-windows7.0" :: .NET 7.0 -dotnet publish --configuration Release --framework net7.0-windows "ZipExtractor\ZipExtractor.csproj" --output "AutoUpdater.NET\Resources" dotnet publish --configuration Release --framework net7.0-windows "AutoUpdater.NET\AutoUpdater.NET.csproj" --output "AutoUpdater.NET\build\lib\net7.0-windows7.0" :: .NET 8.0 -dotnet publish --configuration Release --framework net8.0-windows "ZipExtractor\ZipExtractor.csproj" --output "AutoUpdater.NET\Resources" dotnet publish --configuration Release --framework net8.0-windows "AutoUpdater.NET\AutoUpdater.NET.csproj" --output "AutoUpdater.NET\build\lib\net8.0-windows7.0" :: Remove unnecessary files