No description
Find a file
Nextcloud bot 3259680bce
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-12-22 01:29:30 +00:00
.github Chore(deps): Bump svenstaro/upload-release-action from 2.11.2 to 2.11.3 2025-12-10 04:20:33 +00:00
.tx [tx-robot] Update transifex configuration 2022-10-01 02:46:25 +00:00
appinfo build(release): 4.12.4 2025-11-21 20:05:01 +00:00
css feat: add SPDX headers 2024-09-18 22:03:46 +02:00
docs/api docs: Update attachment api documentation 2025-08-09 11:35:52 +05:30
img enh: Update icons to material design 2023-02-27 18:05:51 +01:00
l10n fix(l10n): Update translations from Transifex 2025-12-22 01:29:30 +00:00
lib fix: Update attributes 2025-11-21 19:46:36 +00:00
LICENSES feat: add SPDX headers 2024-09-18 22:03:46 +02:00
src perf: Use individual component imports to reduce bundle size and build time 2025-11-13 10:55:52 +01:00
templates fix: lint with cs-fixer 2025-02-01 10:34:15 +00:00
tests fix: update psalm-baseline to suppress Controller errors 2025-02-01 07:10:18 +00:00
.editorconfig
.eslintrc.js update @nextcloud/eslint-config from 6 to 7 2022-03-14 07:48:31 +01:00
.gitignore chore: Move to more standard ci pipelines 2024-10-11 07:16:59 +02:00
.nextcloudignore chore: Add psalm 2024-10-11 07:17:00 +02:00
.php-cs-fixer.dist.php
.stylelintrc.js feat: add SPDX headers 2024-09-18 22:03:46 +02:00
AUTHORS feat: add SPDX headers 2024-09-18 22:03:46 +02:00
babel.config.js feat: add SPDX headers 2024-09-18 22:03:46 +02:00
CHANGELOG.md chore: update changelog 2025-11-21 20:14:44 +00:00
composer.json Chore(deps-dev): Bump php-cs-fixer/shim from 3.89.2 to 3.91.1 2025-12-01 11:15:07 +00:00
composer.lock chore(dev-deps): Bump nextcloud/ocp package 2025-12-07 02:50:10 +00:00
COPYING
krankerl.toml chore: Add krankerl config 2023-03-20 17:29:12 +01:00
Makefile feat: add SPDX headers 2024-09-18 22:03:46 +02:00
package-lock.json fix: use latest package 2025-12-10 04:28:57 +00:00
package.json fix: use latest package 2025-12-10 04:28:57 +00:00
psalm.xml chore: Add psalm 2024-10-11 07:17:00 +02:00
README.md docs: Remove reference to nncli 2025-01-08 12:50:16 +01:00
REUSE.toml feat: add SPDX headers 2024-09-18 22:03:46 +02:00
webpack.config.js chore: Remove manual split group 2025-11-13 10:55:52 +01:00

Notes

REUSE status

The Notes app is a distraction free notes taking app for Nextcloud. It provides categories for better organization and supports formatting using Markdown syntax. Notes are saved as files in your Nextcloud, so you can view and edit them with every Nextcloud client. Furthermore, a separate REST API allows for an easy integration into apps (Android, iOS, as well as 3rd-party apps which allow convenient access to your Nextcloud notes). Further features include marking notes as favorites.

Screenshot of Nextcloud Notes

🚀 Installation

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

Nextcloud will notify you about possible updates. Please have a look at CHANGELOG.md for details about changes.

Bugs

Before reporting bugs:

👥 Maintainers

⚠️ Developer Info

Lint Test

Building the app

  1. Clone this into your apps folder of your Nextcloud
  2. In a terminal, run the command make dev-setup to install the dependencies
  3. Then to build the Javascript run make build-js or make watch-js to rebuild it when you make changes
  4. Enable the app through the app management of your Nextcloud

REST API for third-party apps

The notes app provides a JSON-API for third-party apps. Please have a look at our API documentation.

Admin configuration

It is possible to specify different defaults for the notes settings of new users using occ commands like these:

occ config:app:set notes noteMode --value="preview"
occ config:app:set notes fileSuffix --value=".md"
occ config:app:set notes defaultFolder --value="Shared notes"
Setting Property name Default Other available option(s)
Display mode for notes noteMode edit preview
File extension for new notes fileSuffix .txt .md
Folder to store your notes defaultFolder Notes Custom