Skip to content

Commit

Permalink
First public release v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JustFxDev committed Jan 3, 2023
1 parent 0c03667 commit 3ca71ac
Show file tree
Hide file tree
Showing 9 changed files with 875 additions and 12 deletions.
40 changes: 40 additions & 0 deletions Plugin.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?php
namespace Kanboard\Plugin\ThemeMaestro;
use Kanboard\Core\Plugin\Base;
class Plugin extends Base
{
public function initialize()
{
$this->hook->on('template:layout:css', array('template' => 'plugins/ThemeMaestro/ThemeMaestro.css'));
}

public function getPluginName()
{
return 'ThemeMaestro';
}

public function getPluginDescription()
{
return t('Nice and more colored theme family for Kanboard. Supports the Customizer plugin.');
}

public function getPluginAuthor()
{
return 'JustFxDev (fx)';
}

public function getPluginVersion()
{
return '0.7.0';
}

public function getPluginHomepage()
{
return 'https://github.com/JustFxDev/ThemeMaestro';
}

public function getCompatibleVersion()
{
return '>=1.2.11';
}
}
13 changes: 1 addition & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
[![version_070](./assets/images/version_070.svg)](https://github.com/JustFxDev/ThemeMaestro/releases)
[![license](./assets/images/license.svg)](https://github.com/JustFxDev/ThemeMaestro/blob/main/LICENSE)
[![maintainedyes](./assets/images/maintainedyes.svg)](https://github.com/JustFxDev/ThemeMaestro/graphs/contributors)
[![version_070](./assets/images/version_070.svg)](https://github.com/JustFxDev/ThemeMaestro/releases) [![license](./assets/images/license.svg)](https://github.com/JustFxDev/ThemeMaestro/blob/main/LICENSE) [![maintainedyes](./assets/images/maintainedyes.svg)](https://github.com/JustFxDev/ThemeMaestro/graphs/contributors)

**:star: If you use it, you should star it on Github!** *It's the least you can do for all the work put into it!*

Expand Down Expand Up @@ -186,12 +184,3 @@ This is very uncomfortable. But keep in mind this is the first public version of
## Join

*Contributors are welcome! Help is needed especially for upcoming php plugin programming, but also for css / design improvements or just additional coloring schemes.*









Loading

0 comments on commit 3ca71ac

Please sign in to comment.