* the good version is not 0.12.1.6-hg but 0.12.3.1-dev

This commit is contained in:
Anaël Verrier 2009-07-09 14:34:51 +02:00
parent c66aee5b9d
commit 3b4b086bdf
3 changed files with 6 additions and 6 deletions

View File

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

View File

@ -27,7 +27,7 @@ docdir = '../'
datadir = '../'
localedir = '../po'
version = '0.12.1.6-hg'
version = '0.12.3.1-dev'
import sys, os.path
for base in ('.', 'common'):

View File

@ -198,8 +198,8 @@ class OptionsParser:
self.update_config_to_01214()
if old < [0, 12, 1, 5] and new >= [0, 12, 1, 5]:
self.update_config_to_01215()
if old < [0, 12, 1, 6] and new >= [0, 12, 1, 6]:
self.update_config_to_01216()
if old < [0, 12, 3, 1] and new >= [0, 12, 3, 1]:
self.update_config_to_01231()
gajim.logger.init_vars()
gajim.config.set('version', new_version)
@ -673,7 +673,7 @@ class OptionsParser:
gajim.config.set_per('soundevents', evt, 'path', path)
gajim.config.set('version', '0.12.1.5')
def update_config_to_01216(self):
def update_config_to_01231(self):
back = os.getcwd()
os.chdir(logger.LOG_DB_FOLDER)
con = sqlite.connect(logger.LOG_DB_FILE)
@ -703,7 +703,7 @@ class OptionsParser:
except sqlite.OperationalError:
pass
con.close()
gajim.config.set('version', '0.12.1.6')
gajim.config.set('version', '0.12.3.1')