From 5195c647f6df3f5d222ee26b1182bea8e1aba609 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Mon, 23 May 2016 15:05:24 +0200 Subject: [PATCH] 1.5.0 beta 1 --- CHANGELOG | 19 +++++++++++++++++++ gns3/version.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index f35bc5f6..28193ecc 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,24 @@ # Change Log +## 1.5.0b1 23/05/2016 + +* Remote server selector not enabled in import appliance wizard +* New server dialog is now windows modal +* Fixes issue when UDPPortAllocatedSlot() is called multiple times. +* Private-config is optional. +* Fixes alternative IOS image selection when loading a project. +* Accept fill_color property for rectangle/ellipse objects. Compatibility for old 1.0 projects. +* Fixes check for NPF service and add check for NPCAP service on Windows. +* :latest for docker image is managed server side +* Remove unbreakable space +* Fix Checkbox and radio button are not readable with charcoal style +* Fix existing remotez server is not recognised +* Fix Cannot change docker image adapter number from docker image configuration +* Fix got an unexpected keyword argument 'ram_limit' +* Check that both Qt and PyQt version >= 5.6 to enable high DPI scaling. +* Check Qt version, not PyQt. Fixes #1232. +* Fix you can not turn off the GNS3VM with remote server + ## 1.5.0a2 10/05/2016 * Fix issue with PyPi diff --git a/gns3/version.py b/gns3/version.py index c9ee815c..d06c309c 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.0dev3" +__version__ = "1.5.0b1" __version_info__ = (1, 5, 0, -99)