Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswayoub committed Dec 7, 2019
2 parents 20db787 + 86365e8 commit da254be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
11 changes: 0 additions & 11 deletions Lanayo.VagrantManager/App.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ public enum PossibleVmStates { running, suspended, off };

class App : VagrantManagerDelegate, MenuDelegate {
private NativeMenu _NativeMenu;
private List<TaskOutputWindow> _TaskOutputWindows;
private bool IsRefreshingVagrantMachines;
private int QueuedRefreshes;
private static App _Instance;
Expand All @@ -43,8 +42,6 @@ public void Run() {
NotificationCenter.Instance.AddObserver(ShowUpdateNotificationPreferenceChanged, "vagrant-manager.show-update-notification-preference-changed");
NotificationCenter.Instance.AddObserver(BookmarksUpdated, "vagrant-manager.bookmarks-updated");

_TaskOutputWindows = new List<TaskOutputWindow>();

_NativeMenu = new NativeMenu
{
Delegate = this
Expand Down Expand Up @@ -265,8 +262,6 @@ private void RunVagrantAction(string action, VagrantMachine machine) {
Target = machine
};
outputWindow.Show();

_TaskOutputWindows.Add(outputWindow);
}

private void RunVagrantAction(string action, VagrantInstance instance) {
Expand Down Expand Up @@ -307,8 +302,6 @@ private void RunVagrantAction(string action, VagrantInstance instance) {
Target = instance
};
outputWindow.Show();

_TaskOutputWindows.Add(outputWindow);
}

private void RunTerminalCommand(string command) {
Expand All @@ -322,10 +315,6 @@ private void RunTerminalCommand(string command) {

#region Window management

private void RemoveTaskOutputWindow(TaskOutputWindow taskOutputWindow) {
_TaskOutputWindows.Remove(taskOutputWindow);
}

public void UpdateRunningCount() {
Dictionary<string, object> userInfo = new Dictionary<string, object>
{
Expand Down
4 changes: 2 additions & 2 deletions Lanayo.VagrantManager/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.0.2.1")]
[assembly: AssemblyFileVersion("1.0.2.1")]
[assembly: AssemblyVersion("1.0.2.2")]
[assembly: AssemblyFileVersion("1.0.2.2")]

0 comments on commit da254be

Please sign in to comment.