Skip to content

Commit

Permalink
Compatibility with kanboard v1.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
phsteffen committed May 10, 2019
1 parent d5ac36a commit a1a1913
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# kanboard-themeplus
Improved and expanded theme of kanboard.
kanboard is a project management software that focuses on the Kanban methodology.
https://github.com/fguillot/kanboard
https://github.com/kanboard/kanboard



Expand All @@ -11,7 +11,7 @@ Because this plugin is based on an specific version of kanboard
please be careful on upgrade. Perhaps some elements will be changed in future
versions of kanboard and you have to update the plugin too.

**The actual version of this plugin is based on kanboard v1.0.46**
**The actual version of this plugin is based on kanboard v1.2.9**



Expand Down Expand Up @@ -48,7 +48,7 @@ config-default.php.

#### Installation

1. First you have to install [kanboard](https://github.com/fguillot/kanboard).
1. First you have to install [kanboard](https://github.com/kanboard/kanboard).
1. Than just copy the Themeplus-Plugin (`dist/Themeplus`) in the plugin-Directory
of kanboard (`plugins`).
1. That's it. The default-theme is updated.
Expand Down
2 changes: 1 addition & 1 deletion dist/Themeplus/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function initialize()

public function getPluginName() { return 'Theme Plus'; }
public function getPluginAuthor() { return 'Philip Steffen'; }
public function getPluginVersion() { return '0.3.0 beta'; }
public function getPluginVersion() { return '0.4.0 beta'; }
public function getPluginDescription() { return 'Improved and expanded theme'; }
public function getPluginHomepage() { return 'https://github.com/phsteffen/kanboard-themeplus'; }

Expand Down
8 changes: 3 additions & 5 deletions dist/Themeplus/Template/layout/header/title.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@
<?= $this->text->e($title) ?>
<?php endif ?>
</span>
<?php if (! empty($description)): ?>
<small class="tooltip" title="<?= $this->text->markdownAttribute($description) ?>">
<i class="fa fa-info-circle"></i>
</small>
<?php endif ?>
<?php if (! empty($description)): ?>
<?= $this->app->tooltipHTML($description) ?>
<?php endif ?>
</h1>

0 comments on commit a1a1913

Please sign in to comment.