mirror of
https://github.com/GNS3/gns3-server
synced 2025-02-20 03:52:00 +00:00
Release 2.1.0 beta 1
This commit is contained in:
parent
44fc87a24c
commit
e2de872036
10
CHANGELOG
10
CHANGELOG
@ -1,5 +1,15 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.1.0b1 04/08/2017
|
||||||
|
|
||||||
|
* Sync appliances
|
||||||
|
* Interface starting with gns3 are not display by default in the cloud
|
||||||
|
* Catch error when something that is not the GNS3 server answer to virtualbox requests
|
||||||
|
* Catch KeyError: <aiohttp.connector._TransportPlaceholder
|
||||||
|
* Add a warning when you try to load and the server is not started with --local
|
||||||
|
* Sync appliances
|
||||||
|
* Fix permission on exited container
|
||||||
|
|
||||||
## 2.1.0a2 31/07/2017
|
## 2.1.0a2 31/07/2017
|
||||||
|
|
||||||
* Handle invalid appliances files
|
* Handle invalid appliances files
|
||||||
|
@ -57,7 +57,7 @@ class CrashReport:
|
|||||||
Report crash to a third party service
|
Report crash to a third party service
|
||||||
"""
|
"""
|
||||||
|
|
||||||
DSN = "sync+https://a387df116ea64abb9561c6b1df84afd3:2c420d1690e242ada5307fc9e5f01d06@sentry.io/38482"
|
DSN = "sync+https://3bc420f078ca4829ac3684d24a959705:32657f8bcf3444e1b3aa0845f9f73959@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,10 @@
|
|||||||
# 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.1.0dev3"
|
__version__ = "2.1.0b1"
|
||||||
__version_info__ = (2, 1, 0, -99)# If it's a git checkout try to add the commit
|
__version_info__ = (2, 1, 0, -99)
|
||||||
|
|
||||||
|
# If it's a git checkout try to add the commit
|
||||||
if "dev" in __version__:
|
if "dev" in __version__:
|
||||||
try:
|
try:
|
||||||
import os
|
import os
|
||||||
|
Loading…
Reference in New Issue
Block a user