Skip to content
Snippets Groups Projects
Commit 5264b142 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

create caps_cache table if it doesn't exists. fixes #3641

parent 3cea1252
No related branches found
No related tags found
No related merge requests found
AC_INIT([Gajim - A Jabber Instant Messager], 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]) AC_PREREQ([2.59])
AM_INIT_AUTOMAKE([1.8]) AM_INIT_AUTOMAKE([1.8])
AC_CONFIG_HEADER(config.h) AC_CONFIG_HEADER(config.h)
......
...@@ -2,7 +2,7 @@ docdir = '../' ...@@ -2,7 +2,7 @@ docdir = '../'
datadir = '../' datadir = '../'
version = '0.11.4.0-svn' version = '0.11.4.1-svn'
import sys, os.path import sys, os.path
for base in ('.', 'common'): for base in ('.', 'common'):
......
...@@ -174,8 +174,8 @@ class OptionsParser: ...@@ -174,8 +174,8 @@ class OptionsParser:
self.update_config_to_01115() self.update_config_to_01115()
if old < [0, 11, 2, 1] and new >= [0, 11, 2, 1]: if old < [0, 11, 2, 1] and new >= [0, 11, 2, 1]:
self.update_config_to_01121() self.update_config_to_01121()
if old < [0, 11, 2, 2] and new >= [0, 11, 2, 2]: if old < [0, 11, 4, 1] and new >= [0, 11, 4, 1]:
self.update_config_to_01122() self.update_config_to_01141()
gajim.logger.init_vars() gajim.logger.init_vars()
gajim.config.set('version', new_version) gajim.config.set('version', new_version)
...@@ -503,7 +503,7 @@ class OptionsParser: ...@@ -503,7 +503,7 @@ class OptionsParser:
gajim.config.set('version', '0.11.2.1') gajim.config.set('version', '0.11.2.1')
def update_config_to_01122(self): def update_config_to_01141(self):
back = os.getcwd() back = os.getcwd()
os.chdir(logger.LOG_DB_FOLDER) os.chdir(logger.LOG_DB_FOLDER)
con = sqlite.connect(logger.LOG_DB_FILE) con = sqlite.connect(logger.LOG_DB_FILE)
...@@ -524,5 +524,5 @@ class OptionsParser: ...@@ -524,5 +524,5 @@ class OptionsParser:
except sqlite.OperationalError, e: except sqlite.OperationalError, e:
pass pass
con.close() con.close()
gajim.config.set('version', '0.11.2.2') gajim.config.set('version', '0.11.4.1')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment