diff --git a/Terminals/Terminals.nuspec b/Terminals/Terminals.nuspec new file mode 100644 index 0000000..0342347 --- /dev/null +++ b/Terminals/Terminals.nuspec @@ -0,0 +1,40 @@ + + + + Terminals.app + Terminals + 2.0.0.030712 + Rob Chartier + Ethan Brown + Terminals open source RDP, SSH and Telnet client + Terminals is a secure, multi tab terminal services/remote desktop client. It uses Terminal Services ActiveX Client (mstscax.dll). + +The project started from the need of controlling multiple connections simultaneously. It is a complete replacement for the mstsc.exe (Terminal Services) client. + + http://terminals.codeplex.com/ + rdp ssh remote desktop vnc citrix telnet + http://terminals.codeplex.com/license + false + http://download-codeplex.sec.s-msft.com/Download?ProjectName=terminals&DownloadId=324544&Build=19471 + Changes since version 1.9a: + +New art works +New usability in Organize favorites window +Improved usability of imports/exports and scans +Large number of fixes +Improvements in single instance mode +Comparing November beta 4, this corrects: + +New application icons +Doesn't show Logon error codes +Fixed command line arguments exception for single instance mode +Fixed detaching of tabs +improved usability in detached window +Fixed option settings for Capture manager +Fixed system tray notifyicon from disappearing + + + + + + diff --git a/Terminals/tools/chocolateyInstall.ps1 b/Terminals/tools/chocolateyInstall.ps1 new file mode 100644 index 0000000..082b636 --- /dev/null +++ b/Terminals/tools/chocolateyInstall.ps1 @@ -0,0 +1,11 @@ +try { + $package = 'Terminals' + + $uri = 'http://download-codeplex.sec.s-msft.com/Download/Release?ProjectName=terminals&DownloadId=351257&FileTime=129755485683300000&Build=19471' + Install-ChocolateyPackage 'SetupTerminals_v2.0' 'msi' '/quiet' $uri + + Write-ChocolateySuccess $package +} catch { + Write-ChocolateyFailure $package "$($_.Exception.Message)" + throw +}