Iet uz failu
dependabot[bot] 74d88635e0
Chore(deps): Bump @nextcloud/vue from 7.12.7 to 8.11.1
Bumps [@nextcloud/vue](https://github.com/nextcloud-libraries/nextcloud-vue) from 7.12.7 to 8.11.1.
- [Release notes](https://github.com/nextcloud-libraries/nextcloud-vue/releases)
- [Changelog](https://github.com/nextcloud-libraries/nextcloud-vue/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nextcloud-libraries/nextcloud-vue/compare/v7.12.7...v8.11.1)

---
updated-dependencies:
- dependency-name: "@nextcloud/vue"
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-03-28 09:04:04 +00:00
.github Merge pull request #1230 from nextcloud/automated/update-workflows/default 2024-03-28 09:13:23 +01:00
.tx [tx-robot] Update transifex configuration 2022-10-01 02:46:25 +00:00
appinfo chore(release): Bump version to 4.9.4 2024-03-28 10:02:26 +01:00
css Use logical properties in css 2023-12-25 19:48:07 +03:30
docs/api fix minor API version 2022-08-13 17:26:07 +02:00
img enh: Update icons to material design 2023-02-27 18:05:51 +01:00
l10n Fix(l10n): Update translations from Transifex 2024-03-13 01:17:29 +00:00
lib fix: Shared folder check 2024-03-28 09:53:55 +01:00
src Use markdown-it-bidi for bidi preview 2023-12-25 19:50:46 +03:30
templates use @nextcloud/webpack-vue-config 2020-07-13 20:33:09 +02:00
tests chore: Fix php-cs-fixer 2024-03-27 16:26:27 +01:00
.editorconfig switch to Vue.js 2019-05-22 21:40:03 +02:00
.eslintrc.js update @nextcloud/eslint-config from 6 to 7 2022-03-14 07:48:31 +01:00
.gitignore update dependencies 2021-11-12 19:53:45 +01:00
.nextcloudignore chore: Add krankerl config 2023-03-20 17:29:12 +01:00
.php-cs-fixer.dist.php update dependencies 2021-11-12 19:53:45 +01:00
.stylelintrc.js use @nextcloud/stylelint-config, update and simple 2021-06-26 19:09:42 +02:00
CHANGELOG.md chore(release): Bump version to 4.9.4 2024-03-28 10:02:26 +01:00
COPYING various cleanups 2013-04-03 18:21:48 +02:00
Makefile remove babel.config.js from build package 2021-05-22 14:19:07 +02:00
README.md Update README.md 2023-02-28 19:44:47 +01:00
babel.config.js update dependencies / use @nextcloud/babel-config 2021-04-30 23:25:38 +02:00
composer.json Chore(deps-dev): Update php-cs-fixer/shim requirement 2024-03-28 08:39:52 +01:00
krankerl.toml chore: Add krankerl config 2023-03-20 17:29:12 +01:00
package-lock.json Chore(deps): Bump @nextcloud/vue from 7.12.7 to 8.11.1 2024-03-28 09:04:04 +00:00
package.json Chore(deps): Bump @nextcloud/vue from 7.12.7 to 8.11.1 2024-03-28 09:04:04 +00:00
webpack.config.js perf: Lazy load dashboard components 2023-02-09 10:16:13 +01:00

README.md

Notes

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