Commit 2378b9e4 authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

Silenced broken code and updated for 1.0 beta 8 release.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@7287 b35dd754-fafc-0310-a699-88a17e54d16e
parent b22d53c6
...@@ -162,12 +162,37 @@ hr { ...@@ -162,12 +162,37 @@ hr {
<h2>Major Known Issues</h2> <h2>Major Known Issues</h2>
<ul> <ul>
<li>Many issues with Yahoo support that I haven't been able to track down (yahoo supported moved to post-1.0)</li> <li>Many issues with Yahoo support that I haven't been able to track down (yahoo supported moved to post-1.0)</li>
<li>XMPP away status not shown in AIM/ICQ service</li> <li>I haven't been able to test SIP/SIMPLE support well. Please report if you have success with it.</li>
<li>Many issues with ICQ as joscar doesn't fully support ICQ yet</li> <li>Some outstanding issues with ICQ as joscar doesn't fully support ICQ yet</li>
</ul> </ul>
<h2>1.0 Beta 7 -- <span style="font-weight: normal;">February 6, 2007</span></h2> <h2>1.0 Beta 8 -- <span style="font-weight: normal;">February 26, 2007</span></h2>
<b>Bug Fixes</b>
<ul>
<li>[<a href='http://www.igniterealtime.org/issues/browse/GATE-122'>GATE-122</a>] - XMPP away/whatever statuses were not being reflected in OSCAR service</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/GATE-142'>GATE-142</a>] - MSN did not properly set logged out state when connection closed</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/GATE-166'>GATE-166</a>] - ICQ contacts were being auto-removed</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/GATE-175'>GATE-175</a>] - MSN was not letting some users log in, I could not reproduce, but a change I made likely fixed</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/GATE-176'>GATE-176</a>] - AIM HTML entites were not translated properly</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/GATE-181'>GATE-181</a>] - Gateway "list of users or groups" permissions check fixed</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/GATE-182'>GATE-182</a>] - Properly handling multiple resources with same priority</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/GATE-183'>GATE-183</a>] - MSN version update was causing failed logins</li>
</ul>
<b>Improvements</b>
<ul>
<li>[<a href='http://www.igniterealtime.org/issues/browse/GATE-135'>GATE-135</a>] - Registration failed in web interface now actually indicates -why- it failed</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/GATE-144'>GATE-144</a>] - MSN Winks and Nudges are now relayed to XMPP user via headlines</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/GATE-147'>GATE-147</a>] - Registrations page ajax-ified</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/GATE-39'>GATE-39</a>] - EXPERIMENTAL SIP/SIMPLE Support added</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/GATE-113'>GATE-113</a>] - Retrieval of ICQ offline messages now occurs upon login</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/GATE-140'>GATE-140</a>] - Typing notification support added for MSN</li>
<li>Silenced annoying Session X idle messages in debug log.</li>
</ul>
<h2>1.0 Beta 7 -- <span style="font-weight: normal;">February 6, 2007</span></h2>
<b>Bug Fixes</b> <b>Bug Fixes</b>
<ul> <ul>
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<name>IM Gateway</name> <name>IM Gateway</name>
<description>Provides gateway connectivity to the other public instant messaging networks</description> <description>Provides gateway connectivity to the other public instant messaging networks</description>
<author>Daniel Henninger</author> <author>Daniel Henninger</author>
<version>1.0 Beta 7</version> <version>1.0 Beta 8</version>
<date>02/06/2007</date> <date>02/26/2007</date>
<minServerVersion>3.2.0</minServerVersion> <minServerVersion>3.2.0</minServerVersion>
<databaseKey>gateway</databaseKey> <databaseKey>gateway</databaseKey>
<databaseVersion>2</databaseVersion> <databaseVersion>2</databaseVersion>
......
...@@ -473,16 +473,17 @@ public class OSCARSession extends TransportSession { ...@@ -473,16 +473,17 @@ public class OSCARSession extends TransportSession {
if (nickname == null || nickname.matches("/^\\s*$/")) { if (nickname == null || nickname.matches("/^\\s*$/")) {
nickname = buddy.getScreenname(); nickname = buddy.getScreenname();
} }
try { // Doesn't work yet so disabling.
if (nickname.equalsIgnoreCase(buddy.getScreenname())) { // try {
Integer buddyUIN = Integer.parseInt(buddy.getScreenname()); // if (nickname.equalsIgnoreCase(buddy.getScreenname())) {
Log.debug("REQUESTING SHORT INFO FOR "+buddyUIN); // Integer buddyUIN = Integer.parseInt(buddy.getScreenname());
request(new MetaFullInfoRequest(getUIN(), (int)nextIcqId(), buddyUIN)); // Log.debug("REQUESTING SHORT INFO FOR "+buddyUIN);
} // request(new MetaFullInfoRequest(getUIN(), (int)nextIcqId(), buddyUIN));
} // }
catch (NumberFormatException e) { // }
// Not an ICQ number then ;D // catch (NumberFormatException e) {
} // // Not an ICQ number then ;D
// }
if (nickname == null) { if (nickname == null) {
nickname = buddy.getScreenname(); nickname = buddy.getScreenname();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment