Changeset 3454 for branches/gajim_0.8.2

Show
Ignore:
Timestamp:
09/06/05 13:48:59 (3 years ago)
Author:
nk
Message:

say 0.8.2 everywhere

Location:
branches/gajim_0.8.2
Files:
6 modified

Legend:

Unmodified
Added
Removed
  • branches/gajim_0.8.2/Changelog

    r3451 r3454  
     1Gajim 0.8.2 (06 Sep 2005) 
     2 
     3  * Fix so Gajim runs in pygtk2.8.x 
     4  * Other minor fixes 
     5 
    16Gajim 0.8.1 (02 Sep 2005) 
    27 
  • branches/gajim_0.8.2/gajim.desktop

    r3449 r3454  
    44GenericName=Jabber IM Client 
    55Comment=A GTK+ Jabber client 
    6 Version=0.8.1 
     6Version=0.8.2 
    77Encoding=UTF-8 
    88Exec=gajim 
  • branches/gajim_0.8.2/gajim.iss

    r3338 r3454  
    66[Setup] 
    77AppName=Gajim 
    8 AppVerName=Gajim version 0.8.1 
     8AppVerName=Gajim version 0.8.2 
    99DefaultDirName={pf}\Gajim 
    1010DefaultGroupName=Gajim 
  • branches/gajim_0.8.2/Makefile

    r3437 r3454  
    1 VERSION         ?= 0.9 
     1VERSION         ?= 0.8.2 
    22 
    33GAJIM_AP        = 0 # do we build Autopackage? 
  • branches/gajim_0.8.2/src/common/config.py

    r3341 r3454  
    118118                'show_roster_on_startup': [opt_bool, True], 
    119119                'key_up_lines': [opt_int, 25],  # how many lines to store for key up 
    120                 'version': [ opt_str, '0.8.1' ], 
     120                'version': [ opt_str, '0.8.2' ], 
    121121                'always_compact_view': [opt_bool, False], # initial compact view state 
    122122                'search_engine': [opt_str, 'http://www.google.com/search?&q=%s&sourceid=gajim'], 
  • branches/gajim_0.8.2/src/common/gajim.py

    r3341 r3454  
    2525import common.logger 
    2626 
    27 version = '0.8.1' 
     27version = '0.8.2' 
    2828config = common.config.Config() 
    2929connections = {}