Changeset 7701
- Timestamp:
- 12/20/06 07:58:39 (22 months ago)
- Location:
- branches/gajim_0.11
- Files:
-
- 4 modified
-
ChangeLog (modified) (1 diff)
-
gajim.iss (modified) (2 diffs)
-
setup_win32.py (modified) (2 diffs)
-
src/gtkgui_helpers.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11/ChangeLog
r7590 r7701 21 21 * Annotations (XEP-0145) 22 22 * XHTML Support 23 * Rhythmbox song change notification23 * Rhythmbox and Muine song change notification 24 24 * Ability to operate on more than one contact at once in roster (#1514) 25 25 * Send single message to a whole group -
branches/gajim_0.11/gajim.iss
r6433 r7701 1 1 [Setup] 2 2 AppName=Gajim 3 AppVerName=Gajim version 0.1 0.1-13 AppVerName=Gajim version 0.11-1 4 4 DefaultDirName={pf}\Gajim 5 5 DefaultGroupName=Gajim … … 22 22 Source: "COPYING"; DestDir: "{app}" 23 23 Source: "THANKS"; DestDir: "{app}" 24 Source: "AUTHORS"; DestDir: "{app}" 24 25 Source: "dist\gajim.exe"; DestDir: "{app}\src"; components: main 25 26 Source: "dist\history_manager.exe"; DestDir: "{app}\src"; components: main 26 27 Source: "data\*"; DestDir: "{app}\data"; Flags: recursesubdirs 27 28 Source: "po\*.mo"; DestDir: "{app}\po"; Flags: recursesubdirs 29 ;Source: "gtk\*"; DestDir: "{app}\src\gtk"; Flags: recursesubdirs 28 30 29 31 [Icons] -
branches/gajim_0.11/setup_win32.py
r7493 r7701 24 24 opts = { 25 25 'py2exe': { 26 'includes': 'pango,atk,gobject, encodings,encodings.*',26 'includes': 'pango,atk,gobject,cairo,pangocairo,gtk.keysyms,encodings,encodings.*', 27 27 'dll_excludes': [ 28 28 'iconv.dll','intl.dll','libatk-1.0-0.dll', … … 31 31 'libgobject-2.0-0.dll','libgthread-2.0-0.dll', 32 32 'libgtk-win32-2.0-0.dll','libpango-1.0-0.dll', 33 'libpangowin32-1.0-0.dll' 33 'libpangowin32-1.0-0.dll','libcairo-2.dll', 34 'libpangocairo-1.0-0.dll','libpangoft2-1.0-0.dll', 34 35 ], 35 36 } -
branches/gajim_0.11/src/gtkgui_helpers.py
r7595 r7701 356 356 except gobject.GError: # 'unknown image format' 357 357 pixbuf = None 358 if want_type: 359 return None, None 360 else: 361 return None 358 362 359 363 if want_type:
