Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wusspuss
gajim
Commits
bbd4b16d
Commit
bbd4b16d
authored
15 years ago
by
Yann Leboulanger
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
configure.ac
+1
-1
1 addition, 1 deletion
configure.ac
src/common/defs.py
+1
-1
1 addition, 1 deletion
src/common/defs.py
src/common/optparser.py
+4
-4
4 additions, 4 deletions
src/common/optparser.py
with
6 additions
and
6 deletions
configure.ac
+
1
−
1
View file @
bbd4b16d
AC_INIT([Gajim - A Jabber Instant Messager],
[0.13.0.
1
-dev],[http://trac.gajim.org/],[gajim])
[0.13.
1
0.
0
-dev],[http://trac.gajim.org/],[gajim])
AC_PREREQ([2.59])
AC_CONFIG_HEADER(config.h)
...
...
This diff is collapsed.
Click to expand it.
src/common/defs.py
+
1
−
1
View file @
bbd4b16d
...
...
@@ -27,7 +27,7 @@
basedir
=
'
../
'
localedir
=
'
../po
'
version
=
'
0.13.0.
1
-dev
'
version
=
'
0.13.
1
0.
0
-dev
'
import
sys
,
os
.
path
for
base
in
(
'
.
'
,
'
common
'
):
...
...
This diff is collapsed.
Click to expand it.
src/common/optparser.py
+
4
−
4
View file @
bbd4b16d
...
...
@@ -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_013
0
1
()
if
old
<
[
0
,
13
,
1
0
,
0
]
and
new
>=
[
0
,
13
,
1
0
,
0
]:
self
.
update_config_to_0131
00
()
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_013
0
1
(
self
):
def
update_config_to_0131
00
(
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.
1
0.
0
'
)
# vim: se ts=3:
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment