Skip to content
This repository was archived by the owner on Apr 5, 2020. It is now read-only.

Commit 3b24e9e

Browse files
committed
Rename CSS class
1 parent a7f206f commit 3b24e9e

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ php:
1111
env:
1212
global:
1313
- PLUGIN=Jabber
14-
- KANBOARD_REPO=https://github.com/fguillot/kanboard.git
14+
- KANBOARD_REPO=https://github.com/kanboard/kanboard.git
1515
matrix:
1616
- DB=sqlite
1717
- DB=mysql

Plugin.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,16 @@ public function getPluginAuthor()
4242

4343
public function getPluginVersion()
4444
{
45-
return '1.0.5';
45+
return '1.0.6';
4646
}
4747

4848
public function getPluginHomepage()
4949
{
5050
return 'https://github.com/kanboard/plugin-jabber';
5151
}
52+
53+
public function getCompatibleVersion()
54+
{
55+
return '>=1.0.37';
56+
}
5257
}

Template/config/integration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h3><img src="<?= $this->url->dir() ?>plugins/Jabber/jabber-icon.png"/>&nbsp;Jabber (XMPP)</h3>
2-
<div class="listing">
2+
<div class="panel">
33
<?= $this->form->label(t('XMPP server address'), 'jabber_server') ?>
44
<?= $this->form->text('jabber_server', $values, array(), array('placeholder="tcp://myserver:5222"')) ?>
55
<p class="form-help"><?= t('The server address must use this format: "tcp://hostname:5222"') ?></p>

Template/project/integration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h3><img src="<?= $this->url->dir() ?>plugins/Jabber/jabber-icon.png"/>&nbsp;Jabber (XMPP)</h3>
2-
<div class="listing">
2+
<div class="panel">
33
<?= $this->form->label(t('Multi-user chat room'), 'jabber_room') ?>
44
<?= $this->form->text('jabber_room', $values, array(), array('placeholder="[email protected]"')) ?>
55

Template/user/integration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h3><img src="<?= $this->url->dir() ?>plugins/Jabber/jabber-icon.png"/>&nbsp;Jabber (XMPP)</h3>
2-
<div class="listing">
2+
<div class="panel">
33
<?= $this->form->label(t('Jabber Id'), 'jabber_jid') ?>
44
<?= $this->form->text('jabber_jid', $values) ?>
55

0 commit comments

Comments
 (0)