diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2014-09-30 23:13:49 +0200 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2014-09-30 23:13:49 +0200 |
| commit | eb5c81dea5a60bc65d3ec607daf5ad81fd709928 (patch) | |
| tree | 81407f1e67adba222a020e142d0ebfb15a3f5ef3 /appinfo | |
| parent | f38e545235173bb145e4b1c9c29dc2960a0a3389 (diff) | |
| download | grauphel-eb5c81dea5a60bc65d3ec607daf5ad81fd709928.tar.gz grauphel-eb5c81dea5a60bc65d3ec607daf5ad81fd709928.zip | |
store client name and last use time for tokens. show them in token management
Diffstat (limited to 'appinfo')
| -rwxr-xr-x | appinfo/database.xml | 11 | ||||
| -rwxr-xr-x | appinfo/info.xml | 2 | ||||
| -rwxr-xr-x | appinfo/version | 2 |
3 files changed, 13 insertions, 2 deletions
diff --git a/appinfo/database.xml b/appinfo/database.xml index 176f89f..7419ee7 100755 --- a/appinfo/database.xml +++ b/appinfo/database.xml @@ -51,6 +51,17 @@ <notnull>true</notnull> <length>2048</length> </field> + <field> + <name>token_client</name> + <type>text</type> + <notnull>true</notnull> + <length>256</length> + </field> + <field> + <name>token_lastuse</name> + <type>timestamp</type> + <notnull>true</notnull> + </field> </declaration> </table> diff --git a/appinfo/info.xml b/appinfo/info.xml index 2074d61..bff1ebd 100755 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -3,7 +3,7 @@ <id>grauphel</id> <name>Grauphel: Tomboy note server</name> <description>Tomboy REST API server to sync notes between devices</description> - <version>0.2.0</version> + <version>0.3.0</version> <licence>AGPL3 or later</licence> <author>Christian Weiske</author> <requiremin>7</requiremin> diff --git a/appinfo/version b/appinfo/version index 0ea3a94..0d91a54 100755 --- a/appinfo/version +++ b/appinfo/version @@ -1 +1 @@ -0.2.0 +0.3.0 |
