From e3dd73583179210fd7c6272877eb362babd54483 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Wed, 29 Nov 2006 02:34:07 +0000 Subject: [PATCH] yeah it is official. Gajim runs on Windows Vista. Now it even detects it and sends it as OS [previously was just saying Windows]. Long Live Ballmer! [hahaha]: http://img86.imageshack.us/img86/7944/myvistadesktopow7.jpg --- src/common/helpers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/helpers.py b/src/common/helpers.py index 52f9ac0e3..6ba74a1ef 100644 --- a/src/common/helpers.py +++ b/src/common/helpers.py @@ -688,7 +688,8 @@ def get_os_info(): (2, 4, 0): 'NT', (2, 5, 0): '2000', (2, 5, 1): 'XP', - (2, 5, 2): '2003' + (2, 5, 2): '2003', + (2, 6, 0): 'Vista', } if win_version.has_key(ver_format): return 'Windows' + ' ' + win_version[ver_format]