From 4ab21ea9f9006c377c39877704f4d0e7bfcddd86 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Fri, 31 Mar 2017 09:41:48 +0200 Subject: [PATCH] 2.0.0rc3 --- CHANGELOG | 35 +++++++++++++++++++++++++++++++++++ gns3/crash_report.py | 2 +- gns3/version.py | 2 +- 3 files changed, 37 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index bd02aa32..c661757b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,40 @@ # Change Log +## 2.0.0rc3 31/03/2017 + +* Improve timeout handling +* Improve logging when we display a qt message box +* Try to detect computer hibernation +* Fix crash when we send some errors to the user console +* Use QtFile for managing file capture +* Allow to delete a profile from the profile select dialog +* Filter hidden folder in the profil directory +* Prevent user putting port in the remote host name +* Fix RuntimeError: wrapped C/C++ object of type EllipseItem has been deleted +* Fix a rare error in LinkItem +* Fix Image field in nodes list is stale after changing an image +* Fix RuntimeError: Set changed size during iteration +* Better detection of remote server changes +* Add a notice about the fact you need to apply server settings +* Check python version only for setup.py install +* Catch appliance error when creating an appliance new version +* If a node can't be deleted do not remove it +* If something is wrong during packet capture do not disconnect us from the server +* Fix saving dynamips +* Try to fix the hang dialog on some computers +* Fix a rare crash in progress dialog +* If we pass --profile skip the profile select dialog +* Raise an error if the progress dialog is not created from the main thread +* Log qt log to python log +* Fix image are not uploaded to remote main server +* Fix race condition when editing a project +* Poll settings each 5 seconds +* Avoid progress dialog not disapear +* Remove wrong mention about the fact super putty is include +* Avoid a crash when an ios router don't have a chassis +* Fix a potentatial crash in the progress dialog +* Support official docker images in appliances + ## 2.0.0rc2 10/03/2017 * Deploy on pypi when we tag diff --git a/gns3/crash_report.py b/gns3/crash_report.py index fe1b4f2c..3b191cbe 100644 --- a/gns3/crash_report.py +++ b/gns3/crash_report.py @@ -51,7 +51,7 @@ class CrashReport: Report crash to a third party service """ - DSN = "sync+https://832b3f81c4ee431784e66dfc04b46c01:ff35563db0ee423a9fce1c924863cd57@sentry.io/38506" + DSN = "sync+https://f735feaefb3844b2b5ee182753622c3e:335ff7eb39384134bf757e3ba4ac2a1e@sentry.io/38506" if hasattr(sys, "frozen"): cacert = get_resource("cacert.pem") if cacert is not None and os.path.isfile(cacert): diff --git a/gns3/version.py b/gns3/version.py index 95856c74..7e7099d1 100644 --- a/gns3/version.py +++ b/gns3/version.py @@ -17,7 +17,7 @@ # __version__ is a human-readable version number. -__version__ = "2.0.0dev11" +__version__ = "2.0.0rc3" # If it's a git checkout try to add the commit if "dev" in __version__: