summaryrefslogtreecommitdiff
path: root/chat/gaim
AgeCommit message (Collapse)AuthorFilesLines
2005-10-08Bump revision due to a new dependency on a default libao plugin.jmmv1-2/+2
Addresses PR pkg/30920 by Chuck Cranor.
2005-10-07Replaced deprecated USE_PERL5 with USE_TOOLS+=perl5:run.rillig1-2/+2
2005-08-29Convert more options to bsd.options.mk. The following options arextraeme3-18/+48
available now: gnutls gtkspell silc audio perl tcl nas By default the package will use: gtkspell silc audio As before, this closes PR pkg/28815.
2005-08-29It's 'gtkspell' not 'gtk-spell'.xtraeme1-3/+3
2005-08-29Make gtk-spell configurable via bsd.options.mk (enabled by defaultxtraeme2-3/+9
as before), patch from Geert Hendrickx via tech-pkg@.
2005-08-26bump PKGREVISION for silc fix.grant1-1/+2
2005-08-25Update patch-ad so instead of getting rid of -ldl (which is neededreed3-11/+14
by Linux) in tests, use value of BUILDLINK_LDADD.dl. Also use PTHREAD_LIBS instead of hard-coded -lpthread. Include dlopen.buildlink3.mk and include pthread.buildlink3.mk. This fixes problem on Linux and DragonFly where it was not built with silc support. Okayed by maintainer. I tested this on Linux, DragonFly and NetBSD 2.0.2. I also filed a bug report with gaim last week so they can fix the configure.ac correctly.
2005-08-19add option to build with gnutls support. no change to the defaultgrant2-7/+25
(nss) so no PKGREVISION bump. ok'd by the MAINTAINER, Matthew Luckie.
2005-08-12Update to 1.5.0 from maintainer, Matthew Luckie, via PR #30974.reed6-135/+8
"this release of gaim has a few security fixes which mirror the effects of patch-ae patch-af patch-ag" ChangeLog says: version 1.5.0 (8/11/2005): * Ability to set IRC quit message (Lalo Martins) * OSCAR file transfers now work for 2 users behind the same NAT (Jonathan Clark) * Yahoo! buddy requests to add you to their buddy list now prompt for authorization * Added a /clear command for conversations/chats * Fixed ICQ encoding for messages with offline ICQ users (Ilya Konstantinov, SF Bug #1179452) * Default Yahoo! chat roomlist locale to 'us'
2005-08-10Remove the abuse of buildlink that was pkg-config/buildlink3.mk. Thatjlam1-3/+2
file's sole purpose was to provide a dependency on pkg-config and set some environment variables. Instead, turn pkg-config into a "tool" in the tools framework, where the pkg-config wrapper automatically adds PKG_CONFIG_LIBDIR to the environment before invoking the real pkg-config. For all package Makefiles that included pkg-config/buildlink3.mk, remove that inclusion and replace it with USE_TOOLS+=pkg-config.
2005-08-10Security fixes for CAN-2005-2102 and CAN-2005-2103.salo5-5/+111
- An error in the handling of away messages can be exploited to cause a heap-based buffer overflow by sending a specially crafted away message to a user logged into AIM or ICQ. Successful exploitation allows execution of arbitrary code. - An error in the handling of file transfers can be exploited to crash the application by attempting to upload a file with a non-UTF8 filename to a user logged into AIM or ICQ. Patches from RedHat.
2005-08-05Security fix for CAN-2005-2370salo4-4/+26
"Multiple "memory alignment errors" in libgadu, as used in ekg before 1.6rc2 and other packages, allows remote attackers to cause a denial of service (bus error) on certain architectures such as SPARC via an incoming message." Bump PKGREVISION, patch from Gaim CVS.
2005-07-21Change path from devel/pkgconfig to devel/pkg-config.wiz1-2/+2
No PKGREVISION bump since pkg-config is only a BUILD_DEPENDS.
2005-07-09this pkg uses X, so include x11.buildlink3.mk to ensure that thegrant1-1/+2
correct X distribution is used. fixes build problem observed on Linux.
2005-07-08update gaim to 1.4.0. update provided by maintainer in PR pkg/30693.grant3-8/+8
changes since 1.3.1: * Fix system log start times for some protocols * SILC compiles with newer SILC toolkit versions (Pekka Riikonen) * Fixed a bug where buddy icon cache files were left in the icon cache directory after they were no longer in use. * Attempt to detect the file type of a buddy icon when saving. * Additional Yahoo! boot protection (Peter Lawler) * A few Yahoo! memory leaks plugged (Peter Lawler) * Fixed handling of the new Yahoo! profile page. (Joshua Honeycutt, Peter Lawler) * Fixed localized Yahoo! room lists. Please refer to the Yahoo! section of the Gaim FAQ for details. (Peter Lawler) * Enabled sending files to ICQ users using ICQ 5.02 and newer (Jonathan Clark)
2005-06-10Add missing file.salo2-2/+4
From MAINTAINER, Matthew Luckie via PR pkg/30494
2005-06-10Update to version 1.3.1salo2-6/+6
Changes: - security fixes for DoS issues: http://gaim.sourceforge.net/security/index.php?id=18 http://gaim.sourceforge.net/security/index.php?id=19 - Fix Yahoo! privacy bug - Fix Jabber Get Info crash on busted servers - The file transfer details section now also displays the full path to the local file sent/received. - Yahoo! has the following new "/" commands: /join, /buzz - Updated our gaim.desktop file, thanks to all our terrific - translators for sending in translations of the changes - Improvements to how Gaim handles new message notification
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+1
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-05-12Update to version 1.3.0salo4-9/+11
Changes: - Fixes for two remotely exploitable crash bugs. See http://gaim.sourceforge.net/security/ for more information. - Removed parts of the font selection dialog that were not respected - Fix being invited to a multi user chat on MSN - Multiple SILC accounts should work now (Pekka Riikonen) - Fix times on jabber chat backlogs - Fix gevolution plugin to compile with e-d-s 1.0 or 1.2 - Fix gevolution plugin to remember buddy name when someone added you and you then add them - Formatting in jabber chats works - Fix to prevent MSN disconnecting if you change status while - connecting - Change to correctly handle adding jabber buddies on ejabberd servers Mostly from MAINTAINER via PR pkg/30204
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-04-05Bump BUILDLINK_RECOMMENDED.salo1-2/+2
2005-04-05Update to version 1.2.1salo4-38/+9
Security fixes for three DoS vulnerabilities: Remote DoS on receiving malformed HTML Remote DoS on receiving certain messages over IRC Jabber remote crash Changes: - URL escaping now works with UTF-8 text. This may break some old log files. - Revert to XOR auth for ICQ as the md5 is not fully functional - Fix bug with going away while in a jabber chat - MSN bug fixes (Felipe Contreras) - Escape things properly in IRC From MAINTAINER via PR pkg/29888
2005-03-22Update to 1.2.0.jmmv3-7/+36
Patch provided by Matthew Luckie (maintainer) in PR pkg/29752. * Yahoo file receiving and buddy icon receiving work again. * Limit animated buddy icon frame rates to 10 frames per second (Nathan Conrad) * Fix a bug where portions of your account configuration would fail to be read correctly if you set a proxy user name or password containing invalid XML characters such as < and > (Bastien Durel) * Yahoo! privacy improvements (Bleeter)
2005-03-18Use nss instead of gnutls for SSL connections. This fixes several problemsjmmv4-24/+28
under NetBSD 1.6 (gaim hanging during MSN connection). Bump revision to 1. No objections in tech-pkg@ and got positive comments from tv@ and maintainer. Closes PR pkg/28690 by chemical-al at suomi24.fi.
2005-03-16Add print-PLIST hooks to avoid removing the lib/gaim directory.jmmv1-1/+4
2005-02-27Update to 1.1.4; patch provided by maintainer in PR pkg/29542:jmmv2-6/+6
* Fixed a bug where Yahoo! would lose messages (and any other packet really). * Correctly show the time when incoming Gadu-Gadu messages were sent (Carl-Daniel Hailfinger). * Fixed crashes with glib 2.6. * Fixed MSN crash when conversations time out after the conversation window was closed. * Fixed an html parsing bug, CAN-2005-0208.
2005-02-23Add RMD160 digests in addition to SHA1 onesagc1-1/+2
2005-02-21Changes 1.1.3:adam3-13/+12
Luke: Yet another bug fix release, many thanks to everyone who has helped to make gaim more stable! Stu: I fixed too many Yahoo HTTP proxy bugs, I should just go and write some core HTTP support that works better. A good all round bug fix release otherwise.
2005-02-02Add a buildlink that can be used by gaim plugins.jschauma1-0/+20
2005-01-21Changes 1.1.2:adam3-9/+9
Luke: Another Bug fix release. This one featuring a fix to the HTTP Method for MSN users and other MSN fixes. A big thanks to Stu and Felipe Contreras for those. Stu also spent a long time in valgrind and so this brings you a Gaim release with fewer memory leaks. This release is on time primarily because I want to see the MSN fixes make it into Debian and Fedora before freezes. Expect further bug fix only releases to come at longer intervals, at Mark's request. Daniel: This is my first NEWS! (YaY) I didn't really do too much for this release. There are a few bugfixes, mostly wingaim stuff. Oh, and I like the new XP System Tray icons. Sean: I'm down here today. I haven't really been paying too much attention to these boring bugfix releases, but I'd like to thank David and welcome him to the team. I'd also like to thank Steven and Nathan from Silverorange who redid the webpage. Tim: Another bug fix release. I didn't really fix any bugs, so I didn't exactly do much for this one. The autopackage will now work with mozilla-nss, if anyone has that, and not gnutls11. (It works with either gnutls11 or mozilla-nss, but not gnutls10) I started working on Gaim-vv again though, and I merged someone's custom msn smiley patch into the 2.0.0 tree, so expect good things whenever that's released (no, don't try it now, you won't like it). Oh and welcome to the team Daniel. Of course, he was already on my Gaim-vv team. Stu: Welcome Daniel! you've done some good stuff already. Felipe did some good work on MSN yet again, so you can all use the HTTP method now. I didn't do all that much, other than let valgrind tell me what to fix, and a couple of easy bug fixes from the bug tracker. Hopefully Ethan will get well soon, so he can get back to merging patches and fixing things. Nathan: I think I made some Jabber fixes, at least one of which is ChangeLog'd. I will continue to make empty promises about new features, especially for 2.0.0. Until then, welcome Daniel!
2005-01-04Update to 1.1.1:jmmv3-6/+9
* Allow SILC authentication via public key if your key is password protected (Michele Baldessari) * More MSN bug fixes (Felipe Contreras) * Drag-and-drop to conversation window file transfers work again * Disable the delete button on pounces that aren't saved yet anyway (Kevin Stange)
2004-12-10As advertised in the previous log message, but omitted from the Makefile,dogcow1-1/+2
pass --disable-binreloc to configure.
2004-12-03Changes 1.1.0:adam6-44/+25
New Features: * Binary relocable. Gaim will find its files even if it's installed in a location other than the --prefix it was ./configured with. Pass --disable-binreloc to ./configure to disable. * IRC now has fallback encodings, and tries harder to display something useful during an encoding error. * New MSN protocol icon (Felipe Contreras) Bug Fixes: * Fix some leaks (Miah Gregory, Felipe Contreras) * Fix crashes when removing buddies in certain situations (Andrew Hart) * Eliminate MSN switchboard errors (Felipe Contreras) * Fix MSN buddy icon syncronization (Felipe Contreras) * Correctly display file transfer dialogs for filenames containing &, < or > * Correctly display MSN authorization dialogs for friendly names containing &, < or > * Properly align the right-click docklet menu with the docklet icon in *nix. * Fix a crash if the MSN buddy list is not available * Fix a bug in the request api (Gary Kramlich)
2004-11-16Remove -ldl from libsilcclient test in configure.ac and configure.ben3-1/+29
This resolves PR#28333
2004-11-13add missing libsilcgaim.la to PLIST.grant2-2/+4
bump PKGREVISION.
2004-11-12Update to 1.0.3, from Matthew Luckie (maintainer) in private mail:jmmv3-5/+24
Bug Fixes: * Jabber authentication fixes (Michael Plump) * Yahoo buddy idle reporting is more accurate (Evan Schoenberg) * "Allow All" privacy setting works on Yahoo (Peter Lawler) * Fix a crash when dragging a buddy to the conversation entry area * Fix a crash removing chats from the buddy list * Correctly display buddy pounces for aliases with &, < or > in them * Correctly follow the per-conversation logging option
2004-10-20Update to 1.0.2; patch provided by Matthew Luckie.jmmv2-5/+5
Bug Fixes: * MSN file transfers work on big endian machines (Jean-Francois Roy and Evan Schoenberg) * Fixed the MSN signon crash with Miranda users in the buddy list * Fixed sending messages to MSN Web Messenger users (Damien Ayers) * Fixed some memory leaks in the MSN plugin (Evan Schoenberg) * Fixed a crash viewing certain MSN user profiles (Evan Schoenberg) * Fixed a crash sending a file on MSN when the file is unreadable * Fixed a crash deleting accounts (Andrew Hart) * Fixed a crash inviting to chats (Andrew Hart) * Fixed a bug in Yahoo privacy handling (Peter Lawler) * Fixed a crash trying to join a chat from the docklet when not signed in to a chat-capable account (Daniel Atallah)
2004-10-14Update to 1.0.1:jmmv2-6/+5
New Features: * Use the GNOME default browser when opening links if you're running GNOME (Alex Duggan) * Added support for multiple addressbooks in the gevolution plugin (Henry Jen). Bug Fixes: * Send-As menu duplicates less work (Dave West) * Can now see your own MSN buddy icon (Felipe Contreras) * Jabber roomlist fetches work again * Close buttons on tabs in existing conversations correctly reflect the "show close buttons on tabs" preference (Nathan Fredrickson) * Fix to make the get_signon(buddy) perl plugin function work (Gregory C. Harfst) * Fixed crashes when reloading the gevolution plugin (Henry Jen) * Fixed some memory leaks in the gevolution plugin. * Wrap at character boundaries if there is not enough space for a full word * 64 bit compile warning fixes
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-1/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Update to 1.0.0:gavan4-21/+8
New Features: * Drag-and-drop buddy support for the Invite dialog (Stu Tomlinson) * Drag-and-drop buddy support for the Pounce dialog (Stu Tomlinson) * View Chat log available from the interface (Daniel Atallah) * Ability to receive offline messages in character encodings other than ASCII (thanks to Nick Sukharev) * File transfer status messages printed to conversation windows (Dave West) * Display file transfer messages when someone sends you a file over AIM (Dave West) * Handle MSN buddy lists more sanely (Felipe Contreras) * Zephyr can use tzc to run from behind a firewall (Arun A Tharuvai) Bug Fixes: * Work around window manager stupidity with new dialog windows (Dave West) * Compile with gtk 2.5.x (Gary Kramlich) * Escape invalid characters in log names (Daniel Atallah) * Fix for clicking add in an msn chat with 2 or more people in your buddy list (Daniel Atallah) Based on patch from maintainer, Matthew Luckie, in private mail.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-31/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-08-27Update to 0.82.1:gavan2-5/+5
Bug Fixes: * Fix a crash when changing the preference for how to display buttons on conversation windows * Remove a stray printf() when beginning new conversations and logging is enabled
2004-08-26Update to 0.82:gavan3-9/+8
version 0.82 (08/26/2004): New Features: * Ability to set available messages for AIM (Tools->Account Actions->Set Available Message...) * Ability to specify a custom character set for messages sent to ICQ users and messages received from ICQ users * Ability to edit your current away message (Rhett Robinson) * Topics in the conversation window (not the topic field at the top) with URLs will now appear as links (Stu Tomlinson) * File transfers appear in the file transfer window when they are initiated rather than when they begin transferring (Dave West) * Instead of toggling slash commands on/off, you can now toggle passing through unknown slash commands on/off. Bug Fixes: * Joining a Jabber chat no longer causes a crash (Stu Tomlinson) * Selecting a buddy icon for a brand new account no longer causes a crash * Better file transfer error messages (Dave West) * Remotely canceled file transfers in MSN are now noticed, so that we don't accidentally cancel the file transfer and crash Gaim (Felipe Contreras) * Protocols that don't support joining chat rooms by name no longer allow chat rooms to be added to the buddy list (Felipe Contreras) * Delayed messages and system messages no longer cause sound events to be triggered (Nathan Fredrickson) * The chat invite button has a correct label (Stu Tomlinson) * The system log should leak fewer file descriptors (Ka-Hing Cheung) * Buddy list tooltips display in more appropriate positions when using multiple monitors (Dave West) * Better parsing of URLs containing special characters * All users are shown when joining a Yahoo! conference (Bleeter Yaluser) * You now leave all Yahoo! conferences when you log out of Yahoo! * Buddy Icon updating bug fixed (Felipe Contreras)
2004-08-06Update to 0.81:gavan3-7/+11
New Features: * The autorecon plugin will somewhat remember state information(Yosef Radchenko) * Visual display of ops/voice/halfops/so on in Chats (Stu Tomlinson) * Tab completion of slash commands in Chats (Stu Tomlinson) * gaim-remote can now manipulate status (István Váradi) * The text messages of Yahoo Audibles are now displayed, although the audio and graphics are not. * Yahoo! away messages can be 255 characters long now Bug Fixes: * Gadu-Gadu should connect again (Andrew Wellington) * Novell fixes (Mike Stoddard of Novell): * Fixed reconnect crash * Fixed duplicate root folder bug * Fixed bug with folder ordering (on a first time login folders were being added in reverse order). * Use ISO date format for the system log (Eduardo Pérez) * Long buddy lists with irc should cause flooding disconnects less (Stu Tomlinson) * Better smiley substitution * Fix a crash related to auto-expanding contacts at the bottom of buddy lists * Fix a crash on Solaris when changing or viewing information for your AIM account (Format Screen Name, Change Email Address, etc.) * HTML in OSCAR buddy comments is now escaped (and not rendered) * Fix a crash when dragging a screen name to a conversation window for that screen name * User-requested new conversation windows are now always given focus * Pasting HTML into Gaim from certain sources no longer results in the spaces between some words being removed * The alias of a contact is now displayed in more places when the alias of a buddy is not set * .gaimrc is no longer imported * Prevent a crash if you sign off and try to dequeue messages from the away dialog (Kevin Stange) * Prevent a possible crash if gaim_gtkconv_write_conv is called with who as NULL (Kevin Stange) * Prevent (null) or an empty string from being logged as the sender's name if the sender no longer has an alias because the account is signed off (Kevin Stange) * The auto-reconnect plugin will no longer attempt to reconnect an MSN account if you were disconnected because you signed on from another location (Stu Tomlinson) * On Solaris, chatting in IRC using the UTF-8 charset no longer gives a "conversion failed" error for every message (Arvind Samptur) * ICQ offline messages should have the correct timestamp (Dave West)
2004-07-17Update to 0.80:jmmv3-6/+8
New Features: * Ability to send files from the conversation window (Daniel Atallah) * Drag a file into the buddy list or a conversation to send it to that buddy * Yet more new commands and features for SILC (Stu Tomlinson) * Gaim uses the new file chooser when compiled for GTK+ 2.4 (Fernando Herrera) * Support for the Epiphany web browser (Leonardo Serra) * Status messages in Gadu-Gadu (Andrew (proton) Wellington) * Parentheses are now displayed around the title and tabs of conversations from offline accounts or parted chats. * Zephyr typing notification (Arun A Tharuvai) * Account dialog's columns are resizable (Eduardo Pérez) Bug Fixes: * The firefox browser option now works with firefox 0.9 * Buddy icons in conversations no longer depend on the buddy list * Fix for the bug where some buddies seemed logged in 4 thousand some odd days (Alan Ford) Patch from maintainer, Matthew Luckie, in private mail.
2004-06-25Update to 0.79:gavan3-10/+79
New Features: * Display name changes are now shown in the conversation windows. (Robert Mibus) * Get Info on Yahoo! now works for nonenglish profiles. (Ambrose Li) * General "Get Info" improvements on Yahoo! and MSN (Ambrose Li) * Yahoo! Japan support. Click More Options and check Yahoo Japan in the account editor, to use your Yahoo! Japan account * Gtk themes can now theme the Gaim buddy list independently of other things (Stu Tomlinson) * Show timestamps now has a per-conversation option in addition to the global one, bringing it in line with the other conver- sation options (Stu Tomlinson) * Added MSN buddy icons (Felipe Contreras) * Added MSN file transfer (Felipe Contreras) * MSN's idle state now actually sets a buddy idle * Buddy pounce defaults are now more sane, and apply to the state the buddy is currently in. For example, if the buddy is idle, set "Return from idle" by default. The last action(s) used are the defaults for the next pounce * Yahoo buddy icon support * Selected buddy icons will automatically convert to the appropriate format for the protocol. (GTK 2.2 and higher only) * Dragging an image file into the Modify Account dialog will set that as a buddy icon. * Development headers for compiling third-party plugins are now installed. (Stu Tomlinson) * Headers for gaim-remote now reside in gaim/ instead of gaim-include/. * Basic YCHT support, which allows joining Yahoo! Chats when logged in using the web messenger method Bug Fixes: * Fixed Yahoo! authentication problems. (Cerulean Studios) * Non-looping animated icons no longer cause Gaim to freeze * Flashing windows should work again for unix in window managers that support the URGENT hint (Etan Reisner) * Better handling of character sets in RTF for Novell (Mike Stoddard of Novell) * Contact list sync problems in Novell fixed (Mike Stoddard of Novell) * Fixed a crash in SILC that sometimes happened when resolving the buddy list (Pekka Riikonen) * Parallel compiles of the perl plugin should work better (Stu Tomlinson) * The disconnected UI op was called twice on connection errors. Now it is only called once. (Evan Schoenberg) * Dragging into conversation windows works better * Protocol-specific settings for accounts were being removed whenever the account was modified. Now they're only removed when the protocol type changes, as it should be. * Zephyr bug fixes and memory leak plugs (Arun A Tharuvai) * Rewrite of MSN buddylist support, which fixed a known syncronization bug and some others (Felipe Contreras)
2004-06-06PKGREVISION++salo5-44/+37
- Enable SILC protocol support. - Don't build static versions of plugin libraries. - Use more appropriate DESCR and COMMENT. - Style & delint. Ok MAINTAINER, Matthew Luckie.
2004-06-03Add a workaround for a GTK+ bug (GNOME bugzilla #62948). Patchminskim3-2/+22
borrowed from Gentoo Portage. OK'ed by jmmv@. Bump PKGREVISION.
2004-06-01Update to 0.78:jmmv8-184/+30
New Features: * Support for the SILC protocol (http://www.silcnet.org/) (Pekka Riikonen) * Option to suppress disconnect notification when using the autoreconnect plugin (Christopher (siege) O'Brien) * Added support for dragging buddies from the buddy list into the Add Buddy Pounce dialog * Pounce notification now includes time (Mike Lundy) * The history plugin now shows history for chats in addition to IMs * Menu item to view conversation logs (Tom Samstag) * Conversation and chat sizes automatically saved (Stu Tomlinson) * Added support for Novell privacy settings (Mike Stoddard of Novell) * Added ability to initiate multi-user conferences (chats) in Novell (Mike Stoddard of Novell) * Find and Save buttons on the debug window (Stu Tomlinson) * Plugin Actions menu (Christopher (siege) O'Brien) * Plugins can now add entries to the right-click menu of a group or chat (Stu Tomlinson and Christopher (siege) O'Brien) * Hyperlink colors are now themeable via your ~/.gtkrc-2.0 file Bug Fixes: * Compiles again with gcc 2.96 (Ignacio J. Elia) * Gtk2.0 compatibility fixes (Tim Ringenbach) * Many documentation updates (Jonathan Champ, Gary Kramlich, Stu Tomlinson, and Kevin Stange) * Yahoo works on 64 bit machines (Gary Kramlich) * Zephyr works on 64 bit machines (Arun A Tharuvai) * Novell 64bit fixes, better error messages, and buddy list sync fixes (Mike Stoddard of Novell) * Novell protocol works on big endian machines (Novell) * Massive rewrite of MSN support, which should fix a number of issues and make errors easier to interpret (Felipe Contreras) * Fixed a privacy-related bug in MSN that affected blocking/permitting, which was due to case-sensitive string comparisons (Gudmundur Olafsson) * Fixed an MSN HTTP method bug where MSN would queue data indefinitely. (Andrew Wellington) * All known MSN formatting bugs were fixed. * Overly long messages and paging cell phones in MSN no longer cause disconnects (Felipe Contreras) * Several bug fixes for MSN's MSNSLP and MSNObject support (Finlay Dobbie) * ALT-F works correctly in the System Log Viewer (Stu Tomlinson) * New tabs should scroll correctly again (Tim Ringenbach) * Dialogs opened from a conversation window are now closed when the conversation window is closed, preventing a crash (Kevin Stange) * Copy/paste encoding fixes (Joe Marcus Clarke) * IRC disconnect crash fix (Luciano Miguel Ferreira Rocha) * Ampersands in links should work correctly (Tim Ringenbach) * DirectIM and IM Image support for AIM are greatly improved (Tim Ringenbach) * Gadu-Gadu updates (Andrew Wellington) * Print Gadu-Gadu messages to the debug window instead of the console * Updated and standardized blist signals (Gary Kramlich) * Made the recieve-*-msg signals match the sending ones (Stu Tomlinson) * The idle time for the buddy-idle and buddy-unidle signals should be correct again. Preference Changes: * Added "Conversation placement - By conversation count" * Added a "none" smiley theme to replace the "Show graphical smileys" option * Replace default formatting preferences with a dialog to set a default formatting in a WYSIWYG manner. * Removed "Show logins in window," default to yes * Removed "Send URLs as links," default to yes (in protocols that support HTML) * Removed "Show URLs as links," default to yes * Removed New window height & width and Entry field height for Chats & IMs, sizes are now saved automatically * Removed "Tab-complete nicks" default to yes * Removed "Old-style tab completion", no longer supported * Removed "Sending message removes away status", default to no * Removed "Show numbers in groups", default to yes * Removed "Icons on tabs", default to yes * Removed "Sounds when you log in", default to no * Removed "Seconds before resending autoresponse", default to 600 seconds * Removed "Send autoresponse in active conversations", default to no * Removed "Show people joining in window", default to yes * Removed "Show people leaving in window", default to yes