QMod: Add authors property

This commit is contained in:
Toast 2025-06-05 02:24:23 +02:00
parent 14964e0203
commit 4edfdc8706

View file

@ -40,6 +40,10 @@ class QMod(QObject):
def longDescription(self) -> str | None:
return self.__mod.long_description
@Property(list, constant=True)
def authors(self) -> list[str] | None:
return self.__mod.authors
mod_enabled = Signal(name="enabled")
@Property(bool, notify=mod_enabled)