• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

appinfo/H13-Nov-2021-1,2171,135

css/H13-Nov-2021-7559

docs/api/H13-Nov-2021-418301

img/H03-May-2022-

js/H03-May-2022-22

l10n/H03-May-2022-4,1674,167

lib/H13-Nov-2021-2,5281,791

templates/H13-Nov-2021-107

.php-cs-fixer.cacheH A D13-Nov-20213 KiB11

.php-cs-fixer.dist.phpH A D13-Nov-2021293 1914

CHANGELOG.mdH A D13-Nov-20219.4 KiB414277

COPYINGH A D13-Nov-202133.7 KiB662544

README.mdH A D13-Nov-20212.7 KiB4627

README.md

1# Notes
2
3<!-- The following paragraph should be kept synchronized with the description in appinfo/info.xml -->
4The Notes app is a distraction free notes taking app for [Nextcloud](https://www.nextcloud.com/). It provides categories for better organization and supports formatting using [Markdown](https://en.wikipedia.org/wiki/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](https://github.com/nextcloud/notes/blob/master/docs/api/README.md) allows for an easy integration into third-party apps (currently, there are notes apps for [Android](https://github.com/stefan-niedermann/nextcloud-notes), [iOS](https://github.com/owncloud/notes-iOS-App) and the [console](https://git.danielmoch.com/nncli/about) which allow convenient access to your Nextcloud notes). Further features include marking notes as favorites.
5
6![Screenshot of Nextcloud Notes](https://raw.githubusercontent.com/nextcloud/screenshots/master/apps/Notes/notes.png)
7
8
9## :rocket: Installation
10In 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.
11
12Nextcloud will notify you about possible updates. Please have a look at [CHANGELOG.md](CHANGELOG.md) for details about changes.
13
14
15## :exclamation: Bugs
16Before reporting bugs:
17
18* get the newest version of the Notes app
19* please consider also installing the [latest development version](https://github.com/nextcloud/notes/archive/master.zip)
20* [check if they have already been reported](https://github.com/nextcloud/notes/issues)
21
22
23## :busts_in_silhouette: Maintainers
24- [Kristof Hamann](https://github.com/korelstar)
25- [Hendrik Leppelsack](https://github.com/Henni) (formerly)
26- [Lukas Reschke](https://github.com/LukasReschke) (formerly)
27
28
29## :warning: Developer Info
30
31[![Lint](https://github.com/nextcloud/notes/workflows/Lint/badge.svg?branch=master&event=push)](https://github.com/nextcloud/notes/actions?query=workflow%3ALint+event%3Apush+branch%3Amaster)
32[![Test](https://github.com/nextcloud/notes/workflows/Test/badge.svg?branch=master&event=push)](https://github.com/nextcloud/notes/actions?query=workflow%3ATest+event%3Apush+branch%3Amaster)
33
34### Building the app
35
361. Clone this into your `apps` folder of your Nextcloud
372. In a terminal, run the command `make dev-setup` to install the dependencies
383. Then to build the Javascript run `make build-js` or `make watch-js` to
39   rebuild it when you make changes
404. Enable the app through the app management of your Nextcloud
41
42
43### REST API for third-party apps
44
45The notes app provides a JSON-API for third-party apps. Please have a look at our **[API documentation](docs/api/README.md)**.
46