13 |
13 |
14 from PyQt6.QtCore import pyqtSlot, QObject, QTranslator |
14 from PyQt6.QtCore import pyqtSlot, QObject, QTranslator |
15 from PyQt6.QtGui import QAction |
15 from PyQt6.QtGui import QAction |
16 from PyQt6.QtWidgets import QMenu |
16 from PyQt6.QtWidgets import QMenu |
17 |
17 |
18 from EricWidgets.EricApplication import ericApp |
18 from eric7.EricWidgets import EricFileDialog, EricMessageBox |
19 from EricWidgets import EricFileDialog, EricMessageBox |
19 from eric7.EricWidgets.EricApplication import ericApp |
20 |
20 |
21 # Start-Of-Header |
21 # Start-Of-Header |
22 name = "Generate Hash Tool Plug-in" |
22 name = "Generate Hash Tool Plug-in" |
23 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
23 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
24 autoactivate = True |
24 autoactivate = True |
25 deactivateable = True |
25 deactivateable = True |
26 version = "10.0.1" |
26 version = "10.1.0" |
27 className = "ToolGenerateHashPlugin" |
27 className = "ToolGenerateHashPlugin" |
28 packageName = "ToolGenerateHash" |
28 packageName = "ToolGenerateHash" |
29 shortDescription = "Generate a hash for a selectable file or directory" |
29 shortDescription = "Generate a hash for a selectable file or directory" |
30 longDescription = ( |
30 longDescription = ( |
31 """Plug-in to generate a hash for a selectable file or directory. The""" |
31 """Plug-in to generate a hash for a selectable file or directory. The""" |