print_status_in_muc changement won't be in 0.10.1

This commit is contained in:
Yann Leboulanger 2006-06-02 11:21:05 +00:00
parent 59c3b7b3c8
commit 8ed37983e6
1 changed files with 6 additions and 5 deletions

View File

@ -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')