aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
...
| | * | | skyped: finish cleanupVMiklos2007-08-20-37/+36
| | | | | | | | | | | | | | | | | | | | | | | | | hopefully no later cosmetics changes will be necessary now
| | * | | skyped: use tabsVMiklos2007-08-20-53/+51
| | | | | | | | | | | | | | | | | | | | | | | | | bitlbee uses tabs, too
| | * | | bitlbeed -> skypedVMiklos2007-08-20-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | i was crazy when i imported the daemon as bitlbeed..
| | * | | bitlbeed: some cleanupVMiklos2007-08-20-185/+8
| | | | |
| | * | | bitlbeed: importVMiklos2007-08-20-0/+286
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the code is from http://forum.skype.com/viewtopic.php?t=42640 (NOTE: i don't know how wrote it, i did not remove his name..) i tried to add as less modicications as possible, so it needs a big cleanup
| | * | | and even moreVMiklos2007-08-20-0/+2
| | | | |
| | * | | more todoVMiklos2007-08-20-0/+2
| | | | |
| | * | | README: some more docs, still incompleteVMiklos2007-08-20-1/+45
| | | | |
| | * | | README: updateVMiklos2007-08-20-2/+6
| | | | |
| | * | | support receiving messagesVMiklos2007-08-20-4/+47
| | | | |
| | * | | skype_buddy_msg(): add a missing checkVMiklos2007-08-20-1/+2
| | | | |
| | * | | implement skype_buddy_msg()VMiklos2007-08-20-2/+20
| | | | |
| | * | | README: cleanupVMiklos2007-08-19-3/+1
| | | | |
| | * | | download away statusesVMiklos2007-08-19-6/+32
| | | | |
| | * | | README: add linkVMiklos2007-08-19-0/+4
| | | | |
| | * | | README: addVMiklos2007-08-19-0/+15
| | | | |
| | * | | add offline users, tooVMiklos2007-08-19-9/+9
| | | | |
| | * | | download buddies from the serverVMiklos2007-08-19-76/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | also remove write queues. i took them from the jabber module and they seem to be a bit unnecessary for skype
| | * | | basic read functionsVMiklos2007-08-19-6/+41
| | | | |
| | * | | initial commitVMiklos2007-08-19-0/+201
| | / /
| | | * Doc update, OAuth is available for more than just Twitter now.Wilmer van der Gaast2011-08-01-3/+3
| | | |
| | | * Had to change the OAuth secret for GTalk.Wilmer van der Gaast2011-08-04-1/+1
| | | |
| | | * Error handling fixes.Wilmer van der Gaast2011-08-04-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | Found one double free() bug causing troubles when a buddy_msg() handler takes down the IM connection immediately.
| | | * Don't timeout Jabber connections on OAuth initialization.Wilmer van der Gaast2011-07-31-0/+3
| | | |
| | | * OAuth code cleanup.Wilmer van der Gaast2011-07-31-18/+27
| | | |
| | | * Facebook authentication. This isn't really OAuth in the end: FB doesn'tWilmer van der Gaast2011-07-31-2/+52
| | | | | | | | | | | | | | | | | | | | | | | | really support desktop app OAuth in a way that would work with BitlBee. Plus, it's only OAuth-compliant by, err, name?
| | | * oauth2 changes to address http://twitter.com/Wilmer/status/96715400124968960Wilmer van der Gaast2011-07-31-8/+22
| | | |
| | | * Export oauth_params_parse().Wilmer van der Gaast2011-07-31-1/+2
| | | |
| | | * Having written the same stupid code (ASCII MD5 hashes) 205762 times, time toWilmer van der Gaast2011-07-31-0/+11
| | | | | | | | | | | | | | | | | | | | have a function for it..
| | | * Working OAuth2 support. Needs some more debugging (error handling is notWilmer van der Gaast2011-07-26-43/+309
| | | | | | | | | | | | | | | | | | | | great and imc_logout() gets (rightfully) confused when jabber_data is empty).
| | | * Kill obsolete Jabber server string (SSL, port#s, etc) parsing.Wilmer van der Gaast2011-07-25-55/+0
| | | |
| | | * Nothing useful yet, this just generates an auth URL. Things to do: AbilityWilmer van der Gaast2011-07-22-4/+128
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | to process the answer. This is hard because the GTalk server will time out very quickly which means we lose our state/scope/etc. (And the ability to even receive the answer, at least if I'd do this the same way the Twitter module does it.) And then, get the access token and use it, of course. :-)
* | | Fixed dumb file descriptor leak.Wilmer van der Gaast2011-07-12-0/+1
| | |
* | | Fixed use of g_iconv() in do_iconv(). This was done wrong for ages andWilmer van der Gaast2011-07-02-4/+4
| |/ |/| | | | | | | | | apparently screwed up charset handling in OSCAR pretty badly.. Found and fixed by dalias (#813). May or may not also fix other bugs.
* | Preparing Debian upload.Wilmer van der Gaast2011-06-14-0/+7
| |
* | 3.0.3, hopefully ready. Time to roll the tarballs.3.0.3Wilmer van der Gaast2011-06-12-2/+18
| |
* | Use sscanf, not strtoull. G_GUINT64_FORMAT really makes format strings lookWilmer van der Gaast2011-06-12-2/+2
| | | | | | | | | | so much better.
* | Aaaaaargh! Who thought it'd be a good idea to make 8-bit integers signed??Wilmer van der Gaast2011-06-12-1/+1
| | | | | | | | | | | | NOW? WHO? Anyway, this bug was causing not only chars < ' ' to be stripped, but also anything with the highest bit set. (I.e. anything non-ASCII.)
* | Oops. prefix shouldn't be just "ca" for identi.ca.Wilmer van der Gaast2011-06-11-1/+3
| |
* | Change the default base_url to something that works. Change the default forWilmer van der Gaast2011-06-11-15/+28
| | | | | | | | | | | | identi.ca to HTTPS while I'm at it. Pretty important since I can't use OAuth for it yet.
* | Use /friends/ids and /users/lookup instead of /statuses/friends to get aWilmer van der Gaast2011-06-11-146/+145
| | | | | | | | | | | | list of contacts at login time. Still depends on adding an API version number to base_url though.
* | Crash-bug (NULL-ptr deref) fix in channel part routine.Wilmer van der Gaast2011-06-11-1/+2
| |
* | Re-indent Twitter code. It just lacks *any* kind of consistency. Flags used:Wilmer van der Gaast2011-06-11-591/+486
| | | | | | | | | | | | -i8 -kr -ts8 -ut -l100 Because K&R isn't so bad after all but spaces are definitely evil. (Not that GNU indent understands how to use tabs, oh well.)
* | Dirty workaround: Don't download the contact list for now as TwitterWilmer van der Gaast2011-06-09-0/+1
| | | | | | | | | | | | | | deprecated the API call BitlBee uses for that. The contact list will be updated as tweets come in. Real fix will come in later, at least this lets everyone log in again.
* | Merge from pesco (bugfix for #751).Wilmer van der Gaast2011-05-12-1/+1
|\ \
| * \ mergebackSven Moritz Hallberg2011-05-01-0/+0
| |\ \ | |/ / |/| |
* | | Merging "otr reconnect", bug #740.Wilmer van der Gaast2011-05-01-1/+26
|\ \ \
| | * | honor LDFLAGS in otr.so make ruleSven Moritz Hallberg2011-05-01-1/+1
| |/ /
| * / add otr reconnect commandSven Moritz Hallberg2011-05-01-1/+26
|/ /
* | Improved channel cleanup. Should fix a crash bug when leaving temporaryWilmer van der Gaast2011-05-01-0/+3
| | | | | | | | | | groupchat channels (i.e. channels invited to on gtalk). #780.