34 __header__ = { |
34 __header__ = { |
35 "name": "pipx Interface", |
35 "name": "pipx Interface", |
36 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
36 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
37 "autoactivate": True, |
37 "autoactivate": True, |
38 "deactivateable": True, |
38 "deactivateable": True, |
39 "version": "10.2.0", |
39 "version": "10.2.1", |
40 "className": "PluginPipxInterface", |
40 "className": "PluginPipxInterface", |
41 "packageName": "PipxInterface", |
41 "packageName": "PipxInterface", |
42 "shortDescription": "Graphical interface to the 'pipx' command.", |
42 "shortDescription": "Graphical interface to the 'pipx' command.", |
43 "longDescription": ( |
43 "longDescription": ( |
44 "Plugin implementing widgets and dialogues to interact with the various pipx" |
44 "Plugin implementing widgets and dialogues to interact with the various pipx" |
285 ) |
285 ) |
286 ) |
286 ) |
287 elif key in ("IncludeOutdatedDependencies", "AutoCheckOutdated"): |
287 elif key in ("IncludeOutdatedDependencies", "AutoCheckOutdated"): |
288 return Globals.toBool( |
288 return Globals.toBool( |
289 Preferences.Prefs.settings.value( |
289 Preferences.Prefs.settings.value( |
290 self.PreferencesKey + "/" + key, self.__defaults[key] |
290 self.PreferencesKey + "/" + key, self.__defaults[key] |
291 ) |
291 ) |
292 ) |
292 ) |
293 else: |
293 else: |
294 return Preferences.Prefs.settings.value( |
294 return Preferences.Prefs.settings.value( |
295 self.PreferencesKey + "/" + key, self.__defaults[key] |
295 self.PreferencesKey + "/" + key, self.__defaults[key] |
296 ) |
296 ) |
297 |
297 |
298 return None |
298 return None |
299 |
299 |
300 def setPreferences(self, key, value): |
300 def setPreferences(self, key, value): |