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

Commit c3c499a

Browse files
committed
Rename CSS class
1 parent b75a767 commit c3c499a

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

Plugin.php

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

5353
public function getPluginVersion()
5454
{
55-
return '1.0.3';
55+
return '1.0.4';
5656
}
5757

5858
public function getPluginHomepage()
5959
{
6060
return 'https://github.com/kanboard/plugin-bitbucket-webhook';
6161
}
62+
63+
public function getCompatibleVersion()
64+
{
65+
return '>=1.0.37';
66+
}
6267
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Author
1414
Requirements
1515
------------
1616

17-
- Kanboard >= 1.0.29
17+
- Kanboard >= 1.0.37
1818
- Bitbucket webhooks configured for a project
1919

2020
Installation

Template/project/integrations.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h3><i class="fa fa-bitbucket fa-fw"></i>&nbsp;<?= t('Bitbucket webhooks') ?></h3>
2-
<div class="listing">
3-
<input type="text" class="auto-select" readonly="readonly" value="<?= $this->url->href('WebhookController', 'handler', array('plugin' => 'BitbucketWebhook', 'token' => $webhook_token, 'project_id' => $project['id']), false, '', true) ?>"/><br/>
4-
<p class="form-help"><a href="https://kanboard.net/plugin/bitbucket-webhook" target="_blank"><?= t('Help on Bitbucket webhooks') ?></a></p>
2+
<div class="panel">
3+
<input type="text" class="auto-select" readonly="readonly" value="<?= $this->url->href('WebhookController', 'handler', array('plugin' => 'BitbucketWebhook', 'token' => $webhook_token, 'project_id' => $project['id']), false, '', true) ?>"/><br/>
4+
<p class="form-help"><a href="https://kanboard.net/plugin/bitbucket-webhook" target="_blank"><?= t('Help on Bitbucket webhooks') ?></a></p>
55
</div>

Test/PluginTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@ public function testPlugin()
1515
$this->assertNotEmpty($plugin->getPluginAuthor());
1616
$this->assertNotEmpty($plugin->getPluginVersion());
1717
$this->assertNotEmpty($plugin->getPluginHomepage());
18+
$this->assertNotEmpty($plugin->getCompatibleVersion());
1819
}
1920
}

0 commit comments

Comments
 (0)