From 5264b142902744e90a9e0810309da80641cabb6d Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Wed, 26 Dec 2007 21:30:45 +0000
Subject: [PATCH] create caps_cache table if it doesn't exists. fixes #3641

---
 configure.ac            | 2 +-
 src/common/defs.py      | 2 +-
 src/common/optparser.py | 8 ++++----
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/configure.ac b/configure.ac
index 68f3e9ada8..4f313330c0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
 AC_INIT([Gajim - A Jabber Instant Messager],
-		[0.11.4.0-svn],[http://trac.gajim.org/],[gajim])
+		[0.11.4.1-svn],[http://trac.gajim.org/],[gajim])
 AC_PREREQ([2.59])
 AM_INIT_AUTOMAKE([1.8])
 AC_CONFIG_HEADER(config.h)
diff --git a/src/common/defs.py b/src/common/defs.py
index 3f776c43e2..b30457a31c 100644
--- a/src/common/defs.py
+++ b/src/common/defs.py
@@ -2,7 +2,7 @@ docdir = '../'
 
 datadir = '../'
 
-version = '0.11.4.0-svn'
+version = '0.11.4.1-svn'
 
 import sys, os.path
 for base in ('.', 'common'):
diff --git a/src/common/optparser.py b/src/common/optparser.py
index 86a86b5d7e..e50206420a 100644
--- a/src/common/optparser.py
+++ b/src/common/optparser.py
@@ -174,8 +174,8 @@ class OptionsParser:
 			self.update_config_to_01115()
 		if old < [0, 11, 2, 1] and new >= [0, 11, 2, 1]:
 			self.update_config_to_01121()
-		if old < [0, 11, 2, 2] and new >= [0, 11, 2, 2]:
-			self.update_config_to_01122()
+		if old < [0, 11, 4, 1] and new >= [0, 11, 4, 1]:
+			self.update_config_to_01141()
 
 		gajim.logger.init_vars()
 		gajim.config.set('version', new_version)
@@ -503,7 +503,7 @@ class OptionsParser:
 
 		gajim.config.set('version', '0.11.2.1')
 
-	def update_config_to_01122(self):
+	def update_config_to_01141(self):
 		back = os.getcwd()
 		os.chdir(logger.LOG_DB_FOLDER)
 		con = sqlite.connect(logger.LOG_DB_FILE)
@@ -524,5 +524,5 @@ class OptionsParser:
 		except sqlite.OperationalError, e:
 			pass
 		con.close()
-		gajim.config.set('version', '0.11.2.2')
+		gajim.config.set('version', '0.11.4.1')
 
-- 
GitLab