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

set hg version higher than 0.13.1. Fixes #5488

parent 228678d6
No related branches found
No related tags found
No related merge requests found
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)
......
......@@ -27,7 +27,7 @@
basedir = '../'
localedir = '../po'
version = '0.13.0.1-dev'
version = '0.13.10.0-dev'
import sys, os.path
for base in ('.', 'common'):
......
......@@ -212,8 +212,8 @@ def update_config(self, old_version, new_version):
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 @@ def update_config_to_01258(self):
'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 @@ def update_config_to_01301(self):
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:
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