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

Commit

Permalink
Rename CSS class
Browse files Browse the repository at this point in the history
  • Loading branch information
fguillot committed Jan 8, 2017
1 parent e4382aa commit 94ac240
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ php:
env:
global:
- PLUGIN=GogsWebhook
- KANBOARD_REPO=https://github.com/fguillot/kanboard.git
- KANBOARD_REPO=https://github.com/kanboard/kanboard.git
matrix:
- DB=sqlite
- DB=mysql
Expand Down
7 changes: 6 additions & 1 deletion Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,16 @@ public function getPluginAuthor()

public function getPluginVersion()
{
return '1.0.3';
return '1.0.4';
}

public function getPluginHomepage()
{
return 'https://github.com/kanboard/plugin-gogs-webhook';
}

public function getCompatibleVersion()
{
return '>=1.0.37';
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Author
Requirements
------------

- Kanboard >= 1.0.29
- Kanboard >= 1.0.37
- [Gogs](https://gogs.io/)
- Gogs webhooks configured for a project

Expand Down
8 changes: 4 additions & 4 deletions Template/project/integrations.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<h3><img src="<?= $this->url->dir() ?>/plugins/GogsWebhook/gogs-icon.png"/>&nbsp;<?= t('Gogs webhooks') ?></h3>
<div class="listing">
<input type="text" class="auto-select" readonly="readonly" value="<?= $this->url->href('WebhookController', 'handler', array('plugin' => 'GogsWebhook', 'token' => $webhook_token, 'project_id' => $project['id']), false, '', true) ?>"/>
<p class="form-help"><a href="https://kanboard.net/plugin/gogs-webhook" target="_blank"><?= t('Help on Gogs webhooks') ?></a></p>
<h3><img src="<?= $this->url->dir() ?>plugins/GogsWebhook/gogs-icon.png"/>&nbsp;<?= t('Gogs webhooks') ?></h3>
<div class="panel">
<input type="text" class="auto-select" readonly="readonly" value="<?= $this->url->href('WebhookController', 'handler', array('plugin' => 'GogsWebhook', 'token' => $webhook_token, 'project_id' => $project['id']), false, '', true) ?>"/>
<p class="form-help"><a href="https://kanboard.net/plugin/gogs-webhook" target="_blank"><?= t('Help on Gogs webhooks') ?></a></p>
</div>

0 comments on commit 94ac240

Please sign in to comment.