mirror of
https://github.com/GNS3/gns3-gui.git
synced 2026-05-17 00:46:01 +03:00
Prepare 1.3.2rc2
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 1.3.1rc3 06/04/2015
|
||||
|
||||
* Fix race condition during old project import
|
||||
|
||||
## 1.3.1rc1 05/04/2015
|
||||
|
||||
* Fix rare occasion when user manage to put text in port field
|
||||
* Fix a crash when exporting vpcs startup script
|
||||
* Fix an issue with sending iourc when a topologies is reloaded
|
||||
|
||||
@@ -280,7 +280,7 @@ class Project(QtCore.QObject):
|
||||
path = "/projects/{project_id}{path}".format(project_id=self._id, path=path)
|
||||
server.createHTTPQuery(method, path, callback, body=body, context=context)
|
||||
|
||||
#Call all operations waiting for project creation:
|
||||
# Call all operations waiting for project creation:
|
||||
if server in self._callback_finish_creating_on_server:
|
||||
callbacks = self._callback_finish_creating_on_server[server]
|
||||
del self._callback_finish_creating_on_server[server]
|
||||
|
||||
@@ -25,5 +25,5 @@ or negative for a release candidate or beta (after the base version
|
||||
number has been incremented)
|
||||
"""
|
||||
|
||||
__version__ = "1.3.1.rc1"
|
||||
__version__ = "1.3.1.rc2"
|
||||
__version_info__ = (1, 3, 0, 99)
|
||||
|
||||
@@ -403,6 +403,7 @@ def test_load_1_2_topology(project, monkeypatch, main_window, tmpdir):
|
||||
|
||||
project_call = 0
|
||||
# We return an uuid for each HTTP post
|
||||
|
||||
def http_loader(self, method, path, callback, body={}, **kwargs):
|
||||
if path == "/projects":
|
||||
callback({"project_id": uuid.uuid4(), "path": str(tmpdir)}, error=False, server=local_server)
|
||||
|
||||
Reference in New Issue
Block a user