Commit b325e66cc81f13f44c77e856c2ff08da539a9f71

Authored by Thiago Franco de Moraes
1 parent 22f53747
Exists in master

Updated the version 3.1.1

invesalius/constants.py
... ... @@ -24,7 +24,7 @@ import wx
24 24 import itertools
25 25  
26 26 #from invesalius.project import Project
27   -INVESALIUS_VERSION = "3.1"
  27 +INVESALIUS_VERSION = "3.1.1"
28 28  
29 29 #---------------
30 30  
... ...
invesalius/gui/dialogs.py
... ... @@ -1038,7 +1038,7 @@ def ShowAboutDialog(parent):
1038 1038  
1039 1039 info = wx.AboutDialogInfo()
1040 1040 info.Name = "InVesalius"
1041   - info.Version = "3.1"
  1041 + info.Version = "3.1.1"
1042 1042 info.Copyright = _("(c) 2007-2017 Center for Information Technology Renato Archer - CTI")
1043 1043 info.Description = wordwrap(_("InVesalius is a medical imaging program for 3D reconstruction. It uses a sequence of 2D DICOM image files acquired with CT or MRI scanners. InVesalius allows exporting 3D volumes or surfaces as mesh files for creating physical models of a patient's anatomy using additive manufacturing (3D printing) technologies. The software is developed by Center for Information Technology Renato Archer (CTI), National Council for Scientific and Technological Development (CNPq) and the Brazilian Ministry of Health.\n\n InVesalius must be used only for research. The Center for Information Technology Renato Archer is not responsible for damages caused by the use of this software.\n\n Contact: invesalius@cti.gov.br"), 350, wx.ClientDC(parent))
1044 1044  
... ...