Changeset 6d212f4


Ignore:
Timestamp:
2016-12-26T00:20:09Z (7 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
59ccef5
Parents:
7486853
git-author:
dequis <dx@…> (25-12-16 23:41:13)
git-committer:
dequis <dx@…> (26-12-16 00:20:09)
Message:

purple: include purple plugins in the 'plugins' command list

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • protocols/purple/purple.c

    r7486853 r6d212f4  
    16401640        }
    16411641}
     1642
     1643/* borrowing this semi-private function
     1644 * TODO: figure out a better interface later (famous last words) */
     1645gboolean plugin_info_add(struct plugin_info *info);
    16421646
    16431647void purple_initmodule()
     
    17411745                PurplePluginProtocolInfo *pi = prot->info->extra_info;
    17421746                struct prpl *ret;
     1747                struct plugin_info *info;
    17431748
    17441749                /* If we already have this one (as a native module), don't
     
    17751780                        register_protocol(ret);
    17761781                }
     1782
     1783                info = g_new0(struct plugin_info, 1);
     1784                info->abiver = BITLBEE_ABI_VERSION_CODE;
     1785                info->name = ret->name;
     1786                info->version = prot->info->version;
     1787                info->description = prot->info->description;
     1788                info->author = prot->info->author;
     1789                info->url = prot->info->homepage;
     1790
     1791                plugin_info_add(info);
    17771792        }
    17781793
  • root_commands.c

    r7486853 r6d212f4  
    12221222
    12231223        for (l = get_plugins(); l; l = l->next) {
     1224                char *c;
    12241225                info = l->data;
    1225                 irc_rootmsg(irc, format, info->name, info->version);
     1226
     1227                /* some purple plugins like to include several versions separated by newlines... */
     1228                if ((c = strchr(info->version, '\n'))) {
     1229                        char *version = g_strndup(info->version, c - info->version);
     1230                        irc_rootmsg(irc, format, info->name, version);
     1231                        g_free(version);
     1232                } else {
     1233                        irc_rootmsg(irc, format, info->name, info->version);
     1234                }
    12261235        }
    12271236#endif
Note: See TracChangeset for help on using the changeset viewer.