Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Move to vue and @nextcloud/files actions #189

Merged
merged 1 commit into from
Dec 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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