Welcome to mirror list, hosted at ThFree Co, Russian Federation.

info.xml « appinfo - github.com/nextcloud/notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52d787f2742432630b7ef84dc951e13254e5bbf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0"?>
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
      xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
	<id>notes</id>
	<name>Notes</name>
	<summary>Distraction-free notes and writing</summary>
	<description><![CDATA[
The 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.
]]></description>
	<version>4.6.0</version>
	<licence>agpl</licence>
	<author>Kristof Hamann</author>
	<author>Bernhard Posselt</author>
	<author>Hendrik Leppelsack</author>
	<author>Jan-Christoph Borchardt</author>
	<namespace>Notes</namespace>
	<category>office</category>
	<category>organization</category>
	<category>tools</category>
	<website>https://github.com/nextcloud/notes</website>
	<bugs>https://github.com/nextcloud/notes/issues</bugs>
	<repository type="git">https://github.com/nextcloud/notes.git</repository>
	<screenshot small-thumbnail="https://raw.githubusercontent.com/nextcloud/screenshots/master/apps/Notes/notes-thumbnail.jpg">https://raw.githubusercontent.com/nextcloud/screenshots/master/apps/Notes/notes.png</screenshot>
	<dependencies>
		<php min-version="7.4" max-version="8.1" />
		<nextcloud min-version="25" max-version="27" />
	</dependencies>
	<repair-steps>
		<post-migration>
			<step>OCA\Notes\Migration\Cleanup</step>
		</post-migration>
	</repair-steps>

	<navigations>
		<navigation>
			<id>notes</id>
			<name>Notes</name>
			<route>notes.page.index</route>
			<icon>notes.svg</icon>
			<order>10</order>
		</navigation>
	</navigations>
</info>