Changeset 9110
- Timestamp:
- 12/06/07 21:38:41 (12 months ago)
- Location:
- trunk
- Files:
-
- 9 modified
-
ChangeLog (modified) (1 diff)
-
configure.ac (modified) (1 diff)
-
debian/changelog (modified) (1 diff)
-
debian/control (modified) (1 diff)
-
gajim.iss (modified) (2 diffs)
-
setup_win32.py (modified) (2 diffs)
-
src/common/defs.py (modified) (1 diff)
-
src/gajim.py (modified) (1 diff)
-
src/history_manager.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r8398 r9110 1 Gajim 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 8 Gajim 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 16 Gajim 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 1 30 Gajim 0.11.1 (18 February 2007) 2 31 * Fixes in gajim-remote and the way XMPP URI are handled -
trunk/configure.ac
r8972 r9110 1 1 AC_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]) 3 3 AC_PREREQ([2.59]) 4 4 AM_INIT_AUTOMAKE([1.8]) -
trunk/debian/changelog
r9022 r9110 1 gajim (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 1 10 gajim (0.11.3-1) unstable; urgency=low 2 11 -
trunk/debian/control
r9022 r9110 6 6 Build-Conflicts: python2.3 7 7 XS-Python-Version: >= 2.4 8 Standards-Version: 3.7.2 8 Standards-Version: 3.7.3 9 Homepage: http://www.gajim.org 10 Vcs-Svn: svn://svn.gajim.org/gajim/ 11 Vcs-Browser: http://trac.gajim.org/browser 9 12 10 13 Package: gajim -
trunk/gajim.iss
r7693 r9110 1 1 [Setup] 2 2 AppName=Gajim 3 AppVerName=Gajim version 0.11-1 3 AppVerName=Gajim version 0.11.4 4 OutputBaseFilename=gajim-0.11.4-1 4 5 DefaultDirName={pf}\Gajim 5 6 DefaultGroupName=Gajim … … 28 29 Source: "po\*.mo"; DestDir: "{app}\po"; Flags: recursesubdirs 29 30 ;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" 30 33 31 34 [Icons] -
trunk/setup_win32.py
r8927 r9110 28 28 opts = { 29 29 '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', 31 31 'dll_excludes': [ 32 32 'iconv.dll','intl.dll','libatk-1.0-0.dll', … … 43 43 setup( 44 44 name = 'Gajim', 45 version = '0.11 ',45 version = '0.11.4', 46 46 description = 'A full featured Jabber client', 47 47 author = 'Gajim Development Team', -
trunk/src/common/defs.py
r8931 r9110 3 3 datadir = '../' 4 4 5 version = '0.11. 2.2-svn'5 version = '0.11.4.0-svn' 6 6 7 7 import sys, os.path -
trunk/src/gajim.py
r9096 r9110 26 26 ## 27 27 28 import os 29 30 if 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' 28 45 29 46 import sys 30 import os31 47 import urllib 32 48 -
trunk/src/history_manager.py
r9077 r9110 23 23 ## the same can be said for history_window.py 24 24 25 import os 26 27 if 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 25 43 import sys 26 import os27 44 import signal 28 45 import gtk
