mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-24 09:18:08 +00:00
Release v2.2.0b2
This commit is contained in:
parent
a6bc6bc79c
commit
e58f86e204
11
CHANGELOG
11
CHANGELOG
@ -1,5 +1,16 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.2.0b2 29/05/2019
|
||||||
|
|
||||||
|
* Ignore Unicode errors when reading base config file contents.
|
||||||
|
* Sync appliances.
|
||||||
|
* Support snapshots for portable projects. Fixes https://github.com/GNS3/gns3-gui/issues/2792
|
||||||
|
* Update the GNS3 version in topology file if converted. Ref https://github.com/GNS3/gns3-gui/issues/2798
|
||||||
|
* Support for log rotation and compression. Fixes #1586
|
||||||
|
* Do not start QEMU console if QEMU process is not started. Fixes https://github.com/GNS3/gns3-gui/issues/2712
|
||||||
|
* Avoid sending warning message all the time for Ethernet switch.
|
||||||
|
* Support to include snapshots in portable projects.
|
||||||
|
|
||||||
## 2.1.20 29/05/2019
|
## 2.1.20 29/05/2019
|
||||||
|
|
||||||
* Ignore Unicode errors when reading base config file contents.
|
* Ignore Unicode errors when reading base config file contents.
|
||||||
|
@ -58,7 +58,7 @@ class CrashReport:
|
|||||||
Report crash to a third party service
|
Report crash to a third party service
|
||||||
"""
|
"""
|
||||||
|
|
||||||
DSN = "https://6b4544f8cc1b42f798941c844ca6dfa6:885563130aca4d8e87ba097d098229a3@sentry.io/38482"
|
DSN = "https://eb9c34a9e4504bf99a6392a3ed2e0568:65d873fc33544886b239628c5e8577e4@sentry.io/38482"
|
||||||
if hasattr(sys, "frozen"):
|
if hasattr(sys, "frozen"):
|
||||||
cacert = get_resource("cacert.pem")
|
cacert = get_resource("cacert.pem")
|
||||||
if cacert is not None and os.path.isfile(cacert):
|
if cacert is not None and os.path.isfile(cacert):
|
||||||
|
@ -23,8 +23,8 @@
|
|||||||
# or negative for a release candidate or beta (after the base version
|
# or negative for a release candidate or beta (after the base version
|
||||||
# number has been incremented)
|
# number has been incremented)
|
||||||
|
|
||||||
__version__ = "2.2.0dev12"
|
__version__ = "2.2.0b2"
|
||||||
__version_info__ = (2, 2, 0, 99)
|
__version_info__ = (2, 2, 0, -99)
|
||||||
|
|
||||||
# If it's a git checkout try to add the commit
|
# If it's a git checkout try to add the commit
|
||||||
if "dev" in __version__:
|
if "dev" in __version__:
|
||||||
|
Loading…
Reference in New Issue
Block a user