Sat, 08 Mar 2008 17:17:57 +0000 |
Ethan Blanton |
Increase XMPP ping timeout from 20s to 120s
|
Sat, 08 Mar 2008 01:07:04 +0000 |
Sadrul Habib Chowdhury |
merge of '83a8dbf04d73ded7b026f8b63a26f5656d8fb25b'
|
Fri, 07 Mar 2008 20:52:43 +0000 |
Jochen Kemnade |
another update for the German translation
|
Fri, 07 Mar 2008 18:55:32 +0000 |
Mark Doliner |
This is pretty important for our 7 zephyr users.
|
Fri, 07 Mar 2008 18:52:19 +0000 |
Mark Doliner |
merge of '6b600951723c4797bafdc840f751b75c3f0f95af'
|
Fri, 07 Mar 2008 16:57:40 +0000 |
Stu Tomlinson |
Add some notable items to the ChangeLog
|
Fri, 07 Mar 2008 22:03:24 +0000 |
Sadrul Habib Chowdhury |
Patch from Kyle Turman to show the alias when available in the typing notification. Closes #4957.
|
Fri, 07 Mar 2008 16:56:02 +0000 |
Sadrul Habib Chowdhury |
merge of '1aa8a701c81527c4f91549a4546a54262fccce6d'
|
Fri, 07 Mar 2008 04:01:20 +0000 |
Ethan Blanton |
Change OSCAR to use UTF-16 rather than UCS-2 conversions. Apparently
|
Fri, 07 Mar 2008 16:51:36 +0000 |
Sadrul Habib Chowdhury |
The names history-next and history-prev were backwards! Make them right, and add c-n/c-p bindings as the default bindings. Thanks to shofixti for reporting the bug. Fixes #4593.
|
Fri, 07 Mar 2008 01:27:25 +0000 |
Sadrul Habib Chowdhury |
This fixes some cases of the 1-px height bug.
|
Thu, 06 Mar 2008 16:45:45 +0000 |
Sadrul Habib Chowdhury |
finch port of e4b22781 ('Tell gstreamer not to fork').
|
Thu, 06 Mar 2008 17:00:51 +0000 |
Jochen Kemnade |
German translation update
|
Thu, 06 Mar 2008 15:55:39 +0000 |
Sadrul Habib Chowdhury |
merge of '372b94fab52b770bd853506200652575d0588539'
|
Thu, 06 Mar 2008 15:54:30 +0000 |
Sadrul Habib Chowdhury |
Make sure an existing conversation selected from the 'Send IM' dialog is given the focus.
|
Wed, 05 Mar 2008 17:18:09 +0000 |
Sadrul Habib Chowdhury |
propagate from branch 'im.pidgin.pidgin' (head e4cc3b79eb04e4937c5fa764f6839a8e07397651)
|
Thu, 06 Mar 2008 11:34:11 +0000 |
Will Thompson |
Tell gstreamer not to fork; remove the SIGCHLD -> SIGALRM hack, which made
|
Thu, 06 Mar 2008 07:41:52 +0000 |
Mark Doliner |
Patch #3874 from beret. There was a similar patch #2712 from rschnz,
|
Thu, 06 Mar 2008 07:29:39 +0000 |
Mark Doliner |
I realized that I don't like initializing variables when I declare
|
Thu, 06 Mar 2008 06:59:56 +0000 |
Mark Doliner |
Fix a missing a comma
|
Thu, 06 Mar 2008 00:04:03 +0000 |
Evan Schoenberg |
Added some comments and debug logging to yahoo_process_ignore() gleaned from libyahoo2's implementation, from which I guess our prpl was forked (?) given how similar many functions are.
|
Wed, 05 Mar 2008 18:17:25 +0000 |
Mark Doliner |
Bring back the lines that free info.whatever on subsequent calls to
|
Wed, 05 Mar 2008 18:13:11 +0000 |
Mark Doliner |
merge of 'e4cc3b79eb04e4937c5fa764f6839a8e07397651'
|
Wed, 05 Mar 2008 10:00:45 +0000 |
Mark Doliner |
Improve our error handling of Gnome proxy settings.
|
Wed, 05 Mar 2008 09:43:31 +0000 |
Mark Doliner |
Short circuit and return out of the function early if gconftool-2
|
Wed, 05 Mar 2008 18:11:02 +0000 |
Mark Doliner |
disapproval of revision 'd5ef30aafa0c0ecff773017ab7ac542f9ba7b4b4'
|
Wed, 05 Mar 2008 09:40:16 +0000 |
Mark Doliner |
These things are always NULL, so these if statements are never triggered
|
Wed, 05 Mar 2008 00:26:44 +0000 |
Evan Schoenberg |
Fixed bug in which Yahoo contacts were erroneously considered to be blocked,
|
Tue, 04 Mar 2008 23:53:44 +0000 |
Evan Schoenberg |
Just write out the buddy icon file; there's no need to check to see if it exists. This is for the cache, and if the blist.xml gets out of sync with the cache on disk (for example, because the user moves the blist.xml file out of the way), the existing code will never update the cached icon again.
|
Tue, 04 Mar 2008 18:50:16 +0000 |
Evan Schoenberg |
Prefer more available resources to less available ones when priorities are the same. Fixes #5079.
|
Tue, 04 Mar 2008 16:23:07 +0000 |
Stu Tomlinson |
Correct documentation in --help and man page for -l command line option.
|
Tue, 04 Mar 2008 09:41:44 +0000 |
Mark Doliner |
Move the status note parsing into a separate function, which I think
|
Tue, 04 Mar 2008 00:11:22 +0000 |
Evan Schoenberg |
When purple_buddy_icons_set_account_icon() is called, it unrefs the old PurpleStoredImage and refs the new one. Previously, it notified the prpl of the change in the buddy icon before updating pointer_icon_cache, which meant that if the prpl then called purple_buddy_icons_find_account_icon() it would get the old PurpleStoredImage (which is at this point not only old but also a pointer to invalid memory if unref'ing it caused it to be destroyed). This happens in jabber_set_info() as of 2.4.0, causing a crash when setting no-buddy-icon for an account after it has previously had an icon. I think this also means that XMPP accounts in 2.4.0 will also always set serverside the *last* icon set, not the current one, when changing icons, but I didn't test that.
|
Mon, 03 Mar 2008 21:44:40 +0000 |
Bartoz Oler |
Patch from Tomasz Salacinski to allow setting buddy icons in GG prpl.
|
Mon, 03 Mar 2008 16:35:15 +0000 |
Daniel Atallah |
Fix a regression in presenting the existing instance of Pidgin on Windows when the executable is launched a subsequent time. Fixes #5041.
|
Mon, 03 Mar 2008 09:03:47 +0000 |
Mark Doliner |
Make sure we tell stuff that oscar supports offline messages for AIM
|
Mon, 03 Mar 2008 08:50:27 +0000 |
Mark Doliner |
Fix a crash in the zephyr normalize function that I added when gc is
|
Mon, 03 Mar 2008 08:40:39 +0000 |
Mark Doliner |
Fix coverity CID 382: Remove an unused variable
|
Mon, 03 Mar 2008 08:36:35 +0000 |
Mark Doliner |
I believe this fixes Coverity 383:
|
Mon, 03 Mar 2008 08:26:44 +0000 |
Mark Doliner |
Switch to using "username" instead of "screen name." I really really
|
Mon, 03 Mar 2008 07:03:54 +0000 |
Ka-Hing Cheung |
serv_got_joined_chat() emits "chat-joined" but it also calls
|
Sun, 02 Mar 2008 22:35:56 +0000 |
Kevin Stange |
merge of '2b67a6080c2cabe152977731157b424f9e83dd5c'
|
Sun, 02 Mar 2008 20:09:54 +0000 |
Jeffrey Connelly |
propagate from branch 'im.pidgin.soc.2007.msimprpl' (head bd0e8a231d64a1834cf27ddf420ece1cd9889327)
|
Sun, 02 Mar 2008 20:05:34 +0000 |
Jeffrey Connelly |
In msimprpl, allow some levels of nested bold/italic/underline formatting.
|
Sun, 02 Mar 2008 16:44:08 +0000 |
Sadrul Habib Chowdhury |
merge of 'b3b5983d1eb17af3007d26447c9215e9e8203189'
|
Sun, 02 Mar 2008 16:43:55 +0000 |
Sadrul Habib Chowdhury |
merge of 'd1ef38716fb62522b4d8ce47ed39d9e34d2b2c77'
|
Sun, 02 Mar 2008 20:08:27 +0000 |
Jeffrey Connelly |
merge of 'b3b5983d1eb17af3007d26447c9215e9e8203189'
|
Sat, 01 Mar 2008 09:42:07 +0000 |
Kevin Stange |
Avoid saying "Cyrus SASL: Disabled" in the About box on Win32 when it's not true!
|
Sun, 02 Mar 2008 16:43:22 +0000 |
Sadrul Habib Chowdhury |
Allow translation/transliteration foo in the plugin window tooltip.
|
Fri, 29 Feb 2008 21:11:47 +0000 |
Stu Tomlinson |
Truncate password to 16 characters on MSN, before encoding.
|
Fri, 29 Feb 2008 20:23:02 +0000 |
Stu Tomlinson |
Merge 2 "if ENABLE_GTK" sections
|
Fri, 29 Feb 2008 20:06:55 +0000 |
Stu Tomlinson |
Minor whitespace cleanup
|
Fri, 29 Feb 2008 18:04:03 +0000 |
Ethan Blanton |
do what now?
|
Fri, 29 Feb 2008 15:45:48 +0000 |
Will Thompson |
Document PurpleEventLoopUiOps and associated misc.
|
Fri, 29 Feb 2008 14:47:34 +0000 |
Stu Tomlinson |
Fixes #4948
|
Fri, 29 Feb 2008 13:45:05 +0000 |
Stu Tomlinson |
Fix building with glib < 2.6
|
Fri, 29 Feb 2008 12:10:37 +0000 |
Stu Tomlinson |
Bump!
|
Fri, 29 Feb 2008 12:08:08 +0000 |
Stu Tomlinson |
NEWS!
|
Fri, 29 Feb 2008 07:55:20 +0000 |
Andrew Gaul |
Fixes a memleak:
|
Fri, 29 Feb 2008 04:31:07 +0000 |
Stu Tomlinson |
merge of '6694efeab877d30da766aff29ae0e59bad4860fd'
|
Fri, 29 Feb 2008 04:23:00 +0000 |
Ka-Hing Cheung |
Patch from Qulogic that fixes #4951 by making sure that the buffer is NUL-
|
Fri, 29 Feb 2008 04:27:51 +0000 |
Stu Tomlinson |
Final changes for 2.4.0, release imminent (for some definition of imminent)
|
Fri, 29 Feb 2008 03:47:21 +0000 |
Daniel Atallah |
Enable SASL support for xmpp in the win32 build.
|
Fri, 29 Feb 2008 03:24:10 +0000 |
Daniel Atallah |
Update the win32 changelog to reflect new GTK+ runtime and updated libmeanwhile.
|
Fri, 29 Feb 2008 02:08:23 +0000 |
Ka-Hing Cheung |
(17:59:47) stu.tomlinson: khc: say something random
|
Fri, 29 Feb 2008 01:41:13 +0000 |
Sadrul Habib Chowdhury |
NEWS
|
Fri, 29 Feb 2008 01:22:37 +0000 |
John Bailey |
NEWSing
|
Thu, 28 Feb 2008 21:49:37 +0000 |
Stu Tomlinson |
- Remove --with-howl options as we no longer support using howl for bonjour
|
Thu, 28 Feb 2008 21:38:05 +0000 |
Stu Tomlinson |
Silence errors during RPM installation when gtk-update-icon-cache does not
|
Thu, 28 Feb 2008 19:08:30 +0000 |
Stu Tomlinson |
Add Sinhala language and translator to Help -> About. I promise to try to
|
Thu, 28 Feb 2008 16:39:24 +0000 |
Jochen Kemnade |
German translation was also updated
|
Thu, 28 Feb 2008 16:26:17 +0000 |
Stu Tomlinson |
French translation updated (ric Boumaour)
|
Thu, 28 Feb 2008 16:25:22 +0000 |
Stu Tomlinson |
Finnish translation updated (Timo Jyrinki)
|
Thu, 28 Feb 2008 16:24:37 +0000 |
Stu Tomlinson |
Greek translation updated (Bouklis Panos)
|
Thu, 28 Feb 2008 16:23:19 +0000 |
Stu Tomlinson |
Hebrew translation updated (Shalom Craimer)
|
Thu, 28 Feb 2008 16:22:14 +0000 |
Stu Tomlinson |
Slovak translation updated (loptosko)
|
Thu, 28 Feb 2008 16:21:19 +0000 |
Stu Tomlinson |
Arabic translation updated (Khaled Hosny)
|
Thu, 28 Feb 2008 16:08:22 +0000 |
Stu Tomlinson |
Fix errors in translations
|
Thu, 28 Feb 2008 15:44:07 +0000 |
Stu Tomlinson |
Belarusian Latin translation updated (Ihar Hrachyshka)
|
Thu, 28 Feb 2008 15:42:09 +0000 |
Stu Tomlinson |
Dutch translation updated (Danil Heres)
|
Thu, 28 Feb 2008 15:39:42 +0000 |
Stu Tomlinson |
Vietnamese translation updated (Clytie Siddall)
|
Thu, 28 Feb 2008 15:38:12 +0000 |
Stu Tomlinson |
Norwegian Nynorsk translation updated (Yngve Spjeld Landro)
|
Thu, 28 Feb 2008 15:36:23 +0000 |
Stu Tomlinson |
Norwegian Bokml translation updated
|
Thu, 28 Feb 2008 15:29:27 +0000 |
Stu Tomlinson |
Polish translation updated (Emil Nowak)
|
Thu, 28 Feb 2008 15:24:34 +0000 |
Stu Tomlinson |
Spanish translation updated (Javier Fernndez-Sanguino)
|
Thu, 28 Feb 2008 15:22:25 +0000 |
Stu Tomlinson |
Slovenian transalation updated (Martin Srebotnjak)
|
Thu, 28 Feb 2008 15:20:19 +0000 |
Stu Tomlinson |
Sinhala translation added (Danishka Navin)
|
Thu, 28 Feb 2008 11:25:49 +0000 |
Richard Nelson |
Fix showing a contact's log, and don't access struct internals
|
Thu, 28 Feb 2008 11:18:43 +0000 |
Richard Nelson |
merge of '6c2edffe33d42d0d4190eea6c634aa46a22ec2d0'
|
Thu, 28 Feb 2008 08:41:23 +0000 |
Ka-Hing Cheung |
Fixes an error detected by valgrind:
|
Thu, 28 Feb 2008 09:23:37 +0000 |
Peter Hjalmarsson |
Updated Swedish translation
|
Thu, 28 Feb 2008 08:15:27 +0000 |
Mark Doliner |
* Don't flag outgoing oscar messages as "offline deliverable" if the
|
Thu, 28 Feb 2008 01:42:51 +0000 |
Stu Tomlinson |
Disable invisible text things, if someone can conclusively prove this is
|
Wed, 27 Feb 2008 20:31:46 +0000 |
Stu Tomlinson |
Fix make distcheck
|
Wed, 27 Feb 2008 20:19:54 +0000 |
Daniel Atallah |
Initialize the stock stuff before doing anything else so that stock items used in error messages are ready to be used. Fixes #4917.
|
Wed, 27 Feb 2008 12:30:48 +0000 |
Stu Tomlinson |
Specify the base to convert from to prevent interpreting 0-prefixed client
|
Wed, 27 Feb 2008 09:18:06 +0000 |
Mark Doliner |
Add support for offline messages for AIM, thanks to some info from
|
Wed, 27 Feb 2008 04:49:20 +0000 |
Ka-Hing Cheung |
Patch from Jorge Villaseor, treat the client id as unsigned so 0x80000000
|
Wed, 27 Feb 2008 04:36:23 +0000 |
Ka-Hing Cheung |
merge of 'a4c768e127679f724617481cff7d907dab10463f'
|
Wed, 27 Feb 2008 00:43:27 +0000 |
John Bailey |
Mention the new API.
|
Wed, 27 Feb 2008 00:42:30 +0000 |
John Bailey |
Felipe is technically no longer retired :)
|
Wed, 27 Feb 2008 00:41:51 +0000 |
John Bailey |
This is part of a patch from felipec, also known as shx, that adds
|
Tue, 26 Feb 2008 14:28:52 +0000 |
Stu Tomlinson |
Add some things to the ChangeLog
|
Tue, 26 Feb 2008 14:17:12 +0000 |
Stu Tomlinson |
Give IRC channel owners the founder icon on networks that report supporting
|
Tue, 26 Feb 2008 14:11:59 +0000 |
Stu Tomlinson |
chomp chomp chomp chomp chomp chomp chomp chomp chomp chomp
|
Tue, 26 Feb 2008 14:02:06 +0000 |
Stu Tomlinson |
I'm going to pretend this solves all my problems, except I can't see how
|
Tue, 26 Feb 2008 13:53:22 +0000 |
Stu Tomlinson |
Use connect server as FQDN for SASL auth except when it is an IP address.
|
Mon, 25 Feb 2008 15:24:49 +0000 |
Sadrul Habib Chowdhury |
This should fix the issue with persistent conversations getting closed all unexpected like.
|
Mon, 25 Feb 2008 00:25:51 +0000 |
Jeffrey Connelly |
merge of 'd7446f6ac5bc209e6a03852945edf2f8cecffe9f'
|
Mon, 25 Feb 2008 00:25:23 +0000 |
Jeffrey Connelly |
In msimprpl, support dynamically-allocated strings in message element names,
|
Wed, 27 Feb 2008 01:27:40 +0000 |
Sean Egan |
new about logo
|
Sun, 24 Feb 2008 18:33:00 +0000 |
John Bailey |
merge of '26a24e2e90db8354c4d854df5f8e833e3d1086e3'
|
Sun, 24 Feb 2008 18:30:40 +0000 |
John Bailey |
Give credit where it's due for Gideon N. Guillen's Yahoo patch.
|
Sun, 24 Feb 2008 18:21:02 +0000 |
John Bailey |
merge of '4bc84ea5ca10129cd5e46b2f0f8f8e6b6a9146b3'
|
Sun, 24 Feb 2008 18:30:33 +0000 |
Jochen Kemnade |
completed German translation for 2.4.0
|
Sun, 24 Feb 2008 01:47:42 +0000 |
John Bailey |
merge of '7a17d421ad7600c57d0ecdb59f7881de03bf2027'
|
Fri, 22 Feb 2008 00:11:25 +0000 |
John Bailey |
Kill off some uses of account->gc.
|
Fri, 22 Feb 2008 17:26:23 +0000 |
Stu Tomlinson |
Don't call NULL callbacks. Fixes #4901
|
Sat, 01 Mar 2008 23:01:25 +0000 |
Sean Egan |
disapproval of revision 'fb186fe2307039838fc0d044506008a9eb2f8438'
|
Fri, 22 Feb 2008 07:03:15 +0000 |
Sean Egan |
the 2.10.10 check is wrong. if 0 this until it's figured out.
|
Wed, 20 Feb 2008 05:07:09 +0000 |
Daniel Atallah |
Plug some leaks caused by GtkTreePaths not being freed.
|
Wed, 20 Feb 2008 03:04:47 +0000 |
Daniel Atallah |
Patch from eperez to plug a leak in the ntlm proxy authentication. Fixes #4702
|
Tue, 19 Feb 2008 19:30:19 +0000 |
Jochen Kemnade |
updated German translation
|
Mon, 25 Feb 2008 04:39:37 +0000 |
Sadrul Habib Chowdhury |
Attempt at a better error message.
|
Mon, 25 Feb 2008 04:20:53 +0000 |
Sadrul Habib Chowdhury |
Modified patch ('big_smiley_change.patch') from Mauro and Jorge (Masca) to
|
Mon, 25 Feb 2008 03:07:03 +0000 |
Sadrul Habib Chowdhury |
Fix a leak, and correct the docs.
|
Mon, 25 Feb 2008 02:43:06 +0000 |
Sadrul Habib Chowdhury |
Hide PurpleSmiley internals.
|
Tue, 19 Feb 2008 20:02:14 +0000 |
Sadrul Habib Chowdhury |
Add the smiley files for translation.
|
Tue, 19 Feb 2008 20:00:29 +0000 |
Sadrul Habib Chowdhury |
Make sure deleting one smiley doesn't accidentally delete a few others.
|
Tue, 19 Feb 2008 19:57:09 +0000 |
Sadrul Habib Chowdhury |
Make some functions static, plug a leak.
|
Tue, 19 Feb 2008 19:51:03 +0000 |
Sadrul Habib Chowdhury |
Revert some bits of the earlier patch not related to custom smileys.
|
Tue, 19 Feb 2008 19:46:49 +0000 |
Sadrul Habib Chowdhury |
Plug a leak.
|
Tue, 19 Feb 2008 19:41:56 +0000 |
Sadrul Habib Chowdhury |
Apply the custom smiley patches from #1187, from Jorge Villaseo (Masca) and
|
Mon, 18 Feb 2008 19:22:39 +0000 |
Jeffrey Connelly |
merge of '27ebb66171c1a1a757cd8d3e325c91e159b1d048'
|
Sun, 17 Feb 2008 17:26:37 +0000 |
Sadrul Habib Chowdhury |
Single clicking a menuitem should activate it.
|
Sun, 17 Feb 2008 17:15:40 +0000 |
Sadrul Habib Chowdhury |
merge of '679333d47d0d179f9027ef1c5f82a2eef5811b95'
|
Sun, 17 Feb 2008 17:14:29 +0000 |
Sadrul Habib Chowdhury |
Right-clicking on a widget should trigger the context-menu.
|
Mon, 18 Feb 2008 19:20:39 +0000 |
Jeffrey Connelly |
If the user sets a username (because they don't have one), and it succeeds,
|
Sat, 16 Feb 2008 21:29:02 +0000 |
Jeffrey Connelly |
In msimprpl, add msim_is_valid_username() to check whether a username
|
Sat, 16 Feb 2008 21:07:09 +0000 |
Jeffrey Connelly |
In msimprpl, define a new set of symbolic constants for the command to
|
Sat, 16 Feb 2008 20:49:20 +0000 |
Jeffrey Connelly |
In msimprpl, change to patch from Jaywalker regarding setting
|
Sat, 16 Feb 2008 20:20:12 +0000 |
Jeffrey Connelly |
In msimprpl, if the user signs in without any username set (this will happen
|
Sat, 16 Feb 2008 20:02:36 +0000 |
Jeffrey Connelly |
merge of '24f58c58bb8d22c0e8e6c5ce43c536c47b719bc6'
|
Sat, 16 Feb 2008 18:17:32 +0000 |
Will Thompson |
I think it's reasonable to just say "don't do this".
|
Sat, 16 Feb 2008 18:13:48 +0000 |
Will Thompson |
Pull setting the urgent hint on the blist when it is unfocused into its own
|
Sat, 16 Feb 2008 15:25:19 +0000 |
Will Thompson |
Rework update_account_error_state to reuse existing mini-dialogs if they exist,
|
Sat, 16 Feb 2008 14:42:57 +0000 |
Will Thompson |
Don't clear account errors during account-error-changed emission. I can't
|
Thu, 14 Feb 2008 16:35:14 +0000 |
Stu Tomlinson |
Fix the "Finch doesn't work" bug. More specifically, it turned out to be
|
Thu, 14 Feb 2008 13:03:34 +0000 |
Stu Tomlinson |
Fix setting vCard buddy icons when we don't have any other user info set.
|
Thu, 14 Feb 2008 12:42:58 +0000 |
Stu Tomlinson |
merge of '5e11f89fad2bba2d5ef3307befb618c9ca110561'
|
Sat, 16 Feb 2008 20:02:24 +0000 |
Jeffrey Connelly |
Add get-attention.png, a toolbar icon from hbons that we can use later for
|
Thu, 14 Feb 2008 07:49:57 +0000 |
Jeffrey Connelly |
In msimprpl, for server-side contacts, first search for an existing group
|
Wed, 13 Feb 2008 06:00:50 +0000 |
Sadrul Habib Chowdhury |
merge of '29e93f056359d961762bcff9702089c1cf491fd0'
|
Tue, 12 Feb 2008 04:14:39 +0000 |
John Bailey |
merge of 'a86cc370be80c0a0f0688ae2dec4f55775779fa1'
|
Wed, 13 Feb 2008 05:57:54 +0000 |
Sadrul Habib Chowdhury |
'\n' (ctrl-j) should behave similar to '\r' (ctrl-m). Fixes #4833.
|
Tue, 12 Feb 2008 04:03:30 +0000 |
Sadrul Habib Chowdhury |
merge of '902c6324faa755dfbceafd40ebf88ef850d06c9b'
|
Tue, 12 Feb 2008 03:16:21 +0000 |
Stu Tomlinson |
Bring back the "Close IMs immediately when the tab is closed" pref. As far
|
Tue, 12 Feb 2008 00:30:25 +0000 |
John Bailey |
propagate from branch 'im.pidgin.cpw.rekkanoryo.yahoop15ft' (head 722549d96d82fd56433f18b78bda898eef6a56ed)
|
Mon, 11 Feb 2008 00:50:42 +0000 |
Jeffrey Connelly |
merge of '8d0a8e8a3f64465f6fe98c9344417e6f5f60cace'
|
Mon, 11 Feb 2008 00:50:26 +0000 |
Jeffrey Connelly |
Update COPYRIGHT for patches from #4790 and #2788.
|
Sun, 10 Feb 2008 09:45:37 +0000 |
Mark Doliner |
A patch from oliver to speed up oscar's normalize function a little by
|
Sat, 09 Feb 2008 09:04:39 +0000 |
Jeffrey Connelly |
merge of '74350098695c8021af246fd51aa5389109e8fa3b'
|
Sat, 09 Feb 2008 08:57:45 +0000 |
Jeffrey Connelly |
disapproval of revision '8bec06d2cd0a64ece46cb3cd73db9b085b91e161'
|
Tue, 12 Feb 2008 04:02:23 +0000 |
Sadrul Habib Chowdhury |
Ignore the recv/send flags when the system flag is set for a message.
|
Tue, 12 Feb 2008 03:58:58 +0000 |
Sadrul Habib Chowdhury |
Highlighted message color has a higher priority over an action message color.
|
Sat, 09 Feb 2008 07:54:02 +0000 |
Sadrul Habib Chowdhury |
merge of '39442c11d97da922ca44df85a3b376341c44f186'
|
Sat, 09 Feb 2008 07:35:21 +0000 |
Jeffrey Connelly |
merge of '4c2c343355f23e33c5b251b3d61f07af3fd8ac8b'
|
Sat, 09 Feb 2008 07:41:33 +0000 |
Sadrul Habib Chowdhury |
merge of '4c2c343355f23e33c5b251b3d61f07af3fd8ac8b'
|
Sat, 09 Feb 2008 07:26:12 +0000 |
Jeffrey Connelly |
Pidgin attention GUI from nok. Adds "Send Attention" to conversation
|
Sat, 09 Feb 2008 06:11:27 +0000 |
Etan Reisner |
This may or may not fix a crash that may or may not affect the version of GTK+
|
Sat, 09 Feb 2008 03:09:13 +0000 |
Etan Reisner |
merge of '72a2b71dfe259097d115f67e0442fb44934ce686'
|
Fri, 08 Feb 2008 15:09:33 +0000 |
Jochen Kemnade |
Updated German translation
|
Wed, 06 Feb 2008 18:06:44 +0000 |
John Bailey |
Simplified version of the newest patch on #4533 to not try Yahoo protocol
|
Wed, 06 Feb 2008 15:50:41 +0000 |
Luke Schierer |
merge of 'c68bf74889268c55c15cf101e1d593966b55c2a9'
|
Sat, 09 Feb 2008 02:22:30 +0000 |
Jeffrey Connelly |
Patch from oliver:
|
Wed, 06 Feb 2008 05:37:32 +0000 |
Jeffrey Connelly |
In msimprpl, if login fails, and the user's password is greater than
|
Tue, 05 Feb 2008 19:12:59 +0000 |
Daniel Atallah |
felipec noticed that this include was missing.
|
Mon, 04 Feb 2008 04:39:54 +0000 |
Stu Tomlinson |
purple_status_type_new_with_attrs() must be NULL terminated. Finally all
|
Mon, 04 Feb 2008 04:04:02 +0000 |
Jeffrey Connelly |
merge of '127e166396532169c471488d7be34927a0f32b39'
|
Mon, 04 Feb 2008 04:00:12 +0000 |
Jeffrey Connelly |
In msimprpl, use a PURPLE_STATUS_TUNE presence type to hold the "now playing"
|
Sun, 03 Feb 2008 21:23:48 +0000 |
Mark Doliner |
Get rid of some privacy checking code from zephyr that is done in
|
Sun, 03 Feb 2008 19:43:41 +0000 |
John Bailey |
Kill off gc->prpl in the core everywhere but connection.c (when the struct
|
Sun, 03 Feb 2008 19:38:02 +0000 |
Mark Doliner |
Remove the privacy prpl callbacks in Zephyr since they're basically a
|
Sun, 03 Feb 2008 19:24:55 +0000 |
Mark Doliner |
Remove some empty PRPL callbacks
|
Sun, 03 Feb 2008 17:37:58 +0000 |
Stu Tomlinson |
Display buddies' phone numbers in the tooltip for MSN buddies if we have
|
Sun, 03 Feb 2008 17:33:02 +0000 |
Stu Tomlinson |
Fix the bug where mid-session notification server transfers end up with the
|
Sun, 03 Feb 2008 11:39:59 +0000 |
Mark Doliner |
The Gnome Human Interface Guidelines say, "if pressing this button by
|
Sun, 03 Feb 2008 11:36:33 +0000 |
Mark Doliner |
Mark some strings for translation
|
Sun, 03 Feb 2008 11:16:52 +0000 |
Mark Doliner |
Slightly cleaner
|
Sun, 03 Feb 2008 11:00:50 +0000 |
Mark Doliner |
Improve the spacing in Pidgin's certificate manager window
|
Sun, 03 Feb 2008 10:07:57 +0000 |
Mark Doliner |
Add the list of certificates in Pidgin's certificate manager to a
|
Sun, 03 Feb 2008 02:56:09 +0000 |
Richard Nelson |
I always forget something...
|
Sat, 02 Feb 2008 22:32:54 +0000 |
Richard Nelson |
fix unblocking
|
Sat, 02 Feb 2008 22:20:09 +0000 |
Richard Nelson |
Add a [X] Blocked item to the buddy context menu, and add a dialog to
|
Sat, 02 Feb 2008 03:51:46 +0000 |
Richard Nelson |
Make this clearer
|
Sat, 02 Feb 2008 03:51:19 +0000 |
Richard Nelson |
Add a finch log viewer. This is largely copied from Pidgin.
|
Fri, 01 Feb 2008 19:35:38 +0000 |
Will Thompson |
Passing NULL to msn_user_set_friendly_name explodes, and msn_user_new is called
|
Fri, 01 Feb 2008 17:48:53 +0000 |
Mark Doliner |
Rename 'add_buddies_in_permit' to 'add_all_buddies_to_permit_list'
|
Fri, 01 Feb 2008 02:53:51 +0000 |
Mark Doliner |
Our Yahoo! protocol has this crappy implementation where it tries
|
Fri, 01 Feb 2008 02:41:35 +0000 |
Mark Doliner |
In Pidgin's privacy dialog:
|
Fri, 01 Feb 2008 02:09:11 +0000 |
Mark Doliner |
Clean up a function
|
Fri, 01 Feb 2008 02:05:32 +0000 |
Mark Doliner |
Yahoo! has no permit list, so get rid of the add_permit and rem_permit prpl
|
Fri, 01 Feb 2008 01:57:53 +0000 |
Evan Schoenberg |
Don't tell the user to check the debug log if debug logging isn't enabled.
|
Fri, 01 Feb 2008 01:00:36 +0000 |
Mark Doliner |
Remove whitespace on empty lions
|
Thu, 31 Jan 2008 23:27:59 +0000 |
Mark Doliner |
Use the group passed into yahoo_add_buddy() instead of looking
|
Thu, 31 Jan 2008 22:58:11 +0000 |
Mark Doliner |
Get rid of yahoo_privacy_check and use purple_privacy_check directly.
|
Thu, 31 Jan 2008 22:28:56 +0000 |
Mark Doliner |
Update a comment. I think it was missing a word or three.
|
Thu, 31 Jan 2008 22:11:53 +0000 |
Mark Doliner |
Some very minor cleanup
|
Thu, 31 Jan 2008 17:43:14 +0000 |
Will Thompson |
Update silc10 to use purple_connection_error_reason(), matching the uses in
|
Thu, 31 Jan 2008 07:53:22 +0000 |
Mark Doliner |
Fix some minor 'make docs' errors. For some reason the callback
|
Thu, 31 Jan 2008 04:40:04 +0000 |
Richard Nelson |
Fix a crash when pressing backspace at a menu
|
Thu, 31 Jan 2008 04:37:40 +0000 |
Richard Nelson |
merge of '04e7d54475c3ddf91ad523e3e58521bc4fa59c85'
|
Thu, 31 Jan 2008 02:23:55 +0000 |
Eoin Coffey |
Made account.c use purple_connection_get_prpl instead of gc->prpl.
|
Thu, 31 Jan 2008 02:13:30 +0000 |
Mark Doliner |
Revert bfc4df11256d088d75b0512bb0c4790967b68b19 because the code is
|
Tue, 29 Jan 2008 01:51:26 +0000 |
Jeffrey Connelly |
merge of '9d22bc3a3d82cb26e7196d41b472b81c7660274d'
|
Mon, 28 Jan 2008 05:31:28 +0000 |
Mark Doliner |
From the gethostname() man page:
|
Mon, 28 Jan 2008 04:10:59 +0000 |
Mark Doliner |
One more g_idle_add call
|
Tue, 29 Jan 2008 01:51:01 +0000 |
Jeffrey Connelly |
In msim_uid2username_from_blist(), return a static string as the documentation
|
Sun, 27 Jan 2008 21:37:43 +0000 |
Jeffrey Connelly |
Fix zap functionality in MySpaceIM.
|
Sun, 27 Jan 2008 20:52:53 +0000 |
Mark Doliner |
Change some g_idle_add(...) calls in libpurple to purple_timeout_add(0, ...)
|
Sun, 27 Jan 2008 10:44:51 +0000 |
Mark Doliner |
Stop unconditionally setting oscar's server-side preference "allow
|
Sun, 27 Jan 2008 10:03:26 +0000 |
Mark Doliner |
merge of '2e288b76540410af9b0ca21669ffb7e085633d59'
|
Sun, 27 Jan 2008 04:33:24 +0000 |
Sadrul Habib Chowdhury |
Forgot the since tag here.
|
Sun, 27 Jan 2008 04:12:46 +0000 |
Sadrul Habib Chowdhury |
Update finch to not touch the internals of PurpleGroup.
|
Sun, 27 Jan 2008 04:06:39 +0000 |
Sadrul Habib Chowdhury |
Add accessor and update finch to not touch the internals of PurpleBuddy and PurpleChat.
|
Sat, 26 Jan 2008 22:36:01 +0000 |
Sadrul Habib Chowdhury |
Include finch.h from these files, instead of internal.h.
|
Sat, 26 Jan 2008 22:33:08 +0000 |
Sadrul Habib Chowdhury |
We will probably eventually use purple_object_[get|set]_ui_data. Until then, this will do.
|
Sat, 26 Jan 2008 21:58:51 +0000 |
Sadrul Habib Chowdhury |
Add accessor and update finch to not touch the internals of PurpleXfer.
|
Sat, 26 Jan 2008 21:39:29 +0000 |
Sadrul Habib Chowdhury |
Update finch to not touch the internals of PurpleConversation.
|
Sat, 26 Jan 2008 21:13:46 +0000 |
Sadrul Habib Chowdhury |
Add accessor and update finch to not touch the internals of PurpleConnection.
|
Sat, 26 Jan 2008 20:45:41 +0000 |
Sadrul Habib Chowdhury |
Update finch to not touch the internals of PurpleAccount. This also includes a change I made to reduce the Cyclomatic Complexity of one of the functions.
|
Sat, 26 Jan 2008 20:32:26 +0000 |
Sadrul Habib Chowdhury |
Add API so Finch doesn't need to touch the internals of PurpleBlistNode.
|
Sat, 26 Jan 2008 20:28:35 +0000 |
Sadrul Habib Chowdhury |
Update the ChangeLog.API for the buddylist managers.
|
Sat, 26 Jan 2008 17:14:59 +0000 |
Will Thompson |
merge of '0f37c6a913d5207fa0fa327f5b11b215c7d35926'
|
Fri, 25 Jan 2008 20:43:15 +0000 |
Will Thompson |
Make autogen.sh return a non-zero exit code when it fails so that
|
Sat, 26 Jan 2008 16:17:36 +0000 |
Stu Tomlinson |
Use xdg-open instead of gnome-open, if possible. We might want to use
|
Sat, 26 Jan 2008 03:53:18 +0000 |
Evan Schoenberg |
If falling back on the old auth method for Jabber, be sure to set js->auth_type to JABBER_AUTH_IQ_AUTH.
|
Fri, 25 Jan 2008 22:20:58 +0000 |
Evan Schoenberg |
merge of '468a779996a2b7c9313bb894084fb632307d35fc'
|
Fri, 25 Jan 2008 22:18:49 +0000 |
Evan Schoenberg |
disapproval of revision 'ee1257d20b20bbbf3654ef8675e774ccb8b63dfd'
|
Fri, 25 Jan 2008 22:20:18 +0000 |
Evan Schoenberg |
I'm not sure how to disapprove a local change without it ever getting pushed... sorry for the double commit. I didn't intend to leave a trailing colon, since we didn't use punctuation at the end previously.
|
Fri, 25 Jan 2008 22:17:17 +0000 |
Evan Schoenberg |
Fixed grammatically incorrect text when sending a file to an XMPP buddy with multiple online resources. I'm +/- on ending such requests with a period... but ending on a preposition, while acceptable if needed to make a sentence significantly more natural, should be avoided when smoothly possible.
|
Fri, 25 Jan 2008 13:48:24 +0000 |
Stu Tomlinson |
send_keepalive needs to return TRUE to ensure it'll get called again, and
|
Fri, 25 Jan 2008 13:46:55 +0000 |
Stu Tomlinson |
Kill this warning when using -Wstrict-prototypes:
|
Fri, 25 Jan 2008 13:43:46 +0000 |
Stu Tomlinson |
compile fix
|
Fri, 25 Jan 2008 02:12:41 +0000 |
Mark Doliner |
One more test. This is actually the one I cared about. It passes,
|
Fri, 25 Jan 2008 02:08:05 +0000 |
Sadrul Habib Chowdhury |
merge of '7e6f3aa974ad4672e16bd0ac3839d416c87160f1'
|
Fri, 25 Jan 2008 01:40:51 +0000 |
Mark Doliner |
Add a few tets to make sure we're catching some invalid email formats
|
Fri, 25 Jan 2008 00:52:40 +0000 |
Sean Egan |
ChangeLog.API last_received
|
Fri, 25 Jan 2008 00:51:06 +0000 |
Sean Egan |
merge of '7a2d6f31a70791d5e6e8af6fae041e30d5a1c48f'
|
Thu, 24 Jan 2008 05:25:02 +0000 |
Mark Doliner |
merge of '4b11e0842d46778d47f4901ed6e00169c970471d'
|
Thu, 24 Jan 2008 05:19:51 +0000 |
John Bailey |
Fix some issues with the infopane and dragging when the infopane takes the
|
Thu, 24 Jan 2008 21:15:43 +0000 |
Sadrul Habib Chowdhury |
Pay attention to the 'show_offline' setting for the buddylist.
|
Thu, 24 Jan 2008 05:24:20 +0000 |
Mark Doliner |
Change purple_markup_html_to_xhtml() to convert <strong> tags to
|
Wed, 23 Jan 2008 21:46:54 +0000 |
Sadrul Habib Chowdhury |
Init and uninit the buddylist managers at appropriate times.
|
Wed, 23 Jan 2008 21:45:43 +0000 |
Sadrul Habib Chowdhury |
Allow customizing the expander in the tree. This is mostly a hack ;)
|
Wed, 23 Jan 2008 18:25:45 +0000 |
Sadrul Habib Chowdhury |
merge of '310bb375db205bf93c93b7bdc96853f6f1832a5d'
|
Wed, 23 Jan 2008 09:22:28 +0000 |
Jochen Kemnade |
updated German translation
|
Wed, 23 Jan 2008 18:17:34 +0000 |
Sadrul Habib Chowdhury |
Add a meebo-like grouping, where online contacts show up under the default
|
Wed, 23 Jan 2008 05:16:39 +0000 |
Sadrul Habib Chowdhury |
We need to store the img in the hashtable only after we have removed the old
|
Wed, 23 Jan 2008 04:47:04 +0000 |
Sadrul Habib Chowdhury |
Some minor doc update.
|
Wed, 23 Jan 2008 04:45:04 +0000 |
Sadrul Habib Chowdhury |
Fix some small leaks when destroying a statusbox.
|
Wed, 23 Jan 2008 01:44:30 +0000 |
Sadrul Habib Chowdhury |
Changelog the grouping option.
|
Wed, 23 Jan 2008 01:33:56 +0000 |
Sadrul Habib Chowdhury |
Rework some of the code that deals with adding and removing blist nodes in the tree. There were some typoed code that just happened to work. This fixes those.
|
Wed, 23 Jan 2008 01:31:36 +0000 |
Sadrul Habib Chowdhury |
When computing priority buddies for a contact, a buddy on an online account will always have a higher priority over a buddy on an offline account.
|
Wed, 23 Jan 2008 00:54:25 +0000 |
Sadrul Habib Chowdhury |
This is supposed to return the key, not the row itself.
|
Tue, 22 Jan 2008 21:13:11 +0000 |
Sadrul Habib Chowdhury |
Remember the selected grouping option.
|
Tue, 22 Jan 2008 20:54:50 +0000 |
Sadrul Habib Chowdhury |
Reconstruct the 'Grouping' menu when a blist manager is un/installed.
|
Tue, 22 Jan 2008 20:42:45 +0000 |
Sadrul Habib Chowdhury |
Add the plugin in the pot.
|
Tue, 22 Jan 2008 14:14:59 +0000 |
Sadrul Habib Chowdhury |
merge of '4ca258deda6a50b61f8431bb3a742805c180a583'
|
Tue, 22 Jan 2008 08:01:23 +0000 |
Sadrul Habib Chowdhury |
Mark some strings for translation.
|
Tue, 22 Jan 2008 07:54:48 +0000 |
Sadrul Habib Chowdhury |
Add a plugin to provide 'Online/Offline' grouping and no grouping.
|
Tue, 22 Jan 2008 07:51:32 +0000 |
Sadrul Habib Chowdhury |
Do not show a context menu for an unknown node.
|
Tue, 22 Jan 2008 07:38:01 +0000 |
Sadrul Habib Chowdhury |
Add a buddy list manager for finch. This allows plugins to show the buddylist
|
Tue, 22 Jan 2008 07:28:11 +0000 |
Sadrul Habib Chowdhury |
Function to get the parent key.
|
Tue, 22 Jan 2008 02:59:56 +0000 |
Sadrul Habib Chowdhury |
Add an accessor function for PurpleChat.
|
Mon, 21 Jan 2008 19:43:55 +0000 |
Sadrul Habib Chowdhury |
Add some accessor functions for PurpleBlistNode.
|
Mon, 21 Jan 2008 07:32:49 +0000 |
Mark Doliner |
Undo revision accb4afcd6bbf17cf99d9aac0b4b448293190647. This should
|
Mon, 21 Jan 2008 07:00:02 +0000 |
Mark Doliner |
disapproval of revision 'd77adf1b9a4b44f121620f20e2643602e3f6776e'
|
Sun, 20 Jan 2008 20:52:45 +0000 |
Evan Schoenberg |
Track validity of flap_connections to prevent a crash when a disconnect is initiated via purple_timeout_add in flap_connection_schedule_destroy() and then is subsequently destroyed before the timeout is actually called.
|
Sun, 20 Jan 2008 13:54:26 +0000 |
Will Thompson |
merge of '131ee6ac42d38162c4fce7a7200a0afa01aed6ce'
|
Sun, 20 Jan 2008 12:43:00 +0000 |
Bjrn Voigt |
Fix for $(top_builddir) != $(top_srcdir)
|
Sun, 27 Jan 2008 04:26:38 +0000 |
Jeffrey Connelly |
a
|
Sun, 20 Jan 2008 07:11:10 +0000 |
Jeffrey Connelly |
a
|
Sun, 20 Jan 2008 06:48:27 +0000 |
Jeffrey Connelly |
a
|
Sun, 20 Jan 2008 06:13:25 +0000 |
Jeffrey Connelly |
a
|
Sun, 20 Jan 2008 05:52:48 +0000 |
Jeffrey Connelly |
a
|
Sun, 20 Jan 2008 05:02:15 +0000 |
Jeffrey Connelly |
a
|
Sun, 20 Jan 2008 03:02:24 +0000 |
Jeffrey Connelly |
a
|
Sat, 19 Jan 2008 04:17:44 +0000 |
John Bailey |
Fix (hopefully) the last problem in this function. Refs #3295.
|
Sat, 19 Jan 2008 00:54:44 +0000 |
Sadrul Habib Chowdhury |
Perhaps using a lighter font-weight will make the typing notification less distracting.
|
Fri, 18 Jan 2008 22:40:33 +0000 |
Sadrul Habib Chowdhury |
Fix the bug where removing the typing notification would cause the text to
|
Fri, 18 Jan 2008 15:26:59 +0000 |
Sadrul Habib Chowdhury |
merge of '2ab65ec8302949b83f1a2ce4fd9abfef611e3690'
|
Fri, 18 Jan 2008 15:13:20 +0000 |
Sadrul Habib Chowdhury |
'make -f Makefile.oot' will successfully compile the nullclient out-of-tree.
|
Thu, 17 Jan 2008 21:50:50 +0000 |
Jochen Kemnade |
updated German translation
|
Wed, 23 Jan 2008 23:28:38 +0000 |
Sean Egan |
Don't send keep-alives if we've received data since in the last KEEPALIVE_INTERVAL seconds
|
Thu, 17 Jan 2008 21:08:20 +0000 |
Sean Egan |
Only use invisible text with gtk 2.10.10 or later due to GnomeBug:382565
|
Thu, 17 Jan 2008 21:07:06 +0000 |
Sean Egan |
merge of '3b6aca6b8be6a2416cca6f8f28a7f23eaea5a974'
|
Thu, 17 Jan 2008 20:44:48 +0000 |
Sean Egan |
merge of '4b5e932e01a84088124dee9791809545cdc9240b'
|
Thu, 17 Jan 2008 08:26:49 +0000 |
Sadrul Habib Chowdhury |
merge of '74dec26c42145486ebbc521d7df8e3f33c5b168a'
|
Thu, 17 Jan 2008 08:10:50 +0000 |
Mark Doliner |
merge of '43413f6662ecd55ea083fbbacb3f16c01843e655'
|
Thu, 17 Jan 2008 08:10:37 +0000 |
Mark Doliner |
A few more of those "default_action" fixes
|
Thu, 17 Jan 2008 08:02:38 +0000 |
Mark Doliner |
A few more "purple_request_action" default action corrections
|
Thu, 17 Jan 2008 08:12:37 +0000 |
Sadrul Habib Chowdhury |
merge of '43413f6662ecd55ea083fbbacb3f16c01843e655'
|
Thu, 17 Jan 2008 07:53:03 +0000 |
Mark Doliner |
Apparently gcc gives a warning here even though it's perfectly valid
|
Thu, 17 Jan 2008 07:39:25 +0000 |
Mark Doliner |
rlaager suggested the possibility of documenting this. Sure, why not?
|
Thu, 17 Jan 2008 07:36:55 +0000 |
Mark Doliner |
Minor improvements to the default_action used in purple_action_request
|
Thu, 17 Jan 2008 07:26:57 +0000 |
Mark Doliner |
Improve oscar's default actions a tad bit
|
Thu, 17 Jan 2008 07:21:04 +0000 |
Mark Doliner |
* Clarify the documentation for purple_request_action's 'default_ation'
|
Thu, 17 Jan 2008 06:17:02 +0000 |
John Bailey |
Plug a leak.
|
Thu, 17 Jan 2008 06:11:57 +0000 |
John Bailey |
Since I needed to bring back yahoo_convert_to_numeric, I figured I could at
|
Thu, 17 Jan 2008 05:53:25 +0000 |
John Bailey |
merge of '773c6dde93b5b2109d9c627dca717dd6c5468094'
|
Wed, 16 Jan 2008 22:26:59 +0000 |
Richard Laager |
(13:48:49) Stu Tomlinson (nosnilmot): rlaager: printf() should probably
|
Wed, 16 Jan 2008 19:12:46 +0000 |
Richard Laager |
Use g_strerror() instead of strerror() in a few places.
|
Sun, 20 Jan 2008 13:31:19 +0000 |
Will Thompson |
Improve some PurpleAcountOption documentation, and sanify some whitespace.
|
Wed, 16 Jan 2008 07:51:44 +0000 |
Mark Doliner |
Only try to set the itmsurl attribute for the available status. I'd
|
Wed, 16 Jan 2008 07:40:12 +0000 |
Mark Doliner |
It's ok for us to use == here because status_id is set to one of these
|
Wed, 16 Jan 2008 07:37:39 +0000 |
Mark Doliner |
merge of '15fcc72f6db29d572909078a86fb269698314506'
|
Wed, 16 Jan 2008 07:37:29 +0000 |
Mark Doliner |
Two performance/network bandwidth related changes here, care of meebo.
|
Wed, 16 Jan 2008 07:32:39 +0000 |
Mark Doliner |
merge of '167b1c9f831eb7790b419ee62343bb62ad1be92b'
|
Wed, 16 Jan 2008 07:32:30 +0000 |
Mark Doliner |
Fix a memleak that doesn't matter because it's in a child process
|
Thu, 17 Jan 2008 05:53:12 +0000 |
John Bailey |
disapproval of revision '947ccb889812585e6d53eac13fc12734d8481e33'
|
Wed, 16 Jan 2008 07:17:21 +0000 |
John Bailey |
const-ify paramteters to some of the new API I added. I thought I did this already.
|
Wed, 16 Jan 2008 06:58:48 +0000 |
John Bailey |
Remove `yahoo_convert_to_numeric`, which I apparently did not examine closely
|
Wed, 16 Jan 2008 06:29:52 +0000 |
John Bailey |
Get rid of an unnecessary allocation.
|
Tue, 15 Jan 2008 19:33:20 +0000 |
Will Thompson |
Clarify documentation of purple_account_set_status_list(), and use @copydoc to
|
Tue, 15 Jan 2008 17:56:16 +0000 |
Mark Doliner |
merge of '59861e303c2e7d7bfe9c10a06497b1aaa47d6588'
|
Tue, 15 Jan 2008 17:56:11 +0000 |
Mark Doliner |
Update some comments in oscar's prpl callback structs
|
Tue, 15 Jan 2008 17:43:31 +0000 |
John Bailey |
ChangeLog the /notice stuff I added to IRC a while ago and forgot about.
|
Tue, 15 Jan 2008 17:42:20 +0000 |
John Bailey |
Patch from Yusuke Odate, modified by me, to support retrieving the full
|
Tue, 15 Jan 2008 17:21:51 +0000 |
Etan Reisner |
Recommit the correct parts of 55eb5e28f52c9cdccc6229a8314ffbdac2260843,
|
Tue, 15 Jan 2008 17:17:53 +0000 |
Etan Reisner |
disapproval of revision '55eb5e28f52c9cdccc6229a8314ffbdac2260843'
|
Tue, 15 Jan 2008 04:58:42 +0000 |
Etan Reisner |
Remove a variable that isn't used anywhere, if it was supposed to do something
|
Mon, 14 Jan 2008 23:29:52 +0000 |
Daniel Atallah |
Prevent a crash caused by freed memory being accessed.
|
Mon, 14 Jan 2008 22:23:54 +0000 |
Daniel Atallah |
Some more little leak fixes.
|
Mon, 14 Jan 2008 21:06:57 +0000 |
Daniel Atallah |
Don't keep a handle to the "pidgin_is_running" mutex in the installer - this causes the uninstaller to fail. There probably is a better solution, but this works for now.
|
Mon, 14 Jan 2008 19:42:14 +0000 |
Daniel Atallah |
Plug a small leak.
|
Mon, 14 Jan 2008 07:13:49 +0000 |
Mark Doliner |
More compiler warning fixes from o_sukhodolsky (with additions by me).
|
Mon, 14 Jan 2008 06:44:14 +0000 |
Mark Doliner |
I forgot that we're supposed to be using g_strerror() to guarantee a
|
Mon, 14 Jan 2008 06:32:16 +0000 |
Mark Doliner |
More of ticket #1344 from o_sukhodolsky, which rlaager has been
|
Mon, 14 Jan 2008 06:20:53 +0000 |
Mark Doliner |
I'm gonna try adding in an easter egg here, see what people thing.
|
Mon, 14 Jan 2008 04:35:22 +0000 |
Richard Laager |
Fix a compiler warning:
|
Mon, 14 Jan 2008 04:09:03 +0000 |
Richard Laager |
merge of '464169ffadabb173b3052074b132f38025b2e88d'
|
Mon, 14 Jan 2008 02:10:26 +0000 |
Jeffrey Connelly |
merge of '15b495a6774e316e3d7962181284bcf13b9ccffa'
|
Mon, 14 Jan 2008 02:06:47 +0000 |
Jeffrey Connelly |
Implement prpl_info->normalize for msimprpl, modified patch from Jaywalker.
|
Sun, 13 Jan 2008 22:54:43 +0000 |
John Bailey |
Fix overzealous hyphenation in the ChangeLog's text.
|
Sun, 13 Jan 2008 22:50:32 +0000 |
John Bailey |
Update the ChangeLog.API to reflect my API additions.
|
Sun, 13 Jan 2008 22:44:01 +0000 |
John Bailey |
This adds accessor and mutator API for the PurpleAttentionType struct.
|
Thu, 17 Jan 2008 08:01:02 +0000 |
Sadrul Habib Chowdhury |
Focus the button for the default action, if possible.
|
Sun, 13 Jan 2008 20:46:20 +0000 |
Sadrul Habib Chowdhury |
Make sure the 'connection-error' signal doesn't cause a dbus error message.
|
Sun, 13 Jan 2008 20:25:23 +0000 |
Sadrul Habib Chowdhury |
merge of '1ae0a697e31d7fa2a7f231ecd1719149f5348d82'
|
Sun, 13 Jan 2008 20:16:20 +0000 |
Sadrul Habib Chowdhury |
Show the grouped items initially. This fixes the issues with the size of the entry box in the conversation windows.
|
Sun, 13 Jan 2008 19:38:12 +0000 |
Mark Doliner |
merge of '735c3286464306d43a2109836ecbdc3bc26b479f'
|
Sun, 13 Jan 2008 01:00:29 +0000 |
John Bailey |
From what little I could see, it appears that for Yahoo Japan there is only
|
Sun, 13 Jan 2008 00:19:23 +0000 |
John Bailey |
Fix a typo that's technically correct but is irritating me.
|
Sat, 12 Jan 2008 22:05:52 +0000 |
Sadrul Habib Chowdhury |
Make setting 'now listening' actually work, thanks to khc.
|
Sat, 12 Jan 2008 19:42:02 +0000 |
Sadrul Habib Chowdhury |
Destroy the icon box only when there's one. This gets rid of a runtime warning for statusboxes without a buddy-icon selector (e.g., for an IRC account).
|
Sat, 12 Jan 2008 14:44:12 +0000 |
Sadrul Habib Chowdhury |
It turns out the tree-models need to be unref'ed.
|
Sat, 12 Jan 2008 07:48:38 +0000 |
Sadrul Habib Chowdhury |
Clean up an earlier commit. Fixes CID #379, and #378.
|
Sat, 12 Jan 2008 07:31:25 +0000 |
Sadrul Habib Chowdhury |
Fix CID #380 by using an assigned variable.
|
Thu, 17 Jan 2008 21:06:56 +0000 |
Sean Egan |
disapproval of revision '4b5e932e01a84088124dee9791809545cdc9240b'
|
Thu, 17 Jan 2008 20:37:22 +0000 |
Sean Egan |
disapproval of revision '3a3d731ceddf62d569fa8c7488782167189f44c1'
|
Sat, 12 Jan 2008 05:37:12 +0000 |
Sadrul Habib Chowdhury |
Use the 'invisible' property for text-tags (only in GTK+2.8 or above). This allows toggling on/off the timestamps on existing conversation history. References #3829.
|
Sat, 12 Jan 2008 03:24:35 +0000 |
Sadrul Habib Chowdhury |
merge of '3dc120bb73d0a2d3ce3f6339e0882bd0321e24c8'
|
Sat, 12 Jan 2008 02:24:51 +0000 |
John Bailey |
propagate from branch 'im.pidgin.pidgin' (head cc7917983d28560aebe8a2b4ba1d8135b856dce5)
|
Mon, 14 Jan 2008 04:04:08 +0000 |
Richard Laager |
Disable the DBus "Functions not exported" list. It's huge and buries the
|
Mon, 14 Jan 2008 03:40:20 +0000 |
Richard Laager |
Remove a useless NULL check before a g_free().
|
Mon, 14 Jan 2008 03:33:21 +0000 |
Richard Laager |
Revert some of my -Wstrict-prototypes fixes here, as they are causing more
|
Mon, 14 Jan 2008 03:26:47 +0000 |
Richard Laager |
Part of a large patch from o_sukhodolsky to fix some build warnings.
|
Sun, 13 Jan 2008 21:30:50 +0000 |
Richard Laager |
Part of a large patch from o_sukhodolsky to fix some build warnings.
|
Sun, 13 Jan 2008 21:24:59 +0000 |
Richard Laager |
Part of a large patch from o_sukhodolsky to fix some build warnings.
|
Sun, 13 Jan 2008 21:20:19 +0000 |
Richard Laager |
Part of a large patch from o_sukhodolsky to fix some build warnings.
|
Sun, 13 Jan 2008 21:15:04 +0000 |
Richard Laager |
Part of a large patch from o_sukhodolsky to fix some build warnings.
|
Sun, 13 Jan 2008 21:04:47 +0000 |
Richard Laager |
Part of a large patch from o_sukhodolsky to fix some build warnings.
|
Sun, 13 Jan 2008 20:51:33 +0000 |
Richard Laager |
Fix a compiler warning:
|
Sun, 13 Jan 2008 20:50:53 +0000 |
Richard Laager |
Part of a large patch from o_sukhodolsky to fix some build warnings.
|
Sun, 13 Jan 2008 20:48:56 +0000 |
Richard Laager |
Part of a large patch from o_sukhodolsky to fix some build warnings.
|
Sun, 13 Jan 2008 20:46:18 +0000 |
Richard Laager |
Part of a large patch from o_sukhodolsky to fix some build warnings.
|
Sun, 13 Jan 2008 16:44:39 +0000 |
Richard Laager |
Allow --sync to reach gtk initialization. This is basically the same as
|
Sun, 13 Jan 2008 16:25:11 +0000 |
Andreas Sthrk |
A patch from Andreas Sthrk (Trundle) to fix a problem with our DBus code
|
Sun, 13 Jan 2008 16:20:28 +0000 |
Richard Laager |
Add some files to po/POTFILES.in to silence warnings from intltool.
|
Fri, 11 Jan 2008 00:01:33 +0000 |
Mark Doliner |
Default for "do you want to add this buddy?" for oscar is now "no"
|
Thu, 10 Jan 2008 22:12:27 +0000 |
Will Thompson |
Sir Alec Guinness was horrified to see this.
|
Thu, 10 Jan 2008 20:24:58 +0000 |
Daniel Atallah |
Patch from Will Hawkins to implement sending a SIP-If-Match header on subsequent PUBLISHes after receiving a SIP-Etag header. I made some minor tweaks to this, hopefully I didn't break anything. Fixes #4422.
|
Fri, 11 Jan 2008 23:21:16 +0000 |
Sadrul Habib Chowdhury |
Ignore both NULL and empty strings.
|
Thu, 10 Jan 2008 02:28:48 +0000 |
Sadrul Habib Chowdhury |
merge of '2654fa4bf505fd6b8e400e329323a4b8fb67126f'
|
Tue, 08 Jan 2008 13:17:59 +0000 |
Hallvard Glad |
merge of 'd32a0c1772bb88a80d5370ff93e7c4b8cf007608'
|
Sun, 30 Dec 2007 23:52:38 +0000 |
Hallvard Glad |
update on the norwegian bokml translation (nb.po)
|
Sun, 24 Feb 2008 18:20:52 +0000 |
John Bailey |
A patch from Gideon N. Guillen, with some minor modifications from me. This
|
Thu, 10 Jan 2008 02:28:42 +0000 |
Sadrul Habib Chowdhury |
merge of '6523df90f67ed0428e11d3ebc7bf15777986ebcf'
|
Wed, 09 Jan 2008 22:14:17 +0000 |
Daniel Atallah |
This makes authorization requests go away when the account is disconnected. It will leak the protocol's user_data, but without an API change, there isn't much that can be done about that. References #4609
|
Wed, 09 Jan 2008 19:10:27 +0000 |
Daniel Atallah |
Fix a crash when accepting/denying a yahoo auth. request when the account is disconnected. References #4581
|
Wed, 09 Jan 2008 19:07:16 +0000 |
Daniel Atallah |
Fix the _presence._tcp. record not to be referred to as the ICHAT_PRESENCE, that has been bothering me for a while.
|
Wed, 09 Jan 2008 19:04:28 +0000 |
Daniel Atallah |
Fix an issue where the Start Menu shortcut wasn't selected by default when not installed. Fixes #4489.
|
Thu, 10 Jan 2008 02:27:04 +0000 |
Sadrul Habib Chowdhury |
Prpls seem to be sending '\n' (or '\r\n') for newlines, instead of '<br>' to the core. Fixes #4545.
|
Wed, 09 Jan 2008 14:41:29 +0000 |
Sadrul Habib Chowdhury |
Don't print 'file transfer complete' message more than once for the same xfer.
|
Wed, 09 Jan 2008 08:42:33 +0000 |
Sadrul Habib Chowdhury |
Remove the completed/cancelled xfers when 'Clear finished transfers' is selected. (Did anyone notice our 'purple_xfer_is_canceled' is typoed?)
|
Wed, 09 Jan 2008 02:16:11 +0000 |
Sadrul Habib Chowdhury |
merge of '1c032cc023d809fb900c6bbf99dcd8619b815131'
|
Tue, 08 Jan 2008 22:01:22 +0000 |
Evan Schoenberg |
merge of '5d18b4aee9c05f592af532f9155aadb23ad11d4b'
|
Tue, 08 Jan 2008 17:16:57 +0000 |
Ethan Blanton |
Fix notice on /me
|
Tue, 08 Jan 2008 10:16:26 +0000 |
Jochen Kemnade |
German translation update
|
Tue, 08 Jan 2008 03:46:41 +0000 |
Stu Tomlinson |
Use a unique chat id across all sessions for multi-user chats, probably
|
Tue, 08 Jan 2008 03:28:48 +0000 |
Stu Tomlinson |
Huh, you want to be able to compile? I clearly (or not so clearly) need new
|
Tue, 08 Jan 2008 03:03:15 +0000 |
Stu Tomlinson |
Adjust some network error fatalities and things
|
Tue, 08 Jan 2008 03:02:08 +0000 |
Stu Tomlinson |
Apparently "nil" is an Objective-C thing
|
Tue, 08 Jan 2008 03:00:20 +0000 |
Stu Tomlinson |
merge of 'a5456268d56c1a4745ac4abb84a176ecc6f68109'
|
Tue, 08 Jan 2008 01:18:10 +0000 |
Sean Egan |
shorted the 'typing then stopped' message
|
Tue, 08 Jan 2008 01:11:59 +0000 |
Sean Egan |
ifdef out the typing menu tray icon, as the inline typing notifications do a better job notifying, I think
|
Tue, 08 Jan 2008 21:58:31 +0000 |
Evan Schoenberg |
If the UI sets a cache directory before purple_buddy_icons_init() is called
|
Tue, 08 Jan 2008 02:47:51 +0000 |
Evan Schoenberg |
There's nothing wrong with calling purple_buddy_icons_find() can not receiving an icon in return - it just means that no icon was found. We shouldn't attempt to call purple_buddy_icon_ref() on NULL, which will trigger a failed assertion.
|
Tue, 08 Jan 2008 00:22:48 +0000 |
Andreas Monitzer |
Now checking the hostname supplied by the user, or the host-part of the JID when no host name is given against the CN of the domain. This makes libpurple comply to the RFC. Fixes http://trac.adiumx.com/ticket/8787
|
Mon, 07 Jan 2008 23:20:40 +0000 |
Evan Schoenberg |
Remove spurious braces
|
Mon, 07 Jan 2008 19:04:10 +0000 |
Bjrn Voigt |
German update
|
Mon, 07 Jan 2008 16:28:25 +0000 |
Mark Doliner |
merge of '5fc55e3a78ccb0a463df332592e62c5a371cd8b4'
|
Mon, 07 Jan 2008 15:52:50 +0000 |
Richard Laager |
Add Shreevatsa R for the Python she-bang line changes.
|
Wed, 09 Jan 2008 02:14:29 +0000 |
Sadrul Habib Chowdhury |
I am going to go ahead and commit+push this revision/fix of purple_conversation_new.
|
Mon, 07 Jan 2008 15:16:33 +0000 |
Sadrul Habib Chowdhury |
Unset some stuff to make sure Sylar can't kill us.
|
Mon, 07 Jan 2008 09:14:39 +0000 |
Sadrul Habib Chowdhury |
compile
|
Mon, 07 Jan 2008 06:19:57 +0000 |
Sadrul Habib Chowdhury |
merge of 'd11aaeee05a52eb367ad7d81f82a36b7a0501bcf'
|
Mon, 07 Jan 2008 00:32:26 +0000 |
Evan Schoenberg |
If the cached buddy icon can't be loaded, delete the preferences which point to it. Among other things, this fixes OSCAR buddy icon retrieval when the cache has been removed - since previously the icon hash was kept around and was used to determine that (so far as the prpl could tell) no icon retrieval was needed, libpurple would never have an icon for the contact.
|
Mon, 07 Jan 2008 06:16:46 +0000 |
Sadrul Habib Chowdhury |
Remember the size of the roomlist window. Handle the categories better.
|
Sun, 06 Jan 2008 20:59:02 +0000 |
Sadrul Habib Chowdhury |
Typo can cause crashes.
|
Sun, 06 Jan 2008 21:56:12 +0000 |
John Bailey |
Fix a couple compile warnings.
|
Sun, 06 Jan 2008 21:47:02 +0000 |
John Bailey |
Fix my typo
|
Sun, 06 Jan 2008 21:15:17 +0000 |
John Bailey |
Some readability changes. Refs #4533.
|
Sun, 06 Jan 2008 19:48:18 +0000 |
John Bailey |
Give credit where due.
|
Sun, 06 Jan 2008 19:45:03 +0000 |
Thanumalayan |
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
|
Sun, 06 Jan 2008 19:28:49 +0000 |
John Bailey |
Revert patch that added receive-only transfer support for Yahoo protocol
|
Sun, 06 Jan 2008 19:02:57 +0000 |
Sadrul Habib Chowdhury |
merge of '534709237b5a9cb6acf039eba7344401c9cf8ac4'
|
Sat, 05 Jan 2008 18:41:33 +0000 |
Richard Laager |
Don't assume perl is at /usr/bin/perl, use /usr/bin/env instead. This is not
|
Sat, 05 Jan 2008 18:36:23 +0000 |
Richard Laager |
These don't seem to require bash.
|
Sat, 05 Jan 2008 18:34:04 +0000 |
Richard Laager |
A small patch from shreevatsa: "Some of the Python scripts start with
|
Sat, 05 Jan 2008 18:07:16 +0000 |
Richard Laager |
merge of '418bc7dd4e063c50039bba0d51b489b568f9aaaa'
|
Sat, 05 Jan 2008 18:01:12 +0000 |
Richard Laager |
Squash some compiler warnings, some from my -Wstrict-prototypes fixing.
|
Sat, 05 Jan 2008 17:14:32 +0000 |
Richard Laager |
Clarify a comment that was confusing me. Thanks resiak!
|
Sat, 05 Jan 2008 16:32:40 +0000 |
Moos Heintzen |
Save the conversation "Enable Logging" option per-contact.
|
Thu, 03 Jan 2008 20:28:16 +0000 |
Richard Laager |
Turn off -Wstrict-prototypes until the issues in these libraries are fixed:
|
Thu, 03 Jan 2008 04:57:40 +0000 |
Richard Laager |
Probe for -Wstrict-prototypes to get some more warnings. I then cleaned up
|
Sun, 06 Jan 2008 19:01:24 +0000 |
Sadrul Habib Chowdhury |
Implementation of the roomlist API.
|
Sun, 06 Jan 2008 18:53:47 +0000 |
Sadrul Habib Chowdhury |
Add a function to get a widget for a request field.
|
Sun, 06 Jan 2008 18:52:15 +0000 |
Sadrul Habib Chowdhury |
A list of accessor functions to the roomlist API.
|
Sat, 05 Jan 2008 14:34:41 +0000 |
Ethan Blanton |
An additional push from Gabriel's omgp.pidgin.add-widget-util branch.
|
Sat, 05 Jan 2008 14:32:59 +0000 |
Ethan Blanton |
Allow INTLTOOL_MSGFMT to also be a valid value of MSGFMT for our
|
Sat, 05 Jan 2008 12:31:53 +0000 |
Jochen Kemnade |
German translation update
|
Sat, 05 Jan 2008 11:08:48 +0000 |
Sadrul Habib Chowdhury |
Utility functions to set and format song information. Closes #4398.
|
Sat, 05 Jan 2008 10:45:29 +0000 |
Sadrul Habib Chowdhury |
merge of '1858be5916da7bce36f3c991bcd71fc65271048d'
|
Mon, 07 Jan 2008 16:28:12 +0000 |
Mark Doliner |
Credit for 1858be5916da7bce36f3c991bcd71fc65271048d. References #4052.
|
Sat, 05 Jan 2008 08:46:25 +0000 |
Mark Doliner |
Some changes intended to make oscar not emit so many
|
Sat, 05 Jan 2008 08:15:43 +0000 |
Mark Doliner |
Now that oscar throttles itself as it approaches the rate limit, we can
|
Sat, 05 Jan 2008 07:49:15 +0000 |
Mark Doliner |
Minor comment changes
|
Sat, 05 Jan 2008 07:47:22 +0000 |
Mark Doliner |
We're not actually using these KNOWNGOOD defines, but should we ever
|
Sat, 05 Jan 2008 07:33:13 +0000 |
Mark Doliner |
Partial support for reading ICQ 6 status notes. The status note will
|
Sat, 05 Jan 2008 10:43:25 +0000 |
Gabriel Schulhof |
Remove a lot of duplication from a lot of places. Closes #4558.
|
Sat, 05 Jan 2008 02:16:30 +0000 |
Sadrul Habib Chowdhury |
Show the emblem in conversation infopane correctly for chats.
|
Fri, 04 Jan 2008 22:57:51 +0000 |
Sadrul Habib Chowdhury |
Fix an infinite loop. Fixes #4486.
|
Fri, 04 Jan 2008 22:48:25 +0000 |
Sadrul Habib Chowdhury |
merge of '26afdc5e8f0e60ae1cc245decbcee7ece0a2f29f'
|
Fri, 04 Jan 2008 21:30:24 +0000 |
Daniel Atallah |
We can't rely on g_strerror() being set by g_file_test().
|
Fri, 04 Jan 2008 20:41:08 +0000 |
Daniel Atallah |
Detect the mdnsresponder crashing in the DnsSD implementation and disconnect the account instead of pegging the CPU.
|
Fri, 04 Jan 2008 22:45:57 +0000 |
Sadrul Habib Chowdhury |
Show prpl icons in the tooltip for groups.
|
Fri, 04 Jan 2008 20:34:23 +0000 |
Sadrul Habib Chowdhury |
Get rid of some wasted empty space in the tooltips for chats and groups.
|
Fri, 04 Jan 2008 16:47:39 +0000 |
Sadrul Habib Chowdhury |
merge of '30ea4e4dc3c93772f4022f23b41bb489eb0ac56b'
|
Fri, 04 Jan 2008 14:45:25 +0000 |
Bjrn Voigt |
German update: GTK plugin
|
Fri, 04 Jan 2008 09:59:05 +0000 |
Jochen Kemnade |
update for German translation
|
Fri, 04 Jan 2008 16:45:11 +0000 |
Sadrul Habib Chowdhury |
Blink the buddies that signed on/off recently for six seconds.
|
Fri, 04 Jan 2008 01:10:09 +0000 |
Daniel Atallah |
This is how the error handling for the win32 single instance mutex is supposed to work.
|
Fri, 04 Jan 2008 01:09:13 +0000 |
Daniel Atallah |
Improve error handling, particularly the debug output. I was hoping that this would provide some debug output that could be used to figure out how to detect and disconnect when the mdnsResponder crashes, but that doesn't appear to be the case.
|
Thu, 03 Jan 2008 22:07:02 +0000 |
Bjrn Voigt |
German update
|
Thu, 03 Jan 2008 18:31:58 +0000 |
Stu Tomlinson |
Fixes for incorrectly displaying user tune emblem and empty current media.
|
Thu, 03 Jan 2008 11:12:36 +0000 |
Sadrul Habib Chowdhury |
New actions: window-next-urgent (alt+tab), and window-prev-urgent (alt+shift+tab).
|
Wed, 02 Jan 2008 22:15:06 +0000 |
Richard Laager |
merge of '46216b10d02d4e5cae2343e469f0e405088537d3'
|
Wed, 02 Jan 2008 14:01:50 +0000 |
Will Thompson |
Clear up some documentation.
|
Wed, 02 Jan 2008 14:01:15 +0000 |
Will Thompson |
Masca noticed that dc6923294f5f33ff7a52a998e1b9e9ad47be0211 made jabber.c not
|
Wed, 02 Jan 2008 12:07:15 +0000 |
Sadrul Habib Chowdhury |
Remove unused code.
|
Wed, 02 Jan 2008 12:04:27 +0000 |
Sadrul Habib Chowdhury |
Modified patch from Gabriel (Sylar?) Schulof to deprecate PIDGIN_DIALOG. Closes #4535. (PS: I am aware of --author).
|
Wed, 02 Jan 2008 11:05:09 +0000 |
Sadrul Habib Chowdhury |
Mark a string for translation.
|
Wed, 02 Jan 2008 06:42:29 +0000 |
Evan Schoenberg |
merge of '7e8103bd3c5298a43a4e18bb59037980f5c213c9'
|
Mon, 31 Dec 2007 03:06:42 +0000 |
John Bailey |
Felipe Contreras, one of our older Crazy Pacth Writers, noticed that these
|
Sun, 30 Dec 2007 18:46:56 +0000 |
John Bailey |
Added /notice support for IRC. If I didn't do this properly, feel free
|
Sun, 30 Dec 2007 13:56:01 +0000 |
Sadrul Habib Chowdhury |
merge of '1e815cbbfe7f16f64d88932b88cb027889830b52'
|
Sun, 30 Dec 2007 13:53:57 +0000 |
Sadrul Habib Chowdhury |
Fix a double-free when unloading dependent plugins. Fixes #4488.
|
Wed, 02 Jan 2008 06:36:35 +0000 |
Evan Schoenberg |
Keep track of the keepalive timeout source so it can be removed when the account disconnects. This prevents a possible crash if the timeout fired after the account disconnected.
|