From bccdfc97d1d9aa91f19ec8003b4d330f3aecfd14 Mon Sep 17 00:00:00 2001 From: grossmj Date: Wed, 23 Jan 2019 15:40:38 +0800 Subject: [PATCH] Release 2.1.12 --- CHANGELOG | 12 ++++++++++++ gns3server/crash_report.py | 2 +- gns3server/version.py | 4 ++-- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index a5726009..bc8d5085 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,17 @@ # Change Log +## 2.1.12 23/01/2019 + +* Tune how to get the size of SVG images. Ref https://github.com/GNS3/gns3-gui/issues/2674. +* Automatically create a symbolic link to the IOU image in the IOU working directory. Fixes #1484 +* Fix link pause/filters only work for the first interface of Docker containers. Fixes #1482 +* Telnet console resize support for Docker VM. +* Fix _fix_permissions() garbles permissions in Docker VM. Ref #1428 +* Fix "None is not of type 'integer'" when opening project containing a Qemu VM. Fixes #2610. +* Only require Xtigervnc or Xvfb+x11vnc for Docker with vnc console. Ref #1438 +* Support tigervnc in Docker VM. Ref #1438 +* Update minimum VIX version requirements for VMware. Ref #1415. + ## 2.1.11 28/09/2018 * Catch some exceptions. diff --git a/gns3server/crash_report.py b/gns3server/crash_report.py index 26071d86..ff631963 100644 --- a/gns3server/crash_report.py +++ b/gns3server/crash_report.py @@ -57,7 +57,7 @@ class CrashReport: Report crash to a third party service """ - DSN = "https://8a4a7325dfcf4661a0b04d92b0a7d32e:14f83f7a65e54df88e5f06abad85b152@sentry.io/38482" + DSN = "https://edb72a54588b4d04afc2de56b8cb5b24:7830885c8a2a4d0cb311de10ddfe3d27@sentry.io/38482" if hasattr(sys, "frozen"): cacert = get_resource("cacert.pem") if cacert is not None and os.path.isfile(cacert): diff --git a/gns3server/version.py b/gns3server/version.py index 64ba05ae..905e99c3 100644 --- a/gns3server/version.py +++ b/gns3server/version.py @@ -23,8 +23,8 @@ # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "2.1.12dev1" -__version_info__ = (2, 1, 12, 99) +__version__ = "2.1.12" +__version_info__ = (2, 1, 12, 0) # If it's a git checkout try to add the commit if "dev" in __version__: