This commit is contained in:
Julien Duponchelle
2017-01-12 08:13:41 +01:00
parent 5b1050e427
commit 829f750c76
3 changed files with 27 additions and 6 deletions

View File

@@ -1,5 +1,27 @@
# Change Log
## 1.5.3 12/01/2017
* Upgrade Qt 5.7
## 1.5.3 rc1 20/12/2016
* Fix Error when editing IOS image created using .gns3a file
* Fix error when opening a project from the cli with a gns3 installed via setup.py
* Fix a crash at startup on Mac when coming from old GNS3 version
* Fix an error during import of some 0.8x projects
* Ask for restart after installing vmrun
* Improve warning when connection issue to GNS3 VM
* Changes wording in VM wizards.
* Changed sentence.
* Display an error if settings come from a more recent version of GNS3
* Fix Error when no GNS3 VM is configured and you click on new Docker or IOU
* Disallow / in docker container name
* Update iTerm3 console settings
* Fix rename ethernet switch doesn't release the name
* Support for VNC display number in command line replacement
* Fix a crash when a directory with image is not accessible at gns3a import
## 1.5.3 rc1 20/12/2016
* Fix Error when editing IOS image created using .gns3a file

View File

@@ -50,7 +50,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "sync+https://f0637938a00047bda845ae6b23fa8997:493dd5454d834ce8b9da59c58aeb9843@sentry.io/38506"
DSN = "sync+https://1a291723e0d349b4b7e183a2ed409cd7:89c87ae5097c41ee877a5b0fa7cd1a7f@sentry.io/38506"
if hasattr(sys, "frozen"):
cacert = get_resource("cacert.pem")
if cacert is not None and os.path.isfile(cacert):

View File

@@ -16,13 +16,12 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
__version__ = "1.5.3rc1"
__version__ = "1.5.3"
__version_info__ = (1, 5, 3, -99)three numbers are the components of the version number. The fourth
is zero for an official release, positive for a development branch,
__version_info__ = (1, 5, 3, 0)is zero for an official release, positive for a development branch,
or negative for a release candidate or beta (after the base version
number has been incremented)
"""
__version__ = "1.5.3dev2"
__version_info__ = (1, 5, 3, -99)
__version__ = "1.5.3"
__version_info__ = (1, 5, 3, 0)