Skip to content

Commit

Permalink
Tagging Official 1.4.0.8 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
jimradford committed Oct 26, 2015
1 parent 3dde473 commit 142af88
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 4 deletions.
25 changes: 25 additions & 0 deletions ReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
1.4.0.8
- Fixes Issue #528 mintty (2.1.4) exiting and throwing exception due to default behavior change in mintty daemonize option.
- Fixes Issue #546 Option Added to override and allow -pw <password> command line option to be sent. Defaults to not allow the -pw option.
- Updated Readme file to promote our Facebook page
- Resolves Issue #423 Support added to define shortcut key that will allow rename tab.
- Issue #530 Adds support to persist Command Bar History between sessions
* Uses SortableBindingList class as datasource for Command Bar History
* Adds new settings in Options for enabling (default) command bar history and for setting aging (default 7 days) of history to persist
- Fixes issue #491 Commands now sent to all sessions that are selected.
* Some code cleanup
- Issue #558 Adds support to execute SPSL scripts when a session is launched, or restored from auto layout
* Better handling when a new session process is unable to start due to command line arguments or other reasons causing process to not start. should fix unhandled exception in Issue #528
- Adds new SPSL Scripting Engine as documented in Issue #558
- Fixes Issue #551 pscp command line arguments now properly encapsulated in quotation marks to deal with spaces in folder names
- Fixes issue #557 and adds better error checking to application update checker Fixes Issue #556 check for null object when remote directory is not found due to configuration path error
- Add better handling for update checker, possibly Fixes issue #557
- Merge pull request #552 from spokorski/master
* pressing shift-enter in the command sender will suppress the trailing enter key in the
* commands actually sent to the putty sessions. pressing enter by itself will still function as
* normal.
- Merge pull request #553 from simono74/master
* Implements Session Detail Window for a quick view of session properties
- Merge pull request #548 from simono74/master
* Fix the way the keys are handled in the open session window

1.4.0.7
- Fixes Issue #379 NullReferenceException being thrown on First Run
- Fixes Issue #440 Fixes Issue #553 usernames with . or - in them were failing the regular expression parser. [[:graph]] does not appear to be supported by the .NET regular expression library.
Expand Down
5 changes: 2 additions & 3 deletions SuperPutty/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
Expand Down Expand Up @@ -32,5 +31,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.7")]
[assembly: AssemblyFileVersion("1.4.0.7")]
[assembly: AssemblyVersion("1.4.0.8")]
[assembly: AssemblyFileVersion("1.4.0.8")]
2 changes: 1 addition & 1 deletion SuperPuttyInstaller/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension"
xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">
<Product Id="*" Name="SuperPuTTY" Language="1033" Version="1.4.0.7" Manufacturer="Jim Radford" UpgradeCode="42567f59-2f27-4e5b-a900-9141dc2dd929">
<Product Id="*" Name="SuperPuTTY" Language="1033" Version="1.4.0.8" Manufacturer="Jim Radford" UpgradeCode="42567f59-2f27-4e5b-a900-9141dc2dd929">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />

<Icon Id="ProductIcon" SourceFile="$(var.SuperPutty.ProjectDir)Apps-utilities-terminal.ico"/>
Expand Down

0 comments on commit 142af88

Please sign in to comment.