gaim/gaim

oh dot seventy nine

2004-06-24, Sean Egan
1a22f9828300
Parents ed64835f6556
Children 70912e31ffc5
oh dot seventy nine
--- a/ChangeLog Thu Jun 24 19:08:30 2004 -0400
+++ b/ChangeLog Thu Jun 24 19:08:30 2004 -0400
@@ -1,6 +1,6 @@
Gaim: The Pimpin' Penguin IM Client that's good for the soul!
-version 0.79cvs:
+version 0.79 (06/24/2004):
New Features:
* Display name changes are now shown in the conversation windows.
(Robert Mibus)
@@ -34,8 +34,7 @@
logged in using the web messenger method
Bug Fixes:
- * Switched Yahoo! (not Japan) over to using Web Messenger auth
- again, like 0.75, due to last minute protocol changes
+ * Fixed Yahoo! authentication problems. (Cerulean Studios)
* Non-looping animated icons no longer cause Gaim to freeze
* Flashing windows should work again for unix in window managers that
support the URGENT hint (Etan Reisner)
--- a/NEWS Thu Jun 24 19:08:30 2004 -0400
+++ b/NEWS Thu Jun 24 19:08:30 2004 -0400
@@ -1,5 +1,13 @@
-=[ Gaim ]=- The Pimpin' Penguin IM Client That's Good For The Soul!
+0.79 (06/24/2004):
+ Sean: We've moved to a three-week release cycle which we'll
+ hopefully be able to keep up more realistically than a two-week
+ cycle. Yahoo! went and broke last night, but it's fixed now thanks
+ to a quick fix sent in by Cerulean Studios this morning. Reports say
+ they'll continue to try to break us, though, so don't be surprised
+ if your Yahoo cuts out again.
+
0.78 (05/30/2004):
Luke: A very long time, once again, since the last release. I think
its mostly worth it. A few of you will still have trouble with msn
--- a/configure.ac Thu Jun 24 19:08:30 2004 -0400
+++ b/configure.ac Thu Jun 24 19:08:30 2004 -0400
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT([gaim], [0.79cvs], [gaim-devel@lists.sourceforge.net])
+AC_INIT([gaim], [0.79], [gaim-devel@lists.sourceforge.net])
AC_CANONICAL_SYSTEM
AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
--- a/src/protocols/yahoo/yahoo.c Thu Jun 24 19:08:30 2004 -0400
+++ b/src/protocols/yahoo/yahoo.c Thu Jun 24 19:08:30 2004 -0400
@@ -1496,6 +1496,8 @@
*/
shaUpdate(&ctx1, pass_hash_xor1, 64);
+ if (y >= 3)
+ ctx1.sizeLo = 0x1ff;
shaUpdate(&ctx1, magic_key_char, 4);
shaFinal(&ctx1, digest1);
@@ -1587,6 +1589,8 @@
*/
shaUpdate(&ctx1, crypt_hash_xor1, 64);
+ if (y >= 3)
+ ctx1.sizeLo = 0x1ff;
shaUpdate(&ctx1, magic_key_char, 4);
shaFinal(&ctx1, digest1);
--- a/src/protocols/yahoo/yahoo.h Thu Jun 24 19:08:30 2004 -0400
+++ b/src/protocols/yahoo/yahoo.h Thu Jun 24 19:08:30 2004 -0400
@@ -27,8 +27,6 @@
#include "prpl.h"
-#define YAHOO_WEBMESSENGER
-
#define YAHOO_PAGER_HOST "scs.msg.yahoo.com"
#define YAHOO_PAGER_PORT 5050
#define YAHOO_PROFILE_URL "http://profiles.yahoo.com/"