Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
The telepathy-farsight library uses the MediaSignalling telepathy
interface and passes the information to farsight2, allowing an easy
implementation of the telepathy part of a voice/video call.
|
|
|
|
|
|
telepathy-idle 0.1.4 (2009-05-28)
=================================
The "Caberdrone" release.
Enhancements:
* Added a connection parameter for "username" (fd.o #16499).
* Removed the default quit message advertising Idle (fd.o #20916).
Fixes:
* Parses nicknames in incoming messages more liberally, to allow
nicknames like "-bip" which are illegal but appear in the wild.
* Uniquify connections' object paths to permit two connections to the
same server with the same username (fd.o #17430).
|
|
telepathy-glib 0.7.33 (2009-06-26)
==================================
The "please be careful when handling the sun" release.
Fixes:
* Fixed a test failure in test-params-cm on certain architectures, including
powerpc and sparc (smcv)
* Fixed an assertion failure in TpConnection if StatusChanged to CONNECTED is
followed immdiately by GetStatus returning CONNECTED (smcv)
telepathy-glib 0.7.32 (2009-06-12)
==================================
The "cake wars" release.
Enhancements:
* fd.o #22208: Updated to telepathy-spec 0.17.26 (smcv)
* Added generated service-side bindings for AccountManager, Account,
ChannelDispatcher, ChannelDispatchOperation, ChannelRequest and Client (smcv)
* Added minimal versions of TpAccountManager, TpAccount,
TpChannelDispatcher, TpChannelDispatchOperation, TpChannelRequest and
TpClient (smcv)
* fd.o #22205: Added support for deprecating or removing _run_ methods in code
generation (smcv)
* Added flymake support (jonnylamb)
* fd.o #22230: Added support for byte ('y') parameters to CMs (smcv)
Fixes:
* Made sure _gen/error-str.h and .c end with a newline, fixing compilation with
certain compilers (smcv)
* fd.o #19741: Documented client-side handle reference counting (wjt)
* fd.o #21977: Removed duplicate mention of media-interfaces.h in Makefile.am
(Patryk Zawadzki)
* fd.o #22121: made tp_channel_dispose properly idempotent (wjt)
* Removed dead code for introspecting alias flags (smcv)
* fd.o #22182: Fixed a potential use-after-free in the callable example CM
(smcv)
Release notes for projects using code generation:
* After updating to this version of glib-client-gen.py, _run_ methods will no
longer be generated by default. To get the behaviour of older versions, run
it with the new --generate-reentrant option; to get the methods present
but deprecated, use an option like
--deprecate-reentrant=FOO_DISABLE_DEPRECATED (which means the _run_ methods
are marked with G_GNUC_DEPRECATED, and will not be available at all if
FOO_DISABLE_DEPRECATED is defined).
telepathy-glib 0.7.31 (2009-05-27)
==================================
The "this beer tastes of Stilton!" release.
Enhancements:
* Added TP_ERROR_STR_* constants corresponding to the members of the
TpError enum, and tp_error_get_dbus_name() mapping the latter to the
former (cassidy/wjt)
* Updated to telepathy-spec 0.17.25, adding ConnectionRefused, ConnectionFailed
and ConnectionLost errors, and the new-style StreamTube and DBusTube channel
types (cassidy)
* Made tp_g_key_file_get_int64 and _uint64 into public API for Mission
Control's benefit (smcv)
Fixes:
* Changed the dbus_daemon member of TpProxy to be removed in dispose, rather
than just after the invalidated signal (smcv)
* Fixed a null pointer dereference if a TpConnectionManager is resurrected
during dispose (smcv)
* Fixed a use-after-free when the user-supplied object in
tp_connection_manager_call_when_ready is destroyed after the CM becomes
ready (smcv)
* Fixed tp_dbus_daemon_request_name, tp_dbus_daemon_release_name and
_tp_dbus_daemon_get_name_owner to fail gracefully if the TpDBusDaemon has
been invalidated (smcv)
telepathy-glib 0.7.30 (2009-05-18)
==================================
The "slowing down but with a sense of speeding up" release.
API changes:
* tp_proxy_add_interface_by_id() may not be called on an invalidated proxy. (It
never made sense to do this, but now telepathy-glib will complain if you do.)
Enhancements:
* Added tp_dbus_daemon_request_name() and tp_dbus_daemon_release_name(). (Fixes
fd.o#21771.)
* Update to telepathy-spec 0.17.23, adding the Terminated error.
* Added optional support for Shave, to give kernel-style pretty make output.
(This is disabled by default; to enable it, pass --enable-shave to configure.)
(Jonny Lamb)
* Channel introspection will now fail more quickly when the channel is
invalidated.
Fixes:
* Generated GInterfaces now install type information sooner, fixing a bug where
object construction could make dbus-glib assert. (Ross Burton)
* fd.o#21792: tp_presence_mixin_simple_presence_fill_contact_attributes asserts
if get_contact_statuses returns NULL.
telepathy-glib 0.7.29 (2009-04-03)
==================================
The "sense of adventure working perfectly and sensing no adventures" release.
Enhancements:
* TpBaseConnectionManager, tp_cm_param_setter_offset: support parameters of
various extra types - object path, double, 64-bit signed and unsigned
integer, array of strings, array of bytes - and add regression tests
* TpContact: enhance documentation to spell out that change notification is
via GObject::notify::alias etc.
* tp_asv_new(), a shorthand for creating hash tables from strings to
slice-allocated GValues, along with tp_asv_set_* and tp_asv_take_* helpers to
add entries to such hash tables. (Fixes fd.o#20942)
telepathy-glib 0.7.28 (2009-03-24)
==================================
The "a surprisingly meaty courgette" release.
API changes:
* Use the prefix for D-Bus errors specified by telepathy-spec, not something
telepathy-glib made up (changing .Errors to the correct .Error). This was
a regression in telepathy-glib 0.7.1.
Expected impact of this change:
* Connection managers will emit the correct errors as soon as the
telepathy-glib shared library is upgraded
* Clients that use TpConnection, TpChannel etc. will expect the correct
errors as soon as the shared library is upgraded
* Clients that match errors by string value using TP_ERROR_PREFIX will have
to be recompiled against the new telepathy-glib, but should have sane
fallback behaviour to treat the correct error strings as an unknown error
Enhancements:
* Update to telepathy-spec 0.17.22, adding
TP_ARRAY_TYPE_SOCKET_ADDRESS_IP_LIST, TP_ARRAY_TYPE_STRING_STRING_MAP_LIST,
TP_STRUCT_TYPE_SOCKET_ADDRESS_IP
* Extend the 'callable' example connection manager to support simulated
incoming calls, support simulated contacts who never answer, are busy or
terminate the call, and comply with telepathy-spec 0.17.22
Fixes:
* fd.o #20729: csh (chatroom) example connection manager: comply with
telepathy-spec 0.17.21 by always allowing the user to leave the Group
* Cancel GetParameters call if the CM crashes, fixing an assertion failure
in tp_connection_manager_continue_introspection
telepathy-glib 0.7.27 (2009-03-17)
==================================
The "sliced woot" release.
Enhancements:
* fd.o #18220: make it much less verbose to construct string/variant maps
(a{sv}) by adding functions like tp_g_value_slice_new_uint(), which are a
shortcut for a sequence like tp_g_value_slice_new (G_TYPE_UINT) followed by
g_value_set_uint
* Make example connection managers installable (they might be useful for
testing UIs - use ./configure --enable-installed-examples if you want them)
* Add an example connection manager that has dummy StreamedMedia channels
* Add an example connection manager that has dummy ContactList channels
vaguely resembling the XMPP roster
* Update to telepathy-spec 0.17.21 (adding
TP_CHANNEL_GROUP_FLAG_MESSAGE_DEPART and
TP_CHANNEL_MEDIA_CAPABILITY_NAT_TRAVERSAL_ICE_UDP)
Fixes:
* fd.o #20646: in TpChannel, when adding contacts to one of the Group sets,
remove them from both of the others
* Use AM_PATH_PYTHON to detect the Python version
* In TpGroupMixin, let implementations allow the self-handle to be removed
regardless of whether the CAN_REMOVE flag is set. This is meant to be how
you remove yourself gracefully from a chatroom or streamed media call.
* fd.o #20165: fix a use-after-free in tp_base_connection_register() that
causes connection managers to assert if they have not already called
tp_dbus_daemon_dup() or tp_run_connection_manager() (regression in 0.7.26
which broke the telepathy-qt4 regression tests)
* Fix some memory leaks when making TpContact objects, when holding handles in
TpContactsMixin, when filling contact attributes in TpPresenceMixin,
when setting simple presence, and in the regression tests
* Update the valgrind suppressions file to cope with new telepathy-glib code,
GTest, and glibc 2.9
* Fix compilation with gtkdoc 1.11, which is stricter about the contents of
Since: annotations, and parses more comments
|
|
ICQ:
* Fix misparsing a web message as an SMS message. (Yuriy Kaminskiy)
MSN:
Increase NS command history size to prevent crashes on buddy lists that
have a lot of buddies on other networks like Yahoo!.
MySpace:
* Accounts with empty buddy lists are now properly marked as connected.
* Fix receiving messages from users of MySpace IM's web client.
Yahoo:
* Fixed phantom online buddies. They should now properly disappear when
signing out.
* Fixed the crashes some users were seeing with cn.scs.msg.yahoo.com in
2.5.7.
* Fixed compiling on systems with glib 2.4.x or older.
* Fixed an issue with file transfers. This may not resolve all issues,
but it should resolve at least some of the most common ones.
* The pager server will automatically update to scsa.msg.yahoo.com if the
user empties the field or if it is scs.msg.yahoo.com. This should ease
the pain of transition to the new login method.
XMPP:
* Fix an incompatibility betweeen Prosody and libpurple clients.
|
|
compiles against its libraries
|
|
|
|
Fixes PR 41852.
|
|
|
|
in emacs23.
|
|
|
|
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.
|
|
|
|
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.
|
|
|
|
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).
|
|
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.
|
|
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
|
|
|
|
|
|
|
|
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
|
|
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).
|
|
|
|
|
|
Use gnutls instead of openssl, as google talk does not work with openssl
This fixes PR pkg/35345
|
|
|
|
"gnutls" pkg option
|
|
"gnutls" pkg option
|
|
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.
|
|
MAKE_JOBS=2 and worked without.
|
|
|
|
* 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.
|
|
|
|
|
|
|
|
openssl instead. We perefer openssl anyway.
|
|
|
|
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
|
|
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
|
|
|
|
Fixes build on DragonFly.
|
|
|
|
|
|
major change.
Reported by Robert Elz in PR 41345.
|
|
block). Uncomment some commented out LICENSE lines while here.
|
|
|
|
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
|