From 8ddce98d22235efe17088840f9990de54ff0c6d5 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Thu, 1 May 2014 13:29:23 +0000 Subject: [PATCH] v1.0.3: 01.05.2014 - compatible with WebApp 1.5 and WebApp 1.6 --- build.xml | 2 +- changelog.txt | 3 +++ js/plugin.contactimporter.js | 15 ++++++--------- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/build.xml b/build.xml index fe7db62..687da16 100644 --- a/build.xml +++ b/build.xml @@ -1,6 +1,6 @@ - + diff --git a/changelog.txt b/changelog.txt index d377021..2dd26af 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,6 @@ +v1.0.3: 01.05.2014 + - compatible with WebApp 1.5 and WebApp 1.6 + v1.0.2: 06.11.2013 - fixed: importing attachments - fixed: plugin not enabled bug diff --git a/js/plugin.contactimporter.js b/js/plugin.contactimporter.js index ae091b7..aba36a7 100644 --- a/js/plugin.contactimporter.js +++ b/js/plugin.contactimporter.js @@ -230,13 +230,10 @@ Zarafa.plugins.contactimporter.ImportPlugin = Ext.extend(Zarafa.core.Plugin, { * STARTUP *############################################################################################################################*/ Zarafa.onReady(function() { - if(container.getSettingsModel().get("zarafa/v1/plugins/contactimporter/enable") === true) { - container.registerPlugin(new Zarafa.core.PluginMetaData({ - name : 'contactimporter', - displayName : _('Contactimporter Plugin'), - about : Zarafa.plugins.contactimporter.ABOUT, - allowUserDisable : true, - pluginConstructor : Zarafa.plugins.contactimporter.ImportPlugin - })); - } + container.registerPlugin(new Zarafa.core.PluginMetaData({ + name : 'contactimporter', + displayName : _('Contactimporter Plugin'), + about : Zarafa.plugins.contactimporter.ABOUT, + pluginConstructor : Zarafa.plugins.contactimporter.ImportPlugin + })); });