Go to file
Raimund Schlüßler a539aef345
Update php-cs-fixer configuration
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
2022-10-18 22:31:46 +02:00
.github Update composer dependencies 2022-10-18 21:00:30 +02:00
.tx [tx-robot] Update transifex configuration 2022-10-01 03:00:15 +00:00
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-10-08 02:54:09 +00:00
lib Update php-cs-fixer configuration 2022-10-18 22:31:46 +02:00
screenshots Update screenshot 2021-08-02 22:25:03 +02:00
src Fix TaskCreateDialog and Multiselect appearance 2022-10-13 21:29:33 +02:00
templates Update php-cs-fixer configuration 2022-10-18 22:31:46 +02:00
tests Fix eslint errors 2022-09-18 11:28:55 +02:00
.codecov.yml Correct path for php files 2021-05-17 19:44:05 +02:00
.editorconfig Remove angular, add vue 2019-01-25 20:28:04 +01:00
.eslintrc.js Move to webpack-vue-config 2021-04-05 12:47:25 +02:00
.gitattributes Initial Commit 2014-03-28 20:11:56 +01:00
.gitignore Use codecov action 2021-05-17 09:48:20 +02:00
.php-cs-fixer.dist.php Update php-cs-fixer configuration 2022-10-18 22:31:46 +02:00
.prettierrc.js Improve webpack configuration 2019-01-25 20:35:01 +01:00
.stylelintignore Fix stylelint 2020-10-20 15:33:00 +02:00
CHANGELOG.md Bump version, update changelog (#1949) 2022-03-19 21:14:20 +01:00
CONTRIBUTING.md Update link to server's contribution guidelines 2021-09-28 09:22:43 +02:00
LICENSE Add license file 2014-10-12 18:54:22 +02:00
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 Use correct babel configuration 2021-06-14 21:26:20 +02:00
build.xml Replace ownCloud with Nextcloud, update date 2017-01-15 20:59:31 +01:00
composer.json Update php-cs-fixer configuration 2022-10-18 22:31:46 +02:00
composer.lock Update php-cs-fixer configuration 2022-10-18 22:31:46 +02:00
issue_template.md Update issue_template.md 2017-04-18 12:59:50 +02:00
package-lock.json Bump jest to 29.2.1 2022-10-18 20:22:17 +02:00
package.json Bump jest to 29.2.1 2022-10-18 20:22:17 +02:00
phpunit.integration.xml Migrate phpunit configuration 2022-10-18 22:31:46 +02:00
phpunit.xml Migrate phpunit configuration 2022-10-18 22:31:46 +02:00
stylelint.config.js Use npm v7 and simplify overall configuration 2021-06-11 22:59:12 +02:00
webpack.config.js Adjust build scripts (#1914) 2022-01-25 15:09:18 +01:00

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.