Skip to content

Commit

Permalink
Bump to version 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Nov 20, 2014
1 parent 0370d30 commit 319ac95
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion gns3/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ def __init__(self, parent=None):
self.restoreState(settings.value("GUI/state", QtCore.QByteArray()))

# do not show the nodes dock widget my default
self.uiNodesDockWidget.setVisible(False)
if not ENABLE_CLOUD:
self.uiNodesDockWidget.setVisible(False)

# populate the view -> docks menu
self.uiDocksMenu.addAction(self.uiTopologySummaryDockWidget.toggleViewAction())
Expand Down
4 changes: 2 additions & 2 deletions gns3/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
number has been incremented)
"""

__version__ = "1.2.dev3"
__version_info__ = (1, 2, 0, 99)
__version__ = "1.2"
__version_info__ = (1, 2, 0, 0)

0 comments on commit 319ac95

Please sign in to comment.