summaryrefslogtreecommitdiffstats
path: root/apps/files/js
Commit message (Collapse)AuthorAgeFilesLines
* Bump bundlesJulius Härtl2021-01-288-6/+9
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Hide new template directory entry after creating and allow setting existing ↵Julius Härtl2021-01-281-1/+20
| | | | | | directories Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Bump core-js from 3.8.2 to 3.8.3dependabot-preview[bot]2021-01-274-4/+4
| | | | | | | | | | | Bumps [core-js](https://github.com/zloirock/core-js) from 3.8.2 to 3.8.3. - [Release notes](https://github.com/zloirock/core-js/releases) - [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/zloirock/core-js/compare/v3.8.2...v3.8.3) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Add "Crop image previews" setting to filesNina Pypchenko2021-01-142-2/+43
| | | | | | | | | | | | | | Added a new user setting that toggles cropping on image previews in grid view. True (default value): crops each image to a square. False: keep original aspect ratio. Signed-off-by: Nina Pypchenko <22447785+nina-py@users.noreply.github.com> Closes #18439. Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
* Bump core-js from 3.8.1 to 3.8.2dependabot-preview[bot]2021-01-076-6/+6
| | | | | | | | | | Bumps [core-js](https://github.com/zloirock/core-js) from 3.8.1 to 3.8.2. - [Release notes](https://github.com/zloirock/core-js/releases) - [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/zloirock/core-js/compare/v3.8.1...v3.8.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
* Bump @nextcloud/axios from 1.5.0 to 1.6.0dependabot-preview[bot]2021-01-076-6/+6
| | | | | | | | | | | Bumps [@nextcloud/axios](https://github.com/nextcloud/nextcloud-axios) from 1.5.0 to 1.6.0. - [Release notes](https://github.com/nextcloud/nextcloud-axios/releases) - [Changelog](https://github.com/nextcloud/nextcloud-axios/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/nextcloud-axios/compare/v1.5.0...v1.6.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com> Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Fix total upload size overwritten by next uploadDaniel Calviño Sánchez2020-12-231-1/+4
| | | | | | | | | | | | | | | | | | | The upload progress is based on the "totalToUpload" variable. However, as the variable is set when an upload is submitted, if another upload is submitted before the previous one finished the upload progress only took into account the size of the new upload (although the upload itself worked fine; the files of the new submitted upload are added to the active one). Now "totalToUpload" is either increased or set depending on whether an upload is active or not. Note that although "data.total" holds the total size of the files being uploaded "totalToUpload" needs to be used in "fileuploadprogressall" instead; "totalToUpload" is calculated when the upload is submitted, but since 7c4c5fe6ae91 the actual upload of the files, and thus updating the value of "data.total", may be deferred until the parent folders were created. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Bump core-js from 3.8.0 to 3.8.1dependabot-preview[bot]2020-12-154-4/+4
| | | | | | | | | | Bumps [core-js](https://github.com/zloirock/core-js) from 3.8.0 to 3.8.1. - [Release notes](https://github.com/zloirock/core-js/releases) - [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/zloirock/core-js/compare/v3.8.0...v3.8.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
* Bump core-js from 3.7.0 to 3.8.0dependabot-preview[bot]2020-11-304-4/+4
| | | | | | | | | | Bumps [core-js](https://github.com/zloirock/core-js) from 3.7.0 to 3.8.0. - [Release notes](https://github.com/zloirock/core-js/releases) - [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/zloirock/core-js/compare/v3.7.0...v3.8.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
* Bump jquery from 3.2 to 3.3Christoph Wurst2020-11-172-2/+2
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Bump jquery from 3.1 to 3.2Christoph Wurst2020-11-172-2/+2
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Check for target folder available quota when uploadingJulius Härtl2020-11-172-3/+12
| | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Bump core-js from 3.6.5 to 3.7.0dependabot-preview[bot]2020-11-146-6/+6
| | | | | | | | | | Bumps [core-js](https://github.com/zloirock/core-js) from 3.6.5 to 3.7.0. - [Release notes](https://github.com/zloirock/core-js/releases) - [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/zloirock/core-js/compare/v3.6.5...v3.7.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
* Bump @nextcloud/dialogs from 3.0.0 to 3.1.1dependabot-preview[bot]2020-11-142-2/+2
| | | | | | | | | | Bumps [@nextcloud/dialogs](https://github.com/nextcloud/nextcloud-dialogs) from 3.0.0 to 3.1.1. - [Release notes](https://github.com/nextcloud/nextcloud-dialogs/releases) - [Changelog](https://github.com/nextcloud/nextcloud-dialogs/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/nextcloud-dialogs/compare/v3.0.0...v3.1.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
* Bump @nextcloud/vue from 3.1.0 to 3.2.0dependabot-preview[bot]2020-11-144-4/+4
| | | | | | | | | Bumps [@nextcloud/vue](https://github.com/nextcloud/nextcloud-vue) from 3.1.0 to 3.2.0. - [Release notes](https://github.com/nextcloud/nextcloud-vue/releases) - [Commits](https://github.com/nextcloud/nextcloud-vue/compare/v3.1.0...v3.2.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
* Bump jquery from 2.2.4 to 3.1.0Christoph Wurst2020-11-133-3/+3
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Bump css-loader from 3.6.0 to 5.0.1dependabot-preview[bot]2020-11-066-6/+6
| | | | | | | | | | Bumps [css-loader](https://github.com/webpack-contrib/css-loader) from 3.6.0 to 5.0.1. - [Release notes](https://github.com/webpack-contrib/css-loader/releases) - [Changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack-contrib/css-loader/compare/v3.6.0...v5.0.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
* Add SVG support check to setup checknhirokinet2020-11-024-4/+4
| | | | Signed-off-by: nhirokinet <nhirokinet@nhiroki.net>
* Bump vue-loader from 15.9.3 to 15.9.4dependabot-preview[bot]2020-10-314-4/+4
| | | | | | | | | | Bumps [vue-loader](https://github.com/vuejs/vue-loader) from 15.9.3 to 15.9.4. - [Release notes](https://github.com/vuejs/vue-loader/releases) - [Changelog](https://github.com/vuejs/vue-loader/blob/master/CHANGELOG.md) - [Commits](https://github.com/vuejs/vue-loader/compare/v15.9.3...v15.9.4) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
* Compile assetsnpmbuildbot[bot]2020-10-282-2/+2
| | | | | Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com> Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Bump @nextcloud/vue from 3.0.0 to 3.1.0dependabot-preview[bot]2020-10-274-4/+4
| | | | | | | | | Bumps [@nextcloud/vue](https://github.com/nextcloud/nextcloud-vue) from 3.0.0 to 3.1.0. - [Release notes](https://github.com/nextcloud/nextcloud-vue/releases) - [Commits](https://github.com/nextcloud/nextcloud-vue/compare/v3.0.0...v3.1.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Bring back the restore share buttonVincent Petry2020-10-221-3/+1
| | | | | | | | | | Fix disabled default file action to still use an anchor element, as this is used in many other places (and potentially apps). Adjusted anchor style to not look like it's clickable and added extras to make sure everything inside still looks clickable as before. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* Bump @nextcloud/vue to 3.0.0John Molakvoæ (skjnldsv)2020-10-206-6/+6
| | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Bump v-click-outside from 3.1.1 to 3.1.2dependabot-preview[bot]2020-10-194-4/+4
| | | | | | | | | Bumps [v-click-outside](https://github.com/ndelvalle/v-click-outside) from 3.1.1 to 3.1.2. - [Release notes](https://github.com/ndelvalle/v-click-outside/releases) - [Commits](https://github.com/ndelvalle/v-click-outside/compare/v3.1.1...v3.1.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Bump file-loader from 6.1.0 to 6.1.1dependabot-preview[bot]2020-10-192-2/+2
| | | | | | | | | | Bumps [file-loader](https://github.com/webpack-contrib/file-loader) from 6.1.0 to 6.1.1. - [Release notes](https://github.com/webpack-contrib/file-loader/releases) - [Changelog](https://github.com/webpack-contrib/file-loader/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack-contrib/file-loader/compare/v6.1.0...v6.1.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Fix sidebar legacy fileinfoJohn Molakvoæ (skjnldsv)2020-10-171-2/+2
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Fix app sidebar mountpointJohn Molakvoæ (skjnldsv)2020-10-142-2/+2
| | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Bump @nextcloud/vue from 2.6.9 to 2.7.0dependabot-preview[bot]2020-10-124-4/+4
| | | | | | | | | Bumps [@nextcloud/vue](https://github.com/nextcloud/nextcloud-vue) from 2.6.9 to 2.7.0. - [Release notes](https://github.com/nextcloud/nextcloud-vue/releases) - [Commits](https://github.com/nextcloud/nextcloud-vue/compare/v2.6.9...v2.7.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Bump @nextcloud/vue to v2.6.9John Molakvoæ (skjnldsv)2020-10-074-4/+4
| | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Upgrade lifecycle and vue parent contextJohn Molakvoæ (skjnldsv)2020-10-077-8/+14
| | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Move Files Sidebar to proper javascript standardJohn Molakvoæ (skjnldsv)2020-10-071-1/+10
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* add mount point to quota warning messageRobin Appelman2020-10-041-7/+11
| | | | | | makes it more clear to the user what the quota applies to Signed-off-by: Robin Appelman <robin@icewind.nl>
* Bump @nextcloud/vue to v2.6.8John Molakvoæ (skjnldsv)2020-10-024-4/+4
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Update @nextcloud/vue to 2.6.7Joas Schilling2020-10-024-4/+4
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Bump @nextcloud/vue to 2.6.6Joas Schilling2020-09-304-4/+4
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Bump @nextcloud/vue from 2.6.4 to 2.6.5dependabot-preview[bot]2020-09-144-4/+4
| | | | | | | | | Bumps [@nextcloud/vue](https://github.com/nextcloud/nextcloud-vue) from 2.6.4 to 2.6.5. - [Release notes](https://github.com/nextcloud/nextcloud-vue/releases) - [Commits](https://github.com/nextcloud/nextcloud-vue/compare/v2.6.4...v2.6.5) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Bump @nextcloud/l10n from 1.4.0 to 1.4.1dependabot-preview[bot]2020-09-104-4/+4
| | | | | | | | | | | Bumps [@nextcloud/l10n](https://github.com/nextcloud/nextcloud-l10n) from 1.4.0 to 1.4.1. - [Release notes](https://github.com/nextcloud/nextcloud-l10n/releases) - [Changelog](https://github.com/nextcloud/nextcloud-l10n/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/nextcloud-l10n/compare/v1.4.0...v1.4.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com> Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Compile assetsnpmbuildbot[bot]2020-09-104-4/+4
| | | | Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Add 'Reasons to use Nextcloud in your organization' call to action in settingsJan C. Borchardt2020-09-074-4/+4
| | | | Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
* Better error message when blocked by access controlJoas Schilling2020-09-041-0/+2
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Bump @nextcloud/vue to v2.6.3John Molakvoæ (skjnldsv)2020-09-036-6/+6
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Bump @nextcloud/dialogs from 1.4.0 to 2.0.1dependabot-preview[bot]2020-08-316-6/+6
| | | | | | | | | | Bumps [@nextcloud/dialogs](https://github.com/nextcloud/nextcloud-dialogs) from 1.4.0 to 2.0.1. - [Release notes](https://github.com/nextcloud/nextcloud-dialogs/releases) - [Changelog](https://github.com/nextcloud/nextcloud-dialogs/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/nextcloud-dialogs/compare/v1.4.0...v2.0.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Removing the added parenthesesValdnet2020-08-271-4/+4
|
* Add the missing parenthesisValdnet2020-08-271-4/+4
|
* l10n: Add a period at the end of the sentenceValdnet2020-08-271-4/+4
|
* Merge pull request #22421 from nextcloud/group-folder-quota-warningRoeland Jago Douma2020-08-261-14/+36
|\ | | | | show better quota warning for group folders and external storage
| * show better quota warning for group folders and external storageRobin Appelman2020-08-251-14/+36
| | | | | | | | | | | | instead of showing the generic 'Your storage is full' message, better explain that it's the group folder/external storage that is full Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Expose currently active file list though OCA.Files.AppJulius Härtl2020-08-252-0/+28
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | Bump vue and vue-template-compilerdependabot-preview[bot]2020-08-256-6/+6
|/ | | | | | | | | | | | | | | Bumps [vue](https://github.com/vuejs/vue) and [vue-template-compiler](https://github.com/vuejs/vue). These dependencies needed to be updated together. Updates `vue` from 2.6.11 to 2.6.12 - [Release notes](https://github.com/vuejs/vue/releases) - [Commits](https://github.com/vuejs/vue/compare/v2.6.11...v2.6.12) Updates `vue-template-compiler` from 2.6.11 to 2.6.12 - [Release notes](https://github.com/vuejs/vue/releases) - [Commits](https://github.com/vuejs/vue/compare/v2.6.11...v2.6.12) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Clarify wording to 'Leave this share', fix #18622Jan C. Borchardt2020-08-231-1/+1
| | | | Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>