Commit 8b8a6c0003cf81bd106df39bdbd519e00c71ba7e

Authored by Matti Virkkunen
1 parent 5e0b8b78

Change plugin ID (→prpl-line) and update homepage.

Note: The plugin ID has changed so accounts will show up as "Unknown" protocol. To fix, edit each account and change the type back to LINE, save, and restart Pidgin.
libpurple/constants.hpp
1 1 #pragma once
2 2  
3   -#define LINE_PRPL_ID "prpl-mvirkkunen-line"
  3 +#define LINE_PRPL_ID "prpl-line"
4 4  
5 5 #define LINE_THRIFT_SERVER "gd2.line.naver.jp"
6 6 #define LINE_OS_SERVER "os.line.naver.jp"
... ...
libpurple/pluginmain.cpp
... ... @@ -38,7 +38,7 @@ static void init_info(PurplePluginInfo &i) {
38 38 i.summary = (char *)"Plugin for Naver LINE";
39 39 i.description = (char *)"Plugin for Naver LINE";
40 40 i.author = (char *)"Matti Virkkunen <[email protected]>";
41   - i.homepage = (char *)"https://github.com/mvirkkunen/purple-line";
  41 + i.homepage = (char *)"http://altrepo.eu/git/purple-line";
42 42  
43 43 i.destroy = line_plugin_destroy;
44 44 i.extra_info = (void *)&prpl_info;
... ...
libpurple/purpleline.hpp
... ... @@ -14,8 +14,6 @@
14 14 #include "poller.hpp"
15 15 #include "pinverifier.hpp"
16 16  
17   -#define LINEPRPL_ID "prpl-mvirkkunen-line"
18   -
19 17 class ThriftClient;
20 18  
21 19 template <typename T>
... ...