19 from Preferences.Shortcuts import readShortcuts |
19 from Preferences.Shortcuts import readShortcuts |
20 |
20 |
21 from VcsPlugins.vcsMercurial.HgUtilities import getConfigPath |
21 from VcsPlugins.vcsMercurial.HgUtilities import getConfigPath |
22 |
22 |
23 import Utilities |
23 import Utilities |
|
24 import UI.Info |
24 |
25 |
25 # Start-Of-Header |
26 # Start-Of-Header |
26 name = "Mercurial Plugin" |
27 name = "Mercurial Plugin" |
27 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
28 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
28 autoactivate = False |
29 autoactivate = False |
29 deactivateable = True |
30 deactivateable = True |
30 version = "6.2.0" |
31 version = UI.Info.VersionOnly |
31 pluginType = "version_control" |
32 pluginType = "version_control" |
32 pluginTypename = "Mercurial" |
33 pluginTypename = "Mercurial" |
33 className = "VcsMercurialPlugin" |
34 className = "VcsMercurialPlugin" |
34 packageName = "__core__" |
35 packageName = "__core__" |
35 shortDescription = "Implements the Mercurial version control interface." |
36 shortDescription = "Implements the Mercurial version control interface." |