PluginTimeTracker.py

changeset 47
f201a23a8cd7
parent 45
ff7d62d441b5
child 50
0856ce4ba3d6
child 51
d0afa82c3deb
equal deleted inserted replaced
46:7f42cdb0ae09 47:f201a23a8cd7
5 5
6 """ 6 """
7 Module implementing the Time Tracker plugin. 7 Module implementing the Time Tracker plugin.
8 """ 8 """
9 9
10 from __future__ import unicode_literals # __IGNORE_WARNING__ 10 from __future__ import unicode_literals
11 11
12 import os 12 import os
13 13
14 from PyQt4.QtCore import QObject, QTranslator, QCoreApplication 14 from PyQt4.QtCore import QObject, QTranslator, QCoreApplication
15 15
22 # Start-Of-Header 22 # Start-Of-Header
23 name = "Time Tracker Plugin" 23 name = "Time Tracker Plugin"
24 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 24 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
25 autoactivate = True 25 autoactivate = True
26 deactivateable = True 26 deactivateable = True
27 version = "1.2.2" 27 version = "1.3.0"
28 className = "TimeTrackerPlugin" 28 className = "TimeTrackerPlugin"
29 packageName = "TimeTracker" 29 packageName = "TimeTracker"
30 shortDescription = "Time Tracker to keep track of the project time." 30 shortDescription = "Time Tracker to keep track of the project time."
31 longDescription = \ 31 longDescription = \
32 """This plug-in implements a time tracker to keep track""" \ 32 """This plug-in implements a time tracker to keep track""" \
33 """ of the time used for a project. The time can be subdivided""" \ 33 """ of the time used for a project. The time can be subdivided""" \
34 """ into tasks.""" 34 """ into tasks."""
35 needsRestart = False 35 needsRestart = False
36 pyqtApi = 2 36 pyqtApi = 2
37 python2Compatible = True
37 # End-Of-Header 38 # End-Of-Header
38 39
39 error = "" 40 error = ""
40 41
41 timeTrackerPluginObject = None 42 timeTrackerPluginObject = None

eric ide

mercurial