File: ChangeLog

package info (click to toggle)
gajim 1.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 29,884 kB
  • sloc: python: 90,416; sh: 367; lisp: 58; makefile: 12
file content (835 lines) | stat: -rw-r--r-- 29,057 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
Gajim 1.1.2 (15 January 2019)

  Bug fixes

  * #9518 Windows: Pressing "^" yields "^^"
  * #9522 Windows: Switching keyboard layouts leads to a crash
  * #9525 Windows/Mac: Links are not clickable in the About dialog
  * #9535 Jingle Audio: Update codecs
  * #9537 DiscoveryWindow: Fix bookmarking a group chat
  * DBus: Correctly raise NewMessage signal
  * Clicking on tray notifications does not open the chat

Gajim 1.1.1 (23 December 2018)

  Bug fixes

  * #8362 DBus: Incorrect unread message count
  * #9427 Placeholder not cleared if pasting text into message input
  * #9444 Determine the delay timestamp correctly when using mam:1
  * #9453 Fix opening links inside the group chat subject (MacOS/Windows)
  * #9465 Allow the full range of possible nicknames in group chats
  * #9067 Gajim crashes when receiving xhtml messages
  * #9096 Error when clicking on a subscription notification
  * #9446 Chatstate error in MUC conversation
  * #9471 Conversation Textview: Error on key press
  * #9472 Handle presences without from attr correctly
  * #9473 Error when creating a new group chat
  * #9491 Identify group chat subject changes correctly
  * #9496 Error on MUC roster selection change
  * Determine soundplayer correctly on unix systems
  * In some circumstances plugins could not be deleted
  * Show correct contact status on tabs
  * Dont answer group chat receipt requests
  * Fix receipts for private messages
  * Pressing the back button in the Accounts window leads to an error
  * Better handle not available keyring backends
  * Dont show incorrect contact on private messages
  * Join group chat menu is disabled when there are no bookmarks
  * Error on start chat menu action
  * Error when opening sign-in/out notification
  * Copying text does not work with different keyboard layouts

Gajim 1.1.0 (06 November 2018)

  New

  * Remove support for XEP-0091

  Bug fixes

  * #8968 Windows: Gajim loads DLLs from wrong location
  * #9322 Error when adding contact
  * #9357 Acquire sleep inhibtor correctly after sleep
  * #9385 Ignore invalid bookmarks
  * #9386 Discovery: Browsing nodes without identity
  * #9393 Error when parsing invalid timestamps
  * #9398 Error on jingle file transfer

Gajim 1.0.99.1 (07 October 2018)

  New

  * Implement XEP-0398
  * MUC: Set Threshold for requesting history
  * Show icon for unencrypted messages
  * Support more media players for broadcasting the current tune
  * Windows: Add a debug logging switch in preferences
  * Preferences: enable/disable dark theme
  * Preferences: enable/disable the MUC subject beeing shown on join
  * Preferences: enable/disable ascii emoji conversion

  Bug fixes

  * #9198 Creating new MUCs with captial letters is not possible
  * #9210 Error when clicking on new message indicator
  * #9280 Inviting users to a MUC causes error
  * #9301 Error when opening service discovery window
  * #9309 Error when clicking on a groupchat invite notification
  * #9311 Error when requesting server info
  * #9117 Windows UAC changes status not available
  * #9324 No menus/dialogs on Win7
  * #9326 IPV6 Connection problem on Win10
  * #9334 Joining big MUCs takes very long
  * #9339 Error caused by remote_control

Gajim 1.0.99 (19 August 2018)

  New

  * Support for setting a MUC Avatar
  * Support for PKIX over Secure HTTP (POSH)
  * Support idle time for GNOME on Wayland
  * New Emoji chooser
  * Noto Emoji theme updated to Unicode 11
  * Twitter Emoji theme added
  * Gajim Theming reworked
  * Design updates to many dialogs
    - Join Groupchat
    - Bookmarks
    - Add new contact
    - History
    - Profile
    - Accounts

  Bug fixes

  * #8658 Translation doesnt work on Windows
  * #8750 Increase time frame for duplicate search in MUCs
  * #9138 Translation in Flatpak does not work
  * #9140 Error when clicking on the notification of an incoming message
  * #9159 Wrong form type when responding to a voice request
  * #9069 Send cancel IQ if muc configuration is aborted 
  * #9167 Flatpak fails to determine locale settings
  * #9171 Gajim requests vcard multiple times
  * #9198 Creating new MUCs with capital letters is not possible
  * #9211 Punycode and Unicode with Internationalized Domain Names

  Other changes

  * Support http:upload:0
  * Remove forward message adhoc commands 
  * Remove support for XEP-0090
  * Remove RC4-SHA because it is insecure (Was not used with current OpenSSL versions)
  * Improve speed when loading the roster
  * Handle new MUC status code 333
  * Switch to GDBus for Gajim remote
  * Removed support for ESessions
  * Improvements to the dark theme of Gajim
  * New dependency: python3-cssutils >= 1.0.2
  * New dependency: python3-keyring
  * Removed dependency: python3-avahi
  * Removed dependency: python3-pyasn1

Gajim 1.0.3 (20 May 2018)

  Bugs fixed:

  * #8296 Fix errors on roster updates after stream management resume
  * #9106 Convert font weight from pango to css values
  * #9124 Bring ChatControl to front when notification is clicked

  * Set no-store hint on groupchat chatstates
  * Dont show OOB uri if message body is the same
  * Add missing bybonjour dependency for Windows zeroconf

  Flatpak:

  * Limit dbus access

Gajim 1.0.2 (30 April 2018)

  Bugs fixed:

  * #7879 Server name is rejected for group chat bookmarks
  * #8964 setup.py install misses some files if used with "--skip-build"
  * #9017 Password was sometimes stored in plaintext
  * #9022 Dont show error when receiving invalid avatars
  * #9031 Windows: Always hide roster window on X
  * #9038 No License in About dialog
  * #9039 Encode filenames before sending
  * #9044 Catch invalid IQ stanzas and log them
  * #9049 XMPP logo in "Add New Contact" window instead Gajim logo
  * #9050 Mark some strings as translatable
  * #9054 Error on file send completion
  * #9055 Removing a bookmark causes error
  * #9057 Avatar is deleted when updating vCard
  * #9065 Account label isn't change in tooltip of notification area icon
  * #9066 Placeholder text does't disappear
  * #9068 Missing pulseaudio in Flatpak image
  * #9070 Fix History Manager search
  * #9074 Proxy comobobox in accounts/connections doesn't get update after ManageProxies
  * #9094 problem receiving file
  * #9101 Notification never autohides in gnome

  * Correctly reload Plugins
  * Save history export with utf8 encoding
  * Dont allow plain BOSH by default

Gajim 1.0.1 (1 April 2018)

  * Improve MAM support
  * Image preview in file chooser dialog
  * Groupchat: Set minimize on auto join default True
  * Delete bookmark when we destroy a room
  * Fix account deletion
  * Fix custom font handling
  * Fix OpenPGP message decryption
  * Fix window position restore on multi-head setups
  * Fix scrolling in message window
  * Improve Windows build and build for 64 bits

Gajim 1.0.0 (17 March 2018)

  * Ported to GTK3 / Python3
  * Integrate HTTPUpload
  * Add Navigation buttons in History Window
  * Improvements for HiDPI Screens
  * Depend on the python keyring package for password storage
  * Flatpak support
  * Lots of refactoring
  * New Emoji support
  * New Chat Window design
  * New StartChat Window (Ctrl+N)
  * New ServerInfo Window
  * AccountWindow Redesign
  * Moved some encryption code out into Plugins (see PGP Plugin, Esessions Plugin)
  * OTR Plugin was not ported, use OMEMO
  * Added mam:1 and mam:2 support (mam:0 was removed)
  * Added MAM for MUCs support
  * Added support for showing XEP-0084 Avatars
  * Add support for geo: URIs
  * Added xmpp URI handling directly in Gajim
  * Removed Gajim-Remote
  * Removed XEP-0012 (Last Activity)
  * Removed XEP-0136 (Message Archiving)
  * Added XEP-0156 (Discovering Alternative XMPP Connection Methods)
  * Added XEP-0319 (Last User Interaction in Presence)
  * Added XEP-0368 (SRV records for XMPP over TLS)
  * Added XEP-0380 (Explicit Message Encryption)
  * Added Jingle FT:5 support
  * Lots of other small bugfixes

  KNOWN ISSUES: 

    - Meta Contacts: Filtering the roster could lead to a crash in some circumstances. Use CTRL + N for starting new chats as a workaround
    - Audio/Video support is currently not maintained and most likely not working
    - Windows: Translation is not working currently

Gajim 0.16.9 (30 November 2017)

  * Improve Zeroconf behavior
  * Fix showing normal message event
  * remove usage of OpenSSL.rand
  * a few minor bugfixes

Gajim 0.16.8 (04 June 2017)

  * Fix rejoining MUCs after connection loss
  * Fix Groupchat invites
  * Fix encoding problems with newer GnuPG versions
  * Fix old messages randomly reappearing in the chat window
  * Fix some problems with IBB filetransfer
  * Make XEP-0146 Commands opt-in
  * Improve sending messages to your own resources
  * Improve reliability of delivery recipes
  * Many minor bugfixes

Gajim 0.16.7 (30 January 2017)

  * Better compatibility with XEP-0191: Blocking Command
  * Windows Credential Vault is used for password storage on Windows
  * Gajim now depends on python-gnupg for PGP encryption
  * Add portable installer for Windows
  * Remove usage of demandimport
  * Many minor bugfixes

Gajim 0.16.6 (02 October 2016)

  * Fix using gpg2
  * Improve message receipts usage
  * Improve roster filtering
  * several minor bugs

Gajim 0.16.5 (28 December 2015)

  * Improve MAM implementation
  * Improve security on connexion and for roster managment
  * Ability for emoticons to be sorted in menu

Gajim 0.16.4 (26 September 2015)

  * Fix trusting GPG keys
  * Ability to disable synchronization of logs with server
  * Improve MAM usage

Gajim 0.16.3 (31 July 2015)

  * Fix reading secret file
  * Fix reconnection after suspend
  * Fix sending GPG-encrypted file to non-trusted key

Gajim 0.16.2 (24 July 2015)

  * improve Zeroconf under windows and with IPv6
  * Fix errors with GnuPG
  * Minor fixes and improvements

Gajim 0.16.1 (28 February 2015)

  * Fix sending Zeroconf messages
  * Make ipython compatible to version >= 1.0
  * Support XEP-0313 MAM
  * Minor fixes and improvements

Gajim 0.16 (04 October 2014)

  * Improve File transfer support by adding Jingle file transfer
  * use external python-nbxmpp library
  * Improve audio / Video calls and add screensharing feature
  * Support audio under windows
  * Support systemd-logind
  * Support XEP-0308 Last message correction
  * Support XEP-0224 Attention
  * Support XEP-0191 Blocking command
  * Better RTL languages support
  * use host command to resolve SRV records if it is available

Gajim 0.15.4 (25 May 2013)

  * Fix usage of OTR plugin
  * Fix connection to non-SSL server
  * Fix receiving GPG-encrypted messages while offline.

Gajim 0.15.3 (17 March 2013)

  * Better handling of SSL errors
  * Better handling of canceling file transfer
  * Improve farstream calls
  * Minor fixes and improvements

Gajim 0.15.2 (30 October 2012)

  * Show punycode encoded urls if they contain non-ascii chars
  * Fix crash when pressing Esc in chat window
  * Support Network Manager 0.9
  * decrypt GPG messages in the correct order

Gajim 0.15.1 (29 August 2012)

  * Switch from python-farsight to python-farstream
  * improve performances
  * Fix roster filter with unicode chars
  * Fix connection to msn jabber server
  * Fix some GPG issues
  * Fix other small issues

Gajim 0.15 (18 March 2012)

  * Plugin system
  * Whiteboard (via a plugin)
  * Message archiving
  * Stream managment
  * IBB
  * Nested roster group
  * Roster filtrering
  * UPower support
  * GPG support for windows
  * Spell checking support for windows

Gajim 0.14.4 (22 July 2011)

  * Fix translation issue
  * other minor fixes

Gajim 0.14.3 (19 June 2011)

  * Fix history viewer
  * Fix closing roster window
  * Prevent some erros with metacontacts

Gajim 0.14.2 (07 June 2011)

  * Fix CPU usage when testing file transfer proxies
  * Fix invalid XML char regex
  * Fix subscription request window handling
  * Fix URL display in chat message banner
  * Other minor bugfixes

Gajim 0.14.1 (26 October 2010)

  * Fix changing account name
  * Fix sending XHTML
  * Fix GnomeKayring usage
  * Fix some GPG bugs
  * Minor bugfixes

Gajim 0.14 (02 September 2010)

  * Jingle audio / video chat
  * Improve Startup time
  * Copy emoticons, LaTeX expressions when they are selected
  * Fix status icon transparency by using gtk.statusicon
  * Groupchat auto-rejoin
  * geolocation (with geoclue)
  * use XDG standards
  * SCRAM-SHA-1 and SASL EXTERNAL authentication
  * MUC captcha
  * Lots of refactoring

Gajim 0.13.4 (02 April 2010)

  * Add japanese translation
  * Fix some TLS connection
  * Don't raise a lot of "DB Error" dialog
  * Fix contact synchronisation
  * Minor fixes

Gajim 0.13.3 (23 February 2010)

  * Fix facebook xmpp server connection
  * Fix copy / paste with Ctrl+C on non-latin keyboard
  * Fix sending PEP information when connecting
  * Fix parsing HTML messages that have ascii markup

Gajim 0.13.2 (14 January 2010)

  * Fix some translations
  * Fix string comparison according to locales
  * Fix resizing of groupchat occupant treeview
  * Fix some gnomekeyring glitches
  * better SRV usage with libasyncns
  * copy emoticons when we copy / paste in conversations

Gajim 0.13.1 (28 November 2009)

  * Fix a bug when no account exists and bonjour is not available
  * Fix a bug when opening advanced option in MUC
  * Fix a bug when using non-BOSH proxies

Gajim 0.13 (24 November 2009)

  * Improve gtkspell (fix memleak)
  * BOSH connection
  * Roster versioning
  * Ability to send contacts
  * GUI to send XHTML messages
  * Improve sessions handling
  * pubsub storage (for bookmarks)
  * Ability to select account when joining a groupchat
  * Better Gnome keyring support
  * Ability to ignore occupants in groupchats
  * Ability to show / hide self contact row
  * Automatically go away when screensaver is enabled under windows
  * Ability to enable / disable accounts
  * better URL recognition
  * groupchat autoreconnect
  * Store passwords in KDE wallet if available
  * Better MUC errors handling
  * Fix sound player launch (don't create zombies anymore)
  * Optional shell like completion
  * New color theme

Gajim 0.12.5 (08 August 2009)

  * Don't depend on GTK 2.14

Gajim 0.12.4 (07 August 2009)

  * Fix History manager
  * Fix file transfer proxy discovering at connection
  * Improve filetransfer with IPv6
  * Fix zeroconf when receiving badly encoded info

Gajim 0.12.3 (12 June 2009)

  * Fix PLAIN authentication (in particular with Gtalk
  * fix PEP discovery

Gajim 0.12.2 (07 June 2009)

  * Better keepalive / ping behaviour
  * Fix custom port handling
  * Improve error messages handling
  * Totem support for played music
  * Fix SSL with some servers
  * Handle XFCE notification-daemon
  * Restore old behaviour of click on systray: left click to open events
  * Network manager 0.7 support
  * Move logs file under windows to $APPDATA/gajim
  * Improve Kerberos support
  * Many bugfixes here and there
  * Add -c option to history_manager

Gajim 0.12.1 (21 December 2008)

  * Fix filetransfer
  * Updated german translation
  * Fix click on notifications when text string is empty
  * Improve systray popup menu

Gajim 0.12 (17 December 2008)

  * Fix text rendering in notifications
  * Fix forward unread messages under Windows
  * Better sessions support
  * Better auto-away support
  * Fix banshee support
  * Quodlibet support
  * Fix GSSAPI authentification 
  * Fix IPV4 filetransfer on Windows Vista when IPV6 is used too
  * Fix caps usage
  * Fix end to end encryption autonegotiation

Gajim 0.12-beta1 (11 November 2008)

  * SECURITY
  * Implement Kerberos (GSSAPI) SASL Authentication mechanism
  * Prevent affiliation spoofing in groupchats
  * Improve GPG and E2E support

  * GUI
  * Highlight all valid IANA schemes
  * Improved E2E, Mood and Activity dialogs
  * Show number of participants in groupchats

  * Connection
  * Correctly parse IDNA names in SRV records
  * Disable proxy resolution (#4299)
  * Fix handling of namespace invalid XML
  * Do not freeze on connection failures (#4366, #4107)

  * OTHERS
  * Do not crash on fluxbox restarts
  * Update several hotkeys and make them work on non-latin keyboards
  * Prevent a user from sending invalid XML chars
  * Do not try to save a file with a too long filename when a nick is long
  * Implement XEP-0203 (Delayed Delivery)
  * Improved windows installer
  * Latex support for windows

Gajim 0.12-alpha1 (12 August 2008)

  * Change licence from GPLv2 to GPLv3

  * SECURITY
  * Support for End-To-End encryption (XEP-0116)
  * SSL certificate verification
  * Improve GPG support (#2390, #2783)
  * Ability to disable message previews in notify popups

  * GROUP CHATS
  * Support for sending files over group chats
  * List of bookmarked rooms is now sorted alphabetically
  * Support for transforming a one-to-one chat into a groupchat
  * Send invitation by drag-and-dropping a contact from roster
  * Send messages to conference using gajim-remote
  * Ability to destroy a room when we are owner, give a reason and alternative room jid
  * Ability to minimize group chats in roster
  
  * USABILITY
  * Files transfers using drag and drop
  * Ability to select and interact with status messages in chat windows (using libsexy)
  * Ability to set a custom avatar for a contact
  * Better handling of resource collisions
  * Option to Sign On as a Certain Status (#3314)
  * Block/Unblock contact directly from roster using privacy lists
  
  * GUI
  * Single window mode
  * Close change status windows after 15 seconds of inactivity
  * Simplified "Accounts" dialog
  * Preferences window redesign
  * New GUI for chat window
  * Roster treeview now uses modelfilter (way way much faster)

  * OTHER
  * Support of PEP (Personal Eventing Protocol) (XEP-0163)
    * User Mood (XEP-0107)
    * User Activity (XEP-0108)
    * User Tune (XEP-0118)
    * User Nickname (XEP-0172)
  * Support for Google Talk accounts with non gmail.com domain (+ GMail notifications)
  * Modified the format of emoticons list file, so we can choose the default code (#3696)
  * New Remote Controlling Option (XEP-0146): forward unread messages
  * Support for User Search (XEP-0055)
  * Support for jabber:x:data in message elements (Part of XEP-0004)
  * Added a «supported features» window
  * Latex support (#2796)
  * Link-local messaging with Windows (#2883)
  * Ability to send a custom status to a group, a contact or a transport
  * Support of Message Receipts (XEP-0184)

Gajim 0.11.4 (06 December 2007)

  * Fix /nick command in groupchats
  * Better Metacontacts sorting
  * Fix Ctrl + PageUP/Down behaviour
  * Fix saving files from filetransfer under windows

Gajim 0.11.3 (17 November 2007)

  * Fix bookmarks support detection
  * Improve file transfer on windows
  * Fix some zeroconf bugs
  * Fix focus bug in chat window
  * Fix nickname changement behaviour in groupchats

Gajim 0.11.2 (22 September 2007)

  * Improve idle, transports support
  * Enable ellipsization in roster and chatwindow
  * Fixed some metacontacts problems (#2156, #2761)
  * Beter support of XEP-0070 (Verifying HTTP Requests via XMPP)
  * Make the same height of a banner for all chat tabs
  * Fix a bug with french translation and invitations (#3043)
  * Fix a bug with UTF-8 and emoticons
  * Corrected many bugs with passwords and gnome-keyring
  * Improve xhtml-im and pictures support
  * Improve Ad-Hoc support
  * And many other bufixes

Gajim 0.11.1 (18 February 2007)
  * Fixes in gajim-remote and the way XMPP URI are handled
  * Fix Idle under Windows
  * Fix Gajim under non-ascii languages Windows
  * Fix International Domain Name usage
  * Fix when removing active privacy list
  * Fix problem with adhoc command and multi-step forms
  * Fixed avatars cache problems in group chats
  * KDE integration for XMPP URI
  * Support of Banshee Music player
  * Support of XEP-0202 (Entity Time)
  * Support of XEP-0199 (XMPP Ping)

Gajim 0.11 (19 December 2006)
  * New build system, using GNU autotools. See README.html
  * Support for link-local messaging via Zeroconf using Avahi (XEP-0174)
  * Automatically connect and disconnect to accounts according to network availability (if Network Manager is present)
  * IPV6 support to connect to server
  * Ad-Hoc commands
  * GNOME Keyring Support (if GNOME keyring is available, manage passwords and save them in an encrypted file)
  * Introducing View Menu (GNOME HIG)
  * Ability to now hide the Transports group
  * Support for notify-python. So if notification-daemon is not available, we still can show cool popups
  * Connection lost is now a non-intrusive popup
  * Try to get contact desired nick when we add him to roster aka User Nickname (XEP-0172)
  * Support for Privacy Lists (XEP-0016)
  * Better design of User Profile window, with a progress bar
  * New Add User dialog, with possibility to register to transport directly from it
  * Completion for "Start Chat" input dialog
  * Metacontacts across accounts (#1596)
  * Ability to have a different spellchecking language in each chat window. (#2383 and #746)
  * Forbid to run multiple instances (but you can use differents profiles)
  * Ability to save avatar with right click on avatar in chat banner
  * Annotations (XEP-0145)
  * XHTML Support 
  * Rhythmbox and Muine song change notification
  * Ability to operate on more than one contact at once in roster (#1514)
  * Send single message to a whole group 
  * Delete a whole group
  * Gajim now remembers if GPG encyption was enabled per contact
  * Priority can be changed automatically when we change status
  * Fuzzyclock support
  * Mute sounds from systray menu
  * Add possibility to start a chat or see contact's infos from subscription request window
  * Use different colors for each participant in groupchats
  * Ability to show only Join/Leave in groupchats instead of all status changes
  * New possibilities to insert nickname of a participant in groupchat conversations: Tab in an empty line now cycles through nicks, maj+right click->inserts nickname, maj+click on name in gc-roster, /names command to show all users presence
  * Fixed bugs when removing or renaming an account with tabs open (#2369 and #2370)
  * New translations: Croatian, Esperanto, British English, Belarusian

Gajim 0.10.1 (06 June 2006)

  * Freeze and lost contacts in roster (#1953)
  * Popup menus are correctly placed
  * High CPU usage on FreeBSD (#1963)
  * Nickname can contain '|' (#1913)
  * Update pl, cs, fr translations
  * Don't play sound when no event is shown (#1970)
  * Set gajim icon for history manager
  * gajim.desktop is generated with translation (#834)
  * Preventing several TBs and annoyances (r6273, r6275, r6279, r6301,
  r6308, r6311, r6323, r6326, r6327, r6335, r6342, r6346, r6348)

Gajim 0.10 (01 May 2006)

  * One Messages Window ability (default to it) with tab reordering ability
  * Non blocking socket connections. Gajim no longer remains unresponsive.
  * Gajim now uses less memory
  * File Transfer improvements (now should work out of the box for all)
  * Meta Contacts ability (relationships between contacts)
  * Support for legacy composing event (JEP-0022). Now 'Contact is composing a message' will always work
  * Gajim now defaults to theme that uses GTK colors
  * Roster Management Improvements (f.e. editablity of transport names, extended Drag and Drop Functionality)
  * History (chat logs) Manager (search globally, delete, etc)
  * Animated Emoticons ability
  * Support for GTalk email notifications for GMail
  * Room administrators can modify room ban list
  * Gajim no longer optionally depends on pydns or dnspython. Requires
  dnsutils (or whatever package provides the nslookup binary)
  * gajim-remote has extended functionality
  * Improved Preset Status Messages Experience
  * Detection for CRUX as user's operating system
  * New art included, appropriate sizes of icons used where available
  * Translations under Windows now work okay
  * Tons of fixes for bugs and annoyances: http://trac.gajim.org/query?status=closed&milestone=0.10


Gajim 0.9.1 (27 December 2005)

  * Fix bug when joining a Groupchat
  * Fix bug when starting Gajim without old logs

Gajim 0.9 (23 December 2005)

  * Avatars and status messages in roster window
  * Improved service discovery window
  * Emoticons selector, Cooler Popup Windows (notification-daemon). Read more information in case you did not notice something different in http://trac.gajim.org/wiki/GajimDBus#notif_daemon
  * Caching of Avatars, Less UI freezing
  * New Account creation wizard
  * Better History Window with searching capabilities
  * Gajim now tries to reconnect to a jabber server if connection is lost
  * Queue for all events (File Transfer, private messages, etc)
  * A lot of new irc-like commands in group chat. Do for example /help invite
  * X11 Session Management support
  * Gajim registers and handles xmpp: and xmpp:// (GNOME/gconfd only)
  * Use pysqlite for conversation history. Automigration for old logs 
  * New translations: Italian, Swedish, Slovak, Basque

Gajim 0.8.2 (06 Sep 2005)
  
  * Fix so Gajim runs in pygtk2.8.x
  * Gajim can use pydns too (apart from dnspython) to do SRV lookup
  * Other minor fixes

Gajim 0.8.1 (02 Sep 2005)

  * Systray icon for windows
  * Gajim is available in Dutch
  * Gajim can use gpg-agent

Gajim 0.8 (18 Aug 2005)

  * Avatars (JEP-0153)
  * Chat state notifications aka. typing notification (JEP-0085)
  * Bookmark storage (JEP-0048)
  * File Transfer (JEP-0096)
  * Major changes to adhere to GNOME HIG
  * Complete vcard fields support
  * New and better user interface for chat and groupchat windows
  * SRV capabilities and custom hostname/port
  * Many improvements in group chat and IRC emulation (eg. nick autocompletation and cycling)
  * Gajim can now send and receive single messages
  * New iconsets and new dialog for customizing the user interface
  * Mouseover information for contacts in the roster window (aka tooltips)
  * DBus Capabilities. Now Gajim can be remote controlled
  * Authenticating HTTP Requests via XMPP (JEP-0070)
  * Now you can lookup a word in Wikipedia, dictionary or in search engine
  * XML Console
  * Gajim is now also available in norwegian and czech language


Gajim 0.7.1 (5 Jun 2005)  

  * Transports icon as an option and error/mesage icon for transports  
  * Gajim is more HIG compatible  
  * Editing registration information on transports  
  * Messages stanza without <body> element are not printed  
  * SASL bugfix  
  * GtkSpell capabilities  
  * Support SSL (legacy) connection  
  * Assign gpg key to specific contact  
  * Contacts are sortable by status  
  * Gajim remembers last lines when reopening chat  
  * New translations available: German, Russian, Spanish, Bulgarian

Gajim 0.7 (23 May 2005)

  * Ability for groupchat reserved rooms with full affiliations and roles support
  * Popup notification for incoming events
  * Protocol icons for contacts from transports
  * Gajim's user interface is now more HIG compliant
  * Gajim now detects and can send operating system information
  * Gajim now can inform the user about new version availability
  * Gajim jabber library migration from jabberpy to xmpppy
  * Rewrite the plugin system to remove threads and improve latency
  * Gajim now supports Nodes in Service Discovery
  * Greek and Polish translations


Gajim 0.6.1 (03 April 2005)

  * Rewrite of service discovery. It doesn't freeze Gajim anymore.
  * More HIG Compliant.
  * Gajim is faster (do not redraw preferences_window each time we open it, use
  of psyco if available)

Gajim 0.6 (23 March 2005)

  * Gajim's user interface is now nicer.
  * Groupchat just got better.
  * URL, mailto and ascii formatin (* / _) detection
  * Better transports detection, group management, and many minor additions/bugfixes

Gajim 0.5.1 (27 February 2005)

  * Minor bugfixes.

Gajim 0.5 (26 February 2005)

  * Possibility to use tabbed chat window
  * Sound support under GNU/linux
  * Autoaway available under Microsoft Windows

Gajim 0.4.1 (23 January 2005)

  * Bugfix in config file parser (fix config file parser to handle emoticons)
  * Bugfix with GPG signatures

Gajim 0.4 (21 January 2005)

  * New option: regroup accounts
  * Emoticons support with a binder
  * GUI improvements
  * Bugfixes

Gajim 0.3 (18 December 2004)

  * GUI improvements
  * group chat support with MUC (JEP 45)
  * New agent browser (JEP 30)
  * GnuPG support
  * Autoconnect at startup
  * New socket plugin 

Gajim 0.2.1 (1 July 2004)

  * bugfixes : when configfile is incomplete
  * icon in systray with popup menu (for linux)
  * "auto away even if not online" option
  * always show contacts with unread messages
  * new imageCellRenderer to show animated gifs
  * allow agents unregistration 

Gajim 0.2 (8 June 2004)

  * bugfix for french translation
  * multi-resource support
  * auto away support (for linux)
  * invisible support
  * priority support 

Gajim 0.1 (21 May 2004)

  * Initial release.