pidgin/purple-plugin-pack

Parents 37ba303c9659
Children 03159218e6f2
Fix a typo I made in this plugin ages ago that made the umode prefs not work.
Fixes #589. Awaiting information to credit the patch author.
--- a/ChangeLog Tue Oct 27 01:10:59 2009 -0500
+++ b/ChangeLog Fri Oct 30 15:03:38 2009 -0400
@@ -1,3 +1,7 @@
+Version 2.6.1: ??/??/??
+ * Fix the "Set User Modes On Connect" and "Unset User Modes On Connect"
+ settings provided by irc-more on IRC accounts.
+
Version 2.6.0: 08/30/09
* Fix grouping of radio buttons in switchspell menu for enchant-enabled
GtkSpell. This has the side effect of eliminating slow tab switching
--- a/irc-more/irc-more.c Tue Oct 27 01:10:59 2009 -0500
+++ b/irc-more/irc-more.c Fri Oct 30 15:03:38 2009 -0400
@@ -33,8 +33,8 @@
#define CTCP_REPLY purple_account_get_string(account, "ctcp-message", "Purple IRC")
#define PART_MESSAGE purple_account_get_string(account, "part-message", "Leaving.")
#define QUIT_MESSAGE purple_account_get_string(account, "quit-message", "Leaving.")
-#define SET_UMODES purple_account_get_string(account, "umodes", "i")
-#define UNSET_UMODES purple_account_get_string(account, "umodes", NULL)
+#define SET_UMODES purple_account_get_string(account, "setumodes", "i")
+#define UNSET_UMODES purple_account_get_string(account, "unsetumodes", NULL)
#define PLUGIN_ID "core-plugin_pack-irc-more"