🔖 chore(SettingManager.py): update version to 1.2.0

🔨 refactor(SettingManager.py): reorder authors list and update description
The version number has been updated to 1.2.0 to reflect the changes made to the application. The authors list has been reordered and the description has been updated to provide a more detailed explanation of the tool's functionality.
This commit is contained in:
Djalim Simaila 2023-05-10 16:33:53 +02:00
parent 46f914323e
commit 6803443385

View File

@ -19,7 +19,7 @@ class SettingManager:
:ivar instance: The instance of the class :ivar instance: The instance of the class
""" """
instance = None instance = None
version = "1.1.1" version = "1.2.0"
def __init__(self): def __init__(self):
try: try:
@ -54,8 +54,8 @@ class SettingManager:
def createInitialSettings(self): def createInitialSettings(self):
self.settings['version'] = self.version self.settings['version'] = self.version
self.settings['name'] = 'Analyse Morphologique' self.settings['name'] = 'Analyse Morphologique'
self.settings['authors'] = ['Alexis Doghmane <alexis@doghmane.fr>', 'Djalim Simaila <djalim.simaila@inrae.fr>'] self.settings['authors'] = ['Djalim Simaila <djalim.simaila@inrae.fr>','Alexis Doghmane <alexis@doghmane.fr>']
self.settings['description'] = 'Analyse Morphologique' self.settings['description'] = """Analyse Morphologique est un outil conçu pour extraire des informations \ndétaillées et précises à partir d'un scan 3D. Il permet aux utilisateurs\nd'analyser des objets 3D à partir d'un point de vue morphologique,\nc'est-à-dire en analysant la forme et la structure de l'objet."""
self.settings['repo'] = 'https://forgemia.inra.fr/scanner3d/analysemorphologique' self.settings['repo'] = 'https://forgemia.inra.fr/scanner3d/analysemorphologique'
self.settings['lastGraph'] = ["Aucun" for i in range(11)] self.settings['lastGraph'] = ["Aucun" for i in range(11)]
self.settings['discretisation_method'] = 'Z0-Zi >= DeltaZ' # 'Z0-Zi < DeltaZ' self.settings['discretisation_method'] = 'Z0-Zi >= DeltaZ' # 'Z0-Zi < DeltaZ'