Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2019-05-10 09:41:28 +0300
committerGitHub <noreply@github.com>2019-05-10 09:41:28 +0300
commit165ec05a793f31f42e1ed51ec4f88c39f521c584 (patch)
treec9a20a20efcc09fab8ac96398d6eb141eeae1436
parentf27a9041ce28f85ef1ed3684a7725264b55ccee9 (diff)
parent83c985c669bc694aa91aa7d44b01a340fa1f41e2 (diff)
Merge pull request #395 from nextcloud/fix-394v0.10.1
Correctly handle all numeric UIDs
-rw-r--r--appinfo/info.xml2
-rw-r--r--package.json2
-rw-r--r--src/store/calendars.js4
3 files changed, 4 insertions, 4 deletions
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 664ca795..3ea34951 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -5,7 +5,7 @@
<name>Tasks</name>
<summary>The Tasks app for Nextcloud</summary>
<description><![CDATA[Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar.]]></description>
- <version>0.10.0</version>
+ <version>0.10.1</version>
<licence>agpl</licence>
<author mail="raimund.schluessler@mailbox.org">Raimund Schlüßler</author>
<namespace>Tasks</namespace>
diff --git a/package.json b/package.json
index ae2364d4..51c54bc6 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "tasks",
"description": "Nextcloud - Tasks",
- "version": "0.10.0",
+ "version": "0.10.1",
"author": {
"name": "Raimund Schlüßler",
"email": "raimund.schluessler@mailbox.org"
diff --git a/src/store/calendars.js b/src/store/calendars.js
index 7784a21a..ea569970 100644
--- a/src/store/calendars.js
+++ b/src/store/calendars.js
@@ -45,7 +45,7 @@ const calendarModel = {
enabled: true,
owner: '',
shares: [],
- tasks: [],
+ tasks: {},
url: '',
readOnly: false,
dav: false,
@@ -72,7 +72,7 @@ export function mapDavCollectionToCalendar(calendar) {
enabled: calendar.enabled !== false,
owner: calendar.owner,
readOnly: !calendar.isWriteable(),
- tasks: [],
+ tasks: {},
url: calendar.url,
dav: calendar,
supportsTasks: calendar.components.includes('VTODO'),