org.guifications.gf2: 2e725c57c4f53004bae099e4056ed753cfaf1428
grim at guifications.org
grim at guifications.org
Sun Feb 10 12:25:08 CST 2008
-----------------------------------------------------------------
Revision: 2e725c57c4f53004bae099e4056ed753cfaf1428
Ancestor: 9a1469157b034b2a0dfaddd6986234464f0b33e2
Author: grim at guifications.org
Date: 2008-02-10T18:22:09
Branch: org.guifications.gf2
Modified files:
ChangeLog VERSION configure.ac src/gf_event.c
ChangeLog:
fixed nick-said notifications to only work when your nick isn't embeded in another word
-----------------------------------------------------------------
This revision's diffstat output:
ChangeLog | 5 +++++
VERSION | 2 +-
configure.ac | 13 +------------
src/gf_event.c | 2 +-
4 files changed, 8 insertions(+), 14 deletions(-)
-------------- next part --------------
============================================================
--- ChangeLog 00798b06d2ea8aa65c4ce62541065ab0bc972a0b
+++ ChangeLog 1b34625c58efcbfcf64ce1ffc8ed439bcd7132d9
@@ -1,3 +1,8 @@
+Version 2.17 ;
+ * Made the nick-said notification not fire if your nick is in another word.
+ For example, if my nick is grim, it will not fire when someone says
+ grimmy.
+
Version 2.16 12/16/07:
* Really fixed the G_GNUC_NULL_TERMINATED errors on non-Windows platforms.
============================================================
--- VERSION 68c7022b5d84f177427abf75d045fc930f72f456
+++ VERSION 82f06b91b3ecf5f3be2f7ff31698282bd244a7ff
@@ -1 +1 @@
-2.16
+2.17mtn
============================================================
--- configure.ac 61421f4838c26ea37cbc26af1dd10be6a9ec82aa
+++ configure.ac fcde5da5fa0845f316db579a34f34b3db21e4b06
@@ -1,9 +1,9 @@
#
# Most of this configure script was ripped from pidgin or the
# pidgin-encryption configure script, thanks guys ;)
#
-AC_INIT([pidgin-guifications], [2.16], [guifications-devel at lists.guifications.org])
+AC_INIT([pidgin-guifications], [2.17mtn], [guifications-devel at lists.guifications.org])
AC_CANONICAL_SYSTEM
AM_CONFIG_HEADER(pre_config.h)
@@ -125,17 +125,6 @@ AC_SUBST(PANGOFT2_LIBS)
AC_SUBST(PANGOFT2_LIBS)
#
-# check for libxml2 (ripped from configure.ac for Pidgin)
-# I left out AC_SUBST stuff because it looks like we don't need it.
-#
-PKG_CHECK_MODULES(LIBXML, [libxml-2.0 >= 2.6.0], , [
- AC_MSG_RESULT(no)
- AC_MSG_ERROR([
-*** You must have libxml2 >= 2.6.0 development headers installed in
-*** order to build guifications.
-])])
-
-#
# Check if plugins are enabled
#
want_plugins=yes
============================================================
--- src/gf_event.c 4f6bd35352941ecb62592b809a7f63068ad0c663
+++ src/gf_event.c cfc1852faa151087ce8f02adef8fc6c80e18b73d
@@ -499,7 +499,7 @@ gf_event_chat_nick(PurpleAccount *accoun
if (nick && !strcmp(sender, nick))
return;
- if(!g_strstr_len(message, strlen(message), nick))
+ if(!purple_utf8_has_word(message, nick))
return;
plain_message = purple_markup_strip_html(message);
More information about the Plugins-commits
mailing list