summaryrefslogtreecommitdiff
path: root/chat
AgeCommit message (Collapse)AuthorFilesLines
2005-04-05Update to 4.20.0, provided by Znarf Ainav on tech-pkg:wiz5-41/+35
4.14.0 ------ Because of the mistake I made in the previous version, the 'u' letter was eaten by the RTF parser when processing messages from windows icq clients. It looked for unicode chars, but ate all 'u' characters it used to found. Fixed that. A memory leak problem when checking RSS was fixed. Gadu-Gadu module used to produce a segfault when it was unable to obtain a registration token from the server. Now it doesn't crash, though the impossibility to register a new UIN is still there. The serve simply doesn't find an appropriate document by the registration URL. Too bad. Applied a small patch by Paul Chitescu so that it's now possible to start centericq with all protocols set to offline. Another type of external event was added. Now you can execute your actions when someone goes offline. Hope someone finds that useful. 4.20.0 ------ PGP encryption support was implemented for the Jabber module. In a nutshell this means that with a proper setup your communications get a way more secure. GPGME library is needed to build the PGP support. Fixed the RTF parser that takes charge when a message from a Windows ICQ client is received. One problem was that it used to treat backspace characters wrong sometimes. Another problem with utf-16 was fixed with a patch submitted by Vadim Nosovsky. After ICQ dual login detection centericq used to try re-connecting, though it wasn't supposed to. Fixed. During a long time noone reported me the bug related to libicq2000's header files getting installed each time "make install" was run for centericq. Finally Wolfram Schlich noted this one, so I fixed it. Logging on Yahoo! didn't work on Sun Sparc machines. Fixed that. That might also revive Gadu-Gadu on bigendian architectures. A couple of interface related bugs were fixed, such as a mistake in the group organization dialog as well as not clearing pending messages for contacts in non-chat communication mode.
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-04-04Update to latest tarball dated 20050313. About two years (or more)wiz3-457/+615
of undocumented changes.
2005-04-04Update to 2.2. Changes:wiz3-12/+20
EPIC4-2.2 *** News -- 11/09/2004 -- Changes to way spaces are handled *** IMPORTANT *** Up until this point, the technical definition of what is a "space" (the term used for an Internal Field Separator (IFS), that is, the thing that separates one word from another word) EPIC has always had three sets of IFSs 1) Character 32 only ("space") 2) Characters 9, 10, 11, 12, 13, and 32 ("my_isspace()") 3) Whatever your locale says is a space ("isspace") In the C locale (the default for unix users), sets #2 and #3 are exactly the same. I don't know about other locales. Now we are going to only use set #3. Changing Set #2 to Set #3 is easy, and nobody should notice any difference there. The one that is going to cause pain is Set #1. Consider this situation: One<tab>Two Is this one word, or two words? In some places in epic, it is one word, and in other places it is two words. As a result of this change, it will now always be two words every place. Here is a list of the places that were using Set #1 that will change to use Set #3, and you should be on the lookout for changes! *) /AWAY separated the end of its flags with spaces. This means /AWAY -ALL<tab>Hi there! will now work properly. *) $pop(....) removes the last word from the argument list. Whereas $pop(one two<tab>three) used to return "two<tab>three" is will now only return "three" *) Commands are separated from the argument list by a "space". Whereas /one<tab>two blah blah blah parsed "one<tab>two" as the command, now "one" is the command and "two" is part of the argument list. *) In expressions, a variable name may be separated from an operator with a space. Whereas things like @var<tab> =foo might have failed because <tab> is not a valid character in a variable name, it will now treat <tab> the same as a space. *) Places that expect a number did not accept a string that contained a <tab> so that things like <tab><tab>9 was not accepted as a number. Now it will be. *) The /IGNORE command used to consider a string containing a <tab> to not be empty. This means that /IGNORE <tab> would not list the ignorance list, but rather would try to show the ban value for an ignore matching <tab> which isn't reasonable. *) The % wildcard pattern stopped matching only when it saw char 32. Now it will stop whenever it seems a Set 3 type space. So whereas before "%" matched "one<tab>two" now it won't, because "one<tab>two" is two words, not one word. *) In /xdebug extractw mode, tabs before or after double quotes were not considered to start or end a double quoted word. So previously this string: one <tab>"two three" four contained four words, because the <tab> before "two nullified the double quoting. Now that <tab> is treated like any other space, the above word has three words, not four. Places that use Set 1 and will NOT be changing to Set 3, because they are parsing IRC protocol data, which stipulates that the IFS MUST be a space solely: *) CTCP requests and replies are formatted only with spaces *) Words in protocol messages are separated only with spaces *** News -- 11/09/2004 -- You may now mangle ALT_CHAR characters And ALT_CHAR mangling is included in ALL. This was an oversight that was fixed in epic5. *** News -- 11/02/2004 -- Mangling "ALL,-BOLD" no longer mangles "ALL_OFF" In general, if you use ANSI (ALL includes ANSI), the mangled string has its six attributes (COLOR, REVERSE, UNDERLINE, BOLD, BLINK, ALT_CHAR) rewritten into canonical form. This will add some ALL_OFFs to your string that weren't there originally. So if you strip all of the attributes (as ALL does), then epic will strip ALL_OFF off as well. This retains backwards compatability with ALL. But if you use ANSI and don't want to strip all 6 of the attributes, then it's important that ALL_OFFs are not removed, otherwise your string will not appear as it should (the ANSInator uses ALL_OFFs to turn off attributes). So EPIC automatically will not strip ALL_OFFs if you use ANSI and do not mangle one of the 6 attributes. Examples: $stripcrap(ALL this is ^B^_bold underline^_ not bold) will strip everything as it has always done. $stripcrap(ALL,-BOLD this is ^B^_bold underline^_^B not bold) will strip everything but not bold and all_offs, because if all_offs are stripped, then "not bold" will be in bold! The entire point of this is to allow /set mangle_logfile ALL to work the way it has always worked, and $stripcrap(ALL,-BOLD ...) to work the way it *should* work. *** News -- 10/06/2004 -- Support for +e and +I numerics from efnet EFNet has +e and +I channel modes, which act like +b does. These numerics are now handled by epic like +b is. *** News -- 10/06/2004 -- New status bar expandos, %{2}W and %{3}W These two new expandos expand to the same value as %W. %W Expands on each input window on each screen that has two or more visible windows. %{2}W Expands on all visible windows on all screens. %{3}W Expands on each input window on each screen, even on screens that have only one visible window. *** News -- 10/06/2004 -- Support for ircnet's "numeric nick" feature On ircnet, each user is given a unique numeric identifier, which is their one true nickname. In addition to this numeric id, they can have a rfc1459 nickname, but they are not required to have one. Further, the special numeric id 0 is reserved and refers to the user's own numeric id. EPIC now fully supports all of this, particularly in the following ways: /NICK <unique id> /NICK 0 To turn off your rfc1459 nickname. $serverctl(GET <refnum> UNIQUE_ID) $serverctl(SET <refnum> UNIQUE_ID) To retrieve and change your unique nickname. Changing your unique id is probably a bad idea. /USERHOST <unique id> You may USERHOST unique id's now. 'epic 0' You may now use the nickname 0 on the epic command line if you don't want to use an rfc1459 nickname on an ircnet server. Using unique numeric id's on non-ircnet servers is probably fraught with peril. Try to avoid that. *** News -- 10/06/2004 -- /SET INDENT maxes out at 1/3 screen width Previously, if you did /set indent on, and the width of the first word on the first line was > 1/3 of the screen's width, then the second (and subsequent) lines were not indented at all. This was the historical ircII behavior. It seems more sensible to cap the indent level at 1/3 of the screen's width and indent it to there. EPIC4-2.0 *** News -- 02/03/2004 -- ERASE_LINE behavior slightly modified The ERASE_LINE input function has been modified to not overwrite the input buffer when it is called on an empty input line. EPIC4-1.2.9 *** News -- 01/25/2004 -- Slight changes to /ON SSL_SERVER_CERT |Rain| pointed out that /ON SSL_SERVER_CERT was not terribly useful because $1 (cert subject) and $2 (cert issuer) could contain spaces, and so you couldn't really use $1 and $2 to fetch them. He proposed that we hook a url-encoded version of the subject and issuer (so they won't contain any spaces) and you can use $urldecode($1) to get the subject and $urldecode($2) to get the issuer. EPIC4-1.2.7 *** News -- 01/18/2004 -- New functions $cofilter() and $corfilter(). These are compliments of $copattern(). *** News -- 12/27/2003 -- New $dccctl() modes. Added $dccctl(get [ref] writable) and $dccctl(writables). This is useful for sending lots of data out on a raw or chat dcc. Epic will (iirc) normally drop the data in such cases rather than blocking or buffering. This isn't a complete solution. Writable means that a certain amount of data can be written, so data can still be lost. *** News -- 12/27/2003 -- Added /SET DCC_DEQUOTE_FILENAMES This turns the double quoted space decoding feature added recently for received DCC SEND requests on and off. *** News -- 12/27/2003 -- $rest() also removes chars from the right. Using a negative first arg causes $rest() to strip chars from the right hand side of the string. This makes it a compliment to $right() as well as $left(), but if a script relies on it returning the original string the way it did before, it may now cause compatibility problems. If it does, talk to CrazyEddy on #epic efnet. *** News -- 12/27/2003 -- Added $splicec() in functions script. This works much the same way as $splice(), but on characters, not words. It won't work seemlessly on local vars though. EPIC4-1.2.5 *** News -- 12/13/2003 -- Default of AUTO_REJOIN is now OFF Per the poll taken on the epic mailing list, the preponderance of opinion being in favor of changing the default value of AUTO_REJOIN to OFF, as of commit 672, the default value is changed. You will want to put /SET AUTO_REJOIN ON in your ~/.epicrc to get the old value. *** News -- 12/11/2003 -- Command parser ignores spaces after semicolons Since the dawn of the modern ircII syntax, the following syntax has caused consternation with scripters: /eval {two; three} because it runs the /two alias, and then outputs the text "three" to the current target (channel-or-query). This is because the command parser does not ignore spaces after semicolons; a leading space results in ircII assuming you are wanting to run the empty command (yes, there is actually an empty command), which just happens to be the /say command. Well, enough is enough. I'm putting a stop to this. If you depend on this horrifically broken behavior, then the time has come to switch to using /SAY. The rest of us will enjoy not having to freak out about spaces after semicolons. *** News -- 12/11/2003 -- New /WINDOW verb, /WINDOW SCROLLADJ [ON|OFF] When the default value of ON is used, when you "GROW" a window, or otherwise cause the size of a window to be increased, the top of the scrollable view is moved back so you can see more of the lines that have recently scrolled off the screen. If you change this to OFF, the behavior is more like ircII, where when something scrolls off the window, nothing will bring it back unless you go into scrollback mode. *** News -- 12/11/2003 -- New /ON, /ON WINDOW_BEFOREKILL The value of $* is the window refnum (number) of the window that is about to be killed. You cannot stop the kill from happening, but you do get this opportunity to save any information about the window that you might want. *DANGER*DANGER*DANGER* EPIC does not try to stop you from doing something really dumb in this /ON, and if you try to change the window being killed, or you affect the visibility or invisibility of any window, you run the definite chance of confusing EPIC and causing a panic. This is not a bug, this is just your peril if you ignore this warning. Use /DEFER to run commands safely from within /ONs. EPIC4-1.2.3 *** News -- 12/05/2003 -- New built in function $numlines() (fudd) The first argument to $numlines() is the width of a line (which you can get from $geom() if you want to use that), and the rest of the text is some text. The return value is the number of screen lines that will be taken up if you were to /echo the text to a window of the given number of columns. *** News -- 12/03/2003 -- New command line arguments, -o and -O POSIX termios allowed systems to define "extended characters" (IEXTEN) which are interpreted by the kernel and are not passed onto the application. In 4.4BSD in particular, these "extended characters" are ^V and ^O. This means that by default, you cannot use these two characters in a binding. By using the -o option, you ask EPIC to specifically turn these extended characters on, and by using the -O option, you ask epic to specifically turn these extended characters OFF. If you do not specify either option, epic does not change the current default value. EPIC4-1.2.2 *** News -- 12/03/2003 -- New /WINDOW verb, /WINDOW SWAPPABLE [ON|OFF] You may now control whether your windows are "swappable". The default (backwards-compatable) value is ON. If you set this to OFF on a visible window, then that visible window cannot be made hidden, via /WINDOW HIDE or /WINDOW SWAP. If you set this to OFF on a hidden window, then that hidden window cannot be made visible, via /WINDOW SHOW, /WINDOW SWAP, /WINDOW BACK or /WINDOW NEXT. You must reset this value back to ON before you try to swap the window back in or out. *** News -- 12/03/2003 -- New /SET, /SET STATUS_NOSWAP Whenever a window has /WINDOW SWAPPABLE OFF, the %{1}W status expando will expand to the value of this /SET *** News -- 12/03/2003 -- SWAPPABLE accessable via $windowctl() You can now $windowctl(GET <refnum> SWAPPABLE) to get the window <refnum>'s current swappable status.
2005-04-04Changes 2.2.5:adam12-277/+51
* Support for Perl scripts is turned off * Support for skins compatible with Gadu-Gadu * Fixes and stabilisation of the code for status changes * Fixes in tlen.pl plug-in * Now builds basic modules on MacOSX * Improvements of "dockapp" plug-in
2005-04-03Update to version 1.5.286. It's hard to say what changed since 1.5.277fredb2-9/+13
exactly, but 1.5.277 is no longer available on the website. There are no readily apparent functional changes.
2005-04-03- Note import of dircproxy-devel branchadrianp1-1/+2
2005-04-03- Import of the 1.1.x dircproxy devel branchadrianp7-0/+107
dircproxy is an IRC proxy server ("bouncer") designed for people who use IRC from lots of different workstations or clients, but wish to remain connected and see what they missed while they were away. You connect to IRC through dircproxy, and it keeps you connected to the server, even after you detach your client from it. While you're detached, it logs channel and private messages as well as important events, and when you re-attach it'll let you know what you missed. This can be used to give you roughly the same functionality as using ircII and screen together, except you can use whatever IRC client you like, including X ones! * THIS IS AN UNSTABLE DEVELOPMENT RELEASE OF DIRCPROXY. IT HAS HIGHER * THEN USUAL RISK OF DESTROYING YOUR SYSTEM. * * FOR A STABLE RELEASE USE THE LATEST 1.0.x
2005-04-03- Add CONFLICTS for the upcoming import of dircproxy-devel which is the 1.1.xadrianp1-1/+3
branch.
2005-04-02We need to explicitly set PKGNAME to work around a problem in xemacs' ↵jwise1-1/+2
Makefile.pkg.
2005-04-02Update psi to 0.9.3. Changes since 0.9.2:jdolecek4-57/+64
* Notification when a user is typing * Advanced Data Forms capability (x:data) * Mac version uses the menu bar and also has a new color scheme * Slightly improved new user dialog * Drag and drop File Transfer * Ability to specify a status messages when going offline * The tray icon under X11 should now be more beautiful * Show self-contact is now a toolbar button instead of a normal option * There is now an option for all chat windows to be compact by default * Bugfix: file transfer sometimes wouldn't send the whole file * Fixed many other small bugs Update provided by Piotr Kalinowski in PR pkg/29285.
2005-03-31Relinquish stewardship. I do not use this IRC server anymore and I don'tseb1-2/+2
have enough time to update the package.
2005-03-26- Update ircservices from 5.0.44 -> 5.0.49adrianp3-7/+8
2005/03/06 .49 Added Russian language file, courtesy of Alexander Zverev <tty@inbox.ru> 2005/03/05 Services will now accept multiple PROTOCTL messages from the Unreal ircd (as implemented in Unreal CVS). 2005/03/04 Added support for +I/+j channel modes in Unreal 3.2.3. Reported by Kieron Thwaites <ron2k@webmail.co.za> 2005/02/23 .48 Fix careless bug leading to possible crash on exit or rehash. 2005/02/23 .47 Channels no longer expire while an auto-op user is in the channel; expiration is delayed until the time specified by CSExpire after the last such user leaves the channel. Reported by Anton Wolkov <phan70m@gmail.com> 2005/02/23 Added user IP addresses to the OperServ LISTUSER debug command as well. 2005/02/21 .46 Fixed some warnings during compilation. 2005/02/21 Fixed bug causing modified files to not be recompiled properly when compiling with GNU make 3.79. 2005/02/20 The OperServ debug command LISTUSERS now includes the IP address for each user before the user's mode string. 2005/02/19 Added workaround for GCC bugs on PowerPC systems. 2005/01/27 Fixed careless error in "make distclean". Reported by Stanislav Zahariev <sofit@evronet.tv> 2005/01/21 .45 Added HybServ support to convert-db. Suggested by Stanislav Zahariev <sofit@evronet.tv> 2005/01/21 convert-db is now recompiled properly if the compilation options passed to the configure script are changed. 2005/01/13 IRC operators are now properly shown the operator version of ChanServ HELP LIST. Reported by Kieron Thwaites <ron2k@webmail.co.za>
2005-03-26- Update from 0.5.5 to 0.5.6adrianp2-6/+6
Set binmode utf8 on STDOUT, fixes Perl 5.8.5 (By dgl) Revert to using $! as gethostbyname error message, still don't get any useful error if Socket6 is installed though.. (By dgl) /charset command (By dgl) Set utf-8 flag on, always turn input into utf-8. (By dgl) Fix utf-8 input handling (By dgl) Non-supported browsers #10 (By dgl Change login options to comma seperated list and document. (By dgl) gethostbyname returns error in $? not $! (By dgl)
2005-03-25I put this package in security, not chat; update the buildlink file tonathanw1-2/+2
match.
2005-03-24Update jmcneill's email address.wiz1-2/+2
2005-03-24Add libotr and gaim-otr.nathanw1-1/+3
2005-03-24Initial import of gaim-otr-2.0.1.nathanw5-0/+86
This is the Off-The-Record messaging plugin for gaim.
2005-03-24Initial import of libotr-2.0.1.nathanw5-0/+86
This is the portable OTR Messaging Library, as well as the toolkit to help you forge messages. Off-the-Record (OTR) Messaging allows you to have private conversations over instant messaging by providing: Encryption No one else can read your instant messages. Authentication You are assured the correspondent is who you think it is. Deniability The messages you send do not have digital signatures that are checkable by a third party. Anyone can forge messages after a conversation to make them look like they came from you. However, during a conversation, your correspondent is assured the messages he sees are authentic and unmodified. Perfect forward secrecy If you lose control of your private keys, no previous conversation is compromised.
2005-03-24Remove FreeBSD RCS Ids. pkgsrc has diverged too much for syncing to bewiz1-2/+1
useful.
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-20Remove useless buildlink3.mk file.salo1-21/+0
jabberd doesn't provide any libraries to link to.
2005-03-20Backport fix for DoS attack in handling SSL connections from 1.4.3.salo3-3/+33
Bump PKGREVISION.
2005-03-20Fix build error under FreeBSD 5.3. EAI_NODATA is not defined.reed2-1/+18
Okay'd by maintainer, Otto H. Tested under NetBSD 1.6.2 and FreebSD 5.3. (I later saw same fix in irssi CVS.) This will close PR pkg/28534.
2005-03-19Enable build of the proxy module, as requested in PR pkg/25517. Note thatjmmv2-5/+7
the report asked for a conditional build through a knob, but I can't see a reason to not enable it by default (so it's now unconditionally built). Bump PKGREVISION to 3 due to this. While here, force removal of the modules directory instead of only removing it when empty. Any package installing modules must depend on irssi to handle this shared directory.
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 a comment noting where lib/gaim/ is removed.jmmv1-1/+2
2005-03-16Add print-PLIST hooks to avoid removing the lib/gaim directory.jmmv1-1/+4
2005-03-10The utmp support is only used on Linux, so conditionalize inclusion oftv2-1/+16
utmp.h on __linux__ as well.
2005-03-10Add sane default for INADDR_LOOPBACK to assist compilation on Interix.tv2-1/+17
2005-03-10This package is libtoolized, so don't add -fPIC explicitly. Since thistv3-5/+6
changes the static .a lib, bump PKGREVISION.
2005-03-10Make build on Interix (no socklen_t, fd_set requires <sys/time.h>).tv3-2/+16
2005-03-07This package executes "flex", so USE_GNU_TOOLS+=lex.tv1-1/+2
2005-03-05Update riece to 1.0.7a.uebayasi3-11/+31
* Major changes in 1.0.7 ** New add-on riece-toolbar. (ueno) riece-toolbar displays icons on toolbar. Currently not all the icons are included. ** New add-on riece-keepalive. (ueno) riece-keepalive spontaneously sends a PING message to server to keep an IRC connection. ** New add-on riece-google. (bg66) riece-google searches on Google and sends the result to the channel. ** New add-on riece-eval. (bg66) riece-eval evaluates elisp expression and sends the result to the channel. ** Some add-ons are enabled by default. (ueno) riece-log, riece-alias, riece-ctlseq, and riece-keyword are now enabled by default. ** New command riece-command-suspend-resume. (ueno) riece-command-suspend-resume saves or restores the current window configuration. ** Preserve cursor position when clicking button widget. (ueno) ** Decorate modeline indicator with faces. (ueno) ** Count users in NAMES reply. (ueno) ** New user option riece-part-message. (ueno) ** Add-ons located in riece-addon-directory are automatically enabled. (ueno) ** Default value of riece-buffer-dispose-function is now kill-buffer. (ueno) ** Backtrace when encountered an error in process-filter. (ueno) ** Ask channel key to user when it is required. (ueno) ** Automatic buffer shrinking is now disabled by default. (ueno) ** New directory structure for riece-log. (ueno) ** Fixed a bug in user-renamed signal-filter. (kaoru) ** Fixed a bug in riece-command-enable-addon and riece-command-disable-addon. (yoichi) * Major changes in 1.0.6 ** Bundle url-riece, a backend of url-irc which comes with the recent GNU Emacs. (Yamato-san) ** New user option riece-url-regexp-alist to allow users to define mapping from arbitrary strings (such as "Bug#12345") to URL. (This feature is a backport from Liece) (ueno) ** New modeline indicator which represents user's channel operator status in the current channel. (ueno, thanks to k-to) ** Remove multiple lines at a time when shrinking channel buffers. Number of lines to be removed is controlled by riece-shrink-buffer-remove-lines option. (ueno, thanks to ysjj) ** riece-alias-alist now works again. (ueno) ** Fixed a bug in flow control for sending long messages, introduced in 1.0.4. (ueno) ** New command riece-submit-bug-report to generate a template for good problem report. (ueno) ** Accept radical IRC proxy programs which break with tradition of the original IRC server implementation. (ueno, thanks to k-to san) ** New key bind C-c # <number> to switch channel by number. (ueno, thanks to ysjj) ** If a prefix-argument is given, riece-yank sends message as a NOTICE. (bg66)
2005-03-04- Sort PLIST to make pkglint happyadrianp2-4/+4
- Move USE_INET6 BUILD_DEFS as pointed out by Georg Schwarz on tech-pkg@
2005-03-02Make this package build on NetBSD-1.6*.minskim1-2/+6
- Bypass the iconv library test in configure since the test fails to detect GNU libiconv. - Use ncurses on NetBSD-1.x.
2005-02-28Update to 0.73. From PR #29548. Thank you evan AT nixsys.bz.reed2-5/+6
From changelog: 0.73 - 02/06/2005 * Fixed a small compilation bug on 64-bit architectures. * Now shows a different prompt when away message is set. * Profile/away display now at least shows line breaks, so things are a bit easier to read. It's still a little buggy as before, and no other HTML is supported. * HTML stripper now strips &nbsp; * Ported to Bell Labs' Plan 9 operating system. I believe this is the first AIM client for this platform, so it's quite neat. Thanks a bunch to Thomas Miller for giving me the idea and support, and Takeshi Yamanashi and the rest of tip9ug. jp for providing a Plan 9 system to use while I got my own system set up (and for helping me get that set up, too). Thanks! * Added a 5-minute keepalive to IMComm by default. * Added two new commands: A and P, to get just the away message or profile for a user. * Finally displays error message when IM is sent to a user who is not online. * Added support for talking to users with @mac.com accounts. * Buddy icon support (and accompanying changes in imcomm's structure) added. This is still somewhat experimental. * Support added for sending and receiving messages to and from ICQ users. ICQ users can add your screen name to your contact list, and you can add their numeric UIN's to your buddy list.
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-25Added bsflite package. It was packaged by leitec of leitec.orgreed1-1/+2
and is from pkgsrc-wip. bsflite is a lightweight AIM client for the command line.
2005-02-25Initial import of bsflite-0.72.reed4-0/+34
From the BSFlite homepage: BSFlite is a rather small and "minimalistic" client for AOL(R)'s Instant Messenger(TM) service. Instead of having a full screen console interface, BSFlite employs a command shell interface that allows your fingers to do all of the work without needlessly sifting through windows. This is from leitec of leitec.org via pkgsrc-wip.
2005-02-23Fix build with gnutls-1.2.0, and depend on it.wiz3-2/+27
Bump PKGREVISION because of dependency change.
2005-02-23Add RMD160 digests in addition to SHA1 onesagc91-91/+217
2005-02-22Might as well be MAINTAINER for i2cb{,d}. Thanks for making these, hubert!jwise2-4/+4
2005-02-22Add and enable gtmess.minskim1-1/+2
2005-02-22Import gtmess-0.9. Packaged by Jung-Min Seo, aka luapz, and slightlyminskim4-0/+53
modified by me. Gtmess is a console-based MSN Messenger client with the following features. * supports MSNP9 protocol version * portable to many unix (POSIX) systems * console interface (using curses) * full unicode (UTF-8) support for input and output * multiple threads (using pthreads) * SSL support (using OpenSSL) * notification window (external Tcl/Tk script) * spoof typing user * HTTP gateway
2005-02-21Sign over maintainership to tech-pkg@hubertf7-14/+14
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-15Fixed a quoting error ($ => $$) in a sed expression. Bumped PKGREVISION.rillig1-2/+3
Approved by xtraeme.
2005-02-14Fix quoting.uebayasi1-3/+3