Skip to content

Commit

Permalink
Release 1.4.0.6 First release since moving to GitHub
Browse files Browse the repository at this point in the history
Update Checker implemented using GitHub API
  • Loading branch information
jimradford committed May 10, 2015
1 parent e325bce commit d2a4871
Show file tree
Hide file tree
Showing 9 changed files with 386 additions and 298 deletions.
10 changes: 7 additions & 3 deletions ReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 6 additions & 0 deletions SuperPutty/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,12 @@
<setting name="ShowMenuBar" serializeAs="String">
<value>True</value>
</setting>
<setting name="PscpHomePrefix" serializeAs="String">
<value>/home/</value>
</setting>
<setting name="AutoUpdateCheck" serializeAs="String">
<value>False</value>
</setting>
</SuperPutty.Properties.Settings>
</userSettings>
<startup><supportedRuntime version="v2.0.50727"/></startup></configuration>
17 changes: 17 additions & 0 deletions SuperPutty/GitRelease.cs
Original file line number Diff line number Diff line change
@@ -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;
}
}
6 changes: 3 additions & 3 deletions SuperPutty/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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("")]

Expand All @@ -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")]
7 changes: 5 additions & 2 deletions SuperPutty/SuperPutty.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@
<Reference Include="System.configuration" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Runtime.Remoting" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.ServiceModel.Web" />
<Reference Include="System.Web" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
Expand All @@ -89,6 +91,7 @@
<DependentUpon>AboutBox1.cs</DependentUpon>
</Compile>
<Compile Include="Data\KeyboardShortcut.cs" />
<Compile Include="GitRelease.cs" />
<Compile Include="Gui\BaseViewModel.cs" />
<Compile Include="Gui\DataGridViewProgressColumn.cs" />
<Compile Include="Gui\ImageListPopup.cs">
Expand Down Expand Up @@ -436,8 +439,8 @@
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>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</PostBuildEvent>
<PostBuildEvent>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</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
Loading

0 comments on commit d2a4871

Please sign in to comment.