From e8308869d929b5943ee8c6753d734de929c5c2ac Mon Sep 17 00:00:00 2001 From: grossmj Date: Tue, 26 Feb 2019 16:43:14 +0700 Subject: [PATCH] Release v2.1.13 --- CHANGELOG | 12 ++++++++++++ gns3/crash_report.py | 2 +- gns3/version.py | 5 ++--- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 7166ecb33..3bb986b6f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,17 @@ # Change Log +## 2.1.13 26/02/2019 + +* Disable computer hibernation detection mechanism. Ref #2678 +* Add some advice for request timeout message. Fixes #2652 +* Show/Hide interface labels when status points are not shown. Fixes #2690 +* Do not print critical message twice on stderr. Replace QMessageBox calls with no parent by log.error()/log.warning(). +* Show critical messages before the main window runs. +* Avoid using PyQt5.Qt, which imports unneeded stuff. Fixes #2592 +* Fix SIP import error with recent PyQt versions. Fixes #2709 +* Upgrade to Qt 5.12. Fixes #2636 +* Adjust the setup wizard (VMware image size, layouts). + ## 2.1.12 23/01/2019 * Option to resize SVG symbols that are too big (height above 80px, activated by default). Ref #2674. diff --git a/gns3/crash_report.py b/gns3/crash_report.py index a9379e161..0043cd143 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 = "https://b4bdc4b7e46f4820a5d4d18b29acd67c:0af433313e464920b31e2c618ab9580d@sentry.io/38506" + DSN = "https://167c7646347a4d80a4c8dcc69903b5c4:2e0958a062bc4fe79f8f38741726ec4e@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 a8fdf7700..87b43aaa9 100644 --- a/gns3/version.py +++ b/gns3/version.py @@ -23,9 +23,8 @@ # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "2.1.13dev1" -__version_info__ = (2, 1, 13, 99) - +__version__ = "2.1.13" +__version_info__ = (2, 1, 13, 0) # If it's a git checkout try to add the commit if "dev" in __version__: try: