Plugins/Twitter%20Plugin/MGTwitterEngine/MGTwitterEngine.m
2009-11-19 Implement the Retweet API. This means checking home_timeline and sending proper retweet messages. Fixes #12556.
2009-06-12 /facepalm
2009-06-12 intelligence++
2009-06-12 It's kind of pointless to go from NSString -> unsigned long long -> NSString…always use strings for IDs, it's not like we need to save them.
2009-05-14 Convert Twitter code over to using `unsigned long long` instead of signed integers. Fixes #12025.
2009-05-11 twitter.com has been sucking pretty bad since they "upgraded" things, and my internet here sucks. Increase the timeout wait.
2009-04-10 I forsee supporting Twitter to be a huge pain in the ass if they're going to continue completely breaking existing requirements when they arbitrarily and without notice decide to change things. Fixes posting updates (and anything else which requires a POST).
2009-03-21 As peter pointed out, all of these instance pointers were initialized to nil for me already.
2009-03-20 Fix a crasher in MGTwitterEngine when _username and _password aren't set (they aren't initialized to nil, and -credentialsWithUser:password:persistence really doesn't like nil strings.
2009-03-17 OAuth currently doesn't support signing multipart/form-data bodies, which causes OAuthConsumer.framework to crash if we try to push one through. Temporarily back out if we try it.
2009-03-17 (Required) OAuth support for Twitter. Added OAuthConsumer.framework as our OAuth provider. Modified MGTwitterEngine to handle OAuth, a very minor change really.
2009-03-09 Update the Twitter.com profile image when setting an account-specific icon to a Twitter account. Minimally invasive to MGTwitterEngine, and oh so useful.
2009-03-09 Remove the MGTwitterEngine libxml parsing files, and stop linking against libxml. I see no reason for this to be compiled into the binary and unused.
2009-03-09 Verify credentials, despite the Twitter API wiki (though the ChangeLog states it as now doing so…), returns user information. This eliminates our need to pull another request to get the user's information. We're now guaranteeing that the information will be loaded to the UI, so the accounts view doesn't have to do all sorts of hacks to determine if it has the information.
2009-03-08 Add a method to MGTwitterEngine which lets us update our profile. Add the respective profile view to the account edit view, and save the values when saving the account.
2009-03-05 Add a {{{-repliesSinceID:startingAtPage:}}} method to MGTwitterEngine, since it lacked it (but the Twitter API supported it).
2009-03-01 Add a not-finished-at-all Twitter service plugin using [http://mattgemmell.com/ Matt Gemmel]'s MGTwitterEngine.