# HG changeset patch # User nenolod # Date 1179996508 25200 # Node ID fa6c339cce386236cdd063c676358d959543f50e # Parent 2685fc11cd9a0b029419d8a893c848e2d92809c1 [svn] - chase r4614. diff -r 2685fc11cd9a -r fa6c339cce38 ChangeLog --- a/ChangeLog Thu May 24 01:47:50 2007 -0700 +++ b/ChangeLog Thu May 24 01:48:28 2007 -0700 @@ -1,3 +1,11 @@ +2007-05-24 08:47:50 +0000 William Pitcock + revision [4614] + - begin work on the host side of plugin API v2. + + trunk/src/audacious/plugin.h | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + + 2007-05-24 06:03:10 +0000 William Pitcock revision [4612] - update macedonian translation. closes #915. diff -r 2685fc11cd9a -r fa6c339cce38 src/audacious/build_stamp.c --- a/src/audacious/build_stamp.c Thu May 24 01:47:50 2007 -0700 +++ b/src/audacious/build_stamp.c Thu May 24 01:48:28 2007 -0700 @@ -1,2 +1,2 @@ #include -const gchar *svn_stamp = "20070524-4612"; +const gchar *svn_stamp = "20070524-4614"; diff -r 2685fc11cd9a -r fa6c339cce38 src/audacious/pluginenum.c --- a/src/audacious/pluginenum.c Thu May 24 01:47:50 2007 -0700 +++ b/src/audacious/pluginenum.c Thu May 24 01:48:28 2007 -0700 @@ -172,7 +172,6 @@ general_plugin_init(Plugin * plugin) { GeneralPlugin *p = GENERAL_PLUGIN(plugin); - p->xmms_session = -1; gp_data.general_list = g_list_append(gp_data.general_list, p); } @@ -180,7 +179,6 @@ vis_plugin_init(Plugin * plugin) { VisPlugin *p = VIS_PLUGIN(plugin); - p->xmms_session = -1; p->disable_plugin = vis_disable_plugin; vp_data.vis_list = g_list_append(vp_data.vis_list, p); }