Revision 6f1f82c8cb2e3613ce62f384135daea40f42c5f7
markdoliner at pidgin.im
markdoliner at pidgin.im
Mon Mar 26 01:00:11 EDT 2007
o -----------------------------------------------------------------
| Revision: 6f1f82c8cb2e3613ce62f384135daea40f42c5f7
| Ancestor: b2e874992af02233ce26345000b3a7c14d60b7d4
| Author: markdoliner at pidgin.im
| Date: 2007-03-26T04:59:53
| Branch: im.pidgin.pidgin
|
| Modified files:
| libpurple/protocols/bonjour/bonjour.c
| libpurple/protocols/bonjour/issues.txt
|
| ChangeLog:
|
| Minor cleanup
|
| ============================================================
| --- libpurple/protocols/bonjour/bonjour.c a345c390a97ff0719faf1e1240d787d2a84a0691
| +++ libpurple/protocols/bonjour/bonjour.c 561380f6ccdca3d2f24f3f812692ed47de682c15
| @@ -460,7 +460,7 @@ initialize_default_account_values()
| else if (((fullname = getlogin()) != NULL) && (fullname[0] != '\0'))
| ;
| else
| - fullname = _("John Noname");
| + fullname = _("Purple Person");
| /* Make sure fullname is valid UTF-8. If not, try to convert it. */
| if (!g_utf8_validate(fullname, -1, NULL))
| {
| @@ -548,7 +548,8 @@ initialize_default_account_values()
| /* Try to figure out a good host name to use */
| /* TODO: Avoid 'localhost,' if possible */
| if (gethostname(hostname, 255) != 0) {
| - purple_debug_warning("bonjour", "Error %d when getting host name. Using \"localhost.\"\n", errno);
| + purple_debug_warning("bonjour", "Error when getting host name: %s. Using \"localhost.\"\n",
| + strerror(errno));
| strcpy(hostname, "localhost");
| }
| default_hostname = g_strdup(hostname);
| ============================================================
| --- libpurple/protocols/bonjour/issues.txt f635921e355432b7fbd68c09407c0aec6e71ac9b
| +++ libpurple/protocols/bonjour/issues.txt 00d82004dad19e94fc9bca05b053382fb0d74535
| @@ -1,18 +1,9 @@
| ==========================================
| ============= Known issues ===============
| ==========================================
|
| +* Status changes don't work
| +* Avatars
| +* File transfers
| +* Typing notifications
| +* Check if it works on win32
| -(1) Messages are limited in length (5000 char) <-- FIXED
| -(2) Messages formated by Gaim didn't work <-- FIXED
| -(3) iChat sends the size in points, Gaim wants a 1..7 range <-- FIXED Gaim2iChat (iChat2Gaim left)
| -(4) When the other end closes the socket without sending the end of stream, Gaim crashes and coredump <-- FIXED
| -(5) I18n
| -(6) Status changes don't work
| -(7) When the conversation is closed in Gaim with the X button, we don't send the end of stream <-- FIXED
| -(8) The server socket is not reusable, after an error, you cannot connect for a while <-- FIXED
| -(9) Avatars
| -(10) File transfers
| -(11) Typing notifications
| -(12) Gaim HTML syntax is not shown properly <-- FIXED
| -(13) Strange messages creates coredump <-- FIXED
| -(14) Check if it works on win32
To get the patch for this revision, please do this:
mtn log --last 1 --diffs --from 6f1f82c8cb2e3613ce62f384135daea40f42c5f7
More information about the Commits
mailing list