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>2018-02-23 18:29:49 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2018-02-23 18:37:51 +0300
commit92b2c2f6bd2ba9639aeaa5214a7e8185dc845e7c (patch)
treee53a3d6c57dd6490336d0993455e45acf7d2fc57
parent509b3f316b29d6b5ee61752b91e9015c5c6e8623 (diff)
Tiny bugfix
-rw-r--r--ConfigIni.cs3
-rw-r--r--MainForm.cs3
-rw-r--r--Properties/AssemblyInfo.cs4
-rw-r--r--hakchi_gui.csproj4
4 files changed, 10 insertions, 4 deletions
diff --git a/ConfigIni.cs b/ConfigIni.cs
index 935424ef..b27afb1b 100644
--- a/ConfigIni.cs
+++ b/ConfigIni.cs
@@ -586,6 +586,9 @@ namespace com.clusterrr.hakchi_gui
case "compress":
Compress = !value.ToLower().Equals("false");
break;
+ case "telnetserver":
+ TelnetServer = !value.ToLower().Equals("false");
+ break;
case "ftpserver":
FtpServer = !value.ToLower().Equals("false");
break;
diff --git a/MainForm.cs b/MainForm.cs
index 2480dae2..13ed0579 100644
--- a/MainForm.cs
+++ b/MainForm.cs
@@ -170,7 +170,10 @@ namespace com.clusterrr.hakchi_gui
ftpServer.LocalPort = 1021;
if (ConfigIni.FtpServer)
+ {
+ openFTPInExplorerToolStripMenuItem.Enabled = FTPToolStripMenuItem.Checked = true;
FTPToolStripMenuItem_Click(null, null);
+ }
if (ConfigIni.TelnetServer)
Clovershell.ShellEnabled = shellToolStripMenuItem.Checked = true;
}
diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs
index 30567c0b..22484124 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.30.11")]
-[assembly: AssemblyFileVersion("2.0.30.11")]
+[assembly: AssemblyVersion("2.0.30.13")]
+[assembly: AssemblyFileVersion("2.0.30.13")]
[assembly: NeutralResourcesLanguageAttribute("en-US")]
diff --git a/hakchi_gui.csproj b/hakchi_gui.csproj
index 2ad87e45..b06065aa 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>10</ApplicationRevision>
- <ApplicationVersion>2.0.30.10</ApplicationVersion>
+ <ApplicationRevision>12</ApplicationRevision>
+ <ApplicationVersion>2.0.30.12</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<CreateDesktopShortcut>true</CreateDesktopShortcut>
<PublishWizardCompleted>true</PublishWizardCompleted>