Sun, 11 Dec 2022 17:33:46 +0100
Project
- Added the capability to edit the file type associations from within the project properties dialog.
see issue471
# -*- coding: utf-8 -*- # Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing a data structure holding the data associated with a file type category. """ from dataclasses import dataclass @dataclass class FileCategoryRepositoryItem: """ Class holding the data associated with a file type category. """ fileCategoryFilterTemplate: str fileCategoryUserString: str fileCategoryTyeString: str fileCategoryExtensions: list