print_status_in_muc changement won't be in 0.10.1
This commit is contained in:
parent
59c3b7b3c8
commit
8ed37983e6
|
@ -142,8 +142,8 @@ class OptionsParser:
|
||||||
self.update_config_x_to_09()
|
self.update_config_x_to_09()
|
||||||
if old < [0, 10] and new >= [0, 10]:
|
if old < [0, 10] and new >= [0, 10]:
|
||||||
self.update_config_09_to_010()
|
self.update_config_09_to_010()
|
||||||
if old < [0, 10, 0, 1] and new >= [0, 10, 0, 1]:
|
if old < [0, 10, 1, 1] and new >= [0, 10, 1, 1]:
|
||||||
self.update_config_to_01001()
|
self.update_config_to_01011()
|
||||||
|
|
||||||
def update_config_x_to_09(self):
|
def update_config_x_to_09(self):
|
||||||
# Var name that changed:
|
# Var name that changed:
|
||||||
|
@ -258,6 +258,7 @@ class OptionsParser:
|
||||||
|
|
||||||
gajim.config.set('version', '0.10')
|
gajim.config.set('version', '0.10')
|
||||||
|
|
||||||
def update_config_to_01001(self):
|
def update_config_to_01011(self):
|
||||||
gajim.config.set('print_status_in_muc', 'in_and_out')
|
if self.old_values['print_status_in_muc'] in (True, False):
|
||||||
gajim.config.set('version', '0.10.0.1')
|
gajim.config.set('print_status_in_muc', 'in_and_out')
|
||||||
|
gajim.config.set('version', '0.10.1.1')
|
||||||
|
|
Loading…
Reference in New Issue