# HG changeset patch # User Mikael Berthe # Date 1300905052 -3600 # Node ID d1826ea1d01fbe6e383b447996e05911363edabc # Parent ab9dad1e6d66231b6811972b26dacf2c36172618 Module should still work with mcabber 0.10.0 diff -r ab9dad1e6d66 -r d1826ea1d01f disco.c --- a/disco.c Mon Mar 07 19:41:44 2011 +0100 +++ b/disco.c Wed Mar 23 19:30:52 2011 +0100 @@ -69,6 +69,17 @@ .next = &info_disco_experimental, }; +module_info_t info_disco_0_10_0 = { + .branch = "0.10.0", + .api = 1, + .version = PROJECT_VERSION, + .description = DESCRIPTION, + .requires = NULL, + .init = disco_init, + .uninit = disco_uninit, + .next = &info_disco_dev, +}; + module_info_t info_disco = { .branch = "0.10.1", .api = 1, @@ -77,7 +88,7 @@ .requires = NULL, .init = disco_init, .uninit = disco_uninit, - .next = &info_disco_dev, + .next = &info_disco_0_10_0, }; //