From d2a4871e459930b981b2879cfe96811f1d007148 Mon Sep 17 00:00:00 2001 From: jradford Date: Sat, 9 May 2015 17:02:46 -0700 Subject: [PATCH] Release 1.4.0.6 First release since moving to GitHub Update Checker implemented using GitHub API --- ReleaseNotes.txt | 10 +- SuperPutty/App.config | 6 + SuperPutty/GitRelease.cs | 17 + SuperPutty/Properties/AssemblyInfo.cs | 6 +- SuperPutty/SuperPutty.csproj | 7 +- SuperPutty/dlgEditSession.cs | 458 +++++++++++++------------- SuperPutty/dlgFindPutty.Designer.cs | 150 ++++++--- SuperPutty/dlgFindPutty.cs | 5 +- SuperPutty/frmSuperPutty.cs | 25 +- 9 files changed, 386 insertions(+), 298 deletions(-) create mode 100644 SuperPutty/GitRelease.cs diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index 929bf73d..519a96f2 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -1,10 +1,14 @@ +1.4.0.6 +- Moved Project from Google Code to Github +- 510: Fixed issue #530 Home directory prefix is now a configurable option + 1.4.0.5 - 316: Add a caption when hovering over a session menu element showing the URL (in tree and new session menu) - 386: Made several dialogs fixed (non-sizeable) (Fixes Issue 222) - 385: Updated About Box with new icon courtesy of strugarevic (Resolves issue #160) -- 384: Fixed Issue 345: Wrong tooltip on Options/GUI -> "Tabs and Docking" checkboxes -- 383: Fixed Issue 428: Typing a square bracket in search box results in error -- 382: Fixed Issue 354: popup descriptions incorrect. +- 384: Fixed Issue #345: Wrong tooltip on Options/GUI -> "Tabs and Docking" checkboxes +- 383: Fixed Issue #428: Typing a square bracket in search box results in error +- 382: Fixed Issue #354: popup descriptions incorrect. - 381: Fixed Issue when connecting with pscp to transfer files where password request was not being recognized (it appears the format has changed from prior versions of pscp). - 380: Fixed Issue #431 Fix exception thrown when right clicking in LayoutsList outside of a valid session name - 376: update w/issue 316 diff --git a/SuperPutty/App.config b/SuperPutty/App.config index 9c7977b7..d3886116 100644 --- a/SuperPutty/App.config +++ b/SuperPutty/App.config @@ -209,6 +209,12 @@ True + + /home/ + + + False + diff --git a/SuperPutty/GitRelease.cs b/SuperPutty/GitRelease.cs new file mode 100644 index 00000000..8e53c2d4 --- /dev/null +++ b/SuperPutty/GitRelease.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Runtime.Serialization.Json; +using System.Runtime.Serialization; +namespace SuperPutty +{ + [DataContract] + public class GitRelease + { + [DataMember(Name = "tag_name")] + public string version; + [DataMember(Name = "html_url")] + public string release_url; + } +} diff --git a/SuperPutty/Properties/AssemblyInfo.cs b/SuperPutty/Properties/AssemblyInfo.cs index bd2ebaaa..d8d2925e 100644 --- a/SuperPutty/Properties/AssemblyInfo.cs +++ b/SuperPutty/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("http://www.jimradford.com/")] [assembly: AssemblyProduct("SuperPuTTY")] -[assembly: AssemblyCopyright("Copyright © 2009 - 2014 Jim Radford")] +[assembly: AssemblyCopyright("Copyright © 2009 - 2015 Jim Radford")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -32,5 +32,5 @@ // 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("1.4.0.5")] -[assembly: AssemblyFileVersion("1.4.0.5")] +[assembly: AssemblyVersion("1.4.0.6")] +[assembly: AssemblyFileVersion("1.4.0.6")] diff --git a/SuperPutty/SuperPutty.csproj b/SuperPutty/SuperPutty.csproj index 8fd80ac0..0a050600 100644 --- a/SuperPutty/SuperPutty.csproj +++ b/SuperPutty/SuperPutty.csproj @@ -68,6 +68,8 @@ + + @@ -89,6 +91,7 @@ AboutBox1.cs + @@ -436,8 +439,8 @@ - IF NOT EXIST $(SolutionDir)bin\Debug\themes mkdir $(SolutionDir)bin\Debug\themes -IF NOT EXIST $(SolutionDir)bin\Debug\themes\default xcopy /E /Y $(ProjectDir)Resources\themes $(SolutionDir)bin\Debug\themes + IF NOT EXIST $(SolutionDir)bin\Release\themes mkdir $(SolutionDir)bin\Release\themes +IF NOT EXIST $(SolutionDir)bin\Release\themes\default xcopy /E /Y $(ProjectDir)Resources\themes $(SolutionDir)bin\Release\themes