From 47f23884b44faedccd80aa4b8f6dd18b2e0fb57d Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Wed, 1 Jun 2016 20:39:04 +0200 Subject: [PATCH] 1.5.0rc1 --- CHANGELOG | 20 ++++++++++++++++++++ gns3/version.py | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 28193ecc..025caa30 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,25 @@ # Change Log +## 1.5.0rc1 01/06/2016 + +* Avoid a segfault when exiting with debug enabled +* Fix the GNS3 VM is visible even if deactivated +* Do not automatically stop the GNS3 VM by default. +* Block VMnet host traffic by default. Solves the traffic loop issue on Windows. +* Remove tooltip for Qemu VM base mac address. +* Fix you cannot select the remote server of your choice in qemu wizard +* Fix issue when deleting a running container +* Allow to block network traffic originating from the host OS for vmnet interfaces (Windows only). +* Change tooltip for Qemu VM base MAC address. +* Improve image import +* Support dragging an image in the GNS3 topology from the system file browser +* Fix an issue with import with no GNS3 VM +* Fix error when using {} in the node name +* Display the progress dialog after 250ms +* Fix a crash when exporting a project with virtualbox or VMware VM +* Set default VMware VM adapter type to e1000. + + ## 1.5.0b1 23/05/2016 * Remote server selector not enabled in import appliance wizard diff --git a/gns3/version.py b/gns3/version.py index 707e8f67..82ead3a9 100644 --- a/gns3/version.py +++ b/gns3/version.py @@ -25,5 +25,5 @@ or negative for a release candidate or beta (after the base version number has been incremented) """ -__version__ = "1.5.0dev5" +__version__ = "1.5.0rc1" __version_info__ = (1, 5, 0, -99)