mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-16 16:54:51 +02:00
2.0.0 beta 1
This commit is contained in:
parent
52260cba53
commit
d006ea0f56
19
CHANGELOG
19
CHANGELOG
@ -1,5 +1,24 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.0.0 beta 1 07/12/2016
|
||||||
|
|
||||||
|
* Fix crash if at controller loading the remote server is not a GNS3 server
|
||||||
|
* Update the way we start controller to avoid hiding crash reports
|
||||||
|
* Fix when you switch console from VNC to telnet it's fail
|
||||||
|
* AttributeError: 'Project' object has no attribute 'emit'
|
||||||
|
* Improve autostart logging
|
||||||
|
* Fix warning when vmware is not installed
|
||||||
|
* If a VMware command fail retry
|
||||||
|
* Do not recurse scan for images in standard image directory
|
||||||
|
* When we restore snapshot on a fail project do not crash
|
||||||
|
* Catch error when qemuy can't connect to his console
|
||||||
|
* Catch error when no space left on disk during export
|
||||||
|
* Improve vmware error message for easier copy paste
|
||||||
|
* Catch error if you export a project deleted from disk
|
||||||
|
* Qemu UDP listen on all ips
|
||||||
|
* Force yarl version >= 0.7.0
|
||||||
|
* Ask user to refresh is user session if he just installed ubridge
|
||||||
|
|
||||||
## 2.0.0 alpha 4 24/11/2016
|
## 2.0.0 alpha 4 24/11/2016
|
||||||
|
|
||||||
* Do not block traffic originating from an Ethernet interface in the cloud. Ref #771.
|
* Do not block traffic originating from an Ethernet interface in the cloud. Ref #771.
|
||||||
|
@ -53,7 +53,7 @@ class CrashReport:
|
|||||||
Report crash to a third party service
|
Report crash to a third party service
|
||||||
"""
|
"""
|
||||||
|
|
||||||
DSN = "sync+https://1339db9521024612af8ab104adc85240:70d15b7dfbf84370bc9ef7c95f4d3459@sentry.io/38482"
|
DSN = "sync+https://7f26962042804f8fb586600e9b54f954:d94785a63265426bb4b2e3ecce0b8972@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,5 +23,5 @@
|
|||||||
# 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.0.0dev5"
|
__version__ = "2.0.0b1"
|
||||||
__version_info__ = (2, 0, 0, -99)
|
__version_info__ = (2, 0, 0, -99)
|
||||||
|
Loading…
Reference in New Issue
Block a user