Skip to content

Commit 778e564

Browse files
author
Julien Veyssier
committed
1.0.5
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
1 parent c77492a commit 778e564

4 files changed

Lines changed: 21 additions & 6 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
APP_ID: integration_dropbox
1313
runs-on: ubuntu-latest
1414
steps:
15-
- name: Use Node 14
15+
- name: Use Node 16
1616
uses: actions/setup-node@v1
1717
with:
18-
node-version: 14
18+
node-version: 16
1919

2020
- name: Set up npm
21-
run: npm i -g npm
21+
run: npm i -g npm@^8.0.0
2222

2323
- name: Setup PHP
2424
uses: shivammathur/setup-php@v2

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
8+
9+
## 1.0.5 – 2022-08-24
10+
### Changed
11+
- use material icons
12+
- ready for NC 25
13+
- bump js libs
14+
- adjust to new eslint config
15+
16+
### Fixed
17+
- npm scripts
18+
819
## 1.0.3 – 2021-09-02
920
### Fixed
1021
- handle all crashes in import job

appinfo/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<name>Dropbox integration</name>
55
<summary>Import Dropbox data in Nextcloud</summary>
66
<description><![CDATA[Dropbox integration allows you to automatically import your Dropbox files into Nextcloud.]]></description>
7-
<version>1.0.4</version>
7+
<version>1.0.5</version>
88
<licence>agpl</licence>
99
<author>Julien Veyssier</author>
1010
<namespace>Dropbox</namespace>

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
1313
"lint": "eslint --ext .js,.vue src",
1414
"lint:fix": "eslint --ext .js,.vue src --fix",
15-
"stylelint": "stylelint src",
16-
"stylelint:fix": "stylelint src --fix"
15+
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css",
16+
"stylelint:fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css --fix"
1717
},
1818
"repository": {
1919
"type": "git",
@@ -31,6 +31,10 @@
3131
"browserslist": [
3232
"extends @nextcloud/browserslist-config"
3333
],
34+
"engines": {
35+
"node": "^16.0.0",
36+
"npm": "^7.0.0 || ^8.0.0"
37+
},
3438
"dependencies": {
3539
"@nextcloud/auth": "^2.0.0",
3640
"@nextcloud/axios": "^2.0.0",

0 commit comments

Comments
 (0)