This commit is contained in:
Julien Duponchelle
2017-05-30 09:02:02 +02:00
parent 8ed8a2c115
commit 4e172fc7e3
3 changed files with 15 additions and 3 deletions

View File

@@ -1,5 +1,17 @@
# Change Log
## 2.0.2 30/05/2017
* Show a default symbol in case of corrupted file
* When another gui is already running exit instead of proper close to avoid any issue
* Fix duplicate on remote server use wrong location
* Display the location of settings when we disallow opening due to old release
* Improve search for dynamips in development on OSX
* Fix error display when loading a .png custom symbol
* Fix a crash in the progress dialog
* Fix a race condition when exporting a closed project
* Fix RuntimeError: wrapped C/C++ object of type NodeItem has been deleted
## 2.0.1 16/05/2017
* Improve inline help. Fixes #1999. Add a warning about wifi interfaces in the cloud. Fixes #1902.

View File

@@ -51,7 +51,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "sync+https://b9912fe90df3496e98ccfb44d9b9baf0:ac42a40e66314b48883243402b957290@sentry.io/38506"
DSN = "sync+https://063691a489374eda912ad454a1d80777:5ddb34d6b23c4a08b040efce23aaac78@sentry.io/38506"
if hasattr(sys, "frozen"):
cacert = get_resource("cacert.pem")
if cacert is not None and os.path.isfile(cacert):

View File

@@ -17,7 +17,7 @@
# __version__ is a human-readable version number.
__version__ = "2.0.2dev1"
__version__ = "2.0.2"
# If it's a git checkout try to add the commit
if "dev" in __version__:
@@ -37,4 +37,4 @@ or negative for a release candidate or beta (after the base version
number has been incremented)
"""
__version_info__ = (2, 0, 2, -99)
__version_info__ = (2, 0, 2, 0)