Commit df13f4814a56430a87cb4684f58db0ee0961a4dc

Authored by Paulo Henrique Junqueira Amorim
1 parent ed898334
Exists in master

ENH: Changed version and copyright year

invesalius/constants.py
... ... @@ -28,7 +28,7 @@ from invesalius import utils
28 28 from invesalius import inv_paths
29 29  
30 30 #from invesalius.project import Project
31   -INVESALIUS_VERSION = "3.1.99996"
  31 +INVESALIUS_VERSION = "3.1.99997"
32 32  
33 33 INVESALIUS_ACTUAL_FORMAT_VERSION = 1.1
34 34  
... ...
invesalius/gui/dialogs.py
... ... @@ -1181,7 +1181,7 @@ def ShowAboutDialog(parent):
1181 1181 info = AboutDialogInfo()
1182 1182 info.Name = "InVesalius"
1183 1183 info.Version = const.INVESALIUS_VERSION
1184   - info.Copyright = _("(c) 2007-2019 Center for Information Technology Renato Archer - CTI")
  1184 + info.Copyright = _("(c) 2007-2022 Center for Information Technology Renato Archer - CTI")
1185 1185 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))
1186 1186  
1187 1187 # _("InVesalius is a software for medical imaging 3D reconstruction. ")+\
... ...