Commit 46a3ec81 authored by Dele Olajide's avatar Dele Olajide

monitoring plugin version 1.4.7

Fixed feature-not-implemented error
parent 8964411b
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
border-bottom : 1px #ccc solid; border-bottom : 1px #ccc solid;
padding-bottom : 2px; padding-bottom : 2px;
} }
TT { TT {
font-family : courier new; font-family : courier new;
font-weight : bold; font-weight : bold;
...@@ -44,6 +44,11 @@ ...@@ -44,6 +44,11 @@
Monitoring Plugin Changelog Monitoring Plugin Changelog
</h1> </h1>
<p><b>1.4.7</b> -- Oct 13, 2015</p>
<ul>
<li>Fixed feature-not-implemented error</li>
</ul>
<p><b>1.4.6</b> -- Aug 11, 2015</p> <p><b>1.4.6</b> -- Aug 11, 2015</p>
<ul> <ul>
<li>Added support for XEP-0313: Message Archive Management</li> <li>Added support for XEP-0313: Message Archive Management</li>
...@@ -96,7 +101,7 @@ Monitoring Plugin Changelog ...@@ -96,7 +101,7 @@ Monitoring Plugin Changelog
<p><b>1.3.1-rc1</b> -- April 30, 2013</p> <p><b>1.3.1-rc1</b> -- April 30, 2013</p>
<ul> <ul>
<li>OF-611 - Monitoring plugin 1.3.0 is not updating IDs of older archived messages.</li> <li>OF-611 - Monitoring plugin 1.3.0 is not updating IDs of older archived messages.</li>
<li>OF-646 - Reverts XmppDateTimeFormat integration which broke querying via XEP-0136.</li> <li>OF-646 - Reverts XmppDateTimeFormat integration which broke querying via XEP-0136.</li>
<li>OF-664 - Monitoring archive shows null in room chat logs.</li> <li>OF-664 - Monitoring archive shows null in room chat logs.</li>
<li>OF-667 - Monitoring plugin bad SQL for upgrade</li> <li>OF-667 - Monitoring plugin bad SQL for upgrade</li>
......
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
<name>Monitoring Service</name> <name>Monitoring Service</name>
<description>Monitors conversations and statistics of the server.</description> <description>Monitors conversations and statistics of the server.</description>
<author>Jive Software</author> <author>Jive Software</author>
<version>1.4.6</version> <version>1.4.7</version>
<date>08/11/2015</date> <date>10/13/2015</date>
<minServerVersion>3.9.0</minServerVersion> <minServerVersion>3.9.0</minServerVersion>
<databaseKey>monitoring</databaseKey> <databaseKey>monitoring</databaseKey>
<databaseVersion>3</databaseVersion> <databaseVersion>3</databaseVersion>
......
...@@ -191,12 +191,6 @@ public class MonitoringPlugin implements Plugin { ...@@ -191,12 +191,6 @@ public class MonitoringPlugin implements Plugin {
} }
picoContainer.start(); picoContainer.start();
xep0136Support = new Xep0136Support(XMPPServer.getInstance());
xep0136Support.start();
xep0313Support = new Xep0313Support(XMPPServer.getInstance());
xep0313Support.start();
} }
public void destroyPlugin() { public void destroyPlugin() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment