tune.c
changeset 35 a77a8e7ab8ae
parent 31 e404cd1c7077
child 41 cfb02882828d
--- a/tune.c	Sun Jul 22 15:45:05 2012 +0300
+++ b/tune.c	Sun Jul 22 15:50:50 2012 +0300
@@ -44,9 +44,9 @@
 
 static const gchar *deps[] = { "pep_tune", NULL };
 
-static module_info_t info_tune_dev = {
-	.branch      = "dev",
-	.api         = 20,
+module_info_t info_tune = {
+	.branch      = MCABBER_BRANCH,
+	.api         = MCABBER_API_VERSION,
 	.version     = PROJECT_VERSION,
 	.description = DESCRIPTION,
 	.requires    = deps,
@@ -55,28 +55,6 @@
 	.next        = NULL,
 };
 
-static module_info_t info_tune_0_10_0 = {
-	.branch      = "0.10.0",
-	.api         = 1,
-	.version     = PROJECT_VERSION,
-	.description = DESCRIPTION,
-	.requires    = deps,
-	.init        = tune_init,
-	.uninit      = tune_uninit,
-	.next        = &info_tune_dev,
-};
-
-module_info_t info_tune = {
-	.branch      = "0.10.1",
-	.api         = 1,
-	.version     = PROJECT_VERSION,
-	.description = DESCRIPTION,
-	.requires    = deps,
-	.init        = tune_init,
-	.uninit      = tune_uninit,
-	.next        = &info_tune_0_10_0,
-};
-
 //
 //  globals
 //