mirror of
https://github.com/GNS3/gns3-gui.git
synced 2026-05-17 00:46:01 +03:00
Bump version to alpha4.
This commit is contained in:
@@ -4,7 +4,7 @@ include INSTALL
|
||||
include LICENSE
|
||||
include MANIFEST.in
|
||||
include tox.ini
|
||||
recursive-include tests *
|
||||
recursive-exclude tests *
|
||||
recursive-include docs *
|
||||
recursive-include gns3 *
|
||||
recursive-exclude * __pycache__
|
||||
|
||||
@@ -22,8 +22,6 @@ Dependencies:
|
||||
sudo python3 setup.py install
|
||||
gns3
|
||||
|
||||
`Detailed instructions for Debian Jesse <http://forum.gns3.net/topic8988.html>`_.
|
||||
|
||||
Windows
|
||||
-------
|
||||
|
||||
@@ -36,7 +34,7 @@ DMG package is not available yet.
|
||||
|
||||
You can manually install using the following steps (experimental):
|
||||
|
||||
First install homebrew `http://brew.sh/`_.
|
||||
`First install homebrew <http://brew.sh/>`_.
|
||||
|
||||
Then install GNS3 dependencies.
|
||||
|
||||
|
||||
@@ -124,7 +124,7 @@ class Builtin(Module):
|
||||
local_server = servers.localServer()
|
||||
remote_servers = servers.remoteServers()
|
||||
|
||||
if not all(using_local_server):
|
||||
if not all(using_local_server) and len(remote_servers):
|
||||
# a module is not using a local server
|
||||
|
||||
if not True in using_local_server and len(remote_servers) == 1:
|
||||
|
||||
@@ -168,7 +168,7 @@ class Dynamips(Module):
|
||||
:param path: path to the local project files directory
|
||||
"""
|
||||
|
||||
self._delete_dynamips_files()
|
||||
#self._delete_dynamips_files() #FIXME: cause issues
|
||||
self._working_dir = path
|
||||
log.info("local working directory for Dynamips module: {}".format(self._working_dir))
|
||||
|
||||
|
||||
@@ -301,6 +301,7 @@ class VPCS(Module):
|
||||
:returns: list of classes
|
||||
"""
|
||||
|
||||
return []
|
||||
return [VPCSDevice]
|
||||
|
||||
@staticmethod
|
||||
@@ -309,6 +310,7 @@ class VPCS(Module):
|
||||
:returns: QWidget object list
|
||||
"""
|
||||
|
||||
return []
|
||||
from .pages.vpcs_preferences_page import VPCSPreferencesPage
|
||||
return [VPCSPreferencesPage]
|
||||
|
||||
|
||||
@@ -71,13 +71,13 @@ class PreferencesDialog(QtGui.QDialog, Ui_PreferencesDialog):
|
||||
self._items.append(item)
|
||||
|
||||
# load cloud settings page
|
||||
cloud_page = CloudPreferencesPage()
|
||||
cloud_page.loadPreferences()
|
||||
name = cloud_page.windowTitle()
|
||||
item = QtGui.QListWidgetItem(name, self.uiListWidget)
|
||||
item.setData(QtCore.Qt.UserRole, cloud_page)
|
||||
self.uiStackedWidget.addWidget(cloud_page)
|
||||
self._items.append(item)
|
||||
#cloud_page = CloudPreferencesPage()
|
||||
#cloud_page.loadPreferences()
|
||||
#name = cloud_page.windowTitle()
|
||||
#item = QtGui.QListWidgetItem(name, self.uiListWidget)
|
||||
#item.setData(QtCore.Qt.UserRole, cloud_page)
|
||||
#self.uiStackedWidget.addWidget(cloud_page)
|
||||
#self._items.append(item)
|
||||
|
||||
# load module preference pages
|
||||
for module in MODULES:
|
||||
|
||||
@@ -25,5 +25,5 @@ or negative for a release candidate or beta (after the base version
|
||||
number has been incremented)
|
||||
"""
|
||||
|
||||
__version__ = "1.0a4.dev2"
|
||||
__version__ = "1.0a4"
|
||||
__version_info__ = (1, 0, 0, -99)
|
||||
|
||||
Reference in New Issue
Block a user