Go to file
dependabot[bot] ed9cd84cc1
Merge pull request #2404 from nextcloud/dependabot/npm_and_yarn/linkify-it-5.0.0
2023-12-02 06:58:50 +00:00
.github Build(deps): Bump shivammathur/setup-php from 2.27.1 to 2.28.0 2023-11-27 23:38:54 +00:00
.tx [tx-robot] Update transifex configuration 2022-10-01 03:00:15 +00:00
appinfo Merge pull request #2271 from nextcloud/0.15.0 2023-05-16 22:05:49 +02:00
css fix: missing tasks icon in talk app 2023-10-07 13:21:02 +02:00
img Use icon-circles provided by server 2022-05-29 22:44:32 +02:00
l10n Fix(l10n): Update translations from Transifex 2023-12-01 01:32:49 +00:00
lib Fix Tasks icon color in Dashboard widget 2023-02-02 21:03:45 +01:00
screenshots Update screenshot 2021-08-02 22:25:03 +02:00
src fix: simplify setCompleted in task model 2023-11-06 20:57:21 +01:00
templates Update php-cs-fixer configuration 2022-10-18 22:31:46 +02:00
tests fix: don't set percent to 0 for NEEDS-ACTION 2023-10-07 14:22:48 +02:00
.codecov.yml Create .github/workflows/phpunit-sqlite.yml 2023-03-12 21:59:20 +01: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 2023-05-16 21:39:15 +02:00
LICENSE Add license file 2014-10-12 18:54:22 +02:00
Makefile Adjust excluded files 2022-10-19 16:09:28 +02:00
README.md Update README.md 2023-04-10 16:20:02 +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
package-lock.json Build(deps): Bump linkify-it from 4.0.1 to 5.0.0 2023-12-02 02:12:15 +00:00
package.json Build(deps): Bump linkify-it from 4.0.1 to 5.0.0 2023-12-02 02:12:15 +00: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.