Skip to content

Commit 41af482

Browse files
committed
chore: Add krankerl config
Signed-off-by: Julius Härtl <[email protected]>
1 parent 54669f1 commit 41af482

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

.nextcloudignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/build/
2+
/.git
3+
/.github
4+
/docs/
5+
/tests
6+
/babel.config.js
7+
/.editorconfig
8+
/.eslintrc.js
9+
/.nextcloudignore
10+
/webpack.*.js
11+
/.codecov.yml
12+
/composer.json
13+
/composer.lock
14+
/_config.yml
15+
/.drone.yml
16+
/.travis.yml
17+
/.eslintignore
18+
/.eslintrc.yml
19+
/.gitignore
20+
/issue_template.md
21+
/krankerl.toml
22+
/Makefile
23+
/mkdocs.yml
24+
/run-eslint.sh
25+
/package.json
26+
/package-lock.json
27+
/node_modules/
28+
/src/

appinfo/info.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<description><![CDATA[
88
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/nextcloud/notes-android), [iOS](https://github.com/nextcloud/notes-ios) and the [console](https://git.danielmoch.com/nncli/about) which allow convenient access to your Nextcloud notes). Further features include marking notes as favorites.
99
]]></description>
10-
<version>4.6.0</version>
10+
<version>4.7.0-beta.0</version>
1111
<licence>agpl</licence>
1212
<author>Kristof Hamann</author>
1313
<author>Bernhard Posselt</author>
@@ -22,7 +22,7 @@ The Notes app is a distraction free notes taking app for [Nextcloud](https://www
2222
<repository type="git">https://github.com/nextcloud/notes.git</repository>
2323
<screenshot small-thumbnail="https://github.com/raw/nextcloud/screenshots/master/apps/Notes/notes-thumbnail.jpg">https://github.com/raw/nextcloud/screenshots/master/apps/Notes/notes.png</screenshot>
2424
<dependencies>
25-
<php min-version="7.4" max-version="8.1" />
25+
<php min-version="7.4" max-version="8.2" />
2626
<nextcloud min-version="25" max-version="27" />
2727
</dependencies>
2828
<repair-steps>

krankerl.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[package]
2+
before_cmds = [
3+
'npm ci',
4+
'npm run build'
5+
]

0 commit comments

Comments
 (0)