Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-05-08 16:38:19 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-05-08 16:38:19 +0300
commitc6bcd2bdfb9797a5d8b237b2c78ea61fc90f5783 (patch)
tree5d818ea8822e662e3b7934bffabb3b47eb6c2d3b
parent22d083f658eace13e1277ec8b4301d0101e10d0e (diff)
Last fix
-rw-r--r--MainForm.cs8
-rw-r--r--Properties/AssemblyInfo.cs4
-rw-r--r--hakchi_gui.csproj4
3 files changed, 10 insertions, 6 deletions
diff --git a/MainForm.cs b/MainForm.cs
index 1520b314..33dfcbb4 100644
--- a/MainForm.cs
+++ b/MainForm.cs
@@ -1511,12 +1511,16 @@ namespace com.clusterrr.hakchi_gui
showProcess.Start();
new Thread(delegate()
{
- showProcess.WaitForExit();
try
{
- File.Delete(screenshotPath);
+ showProcess.WaitForExit();
}
catch { }
+ try
+ {
+ File.Delete(screenshotPath);
+ }
+ catch { }
}).Start();
}
}
diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs
index ad421da2..bf4705a4 100644
--- a/Properties/AssemblyInfo.cs
+++ b/Properties/AssemblyInfo.cs
@@ -33,6 +33,6 @@ using System.Resources;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("2.0.17.13")]
-[assembly: AssemblyFileVersion("2.0.17.13")]
+[assembly: AssemblyVersion("2.0.17.14")]
+[assembly: AssemblyFileVersion("2.0.17.14")]
[assembly: NeutralResourcesLanguageAttribute("en-US")]
diff --git a/hakchi_gui.csproj b/hakchi_gui.csproj
index 1b82fc72..9e69c85d 100644
--- a/hakchi_gui.csproj
+++ b/hakchi_gui.csproj
@@ -31,8 +31,8 @@
<PublisherName>Alexey %27Cluster%27 Avdyukhin</PublisherName>
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
<WebPage>index.html</WebPage>
- <ApplicationRevision>13</ApplicationRevision>
- <ApplicationVersion>2.0.17.13</ApplicationVersion>
+ <ApplicationRevision>14</ApplicationRevision>
+ <ApplicationVersion>2.0.17.14</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<CreateDesktopShortcut>true</CreateDesktopShortcut>
<PublishWizardCompleted>true</PublishWizardCompleted>