2008-09-07Guess we're not done with this yet... adium-1.3 1.3.1
Eric Richie [Sun, 07 Sep 2008 19:40:19 +0000] rev 123
Guess we're not done with this yet...

2008-09-07Debug build for 1.3.1. adium-1.3
Eric Richie [Sun, 07 Sep 2008 18:06:28 +0000] rev 122
Debug build for 1.3.1.

2008-09-07Makefile for 1.3.1. adium-1.3
Eric Richie [Sun, 07 Sep 2008 17:33:52 +0000] rev 121
Makefile for 1.3.1.

2008-09-05Added some visibility debugging statements adium-1.3
Evan Schoenberg [Fri, 05 Sep 2008 12:49:08 +0000] rev 120
Added some visibility debugging statements

2008-09-05We can now import the images in iChat Transcripts rather than throwing an exception. Thanks to stewa in #10912 for noting the location of the previous exception and providing a patch to workaround the issue; this commit instead fixes it. Fixes #10912. adium-1.3
Evan Schoenberg [Fri, 05 Sep 2008 11:46:36 +0000] rev 119
We can now import the images in iChat Transcripts rather than throwing an exception. Thanks to stewa in #10912 for noting the location of the previous exception and providing a patch to workaround the issue; this commit instead fixes it. Fixes #10912.

2008-09-05Fixed one case of bizarre contact hiding behavior (but not the bad one): contacts which aren't in metacontacts no longer hang around as offline contacts after an account disconnects. Removing our tracking of them within the delayed notification block meant that the offline contact hiding controller had no idea it should make them invisible. adium-1.3
Evan Schoenberg [Fri, 05 Sep 2008 11:11:47 +0000] rev 118
Fixed one case of bizarre contact hiding behavior (but not the bad one): contacts which aren't in metacontacts no longer hang around as offline contacts after an account disconnects. Removing our tracking of them within the delayed notification block meant that the offline contact hiding controller had no idea it should make them invisible.

2008-09-05Merged [25121]: Protect against getting NSNull when we expect NSDictionary in Facebook buddy list parsing, too. Refs #10067 adium-1.3
Evan Schoenberg [Fri, 05 Sep 2008 10:24:38 +0000] rev 117
Merged [25121]: Protect against getting NSNull when we expect NSDictionary in Facebook buddy list parsing, too. Refs #10067

2008-09-05Backported [25119]: Project updates on trunk for the new Hungarian localization adium-1.3
Evan Schoenberg [Fri, 05 Sep 2008 03:57:04 +0000] rev 116
Backported [25119]: Project updates on trunk for the new Hungarian localization

2008-09-05Merged [25116] and [25117]: Hungarian localization from Péter Tutervai adium-1.3
Evan Schoenberg [Fri, 05 Sep 2008 03:54:43 +0000] rev 115
Merged [25116] and [25117]: Hungarian localization from Péter Tutervai

2008-09-05Merged [25114]: Danish updates. Fixes #10803 adium-1.3
Evan Schoenberg [Fri, 05 Sep 2008 03:49:13 +0000] rev 114
Merged [25114]: Danish updates. Fixes #10803

2008-09-05Merged [25112]: If `-[AIKeychain deleteInternetPasswordForServer:::::::::]` is called, an existing keychain item is found, there is an error deleting the keychain item, and outError is a non-NULL pointer to an NSError*, *outError should be set to nil rather than left unchanged (and therefore potentially junk data). adium-1.3
Evan Schoenberg [Fri, 05 Sep 2008 02:59:02 +0000] rev 113
Merged [25112]: If `-[AIKeychain deleteInternetPasswordForServer:::::::::]` is called, an existing keychain item is found, there is an error deleting the keychain item, and outError is a non-NULL pointer to an NSError*, *outError should be set to nil rather than left unchanged (and therefore potentially junk data).

Also, the `NSError` created by the deletion failure should be retained to get it outside the autorelease pool, then autoreleased after the local pool is released.

Fixes a crash when `-[AdiumPasswords _upgradeAccountPasswordKeychainEntries]` runs in some situations. Fixes #10792.

2008-09-05And here we see the first instantiation of the dangers of the backport rather than merge which the trunk to adium-1.3 divergance can create: Readded a vital sequenceNumber++ which I missed when backporting [25100] in [25101]. Fixes #10964 (note that this bug does not exist in trunk, since it was a backport error) adium-1.3
Evan Schoenberg [Fri, 05 Sep 2008 00:17:56 +0000] rev 112
And here we see the first instantiation of the dangers of the backport rather than merge which the trunk to adium-1.3 divergance can create: Readded a vital sequenceNumber++ which I missed when backporting [25100] in [25101]. Fixes #10964 (note that this bug does not exist in trunk, since it was a backport error)

2008-09-04Re-applied r25109 (from trunk) on 1.3 branch: Changed the text view to plain-text, so that using the TextEdit/New Window with Selection service creates a plain text document rather than a rich text document. adium-1.3
Peter Hosey [Thu, 04 Sep 2008 22:46:02 +0000] rev 111
Re-applied r25109 (from trunk) on 1.3 branch: Changed the text view to plain-text, so that using the TextEdit/New Window with Selection service creates a plain text document rather than a rich text document.

2008-09-04Merged from trunk r25106 to adium 1.3 branch: adium-1.3
Matt Handley [Thu, 04 Sep 2008 02:59:48 +0000] rev 110
Merged from trunk r25106 to adium 1.3 branch:
Patch from darkxsun fixes #10852.

2008-09-04Missed one. adium-1.3
Eric Richie [Thu, 04 Sep 2008 02:18:44 +0000] rev 109
Missed one.

2008-09-04Version up to 1.3.1b2 adium-1.3
Eric Richie [Thu, 04 Sep 2008 01:54:02 +0000] rev 108
Version up to 1.3.1b2

2008-09-04Merged [25102]: Fixed and cleaned up a little bit handling of visibility preference changes as they relate to offline contacts and the offline contact group. Man, this code is ridiculous. Fixes #10420 adium-1.3
Evan Schoenberg [Thu, 04 Sep 2008 01:27:18 +0000] rev 107
Merged [25102]: Fixed and cleaned up a little bit handling of visibility preference changes as they relate to offline contacts and the offline contact group. Man, this code is ridiculous. Fixes #10420

2008-09-04Merged [25100]: adium-1.3
Evan Schoenberg [Thu, 04 Sep 2008 00:47:28 +0000] rev 106
Merged [25100]:
JSON makes no guarantees about what class of object it will return, and we were previously assuming that we would always receive `NSDictionary`, `NSString`, and `NSNumber` values in the predicted pattern. We're now resistant to other things being returned - most commonly an `[NSNull null]` in place of an expected value.

I'm fairly confident this fixes #10067.

2008-09-04im.pidgin.pidgin @ 9e35a4c328 (libpurple 2.5.2mtn) with msn-pecan 0.0.15-14-gb438cbe which includes the patch discussed recently on adium-devl (Take two; previous commit was incomplete) adium-1.3
Evan Schoenberg [Thu, 04 Sep 2008 00:33:03 +0000] rev 105
im.pidgin.pidgin @ 9e35a4c328 (libpurple 2.5.2mtn) with msn-pecan 0.0.15-14-gb438cbe which includes the patch discussed recently on adium-devl (Take two; previous commit was incomplete)

2008-09-04im.pidgin.pidgin @ 9e35a4c328 (libpurple 2.5.2mtn) with msn-pecan 0.0.15-14-gb438cbe which includes the patch discussed recently on adium-devl adium-1.3
Evan Schoenberg [Thu, 04 Sep 2008 00:28:18 +0000] rev 104
im.pidgin.pidgin @ 9e35a4c328 (libpurple 2.5.2mtn) with msn-pecan 0.0.15-14-gb438cbe which includes the patch discussed recently on adium-devl

2008-09-04Merged [25096]: German localization updates. Fixes #10803. Fixes #10801 adium-1.3
Evan Schoenberg [Thu, 04 Sep 2008 00:26:22 +0000] rev 103
Merged [25096]: German localization updates. Fixes #10803. Fixes #10801

2008-09-04merged [25094]: Stop requesting incoming Facebook messages when Facebook disconnects. Fixes #10872. Fixes #10588. Both were symptoms of debug logging which would run amok when repeatedly faced with the invalid requests and invalid responses of requesting incoming messages for a disconnected Facebook account. adium-1.3
Evan Schoenberg [Thu, 04 Sep 2008 00:20:54 +0000] rev 102
merged [25094]: Stop requesting incoming Facebook messages when Facebook disconnects. Fixes #10872. Fixes #10588. Both were symptoms of debug logging which would run amok when repeatedly faced with the invalid requests and invalid responses of requesting incoming messages for a disconnected Facebook account.

2008-09-03Merged [25092]: Remove $$ and ::$ emoticon equivalents. Readds "Wearing Sunglasses" while removing the equivalents of 8) and 8-) from Nerd and giving them to "Wearing Sunglasses." Fixes #10949. Let's hope I didn't fail svn 1.5 on this one. adium-1.3
Zachary West <zacw@adiumx.com> [Wed, 03 Sep 2008 14:48:23 +0000] rev 101
Merged [25092]: Remove $$ and ::$ emoticon equivalents. Readds "Wearing Sunglasses" while removing the equivalents of 8) and 8-) from Nerd and giving them to "Wearing Sunglasses." Fixes #10949. Let's hope I didn't fail svn 1.5 on this one.

2008-09-03Merged [25088]: I believe this may be what I broke in [24896] which causes metacontacts randomly to have the wrong visibility. visibleListContacts, not listContacts, needs to be called to force an update. adium-1.3
Evan Schoenberg [Wed, 03 Sep 2008 10:44:52 +0000] rev 100
Merged [25088]: I believe this may be what I broke in [24896] which causes metacontacts randomly to have the wrong visibility. visibleListContacts, not listContacts, needs to be called to force an update.

2008-09-01Merged 25078: MSN: With multiple group chats, all messages no longer appear in the same chat. Fixes #1583. Patch from Casey "dragoonkain" Lutz. CodingStyle fixes by me. adium-1.3
Colin Barrett [Mon, 01 Sep 2008 01:50:53 +0000] rev 99
Merged 25078: MSN: With multiple group chats, all messages no longer appear in the same chat. Fixes #1583. Patch from Casey "dragoonkain" Lutz. CodingStyle fixes by me.

2008-08-31Another X has thus been smote. Excelsior! adium-1.3
Eric Richie [Sun, 31 Aug 2008 04:52:16 +0000] rev 98
Another X has thus been smote. Excelsior!

2008-08-31Merged [25070]: Updated emoticonnames.strings adium-1.3
Evan Schoenberg [Sun, 31 Aug 2008 00:12:50 +0000] rev 97
Merged [25070]: Updated emoticonnames.strings

2008-08-301.3.1b1 Appcast adium-1.3
Eric Richie [Sat, 30 Aug 2008 17:03:28 +0000] rev 96
1.3.1b1 Appcast

2008-08-30Versioning up to 1.3.1b1. adium-1.3
Eric Richie [Sat, 30 Aug 2008 01:35:54 +0000] rev 95
Versioning up to 1.3.1b1.

2008-08-29Merged [25057]: Fixed the Danish custom status window. The checkboxes were in the wrong place, too close together as well as not matching the English version. The font here, as in [25056], was the broken one from 2006; it is now the correct system font. Refs #10790 adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 22:51:59 +0000] rev 94
Merged [25057]: Fixed the Danish custom status window. The checkboxes were in the wrong place, too close together as well as not matching the English version. The font here, as in [25056], was the broken one from 2006; it is now the correct system font. Refs #10790

2008-08-29Merged [25055]: Finished positioning springs on the German custom status window, and fixed its font to be the system font instead of the messed up one from 7/2006 when nibs were accidentally converted to the wrong font :) Fixes #10790 adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 22:23:18 +0000] rev 93
Merged [25055]: Finished positioning springs on the German custom status window, and fixed its font to be the system font instead of the messed up one from 7/2006 when nibs were accidentally converted to the wrong font :) Fixes #10790

2008-08-29Merged [25052]: It looks from the debug logging like sometimes a document can return a nil URL, at least in 10.4. Protect against that adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 22:00:19 +0000] rev 92
Merged [25052]: It looks from the debug logging like sometimes a document can return a nil URL, at least in 10.4. Protect against that

2008-08-29Added a debug log for if we don't get a path properly; based on #10866, CFURLCopyFileSystemPath() crashes but -[NSURL path] doesn't (since it's getting past that invocation only to crash when CFURLCopyFileSystemPath() is used in pathComponentsForDocument() later in the invocation) adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 21:14:39 +0000] rev 91
Added a debug log for if we don't get a path properly; based on #10866, CFURLCopyFileSystemPath() crashes but -[NSURL path] doesn't (since it's getting past that invocation only to crash when CFURLCopyFileSystemPath() is used in pathComponentsForDocument() later in the invocation)

2008-08-29Merged [25048]: Don't let label colors for metacontacts' statuses be inherited from contained contacts. Fixes #10784 adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 14:57:56 +0000] rev 90
Merged [25048]: Don't let label colors for metacontacts' statuses be inherited from contained contacts. Fixes #10784

2008-08-29Merged [25047]: AIInterfaceControllerProtocol changes for toggling the user list properly adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 14:56:57 +0000] rev 89
Merged [25047]: AIInterfaceControllerProtocol changes for toggling the user list properly

2008-08-29merged [25044]: Fix some leftover GSoC2007 'group chat' code which made the View->Toggle User List menu item toggle ''all'' group chats rather than the active one. adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 14:55:21 +0000] rev 88
merged [25044]: Fix some leftover GSoC2007 'group chat' code which made the View->Toggle User List menu item toggle ''all'' group chats rather than the active one.

2008-08-29Debug cleanup adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 14:55:08 +0000] rev 87
Debug cleanup

2008-08-29Cleanup retrieval of the msn-pecan personal message, and fix a leak of every retrieved personal message (prpl_info->status_text returns allocated memory, so the return value must be freed) adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 14:36:40 +0000] rev 86
Cleanup retrieval of the msn-pecan personal message, and fix a leak of every retrieved personal message (prpl_info->status_text returns allocated memory, so the return value must be freed)

2008-08-29Ignore status messages for contacts whose status indicates they are offline; we'll get a further update when the contact is known to be online. Fixes #10873 adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 14:31:36 +0000] rev 85
Ignore status messages for contacts whose status indicates they are offline; we'll get a further update when the contact is known to be online. Fixes #10873

2008-08-29im.pidgin.pidgin 2.5.1mtn @ 69cdb2b9e20, now with msn-pecan 0.0.15 which adds offline message reading support and fixes the HTTP Connection message-received-twice bug adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 12:31:40 +0000] rev 84
im.pidgin.pidgin 2.5.1mtn @ 69cdb2b9e20, now with msn-pecan 0.0.15 which adds offline message reading support and fixes the HTTP Connection message-received-twice bug

2008-08-29Added libmsn-pecan translations for es, fi, fr, it, nl, sv adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 12:24:28 +0000] rev 83
Added libmsn-pecan translations for es, fi, fr, it, nl, sv

2008-08-29Rebuilt libmeanwhile with patch added in [25033]. Fixes the sametime crash in fetch_line(). Fixes #10830 adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 12:16:12 +0000] rev 82
Rebuilt libmeanwhile with patch added in [25033]. Fixes the sametime crash in fetch_line(). Fixes #10830

2008-08-29Patch from jimix to fix the sametime/meanwhile crash which some users are experiencing when signing on (list_get() -> fetch_line()). Fixes #10830. Thanks :) adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 12:12:40 +0000] rev 81
Patch from jimix to fix the sametime/meanwhile crash which some users are experiencing when signing on (list_get() -> fetch_line()). Fixes #10830. Thanks :)

2008-08-29Fixed libmeanwhile build adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 01:28:29 +0000] rev 80
Fixed libmeanwhile build

2008-08-29This is what I meant adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 01:08:40 +0000] rev 79
This is what I meant

2008-08-29Merged a fix from trunk for building meanwhile universally adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 01:06:07 +0000] rev 78
Merged a fix from trunk for building meanwhile universally

2008-08-29In the other place we retrieve the alias, as well, use purple_buddy_get_alias_only(). Refs #10550 adium-1.3
Evan Schoenberg [Fri, 29 Aug 2008 00:00:00 +0000] rev 77
In the other place we retrieve the alias, as well, use purple_buddy_get_alias_only(). Refs #10550

2008-08-28Merged [25026]: I don't know why we were trying to get the serverside alias before getting a local, private one, but that's wrong. We prefer a private one, which is exactly what purple_buddy_get_alias_only() does. This, too, may help resolve some alias issues. Refs #10550 adium-1.3
Evan Schoenberg [Thu, 28 Aug 2008 23:08:20 +0000] rev 76
Merged [25026]: I don't know why we were trying to get the serverside alias before getting a local, private one, but that's wrong. We prefer a private one, which is exactly what purple_buddy_get_alias_only() does. This, too, may help resolve some alias issues. Refs #10550

2008-08-28im.pidgin.pidgin 2.5.1mtn @ 69cdb2b9e20a w/ a patch to ignore the NICKNAME of the vcard if it's part of the jid. Refs #10550 adium-1.3
Evan Schoenberg [Thu, 28 Aug 2008 23:00:17 +0000] rev 75
im.pidgin.pidgin 2.5.1mtn @ 69cdb2b9e20a w/ a patch to ignore the NICKNAME of the vcard if it's part of the jid. Refs #10550

2008-08-28Merged [25019] compilation fix adium-1.3
Evan Schoenberg [Thu, 28 Aug 2008 19:11:23 +0000] rev 74
Merged [25019] compilation fix

2008-08-28merged [25016]: Let's try using -[NSURL path] rather than CFURLCopyFileSystemPath(). Perhaps it doesn't crash on long paths. adium-1.3
Evan Schoenberg [Thu, 28 Aug 2008 19:09:45 +0000] rev 73
merged [25016]: Let's try using -[NSURL path] rather than CFURLCopyFileSystemPath(). Perhaps it doesn't crash on long paths.

2008-08-28libmeanwhile with some debug logging for the list_get()/fetch_line() crash adium-1.3
Evan Schoenberg [Thu, 28 Aug 2008 16:30:43 +0000] rev 72
libmeanwhile with some debug logging for the list_get()/fetch_line() crash

2008-08-27When setting the spelling preference for the language, store it globally in addition to at a per-contact level so that it will be used as the default for future chats. Fixes #10752 adium-1.3
Evan Schoenberg [Wed, 27 Aug 2008 22:36:59 +0000] rev 71
When setting the spelling preference for the language, store it globally in addition to at a per-contact level so that it will be used as the default for future chats. Fixes #10752

2008-08-27Re-applied changes in [25003] based on code in the 1.3 branch. Should re-fix #1834. adium-1.3
Ryan Govostes [Wed, 27 Aug 2008 07:36:10 +0000] rev 70
Re-applied changes in [25003] based on code in the 1.3 branch. Should re-fix #1834.

2008-08-27Reverting [25003] -- don't merge code from trunk into the 1.3 branch. Refs #1834. adium-1.3
Ryan Govostes [Wed, 27 Aug 2008 06:45:10 +0000] rev 69
Reverting [25003] -- don't merge code from trunk into the 1.3 branch. Refs #1834.

2008-08-27Patch from rgov: On launch, change log permissions to 0700 (for directories) or 0600 (for files), preventing users other than the owner from viewing transcripts. Fixes #1834. adium-1.3
David Smith [Wed, 27 Aug 2008 06:24:17 +0000] rev 68
Patch from rgov: On launch, change log permissions to 0700 (for directories) or 0600 (for files), preventing users other than the owner from viewing transcripts. Fixes #1834.

2008-08-27Allow backslashes in SIMPLE names, which are apparently needed for the Messenger service adium-1.3
Evan Schoenberg [Wed, 27 Aug 2008 03:41:03 +0000] rev 67
Allow backslashes in SIMPLE names, which are apparently needed for the Messenger service

2008-08-271.3.1svn adium-1.3
Evan Schoenberg [Wed, 27 Aug 2008 03:09:25 +0000] rev 66
1.3.1svn

2008-08-27merged [24968]: Specify LC_ALL=C when running svn to avoid getting a localized response. Fixes the plist macros script when running in a localized environment which includes localized svn. Fix from VinDuv, thanks. Fixes #10793. Also, I removed the svk stuff; I don't believe anyone is using it. adium-1.3
Evan Schoenberg [Wed, 27 Aug 2008 02:56:37 +0000] rev 65
merged [24968]: Specify LC_ALL=C when running svn to avoid getting a localized response. Fixes the plist macros script when running in a localized environment which includes localized svn. Fix from VinDuv, thanks. Fixes #10793. Also, I removed the svk stuff; I don't believe anyone is using it.

2008-08-27merged [24992]: Facebook previously allowed 10 seconds for the entire connect process to finish before timing out. We now allow 20 seconds per page-load, resetting the timer when we successfully load the page. This should fix logging in on slow connections. Fixes #10718 adium-1.3
Evan Schoenberg [Wed, 27 Aug 2008 02:44:55 +0000] rev 64
merged [24992]: Facebook previously allowed 10 seconds for the entire connect process to finish before timing out. We now allow 20 seconds per page-load, resetting the timer when we successfully load the page. This should fix logging in on slow connections. Fixes #10718

2008-08-27Applied fix for xcode 3.1 for the spotlight importer from trunk adium-1.3
Evan Schoenberg [Wed, 27 Aug 2008 02:40:08 +0000] rev 63
Applied fix for xcode 3.1 for the spotlight importer from trunk

2008-08-27Merged [24988]: Only look at the edges of the screen the window slid off of when determining if the contact list should slide back onto the screen. I think this is right, but I can't test it on a multiscreen setup right now. Fixes #10204, I believe, as well as the ticket like it which I can't (and jas8522 couldn't) find adium-1.3
Evan Schoenberg [Wed, 27 Aug 2008 02:27:55 +0000] rev 62
Merged [24988]: Only look at the edges of the screen the window slid off of when determining if the contact list should slide back onto the screen. I think this is right, but I can't test it on a multiscreen setup right now. Fixes #10204, I believe, as well as the ticket like it which I can't (and jas8522 couldn't) find

2008-08-27im.pidgin.pidgin 2.5.1mtn @ 23de00c9ca with a possible fix for the CFHostCreateWithName() crash caused by an invalid host being passed from a UPnP lookup adium-1.3
Evan Schoenberg [Wed, 27 Aug 2008 02:21:12 +0000] rev 61
im.pidgin.pidgin 2.5.1mtn @ 23de00c9ca with a possible fix for the CFHostCreateWithName() crash caused by an invalid host being passed from a UPnP lookup

2008-08-27Merged [24957]: Made the information about importing button localizable adium-1.3
Evan Schoenberg [Wed, 27 Aug 2008 02:02:56 +0000] rev 60
Merged [24957]: Made the information about importing button localizable

2008-08-27Clear the InvisibleAlert state when clearing the Alert state. Fixes #10786 adium-1.3
Evan Schoenberg [Wed, 27 Aug 2008 01:59:16 +0000] rev 59
Clear the InvisibleAlert state when clearing the Alert state. Fixes #10786

2008-08-27Abstracted out handling of setting an account's user icon locally to be handled by the AIAccount superclass rather than depending upon each subclass. This also makes it easy to see the problem causing #10210 - the account wasn't updated for the fact that the user icon is a display attribute rather than a 'property' (the value formerly known as a statusObject) in 1.3. Fixes #10210 adium-1.3
Evan Schoenberg [Wed, 27 Aug 2008 01:53:32 +0000] rev 58
Abstracted out handling of setting an account's user icon locally to be handled by the AIAccount superclass rather than depending upon each subclass. This also makes it easy to see the problem causing #10210 - the account wasn't updated for the fact that the user icon is a display attribute rather than a 'property' (the value formerly known as a statusObject) in 1.3. Fixes #10210

2008-08-27Added AIAllowBackgroundTabClosinghiden userdefaults pref on branch adium-1.3
Evan Schoenberg [Wed, 27 Aug 2008 01:51:33 +0000] rev 57
Added AIAllowBackgroundTabClosinghiden userdefaults pref on branch

2008-08-27Spacing fix adium-1.3
Evan Schoenberg [Wed, 27 Aug 2008 01:45:50 +0000] rev 56
Spacing fix

2008-08-27Added debug logging which shows the user's preferred spell checking language. Refs #10752 adium-1.3
Evan Schoenberg [Wed, 27 Aug 2008 01:45:00 +0000] rev 55
Added debug logging which shows the user's preferred spell checking language. Refs #10752

2008-08-27Fixed compilation of new debug logging for dns lookups adium-1.3
Evan Schoenberg [Wed, 27 Aug 2008 01:18:06 +0000] rev 54
Fixed compilation of new debug logging for dns lookups

2008-08-27Added better debug logging for DNS lookup and resolve requests adium-1.3
Evan Schoenberg [Wed, 27 Aug 2008 01:03:50 +0000] rev 53
Added better debug logging for DNS lookup and resolve requests

2008-08-27Some further serverside name/alias debugging. Refs #10329 adium-1.3
Evan Schoenberg [Wed, 27 Aug 2008 00:48:35 +0000] rev 52
Some further serverside name/alias debugging. Refs #10329

2008-08-26For some reason I thought this was right, and it seemed to work. I was terribly terribly wrong. adium-1.3
Elliott Harris [Tue, 26 Aug 2008 16:37:29 +0000] rev 51
For some reason I thought this was right, and it seemed to work. I was terribly terribly wrong.

2008-08-26Merged [24954]: added neohaven to the copyright adium-1.3
Evan Schoenberg [Tue, 26 Aug 2008 00:58:10 +0000] rev 50
Merged [24954]: added neohaven to the copyright

2008-08-25Just because we released doesn't mean we should stop updating! Some extra notes about combined contacts via Robby. adium-1.3
Eric Richie [Mon, 25 Aug 2008 22:44:44 +0000] rev 49
Just because we released doesn't mean we should stop updating! Some extra notes about combined contacts via Robby.