Commit graph

2267 commits

Author SHA1 Message Date
adrianp
1efc01571f Featuring nothing but further stability fixes including possible crash on rehash, rc4 is just about how we want things to be. No major problems have been reported in some time (though of course we still advocate using SVN rather than tarballs).
IMPORTANT CHANGES:
* Channel aliases now work more like user aliases. This is a BREAKING CHANGE. $1 is now the fantasy command that was invoked, $2 is the first real parameter of the command. (in other words, adjust all your numbers up by one for channel fantasy commands).
* $chan in m_fantasy will be replaced by an empty string if used in a non-channel (i.e. user) alias.
* m_ssl_oper_cert and m_ssl_dummy are both gone, and merged into m_sslinfo - so you won't have to load so many SSL modules
* m_sslinfo is no longer in extra/. There was no need for it to be there.
* DNS now resolves multiple-answer DNS queries (CNAME, A) correctly.
2009-08-04 22:17:36 +00:00
joerg
e3c23b2b82 MAKE_JOBS_SAFE=no 2009-08-03 14:01:32 +00:00
tonnerre
be1e8a5e57 Update silc-client to version 1.1.8 to fix a security problem.
Changes:
 - Portability: Check threads support in OpenBSD.
 - Security: Fixed string format vulnerability in client entry handling.
 - Autoconf upgrade.
 - PacketEngine: Don't free underlaying stream in packet stream create error
 - If packet stream creation failed it freed the stream given as argument.

   This is wrong.  It is the caller's responsibility to free it if the
   packet stream creation failed.
 - SKE: When failure is received mark SKE always failed

   Mark the SKE failed even if we don't receive error from remote.  Fixes
   crash where the callback is called back to application without valid
   key material and without error status.
2009-08-02 19:18:40 +00:00
adrianp
19509ac4cd Update to deal with irssi update 2009-07-30 21:59:07 +00:00
adrianp
dc05c5894e ChangeLog for 0.8.14
Features:

    * Make /reset an alias for /set -default.
    * Make /unset an alias for /set -clear.
    * Allow ctrl+home / ctrl+end to go to the beginning / end of scrollback.
    * Accept WHOX reply (354 numeric) as a /who reply.
    * Show numerics directed at channels in the channel window.
    * The time duration parser is more strict now.

Bugfixes:

    * Fix out of bounds access in event_wallops().
    * Build fix for OS X.
    * Fix the autolog_ignore_targets logic to work correctly with manually opened log files (see bug #673).
2009-07-30 21:58:15 +00:00
obache
e46f6c944c Update irssi to 0.8.13 (and bump pkgrevision irssi-icb).
Also contains security fix for CVE-2009-1959 (patch-ab).
Based on patch provided by Leonardo Taccari in PR 41785.

ChangeLog for 0.8.13
Features:

    * Reject some obviously invalid values in /set.
    * Add perl bindings for Window::get_history_lines
    * Use an io channel to write the config file.
    * Use memory slices instead of memory chunks for text buffer.
    * Remove methods to create/destroy TextBuffer and TextBufferView and low
      level api to add/remove lines, scripts should be fine using
      Window::print_after and TextBufferView::remove_line.
    * Add print_after method to Window perl object analogous to
      gui_printtext_after but which also expands formats and forces a full line.
    * Better mapping of signal parameters to Perl. All signals used in scripts
      now need to be registered with Irssi::signal_register.
    * Add public header with interfaces to manage statusbar items (bug #535)
    * Recode: assume utf-8 encoding for an ascii string in which no escape
      character occurs (bug #392).
    * Allow /BAN, /UNBAN, /KICBAN, /KNOCKOUT if channel is not synced.
      Requesting ban lists from an unsynced channel will ask them from the
      server, banning a user whose u@h irssi does not know will ban nick!*@* and
      only bans irssi knows about can be removed.
    * Allow storing multiple "other" prefixes such as +q and +a (original patch
      by JasonX)
    * Add /set autolog_ignore_targets for cherry-picking targets that shouldn't
      get logged.
    * Add support for 16 colors. Formats KBGCRMYW and mirc colors are now mapped
      to colors 8-15. fe-text translates colors 8-15 to bold/blink+0-7 if the
      terminal supports only 8 colors. If your theme uses one of the high color
      formats and you really want bold you can change %FMT<string> to %fmt%_%_,
      it will work fine in all irssi versions.
    * Better 005 PREFIX support (bug #580).
    * Display 407 numerics other than "duplicate channel".
    * Fix display of ratbox-style operspy whois.
    * Recode outgoing irc away messages (bug #412).
    * Recode outgoing irc quit messages.
    * Remove scrollback_levelclear_levels setting and add a 'level' option to
      'sb levelclear' to specify a comma separated list of levels.
    * Add perl __WARN__ handler for scripts (bug #427).
    * Add Irssi::command_parse_options function to parse options for a command.
    * Revert recode changes introduced in 0.8.12.
    * Add completion for /WINDOW SERVER.
    * Support for reading kicks/msgs from TARGMAX/MAXTARGETS 005 tokens.
    * Enhancements to the redirections code.
    * Support for RPL_WHOISACTUALLY (338 numeric) for both ratbox and ircu
      (bug #428).
    * -idle option of /notify is gone.
    * /layout save now makes window-channel bindings instantly effective
      (bug #35).
    * /ping without arguments does not send anymore a ctcp ping to a channel
      (bug #542).
    * Track IRC operator status of nicks a bit better.
    * new 'actlist_names' option to add active items names in 'act' statusbar
      item.
    * new 'word_completion_backward' command to scroll backwards in the
      completion list.
    * add 'list' option to /bind to print all the available commands.
    * show setter/time in +I lists
    * apply -usermode before -autosendcmd (bug #548).
    * reduce memory usage of the scrollback buffer and make the display in /sb
      status more accurate (higher).
    * fix data getting dropped when a lot is sent at a time (e.g. when attaching
      to irssi-proxy, bug #528).
    * introduce the type Irssi::Irc::Client and signals to communicate with
      proxy clients to allow for scripting parts of the irssi-proxy.
    * Add sb_search.pl, a script for /SCROLLBACK SEARCH

Bugfixes:

    * Fix /NOTIFY list when nick is seen joining (bug #642).
    * Include hostmask in 001 event sent by proxy (bug #650).
    * Be more power-friendly: don't run any always-on <1s timers (bug #641).
    * Don't get confused by a failed /JOIN -window (bug #644).
    * Properly initialize embedded Perl (PERL_SYS_INIT3).
    * Replace invalid utf-8 bytes with U+FFFD when drawing a line.
    * Properly unload the original script when using /script load to reload it.
      (bug #525, patch by Lukas Mai)
    * Clean up script loading in general:
       * Don't leak local variables to eval'd code.
       * Set filename/line number to get better error messages from perl.
       * Use three-arg open and lexical filehandles to avoid surprises.
       * Include error reason in message for unopenable scripts.
       * Don't wrap script code in sub handler { } - this avoids spurious
	 warnings and should at least allow __END__ to work properly. (Patch by
	 Lukas Mai)
    * Fix NETSPLIT_SERVER_REC in signals for Perl.
    * Remove buggy /SCROLLBACK redraw and /SET scrollback_save_formats.
    * Always preserve the active mainwindow when resizing.
    * Ignore DNS not found errors when considering reconnect.
    * Do not strip the comma in a mirc color if it is not followed by a digit
      (bug #250).
    * Fix building perl module with perl-5.10 (bug #630).
    * fix leak with $L expando.
    * fix possible crash with /script reset.
    * ignore exceptions take precedence over ignores in all cases.
    * honour -channels preference for ignore -replies (bug #227).
    * Fix mode display in whois with unreal (379 numeric) (bug #479).
    * Fix regressions that prevented external modules from building/working
      (bugs #537 #539).
    * Fix /set hilight_level not taking effect immediately (bug #598).
    * Fix bold, blinking and indentation in /LASTLOG and buf.pl.
2009-07-27 12:59:44 +00:00
gdt
c51abcb011 Update to 2.1.24.
Added missing files to distribution

  Check for non configured c2s local.id

  Added tool to migrate from jabberd14 to jabberd2 SQLite. BBN.com
  contribution.

  Fix for authreg_pipe. Fixes #204

  Updated bdb2mysql.rb to jabberd 2.1 DB schema

  Do not handle disco to nodes

  Fixed vCard get

  Fixed empty node check

  Restored reading [jabberd] group from my.cnf

  Unified way utf-8 is selected in MySQL backend

  Merged crypted passwords support for MySQL. Closes #184 and 197

  Removed debug that might cause segfault. Fixes #196.

  Do not handle vCard request destined to full JIDs. Fixes #190

  Added charset utf-8 to db-setup.mysql

  Fixes segfault that happend when there are multiple sessions and
  privacy list was changed. Fixes #188

  Really fix gsasl ANONYMOUS login

  Webstatus presence resource enabled only when service enabled

  Added server component presence resources

  Added maxstanzasize debug message

  Include “util/inaddr.h” for socklen_t ss_family etc. Refs #191

  Include <stdarg.h> if available. Refs #191

  TYPE_SOCKLEN_T check. Refs #91

  TYPE_SOCKLEN_T check. Refs #91

  Include inttypes.h instead of stdlib.h as it is more universally
  available. Refs #191

  Check for stdarg.h in configure.

  Remove AC_PROG_GCC_TRADITIONAL (obsolete).

  Remove AC_FUNC_MALLOC, AC_FUNC_REALLOC - if they find malloc(0) does
  not return a valid pointer malloc will be defined to rpl_malloc, and
  no rpl_malloc is available. See
  http://www.gnu.org/software/autoconf/manual/autoconf.html#Particular-Functions

  Seems easier to use AC_SEARCH_LIBS for inet_ntop etc.

  Move the broken __ss_family check so that it appears after the check
  for struct sockaddr_storage.

  Check for socklen_t

  Fix –enable-pgsql

  Fixed compatibility with VC++ and ANSI, variables must be declared at
  the beginning of the block.

  Check for Win32 OpenSSL and Visual C++ 2005 SP1 Redistributable
  Package (x86), and raise error if not found in the installer.

  Updated Makefile.am witn new README.protocol file

  Unified URI/URN definitions
2009-07-24 19:05:53 +00:00
christos
4a6b92a1c1 fix time.h issues 2009-07-24 01:24:38 +00:00
tron
57e076cba6 Set the license to "gnu-gpl-v2". 2009-07-23 09:52:29 +00:00
wiz
107da423dc Remove empty PLIST.common_end. 2009-07-22 09:23:47 +00:00
wiz
d70523df21 Remove USE_DIRS from pkgsrc.
Shared directories can now be created independently by the pacakges
needing them and will be removed automatically by pkg_delete when empty.

Packages needing empty directories can use the @pkgdir command in PLIST.

Discussed and ok'd in thread starting at
http://mail-index.netbsd.org/tech-pkg/2009/06/30/msg003546.html
2009-07-22 09:01:16 +00:00
tonio
c9c183976d Update chat/weechat to 0.2.6.3
Add perl and ruby options, fix PR pkg/38946

Changelog:
* 2009-06-13
    WeeChat 0.2.6.3 released.
    This version fixes gnutls detection.
* 2009-04-18
    WeeChat 0.2.6.2 released.
    This version fixes a bug with charset decoding (like iso2022jp).
2009-07-18 06:04:33 +00:00
adrianp
2ae6078ec7 Give up MAINTAINER 2009-07-17 18:00:13 +00:00
tonio
feb6d658b0 Make sure bitlbee honors VARBASE properly 2009-07-16 19:19:18 +00:00
tonio
6206c13acf Add rc.d file for bitlbee, so that it can be used in deamon mode
Use gnutls instead of openssl, as google talk does not work with openssl

This fixes PR pkg/35345
2009-07-15 22:14:18 +00:00
hasso
9a04a41ed2 Fix PLIST. Bump PKGREVISION. 2009-07-13 18:26:50 +00:00
drochner
1ec3c97b5e use libgnutls-config.mk, fixes gnutls-2.8 detection with the (non-default)
"gnutls" pkg option
2009-07-03 14:50:34 +00:00
drochner
9865c13aa0 use libgnutls-config.mk, restores TLS support with the (non-default)
"gnutls" pkg option
2009-07-03 14:23:00 +00:00
wiz
067f24d32f Remove inclusion of gnutls/buildlink3.mk. The package Makefile
doesn't contain this include, and thus build of dependent packages
fails with
ERROR: gnutls>=1.2.6 is not installed; can't buildlink files.
2009-07-02 10:18:46 +00:00
joerg
c569c6a51f Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with
MAKE_JOBS=2 and worked without.
2009-06-30 00:07:09 +00:00
kefren
b9f4493baa Regen for pidgin 2.5.7 2009-06-28 19:01:33 +00:00
kefren
6f59087c1d Update to version 2.5.7 (06/19/2009):
* Yahoo Protocol 16 support, including new HTTPS login method; this should
  fix a number of login problems that have recently cropped up.  (Sulabh
  Mahajan, Mike "Maiku" Ruprecht)
* Only display the AIM "Unable to Retrieve Buddy List" message once per
  connection.  (Rob Taft)
* Blocking MSN users not on your buddy list no longer disconnects you.
* When performing operations on MSN, assume users are on the MSN/Passport
  network if we don't get network ID's for them.
2009-06-24 14:42:51 +00:00
joerg
76039544d1 Remove @dirrm related logic. 2009-06-14 22:57:58 +00:00
joerg
01ff4d7ea3 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 18:28:43 +00:00
joerg
e209761d06 Remove @dirrm entries from PLISTs 2009-06-14 17:28:16 +00:00
ahoka
9ce42c23e2 The package failed to build with some gnutls problem, so build it against
openssl instead. We perefer openssl anyway.
2009-06-13 12:56:28 +00:00
smb
66ac932bc9 Update to 2.5.6 because of assorted security advisories 2009-06-12 16:31:39 +00:00
obache
8165c1bbc9 Update eggdrop to 1.6.19+ctcpfix, say, 1.6.19nb1.
Eggdrop Changes

  1.6.19+ctcpfix (14 May 2009):
    - Fixed another bug in the CTCP parsing code introduced by the servmsg.c
      buffer overflow patch in 1.6.19.
    * Patch by: thommey


  1.6.19 (18 April 2008):
    - Update the recommended TCL version to 8.5
    * Patch by: guppy

    - Updated Copyright dates
    - added [sL] and thommey to the AUTHORS file
    * Patch by: guppy

    - load blowfish by default
    * Patch by: guppy

    - added a TCL to handle the PONG :<cookie> junk on some EFnet servers
    * Patch by: [sL], guppy

    - add a simple TCL to handle the PASS <numbers> junk on some Undernet
      servers
    * Patch by: guppy

    - add support for chanmode +T
    * Patch by: Thomas "thommey" Sader

    - CTCP parsing was broken by the servmsg.c buffer overflow patch
    * Patch by: Thomas "thommey" Sader

    - Fixed a couple of typos in the FEATURES file.
    * Patch by: Tomas Szaniszlo

    - Fixed two buffer overflows in servmsg.c (CVE-2007-2807).
    * Found by: Bow Sineath - Patch by: Nico Golde / Wcc

    - Fixed compatibility problems with certain time_t implementations.
    * Found by: various - Patch by: Tothwolf

    - Complete raw traffic wasn't getting logged in some cases; only the raw
      command itself was. Fixed.
    * Patch by: mrBuG
2009-06-10 13:33:39 +00:00
adrianp
623fed5e78 Update to RC3
RC3:
A changelog is attached for the curious, but as it's all really bugfixes big and small - all 1.2 users are STRONGLY advised to upgrade.

RC2:
All users of RC1 are STRONGLY recommended to upgrade.

Notable new features are

    * Add fantasy:allowbots (to allow +B users to use fantasy <alias> commands)
    * Allow forced nick changes to override mode +N, nicklock, etc
    * Allow non-opers to use /MKPASSWD
    * Add /SAKICK command (provided by m_sakick)
    * Operoverride OTHERMODE is no longer required in addition MODEOP to op/deop/etc. people
2009-06-06 17:02:21 +00:00
zafer
7adc3307a7 update master sites. remove fi and au. add sunet.se 2009-06-05 22:17:08 +00:00
hasso
722aa3cdd9 string.h is a standard header for getting protoypes for memset and friends.
Fixes build on DragonFly.
2009-06-05 09:36:15 +00:00
zafer
c14bfbb4ef update master site. 2009-05-28 20:55:59 +00:00
zafer
40f94725cb remove dead mirror. 2009-05-20 23:38:33 +00:00
wiz
272d51cc21 Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlib
major change.

Reported by Robert Elz in PR 41345.
2009-05-20 00:58:05 +00:00
wiz
60f460ab01 Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT
block). Uncomment some commented out LICENSE lines while here.
2009-05-19 08:59:00 +00:00
obache
ae9c77969b Revert HOMEPAGE's change (may temporary connection failure). 2009-05-14 09:31:22 +00:00
obache
8f30265638 Update ruby-net-irc to 0.0.7.
2009-02-19  SATOH Hiroh

	* [bug]:
		Fixed net/irc.rb permission.
	* Released 0.0.7

2009-02-01  SATOH Hiroh

	* [bug]:
		Fixed to work on ruby1.9.1
	* [release]:
		Released 0.0.6
2009-05-14 09:16:39 +00:00
jdolecek
a3d422f7d8 Upgdrade psi to 0.12.1.
New in 0.12:

- Multi-user chat windows now join one on one chat windows and
  can be opened in tabbed form, either sharing a window, or seperately.
- The roster search has been updated, and now triggers a filter
  when typing into the roster window.
- An XML ringbuffer is now used, allowing access to already
  received XML in the XML console.
- When resolving a name for new contacts, the full name is now
  used if the nick name is missing from the vcard.
- Auto-connect on wake is now an independent option.
- MUCs can now be bookmarked, and auto-joined.
- The old config.xml file has been dropped in favour of the new
  options.xml format - all options in Psi can now be configured
  from the Advanced options pane (no more hand-editing of config
  files is required).
- Vcard avatars are now transmitted for the benefit of legacy
  clients and servers not supporting PEP.
- A new diagnostics group is available in the help menu, to allow
  debugging problems with the QCA security layer.
- Launching several instances of the same profile on Windows and
  Unices with DBUS now behaves more sensibly.
- On X11, the taskbar should now flash on new messages for compliant
  window managers.

0.12.1 security update:

- Bugfix for DOS vulnerability in the file transfer code.
2009-05-13 07:26:29 +00:00
martti
e2069ff0eb pkglint -Wall 2009-05-12 18:37:01 +00:00
martti
2415e12680 Updated chat/ejabberd to 2.0.5
* Fix two problems introduced in ejabberd 2.0.4: subscription request produced
  many authorization requests with some clients and transports; and
  subscription requests were not stored for later delivery when receiver was
  offline.
* Fix warning in expat_erl.c about implicit declaration of x_fix_buff
* HTTP-Bind (BOSH): Fix a missing stream:error in the returned
  remote-stream-error stanza
2009-05-12 18:36:19 +00:00
reed
1747bedd4a Fix problem when using binary packages.
Add BUILDLINK_API_DEPENDS.libotr due to:
configure: error: libotr 3.2.0 or newer is required.

The real problem was undefined reference to gcry_cipher_setkey
and gcry_cipher_setctr. Looked at various versions on different
architectures and it appears even though the headers were there,
they weren't defined in the library until libgcrypt-1.4.3 --
so define BUILDLINK_ABI_DEPENDS.libgcrypt.

Bump PKGREVISION.
2009-05-12 14:10:59 +00:00
martti
7af838c042 Added LICENSE. 2009-05-12 12:55:30 +00:00
wiz
84697ab157 Add "# used by chat/irssi-icb/Makefile" as requested by pkglint in
irssi-icb.
2009-04-29 12:48:24 +00:00
wiz
9a857cf2a1 Convert to use glib2 instead of glib1. Bump PKGREVISION. 2009-04-29 12:47:23 +00:00
zafer
8c2b924194 remove finnish mirror. server is down since a long time. OK'd by obache. 2009-04-28 19:26:24 +00:00
zafer
1d81c20e55 Remove broken mirrors. Ok'd by obache. 2009-04-28 19:22:09 +00:00
zafer
ce4a26e3a2 Remove broken mirror. OK'd by obache. 2009-04-28 19:13:11 +00:00
adrianp
4b35203c33 Add patch for http://forums.unrealircd.com/viewtopic.php?t=6204
Update MASTER_SITES
PKGREVISION++
2009-04-13 16:20:52 +00:00
roy
cb1d8723be We need to tell configure which python binary to use. 2009-04-01 16:20:40 +00:00
wiz
b1076bb765 Remove msgfmtstrip scripts and targets using them, now that the
infrastructure supports this properly (thanks joerg!).
2009-03-22 19:01:37 +00:00
martti
c76f1aa0f6 Updated chat/ejabberd to 2.0.4
This version is a maintenance release containing 20 bugfixes and improvements.

http://secunia.com/advisories/34340/
2009-03-22 10:39:43 +00:00
tonio
74ed77188f Update chat/weechat to 0.2.6.1
This version fixes a major bug: crash with some special chars in IRC
messages.
2009-03-22 10:32:40 +00:00
manu
0529d18242 Leave over maintainership to pkgsrc-users 2009-03-22 04:53:38 +00:00
adrianp
17b74e09a8 Change to my @NetBSD.org address 2009-03-21 20:01:11 +00:00
darcy
4c69939f98 Remove MAINTAINER at their request. 2009-03-21 16:28:05 +00:00
joerg
2d1ba244e9 Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
2009-03-20 19:23:50 +00:00
jmcneill
ecbfbaffc8 to pkgsrc-users 2009-03-18 15:30:35 +00:00
wiz
1f0239a7f1 Bump PKGREVISION for PLIST fix. 2009-03-18 12:27:19 +00:00
snj
d9ed1a7432 +@dirrm share/pixmaps/pidgin/emotes/small. This has been missing for
3 months and nobody has complained.  PKGREVISION not bumped on grounds
of "no reasonable person would want to upgrade."
2009-03-18 04:44:03 +00:00
hasso
807de83ec9 Make it build on DragonFly. 2009-03-14 18:53:21 +00:00
mlelstv
de2dbd4417 Update libpurple, piding, pidgin-sametime, pidgin-silc, finch to
version 2.5.5;

version 2.5.5 (03/01/2009):
	libpurple:
	* Fix a crash when removing an account with an unknown protocol id.
	* Beta support for SSL connections for AIM and ICQ accounts.  To
	  enable, check the "Use SSL" option from the Advanced tab when
	  editing your AIM or ICQ account. (Paul Aurich)
	* Fix a memory leak in SILC. (Luke Petre)
	* Fix some string handling in the SIMPLE prpl, which fixes some buddy name
	  handling and other issues. (Paul Aurich, Marcus Sundberg)
	* Implement support for resolving DNS via the SOCKS4 proxy (SOCKS4a).

	ICQ:
	* Fix retrieval of status messages from users of ICQ 6.x, Miranda, and
	  other libpurple clients. (Daniel Ljungborg)
	* Change client ID to match ICQ Basic 14.34.3096.  This fixes publishing
	  of buddy icons and available messages.
	* Properly publish status messages for statuses other than Available.
	  ICQ 6.x users can now see these status messages. (Daniel Ljungborg)
	* Fix receipt of messages from the mobile client Slick. (David Jedelsky)

	MSN:
	* Fix transfer of buddy icons, custom smileys, and files from the
	  latest Windows Live Messenger 9 official client. (Thomas
	  Gibson-Robinson)
	* Large (multi-part) messages are now correctly re-combined.
	* Federated/Yahoo! buddies should now stop creating sync issues at
	  every signin.  You may need to remove duplicates in the Address
	  Book.  See the FAQ for more information.  Thanks to Jason Lingohr
	  for lots of debugging and testing.
	* Messages from Yahoo! buddies are no longer silently dropped.
	* We now save and use the CacheKey for ABCH SOAP requests.
	* Don't try to parse Personal Status Messages or Current Media if they
	  don't exist.
	* Convert from ISO-8859-1 encoding to UTF-8 when no charset is specified
	  on incoming messages.  This should fix some issues with messages from
	  older clients.
	* Force sending the font "Segoe UI" if outgoing formatting doesn't specify
	  a font already.
	* Queue callbacks when token updates are in progress to prevent two token
	  update attempts from trampling each other.
	* Fixed a crash on Windows when removing a buddy's alias.
	* Update the Address Book when buddies' friendly names change.  This
	  prevents seeing an outdated alias or not seeing an alias at all for
	  buddies who are offline when you sign in.
	* Update tokens for FindMembership and ABFindAll SOAP requests.
	* We no longer try to send empty messages.  This could happen when a
	  message contained only formatting and that formatting was not supported
	  on MSN.
	* Buddies on both the Allow and Block list are now automatically
	  removed from the Allow list.  Users with this problem will now no
	  longer receive an ADL 241 error.  The problematic buddy should now
	  appear on the buddy list and can be removed or unblocked as desired.

	XMPP:
	* Resources using __HOSTNAME__ substitution will now grab only the short
	  hostname instead of the FQDN on systems which put the FQDN in the
	  hostname. (Matěj Cepl)
	* No longer send a 'to' attribute on an outgoing stanza when we haven't
	  received one.  This fixes a registration bug as described in ticket
	  #6635.

	Pidgin:
	* Tooltip windows now appear below the mouse cursor. (Kosta Arvanitis)
	* Tooltip windows now disappear on keypress events. (Kosta Arvanitis)
	* Tooltip windows no longer linger when scrolling the buddy list. (Kosta
	  Arvanitis)

	Finch:
	* Allow rebinding keys to change the focused widget (details in the
	  man-page, look for GntBox::binding)

version 2.5.4 (01/12/2009):
	libpurple:
	* Fix a connection timeout with empty Gadu-Gady buddy lists. (Martin
	  Rosinski)
	* Don't ignore namespace information when parsing XMPP data. (Michal
	  Witkowski)
	* Fix a crash that occurred when retrieving certain Offline Messages
	  on MSN.
	* Extended purple-url-handler to handle "gtalk" URI's. (Paul Aurich)
	* Fix the hang on exit in Network Location Awareness for Windows XP
	  and Windows Vista. (Paul Aurich)

	MSN:
	* Change Contact Server to temporarily fix connection problems.
	  (Thanks to Youness Alaoui)

	XMPP:
	* Support for XEP-0191 blocking.  (Vijay Raghunathan)
	* Don't put SASL PLAIN or IQ Auth passwords in debug logs. (Paul Aurich)
	* Fix removal of avatars (both PEP and vCard), we weren't removing
	  them correctly before. (Paul Aurich)

	Pidgin:
	* Fix a crash in the Add Account dialog when changing protocols under
	  certain circumstances.

	Finch:
	* Redirect stderr outputs to the debug window.
	* Fix rebinding actions with the arrow-keys and tab.
2009-03-12 07:37:51 +00:00
hasso
a7139408f3 Fix build with slightly older (builtin) openssl versions. 2009-03-11 21:18:35 +00:00
hasso
8f30d9b46a Make it build on DragonFly. 2009-03-11 19:24:41 +00:00
hasso
16db359886 Fix compile on DragonFly ('IPPROTO_TCP' undeclared). 2009-03-11 08:52:29 +00:00
hasso
3217592518 Fix compile on platforms without libresolv. It should still work fine on
platforms with libresolv (tested with Linux).
2009-03-11 08:26:11 +00:00
wiz
78b7af7df5 Use mk/omf-scrollkeeper.mk instead of textproc/rarian/omf.mk. 2009-03-08 15:56:43 +00:00
seb
7915bb0fd2 Bump PKGREVISION to 2.
Pkgsrc changes:
- Change dependency on the soon to be removed net/p5-INET6 to
the identical net/p5-IO-Socket-INET6
2009-03-07 08:12:15 +00:00
jmcneill
17a65e9546 Update msn-pecan to 0.0.18.
== Release 0.0.18 ==

2009-02-16      Thiago Silva <defcola@gmail.com>
        * po: Update Portuguese (Brazil) translation.

2009-02-15      Felipe Contreras <felipe.contreras@gmail.com>
        * win32: Show proper "README".
        * session: Workaround to set http_method early on.
        * session: Properly normalize the username.
        * Bump version to 0.0.18.
        * Build fixes for win32.
        * Update translations catalog.
        * po: Update Spanish translation.
        * po: General update.
        * Enable MSN plus sounds by default.

2009-02-15      Lu\xc3\xads Neto <luisneto3@clix.pt>
        * po: Update Portuguese translation.

2009-02-15      Devid Antonio Filoni <devidfil@gmail.com>
        * po: Update Italian translation.

2009-02-15      Elias Julkunen <elias.julkunen@gmail.com>
        * po: Update Finnish translation.

2009-02-08      Devid Antonio Filoni <devidfil@gmail.com>
        * Fix typo in Makefile.

2009-02-05      Eion Robb <eion@robbmob.com>
        * Add win32 dll version.

2009-02-05      Felipe Contreras <felipe.contreras@gmail.com>
        * Build libsiren by default.
        * Use proper libdir (might be lib64).
        * Plug some memleaks and cleanups on voiceclips.

2008-12-13      Felipe Contreras <felipe.contreras@gmail.com>
        * session: Massive cleanups.
        * session: Cleanups.
        * sync: Cleanup.
        * Remove logging step.

2009-02-05      Devid Antonio Filoni <devidfil@gmail.com>
        * Add support for receiving Plus! sounds. Patch for this by Thiago Silva
 and me.
        * Add an option to hide Messenger Plus! Live tags from buddies nicknames
 and personal messages.
        * Choice to don't use PSM (and to use a normal personal message) during
build.

2009-01-21      Elliott Sales de Andrade <qulogic@pidgin.im>
        * Report a debug warning if a SLP MSG is not processed because it has un
known flags.

2009-01-21      Thomas Gibson-Robinson <thomas.gibsonrobinson@gmail.com>
        * Fix user displays for WLM 2009.

2009-01-17      Devid Antonio Filoni <devidfil@gmail.com>
        * Fix a crash receiving voice clips and make voice clips messages

2009-01-17      Felipe Contreras <felipe.contreras@gmail.com>
        * Cleanup libsiren Makefile stuff.
        * libsiren cleanups.
        * Reorganize libsiren.
        * Make libsiren optional.

2009-01-03      Devid Antonio Filoni <devidfil@gmail.com>
        * Add support for receiving voice clips. Thanks to Chris Stafford and Yo
uness Alaoui for this.
        * Update adium/Makefile.am.
        * Use pecan_info instead of purple_debug_*.

2009-01-12      Felipe Contreras <felipe.contreras@gmail.com>
        * Fix personal status message option.

2009-01-12      Thiago Silva <defcola@gmail.com>
        * Use P4-context.

2009-01-08      Devid Antonio Filoni <devidfil@gmail.com>
        * Fix a bug that sets the mobile status to non-mobile buddies.
        * Enable friendly name storage and fix it.

2009-01-08      Thiago Silva <defcola@gmail.com>
        * Update pt_BR translation.

2008-12-30      Felipe Contreras <felipe.contreras@gmail.com>
        * Fix previous commit.

2008-12-05      Devid Antonio Filoni <devidfil@gmail.com>
        * Cleanups.
        * Update readme.
        * Show msn-pecan instead of msn in debug window.

2008-12-29      Devid Antonio Filoni <devidfil@gmail.com>
        * Update to 'Use personal status messages'.
2009-03-05 22:48:07 +00:00
joerg
11f8faeaf4 DESTDIR support. Fix PLIST handling to work when make install is called
without make build first.
2009-03-02 18:24:52 +00:00
wiz
a8ecdc67d1 Update to 0.7.21, convert to user-destdir.
telepathy-gabble 0.7.21 (2009-02-19)
====================================

The "what?! why do I have flowers outside of my window?" release.

Dependencies:

* telepathy-glib 0.7.23 is now required

Enhancements:

* Implement new tube API for muc stream tubes
* Implement new tube API for 1-1 and muc D-Bus tubes
* Implement the Messages interface for Text channels.

Changes:

* In multi-user chats, the point at which Sent is emitted has changed.
  Previously, Sent was emitted when the message was echoed back to you by the
  server; now, it is emitted (as is Messages.MessageSent) when you send the
  message. When the message is echoed, a delivery report is emitted with
  Messages.MessageReceived, and Received is emitted with an empty body and the
  Non_Text_Content flag set. Clients that don't understand the Messages
  interface should just immediately ack the ID in that signal.

  If clients want to preserve the total ordering of MUC messages, they now need
  to care about the Messages interface and watch out for the delivery report.

Fixes:

* Various tubes related leaks
* fd.o#20003: fix a crash starting Jingle calls on some 64-bit platforms
* fd.o#20133: fix various bugs where idle callbacks outlived their user-data.
* Don't start sending video when the other side adds a video stream.

telepathy-gabble 0.7.20 (2009-01-02)
====================================

The "crêpes du belge" release.

Enhancements:

* Implement the draft version of Location from telepathy-spec 0.17.19
* Announce generic tube capabilities when contacts support tubes

Fixes:

* Don't get confused if MUC services auto-rename us (as much as is possible)
* Don't get confused if we have to change our own nick in order to join a MUC
* Set the correct actor when Jingle sessions are terminated
* Don't omit offline, unknown and error from Statuses and GetStatuses()
  (regression in 0.7.19)
* Close and ChannelClosed signals are now fired when a tube is closed (new API)

telepathy-gabble 0.7.19 (2009-01-29)
====================================

The "redecorated" release.

Fixes:

* Don't crash when closing a muc channel containing an closed D-Bus tube.
* Don't resurrect removed streams if the call responder includes them in
  session-accept
* Don't crash in calls if using glib with debugging enabled (fd.o #19327).
* Don't crash when removing contact from known list (fd.o #19524).
* Fix D-Bus muc tubes (dev.sugarlabs.org #60).
* Fix refcount leak in jingle code (fd.o #19385).
* Don't crash if "offline" presence status is requested.
* Raise the appropriate error from RequestHandles for telepathy-spec 0.17.18
  compliance (fd.o #19611).
2009-02-23 11:05:03 +00:00
wiz
4732419f39 Update to 0.1.3, convert to user-destdir.
telepathy-idle 0.1.3 (2009-02-17)
=================================

Dependencies:

* telepathy-glib 0.7.15

Enhancements:

* Added automated test infrastructure

Fixes:

* Fixed a bunch of memory leaks reported by valgrind
* handle buggy servers that don't quit properly
* Fix parsing error that resulting in not receiving any messages that started
  with a leading space (Bug #17390)
* Handle user renames in room channels properly
* Validate nicknames properly when attempting to create a new connection
* Fix bug where data was lost due to improper splitting of long messages
  (Bug #17392)
* Don't split utf-8 codepoints in half when splitting long messages (Bug #13532)
* Fix bug where a user named 'foo' that was a member of a channel of the same
  name ('#foo') would have private messages delivered to both the private chat
  and the group chat (Bug #19766)
* Fix some infinite loop failures when connections fail
* Fixed various warnings
2009-02-23 10:59:02 +00:00
wiz
b49a01d122 Update to 0.7.26, convert to user-destdir.
telepathy-glib 0.7.26 (2009-02-16)
==================================

The "Leffe Radieuse" release.

Enhancements:

* Add tp_connection_manager_call_when_ready()

* When constructing TpConnectionManager, if the .manager file is missing
  or can't be read, always try to activate the connection manager (in
  practice, this is what's wanted)

* fd.o #18291: when listing connection managers, wait for them to all be ready

* fd.o #18056: add method-based accessors for TpConnectionManager members

* fd.o #17519: track the Connection's SelfHandle property in TpConnection

* Add tp_dbus_daemon_dup(), convenient API to share a starter-bus connection

* Generate GTypes for arrays of mappings, and improve use of the
  type-generation functions

* Add tp_intset_new_containing(), a convenient factory for sets with
  exactly one member

Deprecations:

* Deprecate tp_get_bus_proxy()

Fixes:

* Reduce our reliance on making a DBusGProxy for the dbus-daemon (working
  towards avoiding overly-broad NameOwnerChanged matches)

* fd.o #18832 (partially addressed): document that tp_get_bus() can call
  exit() and why, and discourage it in processes that aren't totally reliant
  on D-Bus

* fd.o #18207: reliably emit TpConnectionManager::got-info signal (although
  tp_connection_manager_call_when_ready() should be used instead)

* Fix some assertion failures in TpConnectionManager when .manager files
  contain surprising types

* Parse all currently supported types in .manager files

Miscellaneous:

* Add regression test coverage for TpConnectionManager

telepathy-glib 0.7.25 (2009-01-30)
==================================

The "Paradise Lost" release.

Fixes:

* fd.o #17588: don't break ABI if errors are re-ordered in a future spec
  version

* fd.o #19688: don't assert when getting contacts by ID if none of the
  identifiers supplied are valid

* TpPresenceMixin: don't allow setting statuses that are flagged as not
  settable on the user themselves

* TpPresenceMixin: never allow statuses of type OFFLINE, UNKNOWN or ERROR to
  be set on the user themselves, and warn if the connection manager got this
  wrong

* Fix a memory leak in tp_presence_mixin_get_statuses() (sorry Jonathon,
  your patch got lost during the release process...)

telepathy-glib 0.7.24 (2009-01-28)
==================================

The "Divide By Cucumber Error" release.

API changes:

* When a TpConnection is invalidated due to disconnection, the error will now
  be chosen from the TP_ERRORS domain in most cases. Previously, the
  TP_ERROR_DISCONNECTED domain was used. This change is necessary to support
  the extensible error reporting introduced in spec 0.17.19.

Enhancements:

* Update to telepathy-spec 0.17.19
  - Many new errors in the TP_ERRORS domain
  - Connection.ConnectionError signal for extensible error reporting

* Add a client binding for the extensible error reporting provided
  by the ConnectionError signal

* Use a simple Python implementation of XInclude, rather than xsltproc, for
  easier Windows porting

Fixes:

* Add File Transfer to the documentation

telepathy-glib 0.7.23 (2009-01-20)
==================================

The "new in version 0.7.1, and allegedly also in 0.7.21" release.

Enhancements:

* Updated to spec version 0.17.18
  - Added the File Transfer channel type
  - Added TpRichPresenceAccessControlType and
    TP_STRUCT_TYPE_RICH_PRESENCE_ACCESS_CONTROL
  - RequestHandles raises NotImplemented for bad handle types or InvalidHandle
    for bad identifiers (fd.o #19609)
  - MediaStreamHandler has a CodecsUpdated method
  - Methods automatically generated by telepathy-glib now have names
    for all "out" arguments, which should make the documentation easier to use

* Use tp:name-for-bindings to construct the C name for D-Bus methods etc.,
  which will result in better C function naming for future D-Bus interfaces
  like DBusTube

Fixes:

* Remove symbols from 0.7.21.abi that were already in 0.7.1.abi (GNU ld
  seems to respond by giving them the older version, so no harm was done
  to the ABI, but it broke the Debian packages)

* Make make-version-script.py fail if that ever happens again

* Annotate things added in 0.7.21 with the correct "Since:" indicator

* Correct the documentation for tp_list_connection_names()
2009-02-23 10:51:54 +00:00
wiz
18decf1db4 PKGREVISION bump for libsndfile ABI depends bump. 2009-02-21 13:22:43 +00:00
tron
a376320d70 Re-generate patch which wasn't accepted by GNU patch. 2009-02-18 10:22:53 +00:00
mrg
86f3e6f8e8 update to ircII 20081115. this fixes the missing translation tables,
adds chanusers()/onchannel() support for ICB and increases the default
lastlog to 440.
2009-02-18 08:30:50 +00:00
mrg
0360dda9ad update to ircII 20081115. this fixes the missing translation tables,
adds chanusers()/onchannel() support for ICB and increases the default
lastlog to 440.
2009-02-18 08:18:53 +00:00
snj
9d6e075374 Add user-destdir support. 2009-02-16 22:14:43 +00:00
joerg
fee7c16e0e DESTDIR support. 2009-02-16 18:29:53 +00:00
wiz
5adb5f3c9d Convert to user-destdir. 2009-02-15 18:49:54 +00:00
adrianp
6cfc28ef08 On to what's actually in 1.2RC1:
This is primarily a fix-based release from 1.2b4.

    * Minor memory leak
    * Expire XLines when accessed, not just when matched, to prevent a large buildup of stale XLines
    * Allow +l 0 (for use with things like +PlL #newchan)
    * Fix poll socket engine to work correctly
    * Fix undefined memory read on /stats :
    * kqueue fixes
    * Don't allow bad censor configurations to result in an infinite loop
    * STARTTLS fixes
    * Change numeric for +L to be easier to parse (and more standardised: freenode and others use this)
    * Fix autoconnects triggering at the wrong time
    * Numerous docs typos and updates
    * Small security hole where /oper allowed /oper login <hash> to oper up
    * Allow binding to all IPv4 IPs easily on an IPv6 compile
    * Disallow silly messageflood parameters
    * And more!
2009-02-14 15:07:25 +00:00
joerg
6c4db3a7ac Don't create /var/spool/... at install time, the scripts will take care
of it. Mark as user-destdir after that.
2009-02-09 23:05:02 +00:00
joerg
3c645bb7fc Switch to Python 2.5 as default. Bump revision of all packages that have
changed runtime dependencies now.
2009-02-09 22:56:21 +00:00
joerg
e2107c85f6 Remove Python 2.1 support. 2009-02-09 21:09:20 +00:00
joerg
6f37763f33 Remove chat/aap and devel/aap, the last Python 2.1 only packages. 2009-02-09 19:11:59 +00:00
joerg
da23fca8c6 Needs intltool. 2009-02-09 18:36:11 +00:00
joerg
1c4a110eb1 More py-expat dependencies for Python 2.3 and 2.4. 2009-02-07 22:57:49 +00:00
wiz
2f7fd66f23 Needs intltool, add it to tools. 2009-02-04 16:16:41 +00:00
martti
8cca5e259b Updated chat/ejabberd to 2.0.3
* Do not ask certificate for client (c2s)
* Check digest-uri in SASL digest authentication
* Use send timeout to avoid locking on gen_tcp:send
* Fix ejabberd reconnection to database
* HTTP-Bind: handle wrong order of packets
* MUC: Improved traffic regulation management
* PubSub: Several bugfixes and improvements for best coverage of XEP-0060 v1.12
* Shared Roster Groups: push immediately membership changes
* Rotate also sasl.log on "reopen-log" command
2009-02-03 12:07:26 +00:00
sketch
c7a9b9848a Add the all-important /brick command. 2009-01-19 10:20:03 +00:00
wiz
29b7a11d5b Update to 0.7.22:
telepathy-glib 0.7.22 (2009-01-13)
==================================

The "TP_STRUCT_TYPE_BROWN_PAPER_BAG" release.

Fixes:

* Accept message=NULL in tp_group_mixin_change_members, as documented and true
  in the past, rather than crashing.

telepathy-glib 0.7.21 (2009-01-12)
==================================

The "TP_HASH_TYPE_PINT_HOBGOBLIN_MOUTH_MAP" release.

Enhancements:

* Updated to spec version 0.17.17
  - Added TP_HASH_TYPE_HANDLE_IDENTIFIER_MAP and
    TP_HASH_TYPE_MESSAGE_PART_CONTENT_MAP

* (Finally) merged TpMessageMixin, which can be used in place of TpTextMixin to
  implement the Messages interface on Text channels.

* The examples have been made more exemplary, using TpChannelManager in place
  of TpChannelFactoryIface, implementing Destroyable and respawning 1-1 text
  channels which are closed with pending messages.

* Added a TP_COMPILER_WARNINGS macro to simplify choosing compiler warnings in
  configure.ac, and forked a version of AS_COMPILER_FLAG that supports C++ so
  that TP_COMPILER_WARNINGS can be used for C++ projects (such as
  telepathy-qt4).  Other projects using telepathy-glib's warnings might want to
  copy m4/tp-compiler-*.m4 and use TP_COMPILER_WARNINGS.

* Added support to TpGroupMixin for emitting the MembersChangedDetailed signal
  (fd.o #19050 and #19052), and to TpChannel for listening to it when possible
  (fd.o #19051).

* Added tp_channel_get_identifier

* Added support for parsing the dbus-property CM parameter flag (introduced in
  spec 0.17.16) from .manager files (fd.o #19053).

Fixes:

* Various Win32 portability fixes (from Sunil Mohan Adapa on fd.o #19461).

* fd.o #19101: tp_connection_get_contacts_by_id() crashes
2009-01-18 16:18:50 +00:00
wiz
fe80db1bd6 Fix build.
Addresses PR 40399 by Derouiche.
2009-01-17 20:36:28 +00:00
jmcneill
ff2e391908 + pidgin-libnotify 2009-01-16 14:29:06 +00:00
jmcneill
35d8743593 Import pidgin-libnotify version 0.14.
This plugin adds a libnotify interface to pidgin, enabling popups much like
guifications. It has some configuration options, to show popups when a buddy
signs on, on new messages and on new conversations only.

Don't forget to enable the plugin in Tools->Plugins.
2009-01-16 14:28:37 +00:00
wiz
b0ddeb3902 Update to 0.7.18:
telepathy-gabble 0.7.18 (2009-01-06)
====================================

The "The Orchestral Tubular Socks"

Enhancements:

* Implement SOCKS5 bytestreams (XEP-0065) in stream tubes.

* Implement a stream initiation fallback mechanism allowing to use IBB if
  we can't connect to peer using SOCKS5.

Fixes:

* Don't crash on setting presence if there are open MUC Tubes.

* Stream tube channel advertises the immutable channel properties,
  including those not on the Channel interface.

telepathy-gabble 0.7.17 (2008-12-14)
====================================

The "I accidentally an entire call *and* MUC" release.

Dependencies:

* dbus 1.1.0 (D-Bus Tubes are no longer conditionally compiled)

* dbus-glib 0.78 (fixes support for complex types in hashtables)

Enhancements:

* Add support for the new draft ContactCapabilities spec to communicate tube
  capabilities.

Fixes:

* Incoming Jingle calls are no longer automatically accepted when the call is
  connected and the local codecs are ready.

* Incoming MUC invites are no longer automatically accepted when changing your
  presence.

* fd.o #18918: Send codec parameters according to XEP-0167.

* Various Jingle tweaks.

telepathy-gabble 0.7.16 (2008-12-02)
====================================

The "what could possibly go wrong" release.

This release contains the reworked Jingle engine with support for latest
Jingle draft (XEP-0166 v0.32), and Google's Jingle variants as used in
their desktop client and recently launched Googlemail client.

This release has no known regressions, but as we have done extensive changes
to the Jingle engine, you might want to restrict this release to experimental
distributions like Debian experimental and Fedora rawhide for now.

Enhancements:

* fd.o #15908: refactor Jingle state machine

* fd.o #15907: Update real-Jingle implementation to XEP-0166 v0.25

* fd.o #13159: support current Google Talk protocol

* Misc Tubes-related enhancements and fixes

Fixes:

* fd.o #18404: fix race condition in tests/twisted/roster/ensure.py

* Fixes for double freeing in dispose in channel managers
2009-01-13 10:55:15 +00:00
wiz
3b9050f581 Update to 0.7.20:
telepathy-glib 0.7.20 (2008-12-14)
==================================

The "xfs_freeze stole the night" release.

Enhancements:

* Updated to spec version 0.17.16
  - Generate code for the Messages interface, which is now undrafted.

Fixes:

* fd.o #18845: don't throw a critical error from TpConnection if the
  corresponding CM falls off the bus.

* fd.o #18926: avoid using a non-top-level GLib header

telepathy-glib 0.7.19 (2008-12-01)
==================================

The "fast path" release.

Enhancements:

* TpContact now has a fast path using the Contacts interface to reduce
  D-Bus round-trips, if supported

* tp_connection_get_contact_attributes integrates the Contacts interface
  with TpConnection's handle reference tracking at a lower level

* TpChannel now tracks its immutable properties (as provided by
  Requests.NewChannels, Requests.CreateChannel and Requests.EnsureChannel),
  can be constructed from a dictionary of immutable properties
  (tp_channel_new_from_properties), and has a fast path using GetAll to reduce
  round trips (if supported); when constructed from a dictionary of immutable
  properties, non-Group channels should become 'ready' in a single round-trip

* Only use the Properties mixin in there are properties defined

Fixes:

* fd.o #15092: mixins in a superclass should now work correctly in subclasses

* fd.o #18151: tp_base_connection_dispose asserts if there are two connections to the same account
2009-01-13 10:28:39 +00:00
wiz
f2cfba8626 Add buildlink3.mk file. 2009-01-13 09:08:18 +00:00
jmcneill
f062b52a15 + msn-pecan 2009-01-12 13:38:11 +00:00
jmcneill
d012f94e97 Import msn-pecan version 0.0.17.
msn-pecan is a fork of the MSN plug-in from Pidgin. Compared to Pidgin's
official MSN plug-in:

  * Faster log-in
  * Fewer connection issues
  * Fewer crashes
  * Experimental direct connection support (fast file transfers)
  * Server-side storage for display names (private alias)
  * Support for handwritten messages (read-only)

Other features:

  * Support for personal status messages
  * Support for offline messaging (read-only)
  * Send custom emoticons (Pidgin >= 2.5)
2009-01-12 13:36:35 +00:00
tonnerre
ed11f18b0b And now add the PERLIO_INIT fix for silc-client as well. 2009-01-12 07:15:50 +00:00
tonnerre
ed6b94a3c4 Upgrade silc-client to version 1.1.7, fixing various crash and Perl problems.
ChangeLog for 1.1.5 somehow got lost, but here are the bits from 1.1.6 and
1.1.7:
 - Fixed channel MAC key setting in JOIN notify and command reply.
 - Fix reference count bug leading to memory corruption on duplicate deletions.
 - Avoid NULL dereference when leaving a channel with a private key.
 - Fix crash on expired keyboard prompts.
 - Add support for autosendcmd on channel entries.
2009-01-12 06:46:43 +00:00