Skip to content

Commit

Permalink
feat: Move to vue and @nextcloud/files actions
Browse files Browse the repository at this point in the history
Bring compatibility with Nextcloud 28 by implementing the new file
actions API. The modal is further moved to vue js and typescript is now
used.

Signed-off-by: Julius Härtl <jus@bitgrid.net>
  • Loading branch information
juliusknorr committed Dec 8, 2023
1 parent 05afb18 commit 62d97fc
Show file tree
Hide file tree
Showing 21 changed files with 2,025 additions and 16,406 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.js → .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module.exports = {
root: true,
extends: [
'@nextcloud',
]
],
}
21 changes: 2 additions & 19 deletions .github/workflows/phpunit-sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,25 +38,8 @@ jobs:

strategy:
matrix:
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3']
server-versions: ['master', 'stable28', 'stable27', 'stable26', 'stable25']
exclude:
- php-versions: 7.4
server-versions: stable26
- php-versions: 7.4
server-versions: stable27
- php-versions: 7.4
server-versions: master
- php-versions: 8.2
server-versions: stable25
- php-versions: 8.2
server-versions: stable26
- php-versions: 8.3
server-versions: stable25
- php-versions: 8.3
server-versions: stable26
- php-versions: 8.3
server-versions: stable27
php-versions: ['8.0', '8.1', '8.2', '8.3']
server-versions: ['master', 'stable28']

steps:
- name: Set app env
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
node_modules/
js/
css/
vendor/
.php_cs.cache
.php-cs-fixer.cache
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
<bugs>https://github.com/nextcloud/files_zip/issues</bugs>
<repository>https://github.com/nextcloud/files_zip.git</repository>
<dependencies>
<nextcloud min-version="25" max-version="27"/>
<nextcloud min-version="28" max-version="29"/>
</dependencies>
</info>
6 changes: 0 additions & 6 deletions babel.config.js

This file was deleted.

8 changes: 0 additions & 8 deletions css/files_zip.css

This file was deleted.

1 change: 1 addition & 0 deletions img/zip-box-outline.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion lib/Listener/LoadAdditionalListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ public function handle(Event $event): void {
}

Util::addScript(Application::APP_NAME, 'files_zip-main');
Util::addStyle(Application::APP_NAME, 'files_zip');
Util::addStyle(Application::APP_NAME, 'files_zip-main');
}
}
Loading

0 comments on commit 62d97fc

Please sign in to comment.