9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 from PyQt6.QtCore import QObject, QTranslator, QCoreApplication |
12 from PyQt6.QtCore import QObject, QTranslator, QCoreApplication |
13 |
13 |
14 from EricWidgets.EricApplication import ericApp |
14 from eric7.EricWidgets.EricApplication import ericApp |
15 |
15 |
16 import Preferences |
16 from eric7 import Preferences |
17 |
17 |
18 from AssistantEric.Assistant import AcsAPIs, AcsProject |
18 from AssistantEric.Assistant import AcsAPIs, AcsProject |
19 |
19 |
20 # Start-Of-Header |
20 # Start-Of-Header |
21 name = "Assistant Eric Plugin" |
21 name = "Assistant Eric Plugin" |
22 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
22 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
23 autoactivate = True |
23 autoactivate = True |
24 deactivateable = True |
24 deactivateable = True |
25 version = "10.0.2" |
25 version = "10.1.0" |
26 className = "AssistantEricPlugin" |
26 className = "AssistantEricPlugin" |
27 packageName = "AssistantEric" |
27 packageName = "AssistantEric" |
28 shortDescription = "Alternative autocompletion and calltips provider." |
28 shortDescription = "Alternative autocompletion and calltips provider." |
29 longDescription = ( |
29 longDescription = ( |
30 """This plugin implements an alternative autocompletion and""" |
30 """This plugin implements an alternative autocompletion and""" |