Changeset 9110

Show
Ignore:
Timestamp:
12/06/07 21:38:41 (12 months ago)
Author:
asterix
Message:

import release diff from 0.11.4, svn version is now 0.11.4.0-svn

Location:
trunk
Files:
9 modified

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r8398 r9110  
     1Gajim 0.11.4 (06 December 2007) 
     2 
     3  * Fix /nick command in groupchats 
     4  * Better Metacontacts sorting 
     5  * Fix Ctrl + PageUP/Down behaviour 
     6  * Fix saving files from filetransfer under windows 
     7 
     8Gajim 0.11.3 (17 November 2007) 
     9 
     10  * Fix bookmarks support detection 
     11  * Improve file transfer on windows 
     12  * Fix some zeroconf bugs 
     13  * Fix focus bug in chat window 
     14  * Fix nickname changement behaviour in groupchats 
     15 
     16Gajim 0.11.2 (22 September 2007) 
     17 
     18  * Improve idle, transports support 
     19  * Enable ellipsization in roster and chatwindow 
     20  * Fixed some metacontacts problems (#2156, #2761) 
     21  * Beter support of XEP-0070 (Verifying HTTP Requests via XMPP) 
     22  * Make the same height of a banner for all chat tabs 
     23  * Fix a bug with french translation and invitations (#3043) 
     24  * Fix a bug with UTF-8 and emoticons 
     25  * Corrected many bugs with passwords and gnome-keyring 
     26  * Improve xhtml-im and pictures support 
     27  * Improve Ad-Hoc support 
     28  * And many other bufixes 
     29 
    130Gajim 0.11.1 (18 February 2007) 
    231  * Fixes in gajim-remote and the way XMPP URI are handled 
  • trunk/configure.ac

    r8972 r9110  
    11AC_INIT([Gajim - A Jabber Instant Messager], 
    2                 [0.11.2.2-svn],[http://trac.gajim.org/],[gajim]) 
     2                [0.11.4.0-svn],[http://trac.gajim.org/],[gajim]) 
    33AC_PREREQ([2.59]) 
    44AM_INIT_AUTOMAKE([1.8]) 
  • trunk/debian/changelog

    r9022 r9110  
     1gajim (0.11.4-1) unstable; urgency=low 
     2 
     3  * New upstream release. 
     4  * Fix tab switching. Closes: #452257 
     5  * update to 3.7.3 Debian Policy 
     6  * Add Homepage, Vcs-Svn, Vcs-Browser fields to control file 
     7 
     8 -- Yann Leboulanger <asterix@lagaule.org>  Wed, 05 Dec 2007 22:23:30 +0100 
     9 
    110gajim (0.11.3-1) unstable; urgency=low 
    211 
  • trunk/debian/control

    r9022 r9110  
    66Build-Conflicts: python2.3 
    77XS-Python-Version: >= 2.4 
    8 Standards-Version: 3.7.2 
     8Standards-Version: 3.7.3 
     9Homepage: http://www.gajim.org 
     10Vcs-Svn: svn://svn.gajim.org/gajim/ 
     11Vcs-Browser: http://trac.gajim.org/browser 
    912 
    1013Package: gajim 
  • trunk/gajim.iss

    r7693 r9110  
    11[Setup] 
    22AppName=Gajim 
    3 AppVerName=Gajim version 0.11-1 
     3AppVerName=Gajim version 0.11.4 
     4OutputBaseFilename=gajim-0.11.4-1 
    45DefaultDirName={pf}\Gajim 
    56DefaultGroupName=Gajim 
     
    2829Source: "po\*.mo"; DestDir: "{app}\po"; Flags: recursesubdirs 
    2930;Source: "gtk\*"; DestDir: "{app}\src\gtk"; Flags: recursesubdirs 
     31;Source: "gtk\bin\xmlparse.dll"; DestDir: "{app}\src" 
     32;Source: "gtk\bin\xmltok.dll"; DestDir: "{app}\src" 
    3033 
    3134[Icons] 
  • trunk/setup_win32.py

    r8927 r9110  
    2828opts = { 
    2929    'py2exe': { 
    30         'includes': 'pango,atk,gobject,cairo,pangocairo,gtk.keysyms,encodings,encodings.*', 
     30        'includes': 'pango,atk,gobject,cairo,pangocairo,gtk.keysyms,encodings,encodings.*,docutils.readers.*,docutils.writers.html4css1', 
    3131        'dll_excludes': [ 
    3232            'iconv.dll','intl.dll','libatk-1.0-0.dll', 
     
    4343setup( 
    4444    name = 'Gajim', 
    45     version = '0.11', 
     45    version = '0.11.4', 
    4646    description = 'A full featured Jabber client', 
    4747    author = 'Gajim Development Team', 
  • trunk/src/common/defs.py

    r8931 r9110  
    33datadir = '../' 
    44 
    5 version = '0.11.2.2-svn' 
     5version = '0.11.4.0-svn' 
    66 
    77import sys, os.path 
  • trunk/src/gajim.py

    r9096 r9110  
    2626## 
    2727 
     28import os 
     29 
     30if os.name == 'nt': 
     31        import warnings 
     32        warnings.filterwarnings(action='ignore') 
     33 
     34# Used to create windows installer with GTK included 
     35#       paths = os.environ['PATH'] 
     36#       list_ = paths.split(';') 
     37#       new_list = [] 
     38#       for p in list_: 
     39#               if p.find('gtk') < 0 and p.find('GTK') < 0: 
     40#                       new_list.append(p) 
     41#       new_list.insert(0, 'gtk/lib') 
     42#       new_list.insert(0, 'gtk/bin') 
     43#       os.environ['PATH'] = ';'.join(new_list) 
     44#       os.environ['GTK_BASEPATH'] = 'gtk' 
    2845 
    2946import sys 
    30 import os 
    3147import urllib 
    3248 
  • trunk/src/history_manager.py

    r9077 r9110  
    2323## the same can be said for history_window.py 
    2424 
     25import os 
     26 
     27if os.name == 'nt': 
     28        import warnings 
     29        warnings.filterwarnings(action='ignore') 
     30 
     31# Used to create windows installer with GTK included 
     32#       paths = os.environ['PATH'] 
     33#       list_ = paths.split(';') 
     34#       new_list = [] 
     35#       for p in list_: 
     36#               if p.find('gtk') < 0 and p.find('GTK') < 0: 
     37#                       new_list.append(p) 
     38#       new_list.insert(0, 'gtk/lib') 
     39#       new_list.insert(0, 'gtk/bin') 
     40#       os.environ['PATH'] = ';'.join(new_list) 
     41#       os.environ['GTK_BASEPATH'] = 'gtk' 
     42 
    2543import sys 
    26 import os 
    2744import signal 
    2845import gtk