Age | Commit message (Collapse) | Author | Files | Lines |
|
0.81 - 01/08/2006
Changes by neutronscott (thanks):
* Wordwrap works with <br> on incoming messages.
* Fixed buddy list size bug when squelch_connect is on
* Moved beep_on_incoming from compile-time to a config option
* Outgoing messages are displayed with HTML removed.
* HTML links are now displayed in-line
* Fixed most problems relating to buddy list management.
* Added raw input mode, toggled by ctrl-R, to input HTML characters.
* Added command 'z!' to reload away messages and profile while running.
* Added 'p' command for pasting messages.
* Removed the 'b' command due to multiple reports of crashes.
* Made improvements to the wordwrap routine, which should fix crashes
when pasting or receiving a long link or other long, uninterrupted
line.
* Replaced getchar() with read(), eliminating the odd bug when pasting a
line - you don't need to press another key to get display the line.
* Added option "set_window_title" that sets the xterm/screen window title
with your screen name.
* Added 'I' command to request profile of the last person who sent you
a message.
* 'wf' command now displays idle times. This was actually sent to me in a
patch by Matt Walters a long time ago, but I just cleaned it up and
implemented it now.
* New config option "oscarport"
* Fixed some memory leaks in bsflite and imcomm. Thanks to Toby Peterson for
submitting this patch.
* Added support for connecting through proxy servers.
Added to config file:
- proxy <proxy server> - the hostname or IP of the server
- proxyport <port> - port on which the proxy is listening
- proxytype <type> - currently either socks5 or https
Authentication should be added soon.
* Made timestamps a run-time option. Add 'timestamps false' to
the config file.
|
|
Make sure mkpasswd is only installed once as ircd-hybrid-mkpasswd
Make .if defined statements a little more bulletbroof
Bump to nb1
|
|
already. Fixes build on DragonFly.
|
|
generate an explicit abort() for that code path. Use correct promotion
and bump revision.
|
|
pkg has been changed to 5.x). Reminded by wiz... thanks.
|
|
a line of "\\n" to it.
|
|
|
|
|
|
libgadu. Let errno.h provide errno in libgsm.
|
|
without affecting packages that are currently using it.
Packages which previously didn't set BUILDLINK_DEPMETHOD to neither "full" nor
"build" now set it to "full", but should be checked whether they really need it
(comment added). Packages which previously set it to "build" now don't set it
anymore.
Ok by jlam, wiz.
|
|
|
|
> -- ircd-hybrid-7.2.0 RELNOTES
> o) Fixed broken operwall = yes;
> o) Added 'umode' directive to oper{}. List of modes to get on /OPER.
> o) Fixed a WHOIS bug
> o) Fixed bug where we would increase Count.invisi even
> if invisible_on_connect is turned off
> o) Removed invite_ops_only, controlled by paranoid (+p) now
> o) Better DDoS protection
> o) Fixed va_list bug on amd64
> o) Fixed /dev/poll
>
>
> -- ircd-hybrid-7.2rc1 RELNOTES
> o) ircd can dynamically change all its client/fd limits at runtime
> o) Added epoll as the primary I/O engine under Linux
> o) Local channels will not show up in remote /WHOIS
> o) Added hidden_name which allows customized hidden server names
> o) Added restrict_channels to define a static channel set
> o) Added --disable-gline-voting to disable G-Line votes
> for small networks or people who don't want it.
> o) Allow accumulating more ip= entries in an exempt{} block
> o) Various improvements and bugfixes
> o) Make win32 build usable
> o) Fixed ban caching bug
> o) Cosmetical fixes to TIME
> o) Get "KLINE nick" to work with clients that have a spoof
> o) Fixed RESV/XLINE bug in conjunction with names that include escaped
> characters such as \*, \?, \#.
>
>
> -- ircd-hybrid-7.2beta1 RELNOTES
> o) Usermode +G, like +g, but allow messaging from people on common channels
> o) Usermode +D - "deaf", don't receive channel messages
> o) RXLINE and RKLINE - commands for setting regexp K/X lines
> o) Join flood is now detected and reported to +b opers
> o) Re-added REJECT_HOLD - lock clients for a while before throwing away
> o) ping_warning, a class{} option to notify opers before "Ping timeout"
> o) New hooking system, modularised: usermodes, iauth, message filtering etc.
> o) Network I/O speedups
> o) Various cleanups and bugfixes
> o) Support for client SSL
> o) Support for services (contrib/m_services.c)
> o) IP cloaking module (contrib/ip_cloaking.c)
> o) Native win32 build
|
|
Bump to nb1
|
|
|
|
Summary of changes from 0.11.8 to 0.11.8.1
==========================================
[UI fea] The /wi command now displays buddy client capabilities.
[UI fea] The status bar now displays "TYPING" when your buddy is in the middle of typing a message to you. (Only if your buddy's client sends typing notifications, which naim does not do.)
[UI fea] Warning levels for yourself and for your buddies are now displayed in the UI.
[UI fea] New /setpriv command. Use to change between ALLOW ALL, BLOCK ALL, ALLOW PERMIT, BLOCK DENY, or ALLOW BUDDY. The default is BLOCK DENY.
[FT fea] Joshua Wise <joshua@joshuawise.com> updated the IPv6 code to work with the modern code base. If you have an IPv6 connection, you should be able to /connect to an IPv6 hostname without any special configuration.
[IRC fea] The IRC driver now accepts incoming lines that end in a naked "\n". (The spec. requires lines to end in "\r\n", but Jon Postel would roll over in his grave if he heard we required such stringent protocol conformity. That and some poorly-maintained ircds do send naked "\n" characters.)
[UI fea] /names now sorts users before displaying them.
[TOC fea] Friendly names (/namebuddy) are now stored to and retrieved from your server-side buddy list.
[TOC bug] /delbuddy did not always correctly remove the user from your server-side buddy list. Fixed.
[UI bug] If you had a user with the same friendly name as another user's account name, naim would become unstable when the second user signed on. Fixed.
[TOC fea] (ported from 0.11.7.3) Online time is presented in localized time from AOL's servers. FireTalk now de-localizes (from UTC-0400) and re-localizes to the user's time zone.
|
|
Bump BUILDLINK_RECOMMENDED.
|
|
remove it in 2006Q1.
|
|
automatically detects whether we want the pkginstall machinery to be
used by the package Makefile.
|
|
|
|
3.0. If one of these is important to you, please fix it in time
for pkgsrc-2006Q1, or it may be removed.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern int errno; /* some systems don't have this in errno.h */
after the following in a central header:
#ifndef _WIN32
#include <sys/errno.h>
#else
#include <errno.h>
#endif
Sure, e.g. NetBSD doesn't define errno in sys/errno.h, but why should it?
So, let's just fix this.
|
|
|
|
|
|
|
|
|
|
Changes:
- fix compilation on non-i386 (or non-gcc) systems
|
|
- no errno, use errno.h
- no redefinition of function parameters as local variables
[how did this ever work?!]
- malloc comes from stdlib.h
- NAME_MAX is prefered when available, it is POSIX
- strchr, strpbrk, strspn, strstr, strtol and strtoul can and
should be used from libc.
- remove tcl version of string.h, system header is good enough
(and if it doesn't have index, it would have been broken anyway)
|
|
Use dirent.h instead of sys/dir.h, the former is POSIX and the latter
gives a warning on DragonFly, which breaks -Werror.
Use NAME_MAX if available, fall back to MAXNAMLEN otherwise.
|
|
|
|
|
|
|
|
and replace a bogus check with >=, since 6 & 7 != 6.
|
|
|
|
|
|
|
|
|
|
|
|
emulators/suse_linux/Makefile.application, to keep old behaviour.
|
|
Change most pkgs to depend on either
emulators/suse_linux/Makefile.application (normal pkgs) or
Makefile.common (suse91 and suse themselves) to filter out Operating
Systems without Linux ABI support. Use CPU masks to limit the pkg to
supported platforms.
|
|
Changes:
- Fixed crashbug in key exchange, authentication and rekey protocols.
- Fixed channel private key mode remove bug.
- Fixed statistics temp file creation in debug mode.
- Other bugfixes were also made.
|
|
|
|
Notable changes from NEWS:
* Major changes in 2.0.2
* Major changes in 2.0.1
** New add-on riece-xfaceb.el, which displays X-Face/Colour Face in
IRC buffers. (Steve Youngs)
* Major changes in 2.0.0
** Support multiple coding-systems on a server.
You can use different coding-systems for different channels. (ueno)
For example:
(setq riece-channel-coding-system-alist
'(("#euc-jp" . euc-jp)
("#utf-8 irc.freenode.net" . utf-8)))
** Support uninstall, unload (dangerous) operations for add-ons.
Now you can fully customize riece-addons in the add-on listing
mode. (ueno)
** New mechanism for executing Ruby programs. To use it, see the
commentary section of riece-ruby.el. (ueno)
** New add-on riece-eval-ruby.el, which regards user input prefixed by
",ruby " as a Ruby program and sends the result to the current
channel. (ueno)
** New add-on riece-shrink-buffer.el, which now takes care of periodic
buffer shrinking. If you have set riece-max-buffer-size, you will
need to enable the riece-shrink-buffer add-on in the add-on listing
mode. (ueno)
** Allow "@" instead of " " as a separator of a channel name and an
IRC server name. (ueno)
** Rewrite the Japanese manual (riece-ja.texi) for IRC & Emacs
newbies. (ueno)
** Include a document for developers (doc/HACKING{,.ja}) (ueno)
* Major changes in 1.0.8
** Mitigate file locking scheme of riece-log. (ueno)
** Format idle seconds in human readable form. (ueno)
** Support SXEmacs version names. (Steve Youngs)
** Support CTCP TIME. (Steve Youngs)
|
|
CONFIGURE_ARGS.
|