7 Module implementing the Time Tracker plugin. |
7 Module implementing the Time Tracker plugin. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 from PyQt6.QtCore import QObject, QTranslator, QCoreApplication |
12 from PyQt6.QtCore import QCoreApplication, QObject, QTranslator |
13 |
13 |
14 from eric7 import Preferences |
14 from eric7 import Preferences |
15 from eric7.EricWidgets.EricApplication import ericApp |
15 from eric7.EricWidgets.EricApplication import ericApp |
16 |
|
17 from TimeTracker.TimeTracker import TimeTracker |
16 from TimeTracker.TimeTracker import TimeTracker |
18 |
17 |
19 # Start-Of-Header |
18 # Start-Of-Header |
20 name = "Time Tracker Plugin" |
19 name = "Time Tracker Plugin" |
21 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
20 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
22 autoactivate = True |
21 autoactivate = True |
23 deactivateable = True |
22 deactivateable = True |
24 version = "10.1.0" |
23 version = "10.2.0" |
25 className = "TimeTrackerPlugin" |
24 className = "TimeTrackerPlugin" |
26 packageName = "TimeTracker" |
25 packageName = "TimeTracker" |
27 shortDescription = "Time Tracker to keep track of the project time." |
26 shortDescription = "Time Tracker to keep track of the project time." |
28 longDescription = ( |
27 longDescription = ( |
29 """This plug-in implements a time tracker to keep track""" |
28 """This plug-in implements a time tracker to keep track""" |