Skip to content
This repository has been archived by the owner on Sep 22, 2022. It is now read-only.

Commit

Permalink
project rename
Browse files Browse the repository at this point in the history
  • Loading branch information
poma committed Jul 3, 2014
1 parent 42ef370 commit 96f3d67
Show file tree
Hide file tree
Showing 65 changed files with 77 additions and 78 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
AwsSsh 1.4
SshConnect 2.0
==========

A nice windows tool that lets you quickly SSH to your Amazon EC2 instances using Putty. Has built-in search that helps a lot when you have many instances.
A nice windows tool that lets you quickly SSH to your Amazon EC2 or Chef-managed instances using Putty. Has built-in search that helps a lot when you have many instances.

![Screenshot](https://raw.github.com/poma/AwsSsh/master/Screenshots/Screenshot1.png)
![Screenshot](https://raw.github.com/poma/SshConnect/master/Screenshots/Screenshot1.png)

Download
------------
You can download compiled version from [downloads page](https://github.com/poma/AwsSsh/downloads)
You can download compiled version from [downloads page](https://github.com/poma/SshConnect/downloads)


Requirements
Expand Down
8 changes: 5 additions & 3 deletions AwsSsh.sln → SshConnect.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AwsSsh", "AwsSsh\AwsSsh.csproj", "{633B12D8-B10E-4A84-A690-E7B27346119F}"
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.21005.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SshConnect", "SshConnect\SshConnect.csproj", "{633B12D8-B10E-4A84-A690-E7B27346119F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
3 changes: 1 addition & 2 deletions AwsSsh/App.xaml → SshConnect/App.xaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<Application x:Class="AwsSsh.App"
<Application x:Class="SshConnect.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:AwsSsh"
Startup="Application_Startup"
Exit="Application_Exit">
<Application.Resources>
Expand Down
2 changes: 1 addition & 1 deletion AwsSsh/App.xaml.cs → SshConnect/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.IO.Compression;
using System.Reflection;

namespace AwsSsh
namespace SshConnect
{
/// <summary>
/// Interaction logic for App.xaml
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Window x:Class="AwsSsh.ExceptionDialogWindow"
<Window x:Class="SshConnect.ExceptionDialogWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Net.Sockets;
using System.Windows.Threading;

namespace AwsSsh
namespace SshConnect
{
public class ExceptionDialog
{
Expand Down
4 changes: 2 additions & 2 deletions AwsSsh/GUI/MainWindow.xaml → SshConnect/GUI/MainWindow.xaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Window x:Class="AwsSsh.MainWindow"
<Window x:Class="SshConnect.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:AwsSsh"
xmlns:local="clr-namespace:SshConnect"
Title="Connect to server" Height="{Binding Settings.WindowHeight, Mode=TwoWay}" Width="{Binding Settings.WindowWidth, Mode=TwoWay}" MinHeight="300"
PreviewKeyDown="Window_PreviewKeyDown"
PreviewMouseUp="Window_PreviewMouseUp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
using System.Windows.Threading;
using System.Xml.Serialization;
using System.Configuration;
using AwsSsh.Plugins.Amazon;
using SshConnect.Plugins.Amazon;
using System.Threading;
using System.Reflection;

namespace AwsSsh
namespace SshConnect
{
/// <summary>
/// Interaction logic for MainWindow.xaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
using System.Windows.Threading;
using System.Xml.Serialization;
using System.Configuration;
using AwsSsh.Plugins.Amazon;
using SshConnect.Plugins.Amazon;
using System.Threading;
using System.Reflection;
using MvvmFoundation.Wpf;

namespace AwsSsh
namespace SshConnect
{
public class MainWindowViewModel : ObservableObject
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<Window x:Class="AwsSsh.SettingsDialog"
<Window x:Class="SshConnect.SettingsDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ch="clr-namespace:AwsSsh.Plugins.Chef"
xmlns:am="clr-namespace:AwsSsh.Plugins.Amazon"
Title="Settings" Height="auto" MinHeight="500" Width="800" SizeToContent="Height">
<Window.Resources>
<Style TargetType="{x:Type TextBlock}" x:Key="LinkStyle">
Expand All @@ -22,16 +20,16 @@
<Border BorderThickness="0, 1, 0, 0" BorderBrush="#f1eeee" Background="#DBDBE0" SnapsToDevicePixels="True">
<Grid>
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="8, 0">
<TextBlock Style="{StaticResource LinkStyle}" Text="Homepage" Tag="https://github.com/poma/AwsSsh" />
<TextBlock Style="{StaticResource LinkStyle}" Text="Homepage" Tag="https://github.com/poma/SshConnect" />
<TextBlock Style="{StaticResource LinkStyle}" Text="Share ▼" x:Name="shareButton" TextDecorations="None" MouseLeftButtonUp="ShowShareMenu">
<TextBlock.ContextMenu>
<ContextMenu x:Name="shareMenu" Placement="Bottom">
<MenuItem Header="Facebook" Click="LinkClick" Tag="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fgithub.com%2Fpoma%2FAwsSsh">
<MenuItem Header="Facebook" Click="LinkClick" Tag="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fgithub.com%2Fpoma%2FSshConnect">
<MenuItem.Icon>
<Image Source="/Resources/facebook.png" Height="16" Width="16" RenderOptions.BitmapScalingMode="NearestNeighbor" />
</MenuItem.Icon>
</MenuItem>
<MenuItem Header="Twitter" Click="LinkClick" Tag="https://twitter.com/intent/tweet?url=https://github.com/poma/AwsSsh&amp;hashtags=awsssh&amp;text=AwsSsh:%20a%20nice%20windows%20tool%20that%20lets%20you%20quickly%20SSH%20to%20your%20Amazon%20EC2%20instances%20using%20Putty">
<MenuItem Header="Twitter" Click="LinkClick" Tag="https://twitter.com/intent/tweet?url=https://github.com/poma/SshConnect&amp;hashtags=SshConnect&amp;text=SshConnect:%20a%20nice%20windows%20tool%20that%20lets%20you%20quickly%20SSH%20to%20your%20Amazon%20EC2%20or%20Chef%20instances%20using%20Putty">
<MenuItem.Icon>
<Image Source="/Resources/twitter.png" Height="16" Width="16" RenderOptions.BitmapScalingMode="NearestNeighbor" />
</MenuItem.Icon>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
using System.Windows.Shapes;
using System.Diagnostics;
using System.IO;
using AwsSsh.Plugins.Amazon;
using SshConnect.Plugins.Amazon;
using System.Windows.Controls.Primitives;
using AwsSsh.Plugins.Chef;
using AwsSsh.Plugins.Putty;
using SshConnect.Plugins.Chef;
using SshConnect.Plugins.Putty;

namespace AwsSsh
namespace SshConnect
{
/// <summary>
/// Interaction logic for SettingsDialog.xaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.ComponentModel;
using System.Reflection;

namespace AwsSsh
namespace SshConnect
{
[Serializable]
[AttributeUsage(AttributeTargets.Property)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Text;
using System.Windows.Controls;

namespace AwsSsh
namespace SshConnect
{
public interface IInstanceSource
{
Expand Down
2 changes: 1 addition & 1 deletion AwsSsh/Model/Instance.cs → SshConnect/Model/Instance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System.Windows;
using System.Xml.Serialization;

namespace AwsSsh
namespace SshConnect
{
[Serializable]
[DebuggerDisplay("Name = {_name}")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Text;
using System.Xml.Serialization;

namespace AwsSsh
namespace SshConnect
{
public static class InstanceCache
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
using System.Windows.Threading;
using System.Xml.Serialization;
using System.Configuration;
using AwsSsh.Plugins.Amazon;
using SshConnect.Plugins.Amazon;
using System.Threading;
using System.Reflection;
using MvvmFoundation.Wpf;
using AwsSsh.Plugins.Putty;
using AwsSsh.Plugins.Chef;
using SshConnect.Plugins.Putty;
using SshConnect.Plugins.Chef;

namespace AwsSsh
namespace SshConnect
{
public class InstanceCollection: ObservableObject
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Linq;
using System.Collections.Generic;

namespace AwsSsh
namespace SshConnect
{
public enum StateColor
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Collections.Generic;
using System.Diagnostics;

namespace AwsSsh.Plugins.Amazon
namespace SshConnect.Plugins.Amazon
{
[Serializable]
public class AmazonInstance : Instance
Expand Down Expand Up @@ -138,13 +138,13 @@ private void UpdateStateColor()
{
switch (State)
{
case AmazonInstatnceStates.Unknown: StateColor = AwsSsh.StateColor.Gray; break;
case AmazonInstatnceStates.Pending: StateColor = AwsSsh.StateColor.Yellow; break;
case AmazonInstatnceStates.Running: StateColor = AwsSsh.StateColor.Green; break;
case AmazonInstatnceStates.ShuttingDown: StateColor = AwsSsh.StateColor.Yellow; break;
case AmazonInstatnceStates.Terminated: StateColor = AwsSsh.StateColor.Red; break;
case AmazonInstatnceStates.Stopping: StateColor = AwsSsh.StateColor.Red; break;
case AmazonInstatnceStates.Stopped: StateColor = AwsSsh.StateColor.Red; break;
case AmazonInstatnceStates.Unknown: StateColor = SshConnect.StateColor.Gray; break;
case AmazonInstatnceStates.Pending: StateColor = SshConnect.StateColor.Yellow; break;
case AmazonInstatnceStates.Running: StateColor = SshConnect.StateColor.Green; break;
case AmazonInstatnceStates.ShuttingDown: StateColor = SshConnect.StateColor.Yellow; break;
case AmazonInstatnceStates.Terminated: StateColor = SshConnect.StateColor.Red; break;
case AmazonInstatnceStates.Stopping: StateColor = SshConnect.StateColor.Red; break;
case AmazonInstatnceStates.Stopped: StateColor = SshConnect.StateColor.Red; break;
default: Trace.TraceWarning("Unknown instance state " + State); break;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
using Amazon;
using Amazon.EC2;
using Amazon.EC2.Model;
using AwsSsh.Properties;
using SshConnect.Properties;
using System.Windows;
using AwsSsh.Plugins.Chef;
using SshConnect.Plugins.Chef;
using System.Windows.Controls;

namespace AwsSsh.Plugins.Amazon
namespace SshConnect.Plugins.Amazon
{
[Serializable]
public class AmazonInstanceSource: IInstanceSource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Linq;
using System.Collections.Generic;

namespace AwsSsh.Plugins.Amazon
namespace SshConnect.Plugins.Amazon
{
public enum AmazonInstatnceStates
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using System.Text;

namespace AwsSsh.Plugins.Amazon
namespace SshConnect.Plugins.Amazon
{
public class AmazonSettings : SettingsBase
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<UserControl x:Class="AwsSsh.Plugins.Amazon.AmazonSettingsControl"
<UserControl x:Class="SshConnect.Plugins.Amazon.AmazonSettingsControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace AwsSsh.Plugins.Amazon
namespace SshConnect.Plugins.Amazon
{
/// <summary>
/// Interaction logic for AmazonSettingsDialog.xaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.OpenSsl;

namespace AwsSsh.Plugins.Chef
namespace SshConnect.Plugins.Chef
{
public class ChefClient
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.Diagnostics;

namespace AwsSsh.Plugins.Chef
namespace SshConnect.Plugins.Chef
{
[DebuggerDisplay("Name = {_name}, Endpoint = {endpoint}")]
public class ChefInstance:Instance
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Collections.ObjectModel;
using System.Windows.Controls;

namespace AwsSsh.Plugins.Chef
namespace SshConnect.Plugins.Chef
{
[Serializable]
public class ChefInstanceSource:IInstanceSource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using System.Text;

namespace AwsSsh.Plugins.Chef
namespace SshConnect.Plugins.Chef
{
public class ChefSettings : SettingsBase
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<UserControl x:Class="AwsSsh.Plugins.Chef.ChefSettingsControl"
<UserControl x:Class="SshConnect.Plugins.Chef.ChefSettingsControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace AwsSsh.Plugins.Chef
namespace SshConnect.Plugins.Chef
{
/// <summary>
/// Interaction logic for ChefSettingsControl.xaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Globalization;
using System.Text;

namespace AwsSsh.Plugins.Chef
namespace SshConnect.Plugins.Chef
{
/// <summary>
/// This class encodes and decodes JSON strings.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.Collections;

namespace AwsSsh.Plugins.Chef
namespace SshConnect.Plugins.Chef
{
public class JsonObject
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using System.Text;

namespace AwsSsh.Plugins.Putty
namespace SshConnect.Plugins.Putty
{
public class PuttyInstance : Instance
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
using System.Text;
using System.Collections.ObjectModel;
using Microsoft.Win32;
using AwsSsh.Plugins.Chef;
using SshConnect.Plugins.Chef;
using System.Windows.Controls;

namespace AwsSsh.Plugins.Putty
namespace SshConnect.Plugins.Putty
{
[Serializable]
public class PuttyInstanceSource : IInstanceSource
Expand Down
Loading

0 comments on commit 96f3d67

Please sign in to comment.