set hg version higher than 0.13.1. Fixes #5488

This commit is contained in:
Yann Leboulanger 2009-12-06 11:45:05 +01:00
parent 228678d6e8
commit bbd4b16d9c
3 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
AC_INIT([Gajim - A Jabber Instant Messager],
[0.13.0.1-dev],[http://trac.gajim.org/],[gajim])
[0.13.10.0-dev],[http://trac.gajim.org/],[gajim])
AC_PREREQ([2.59])
AC_CONFIG_HEADER(config.h)

View File

@ -27,7 +27,7 @@ docdir = '../'
basedir = '../'
localedir = '../po'
version = '0.13.0.1-dev'
version = '0.13.10.0-dev'
import sys, os.path
for base in ('.', 'common'):

View File

@ -212,8 +212,8 @@ class OptionsParser:
self.update_config_to_01257()
if old < [0, 12, 5, 8] and new >= [0, 12, 5, 8]:
self.update_config_to_01258()
if old < [0, 13, 0, 1] and new >= [0, 13, 0, 1]:
self.update_config_to_01301()
if old < [0, 13, 10, 0] and new >= [0, 13, 10, 0]:
self.update_config_to_013100()
gajim.logger.init_vars()
gajim.config.set('version', new_version)
@ -838,7 +838,7 @@ class OptionsParser:
'proxy.jabber.ru', 'proxy.jabbim.cz'])
gajim.config.set('version', '0.12.5.8')
def update_config_to_01301(self):
def update_config_to_013100(self):
back = os.getcwd()
os.chdir(logger.LOG_DB_FOLDER)
con = sqlite.connect(logger.LOG_DB_FILE)
@ -855,6 +855,6 @@ class OptionsParser:
except sqlite.OperationalError:
pass
con.close()
gajim.config.set('version', '0.13.0.1')
gajim.config.set('version', '0.13.10.0')
# vim: se ts=3: