Tasks app for Nextcloud
Перейти к файлу
Raimund Schlüßler 003843d366
Merge pull request #2086 from nextcloud/fix/2083/new-list-input
Use NcTextField for new list name input
2022-08-23 20:49:08 +02:00
.github Increase required server version 2022-08-14 20:22:42 +02:00
.tx
appinfo Increase required server version 2022-08-14 20:22:42 +02:00
css Use icon-circles provided by server 2022-05-29 22:44:32 +02:00
img Use icon-circles provided by server 2022-05-29 22:44:32 +02:00
l10n [tx-robot] updated from transifex 2022-08-19 03:24:57 +00:00
lib
screenshots
src Use NcTextField for list name input 2022-08-22 21:24:10 +02:00
templates Use icon-circles provided by server 2022-05-29 22:44:32 +02:00
tests Use tooltip directive from nextcloud/vue (#1976) 2022-04-26 09:50:58 +02:00
.codecov.yml
.editorconfig
.eslintrc.js
.gitattributes
.gitignore
.php_cs.dist
.prettierrc.js
.stylelintignore
CHANGELOG.md Bump version, update changelog (#1949) 2022-03-19 21:14:20 +01:00
CONTRIBUTING.md
LICENSE
Makefile Correctly exclude webpack config for build 2022-02-14 11:20:29 +01:00
README.md Add a section to README for issues with ETags 2022-08-18 11:28:42 +02:00
babel.config.js
build.xml
composer.json
composer.lock
issue_template.md
package-lock.json Bump @nextcloud/vue from 6.0.0-beta.3 to 6.0.0-beta.4 2022-08-23 19:43:35 +02:00
package.json Bump @nextcloud/vue from 6.0.0-beta.3 to 6.0.0-beta.4 2022-08-23 19:43:35 +02:00
phpunit.integration.xml
phpunit.xml
stylelint.config.js
webpack.config.js

README.md

Tasks

Downloads Build Status Scrutinizer Code Quality Code coverage Dependabot status

A tasks app for Nextcloud. Easily sync tasks from various devices with your Nextcloud and edit them online.

tasks

Features

  • add and delete tasks, edit their title, description, start and due dates, set their priority and status
  • support for subtasks
  • smart collections showing you your important, current and upcoming tasks
  • simply drag and drop tasks to other calendars or make them subtasks

Installation

In your Nextcloud, simply navigate to »Apps«, choose the category »Organization«, find the Tasks app and enable it. Then open the Tasks app from the app menu.

Apps which sync with Nextcloud Tasks (using CalDAV)

ETag (or: problem with non-existing conflicts)

This app uses ETag HTTP header to work properly (mostly for detecting conflicts). If ETags are modified or removed, the app will report non-existing conflicts.

Some anti-tracking client side extensions are known to remove/replace ETag header to avoid tracking via cache (e.g., CleanURLs is known to create problems). You'll need to add an exception for NC Tasks.

Also, ETag may be modified by a server-side configuration. If you manage your server you'll need to change its configuration (see https://github.com/nextcloud/tasks/issues/167).

Maintainers

Raimund Schlüßler and many more

If youd like to join, just go through the issue list and fix some. :)

Developer setup info

Just clone this repo into your apps directory (Nextcloud server installation needed). Additionally, nodejs and npm are needed for installing JavaScript dependencies.

Once node and npm are installed, PHP and JavaScript dependencies can be installed by running

$ make

Please execute this command with your ordinary user account and neither root nor sudo.