Skip to content

Commit

Permalink
fix(docs): update license examples
Browse files Browse the repository at this point in the history
Signed-off-by: Edward Ly <[email protected]>
  • Loading branch information
edward-ly committed Jan 8, 2025
1 parent 319ce72 commit 3560d00
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions docs/api/restapi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -361,15 +361,15 @@ This route will return all releases to display inside Nextcloud's apps admin are
"grep"
],
"phpVersionSpec": ">=5.6.0",
"platformVersionSpec": ">=9.0.0 <9.2.0",
"platformVersionSpec": ">=31.0.0 <33.0.0",
"rawPhpVersionSpec": ">=5.6",
"rawPlatformVersionSpec": ">=10 <=10",
"rawPlatformVersionSpec": ">=31 <=32",
"minIntSize": 64,
"isNightly": false,
"download": "https://github.com/owncloud/news/releases/download/8.8.0/news.tar.gz",
"created": "2016-06-25T16:08:56.796646Z",
"licenses": [
"agpl"
"AGPL-3.0-or-later"
],
"lastModified": "2016-06-25T16:49:25.319425Z",
"signature": "909377e1a695bbaa415c10ae087ae1cc48e88066d20a5a7a8beed149e9fad3d5",
Expand Down Expand Up @@ -572,15 +572,15 @@ This route will return all releases to display inside Nextcloud's apps admin are
"grep"
],
"phpVersionSpec": ">=5.6.0",
"platformVersionSpec": ">=9.0.0 <9.2.0",
"platformVersionSpec": ">=31.0.0 <33.0.0",
"rawPhpVersionSpec": ">=5.6",
"rawPlatformVersionSpec": ">=10 <=10",
"rawPlatformVersionSpec": ">=31 <=32",
"minIntSize": 64,
"isNightly": false,
"download": "https://github.com/owncloud/news/releases/download/8.8.0/news.tar.gz",
"created": "2016-06-25T16:08:56.796646Z",
"licenses": [
"agpl"
"AGPL-3.0-or-later"
],
"lastModified": "2016-06-25T16:49:25.319425Z",
"signature": "909377e1a695bbaa415c10ae087ae1cc48e88066d20a5a7a8beed149e9fad3d5",
Expand Down
8 changes: 4 additions & 4 deletions docs/developer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -173,12 +173,12 @@ A minimum valid **info.xml** would look like this:
<summary>An RSS/Atom feed reader</summary>
<description>An RSS/Atom feed reader</description>
<version>8.8.2</version>
<licence>agpl</licence>
<licence>AGPL-3.0-or-later</licence>
<author>Bernhard Posselt</author>
<category>multimedia</category>
<bugs>https://github.com/nextcloud/news/issues</bugs>
<dependencies>
<nextcloud min-version="10"/>
<nextcloud min-version="31"/>
</dependencies>
</info>
Expand All @@ -196,7 +196,7 @@ A full blown example would look like this (needs to be utf-8 encoded):
<description lang="en"># Description\nAn RSS/Atom feed reader</description>
<description lang="de"><![CDATA[# Beschreibung\nEine Nachrichten App, welche mit [RSS/Atom](https://en.wikipedia.org/wiki/RSS) umgehen kann]]></description>
<version>8.8.2</version>
<licence>agpl</licence>
<licence>AGPL-3.0-or-later</licence>
<author mail="[email protected]" homepage="http://example.com">Bernhard Posselt</author>
<author>Alessandro Cosentino</author>
<author>Jan-Christoph Borchardt</author>
Expand Down Expand Up @@ -226,7 +226,7 @@ A full blown example would look like this (needs to be utf-8 encoded):
<lib>curl</lib>
<lib>SimpleXML</lib>
<lib>iconv</lib>
<nextcloud min-version="9" max-version="10"/>
<nextcloud min-version="31" max-version="32"/>
</dependencies>
<background-jobs>
<job>OCA\DAV\CardDAV\Sync\SyncJob</job>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ usability.

The basic ideas that form the foundation of the store include:

* Be free and open: The App Store is available under the AGPLv3 or later which offers a strong copyleft so developers can profit from changes made in other versions
* Be free and open: The App Store is available under the AGPL-3.0-or-later license which offers strong copyleft so developers can profit from changes made in other versions

* Be easy to use: The App Store should be easy to use and be built in a way that users can quickly discover the most loved apps. Registration should be as easy as possible and connect users and developers by using e.g. GitHub or BitBucket logins

Expand Down

0 comments on commit 3560d00

Please sign in to comment.