Module should still work with mcabber 0.10.0
authorMikael Berthe <mikael@lilotux.net>
Wed, 23 Mar 2011 19:30:52 +0100
changeset 40 d1826ea1d01f
parent 39 ab9dad1e6d66
child 41 8f415b2e3851
Module should still work with mcabber 0.10.0
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,
 };
 
 //