Skip to content

Commit

Permalink
fix invalid/outdated plugin link
Browse files Browse the repository at this point in the history
  • Loading branch information
lastlink committed May 18, 2018
1 parent 1e75214 commit 30918d9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
### All Submissions:

* [ ] Have you updated the ChangeLog with your propsed changes?
* [ ] Have you updated the ChangeLog with your proposed changes?
* [ ] Have you checked to ensure there aren't other open [Pull Requests](../../pulls) for the same update/change?
* [ ] Have you updated the getPluginVersion() in Plugin.php appropriately?
* [ ] Have you updated the getPluginVersion() in Plugin.php and Makefile version appropriately?

### New Feature Submissions:
* [ ] Have you added an explanation of what your changes do and why you'd like us to include them?
Expand Down
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 0.2.5-alpha

Bug fixes:

* updated getPluginHomepage to proper link.

Version 0.2.4-alpha

Bug fixes:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugin=Wiki
version=0.2.4
version=0.2.5
all:
@ echo "Build archive for plugin ${plugin} version=${version}"
@ git archive HEAD --prefix=${plugin}/ --format=zip -o ${plugin}-${version}.zip
4 changes: 2 additions & 2 deletions Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ public function getPluginAuthor()

public function getPluginVersion()
{
return '0.2.4';
return '0.2.5';
}

public function getPluginHomepage()
{
return 'https://bitbucket.org/lastlink/kanboard-plugin-wiki/';
return 'https://github.com/funktechno/kanboard-plugin-wiki';
}

public function getCompatibleVersion()
Expand Down

0 comments on commit 30918d9

Please sign in to comment.