summaryrefslogtreecommitdiff
path: root/portato/plugins
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2008-03-26 01:21:11 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2008-03-26 01:21:11 +0100
commit8e0e6ab4c682fd18e59a46f720ceb566093b1e11 (patch)
treefb73ccb724b9c846d89215a733ff74eb2c3ff6ce /portato/plugins
parent88b2c8645553d3e80c5927f054e5dd2f22d6471b (diff)
downloadportato-8e0e6ab4c682fd18e59a46f720ceb566093b1e11.tar.gz
portato-8e0e6ab4c682fd18e59a46f720ceb566093b1e11.tar.bz2
portato-8e0e6ab4c682fd18e59a46f720ceb566093b1e11.zip
Added find_version plugin
Diffstat (limited to 'portato/plugins')
-rw-r--r--portato/plugins/new_version.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/portato/plugins/new_version.py b/portato/plugins/new_version.py
new file mode 100644
index 0000000..d06d58d
--- /dev/null
+++ b/portato/plugins/new_version.py
@@ -0,0 +1,29 @@
+try:
+ from bzrlib import plugin, branch
+except ImportError:
+ plugin = branch = None
+
+from threading import Thread
+
+from portato.helper import debug, _
+from portato import get_listener
+from portato.constants import VERSION, APP_ICON, APP
+
+def find_thread (rev):
+ b = branch.Branch.open("lp:portato")
+
+ if int(rev) < int(b.revno()):
+ get_listener().send_notify(base = "New Portato Live Version Found", descr = "You have rev. %s, but the most recent revision is %s." % (rev, b.revno()), icon = APP_ICON)
+
+def find_version (*args, **kwargs):
+ if not all((plugin, branch)):
+ return
+
+ v = VERSION.split()
+ if len(v) != 3 and v[0] != "9999":
+ return
+
+ rev = v[-1]
+
+ plugin.load_plugins() # to have lp: addresses parsed
+ Thread(target = find_thread, args=(rev,)).start()