✎ Distraction-free notes and writing
Перейти к файлу
Julius Knorr 7f1cebfbad
Merge pull request #1387 from nextcloud/fix/note-item-height
fix: Adjust note item size to be one line
2024-10-11 08:10:09 +02:00
.github Create update-nextcloud-ocp-matrix.yml 2024-10-10 17:27:38 +02:00
.tx
LICENSES feat: add SPDX headers 2024-09-18 22:03:46 +02:00
appinfo feat: add SPDX headers 2024-09-18 22:03:46 +02:00
css feat: add SPDX headers 2024-09-18 22:03:46 +02:00
docs/api feat: add SPDX headers 2024-09-18 22:03:46 +02:00
img
l10n Fix(l10n): Update translations from Transifex 2024-10-09 01:17:34 +00:00
lib feat: add SPDX headers 2024-09-18 22:03:46 +02:00
src fix: Adjust note item size to be one line 2024-10-10 16:52:57 +02:00
templates feat: add SPDX headers 2024-09-18 22:03:46 +02:00
tests feat: add SPDX headers 2024-09-18 22:03:46 +02:00
.editorconfig
.eslintrc.js
.gitignore
.nextcloudignore
.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
CHANGELOG.md chore(release): Bump version to 4.11.0 2024-09-16 10:17:38 +02:00
COPYING
Makefile feat: add SPDX headers 2024-09-18 22:03:46 +02:00
README.md feat: add SPDX headers 2024-09-18 22:03:46 +02:00
REUSE.toml 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
composer.json chore: Add composer scripts 2024-09-15 11:03:15 +02:00
krankerl.toml
package-lock.json Chore(deps-dev): Bump @nextcloud/webpack-vue-config from 6.0.1 to 6.1.0 2024-09-18 10:26:26 +00:00
package.json Chore(deps-dev): Bump @nextcloud/webpack-vue-config from 6.0.1 to 6.1.0 2024-09-18 10:26:26 +00:00
webpack.config.js feat: add SPDX headers 2024-09-18 22:03:46 +02:00

README.md

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, and 3rd-party apps like the console and many more 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