# HG changeset patch # User Myhailo Danylenko # Date 1309364716 -10800 # Node ID c035fbbab184ab228e32723b2d915496b2884b7f # Parent a8151b97e13c2b2ba9930c31031d5acb2fe674b3 Update mcabber versions diff -r a8151b97e13c -r c035fbbab184 pep.c --- a/pep.c Sat May 07 03:40:02 2011 +0300 +++ b/pep.c Wed Jun 29 19:25:16 2011 +0300 @@ -35,9 +35,9 @@ #define DESCRIPTION ( "Common PEP events listener" ) -static module_info_t info_pep_experimental = { - .branch = "experimental", - .api = 27, +static module_info_t info_pep_dev = { + .branch = "dev", + .api = 20, .version = PROJECT_VERSION, .description = DESCRIPTION, .requires = NULL, @@ -46,18 +46,7 @@ .next = NULL, }; -static module_info_t info_pep_dev = { - .branch = "dev", - .api = 13, - .version = PROJECT_VERSION, - .description = DESCRIPTION, - .requires = NULL, - .init = pep_init, - .uninit = pep_uninit, - .next = &info_pep_experimental, -}; - -module_info_t info_pep = { +module_info_t info_pep_0_10_0 = { .branch = "0.10.0", .api = 1, .version = PROJECT_VERSION, @@ -68,6 +57,17 @@ .next = &info_pep_dev, }; +module_info_t info_pep = { + .branch = "0.10.1", + .api = 1, + .version = PROJECT_VERSION, + .description = DESCRIPTION, + .requires = NULL, + .init = pep_init, + .uninit = pep_uninit, + .next = &info_pep_0_10_0, +}; + typedef struct pep_handler_struct pep_handler_t; struct pep_handler_struct {