Skip to content

S3 support and duplicate error dialog on extraction #87

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

Open
wants to merge 25 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
6e0fd33
Add duplicate error dialog on extraction
arnegns May 31, 2022
5b93604
Merge pull request #1 from hpi-schul-cloud/feature/N21-132-duplicate-…
arnegns Jun 1, 2022
1338d3c
Protects before relative paths and trims the string
arnegns Jun 1, 2022
e5c5980
Merge pull request #2 from hpi-schul-cloud/feature/N21-132-duplicate-…
arnegns Jun 1, 2022
1c308ec
added changelog and fixed composer.json
MarvinOehlerkingCap Jun 1, 2022
57001f8
fixed translation for title
MarvinOehlerkingCap Jun 2, 2022
caaaedd
fixed translation for title
MarvinOehlerkingCap Jun 2, 2022
1c1d0f4
fixed translation for title
MarvinOehlerkingCap Jun 2, 2022
9a8f8fd
Feature/n21 132 duplicate folder error (#3)
MarvinOehlerkingCap Jun 2, 2022
34b5c9a
now supports s3
MarvinOehlerkingCap Jun 7, 2022
a096408
prevent empty string in dialog + log successful extraction
MarvinOehlerkingCap Jun 7, 2022
d1dd9ea
N21-141 now supports s3 (#4)
MarvinOehlerkingCap Jun 7, 2022
539c52a
increase min-width of dialog to 300px (#5)
MarvinOehlerkingCap Jun 8, 2022
5b220b0
fixed tar.gz for external storage
MarvinOehlerkingCap Jun 10, 2022
0deec1d
Merge branch 'master' into N21-141-s3-support
arnegns Jun 21, 2022
0476e91
Merge pull request #6 from hpi-schul-cloud/N21-141-s3-support
arnegns Jun 21, 2022
0e9b020
Merge branch 'master' into feature/N21-132-duplicate-folder-error
arnegns Jul 10, 2023
e6d2370
N21-1040 Update for Nextcloud 26 (#7)
MarvinOehlerkingCap Jul 10, 2023
598da1d
Merge branch 'master' into feature/N21-132-duplicate-folder-error
arnegns Jul 10, 2023
dedb3d7
reimplements s3 and extraction dialog support
arnegns Nov 15, 2023
af53c88
Merge remote-tracking branch 'upstream/master' into feature/N21-132-d…
arnegns Nov 20, 2023
7046ec2
Merge pull request #8 from hpi-schul-cloud/feature/N21-132-duplicate-…
IgorCapCoder Nov 20, 2023
8647535
Merge branch 'master' into feature/N21-132-duplicate-folder-error
arnegns Dec 1, 2023
9b4d0d9
Merge branch 'master' into feature/N21-132-duplicate-folder-error
arnegns Mar 18, 2024
d84c759
Merge remote-tracking branch 'upstream/master' into feature/N21-132-d…
arnegns Mar 18, 2024
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,4 @@ typings/

# next.js build output
.next
/.idea/
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
## 1.3.8
- NC26 support

## 1.3.6
- Added a dialog to change the target directory name

- NC27 support
## 1.3.5

- Fix issue on external storage
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* **Note :** Encrypted files are not supported yet
]]></description>

<version>1.3.6</version>
<version>1.4.0</version>
<licence>agpl</licence>
<author mail="paulereverend@gmail.com">Paul Lereverend</author>
<namespace>Extract</namespace>
Expand Down
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "extract",
"name": "paullereverend/extract",
"description": "Allows to extract archive from the web interface",
"type": "project",
"license": "AGPL",
Expand All @@ -9,8 +9,11 @@
}
],
"require": {
"php": ">=8.2",
"ext-zip": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.4"
"phpunit/phpunit": "^9",
"nextcloud/ocp": "^26"
}
}
Loading