Skip to content

Commit 2ff7e88

Browse files
committed
* set plugin version to v1.0.0
* update description, changelog, makefile * adding cache
1 parent aeb4ec7 commit 2ff7e88

File tree

7 files changed

+20
-43
lines changed

7 files changed

+20
-43
lines changed

.cache/heartbeat

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0

.cache/reindexProgress

Whitespace-only changes.

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/composer.phar
2+
/.build/

Locale/en_US/translations.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
// GENERAL
66
//
77
'TodoNotes__PLUGIN_DESCRIPTION' => 'The plugin allows to keep TODO-style notes on every KB project and as standalone lists.
8-
The notes that may appear unsuitable for creating board tasks are totally fine on the custom TODO list.
9-
They are easy and fast to create, change and rearrange, with convenient visual aids.
10-
Every user can privately see and operate ONLY his own notes, even if notes of multiple users are are bound to the same project.',
8+
The notes that may appear unsuitable for creating board tasks are totally fine for a custom TODO list.
9+
They are easy and fast to create, change and rearrange, with convenient visual aids and multiple useful features.',
1110
//
1211
// Template/project
1312
//

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ version = $(call extract, getPluginVersion)
55

66
all:
77
@echo "Build archive for plugin ${plugin} version=${version}"
8-
@git archive HEAD . :!build :!.github :!Screenshots :!Test :!changelog.md :!INSTALL.md :!README.md :!Makefile --prefix=${plugin}/ --format=zip -9 -o .build/${plugin}-${version}.zip
8+
@git archive HEAD . :!build :!.github :!.gitignore :!Screenshots :!Test :!changelog.md :!INSTALL.md :!README.md :!composer.* :!Makefile --prefix=${plugin}/ --format=zip -9 -o .build/${plugin}-${version}.zip

Plugin.php

+11-6
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88

99
class Plugin extends Base
1010
{
11-
public const NAME = 'TodoNotes';
12-
1311
public function initialize()
1412
{
1513
//HELPER
@@ -63,9 +61,16 @@ public function getClasses()
6361
);
6462
}
6563

64+
public const NAME = 'TodoNotes';
65+
6666
public function getPluginName()
6767
{
68-
return self::NAME;
68+
return 'TodoNotes';
69+
}
70+
71+
public function getPluginDescription()
72+
{
73+
return t('TodoNotes__PLUGIN_DESCRIPTION');
6974
}
7075

7176
public function getPluginAuthor()
@@ -75,12 +80,12 @@ public function getPluginAuthor()
7580

7681
public function getPluginVersion()
7782
{
78-
return '0.0.6';
83+
return '1.0.0';
7984
}
8085

81-
public function getPluginDescription()
86+
public function getCompatibleVersion()
8287
{
83-
return t('TodoNotes__PLUGIN_DESCRIPTION');
88+
return '>=1.2.33';
8489
}
8590

8691
public function getPluginHomepage()

changelog.md

+4-33
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,12 @@
11
# Changelog
22

33

4-
## v0.6.0
4+
## v1.0.0
55

66
_(most recent changes are listed on top):_
77

8-
> As of **v0.6.0** an active development over a fork of the project was taken by **Im[F(x)]**.
9-
> That fork is already quite different from the original!
10-
> Multiple features have been added, fixes and code refactorings have been done.
11-
> The list is quite long and the change log will not reflect it until an actual release is due.
12-
> > !!!
13-
> > The fork is now officially split as a standalone repo [kanboard-plugin-TodoNotes](https://github.com/imfx77/kanboard-plugin-TodoNotes).
14-
> > !!!
8+
* Initial release of the TodoNotes ! 🥳
159

16-
## v0.0.5
10+
---
1711

18-
* Filtering options for report generation
19-
20-
## v0.0.4
21-
22-
* Create report over task (todo: add filter)
23-
* JS encodeURIComponent() added to title and description on export note
24-
* Minor testing with changes in style.css
25-
26-
## v0.0.3
27-
28-
* Export notes to task (categories is not exported)
29-
30-
## v0.0.2
31-
32-
* Un-doing note (note done, click again, undone) - wrong variable in sql call
33-
* Font size made smaller on desktop (13px) and mobile (11px)
34-
35-
## v0.0.1
36-
37-
* Initial release
38-
39-
`---
40-
41-
Read the full [**Changelog**](changelog.md "See changes") or view the [**README**](README.md "View README")
12+
Read the [**Plugin Installation**](INSTALL.md "View Installation instructions") or view the [**README**](README.md "View README")

0 commit comments

Comments
 (0)