Changeset 6427

Show
Ignore:
Timestamp:
06/05/06 12:44:37 (2 years ago)
Author:
asterix
Message:

Gajim is now 0.10.1

Location:
branches/gajim_0.10
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • branches/gajim_0.10/Makefile

    r6408 r6427  
    1 VERSION         ?= 0.10 
     1VERSION         ?= 0.10.1 
    22 
    33GAJIM_AP        = 0 # do we build Autopackage? 
  • branches/gajim_0.10/src/common/config.py

    r6170 r6427  
    135135                'show_roster_on_startup': [opt_bool, True], 
    136136                'key_up_lines': [opt_int, 25, _('How many lines to store for Ctrl+KeyUP.')], 
    137                 'version': [ opt_str, '0.10' ], # which version created the config 
     137                'version': [ opt_str, '0.10.1' ], # which version created the config 
    138138                'search_engine': [opt_str, 'http://www.google.com/search?&q=%s&sourceid=gajim'], 
    139139                'dictionary_url': [opt_str, 'WIKTIONARY', _("Either custom url with %s in it where %s is the word/phrase or 'WIKTIONARY' which means use wiktionary.")], 
  • branches/gajim_0.10/src/common/gajim.py

    r6251 r6427  
    2626 
    2727interface = None # The actual interface (the gtk one for the moment) 
    28 version = '0.10' 
     28version = '0.10.1' 
    2929config = config.Config() 
    3030connections = {}