[plugin_installer] update version
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
[info]
|
[info]
|
||||||
name: Plugin Installer
|
name: Plugin Installer
|
||||||
short_name: plugin_installer
|
short_name: plugin_installer
|
||||||
version: 0.18
|
version: 0.19
|
||||||
description: Install and upgrade plugins from ftp
|
description: Install and upgrade plugins from ftp
|
||||||
authors: Denis Fomin <fominde@gmail.com>
|
authors: Denis Fomin <fominde@gmail.com>
|
||||||
Yann Leboulanger <asterix@lagaule.org>
|
Yann Leboulanger <asterix@lagaule.org>
|
||||||
|
|||||||
@@ -456,7 +456,7 @@ class DownloadAsync(threading.Thread):
|
|||||||
max_v = plugin.get('max_gajim_version', None)
|
max_v = plugin.get('max_gajim_version', None)
|
||||||
max_v = V(max_v) if max_v else gajim_v
|
max_v = V(max_v) if max_v else gajim_v
|
||||||
if (V(plugin['version']) > V(local_version)) and \
|
if (V(plugin['version']) > V(local_version)) and \
|
||||||
gajim_v >= min_v and gajim_v <= max_v:
|
(gajim_v >= min_v) and (gajim_v <= max_v):
|
||||||
to_update.append(plugin['name'])
|
to_update.append(plugin['name'])
|
||||||
GLib.idle_add(self.plugin.warn_update, to_update)
|
GLib.idle_add(self.plugin.warn_update, to_update)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user