summaryrefslogtreecommitdiffstats
path: root/apps/files
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2022-08-27144-0/+152
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #33713 from nextcloud/bugfix/noid/viewonlyfixJohn Molakvoæ2022-08-262-2/+20
|\
| * Remove copy in file actions when not allowedVincent Petry2022-08-262-2/+20
| | | | | | | | Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* | Fix accessibility of input fieldsCarl Schwan2022-08-265-4/+14
|/ | | | | | | | | | | | | Input fields require a 44x44 pixels target size, this makes all the input fields and button use that size. Bonus is that now the input fields and buttons now have the same size as the new vue button and this looks less weird than the previous state with controls of different sizes. See https://www.w3.org/WAI/WCAG21/Understanding/target-size.html Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Add Nc prefix to Nc vue component namesVincent Petry2022-08-254-36/+36
| | | | Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* Bump @nextcloud/vue to 6.0.0-beta.3 and relatedVincent Petry2022-08-251-6/+6
| | | | | | | | Update @nextcloud/vue to 6.0.0-beta.3 Update vue and vue-template-compiler to 2.7.8 Update calendar-availability-vue to 0.5.0-beta.1 to fix conflicts. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* Merge pull request #33593 from nextcloud/improve-binary-cachingCarl Schwan2022-08-241-3/+3
|\ | | | | Move findBinaryFinder and isFunctionEnabled away from OC_Helper
| * Move findBinaryFinder and isFunctionEnabled away from OC_HelperCarl Schwan2022-08-231-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | findBinaryFinder is now a service that is still private but with some minor optimization (remove the hasKey check). isFunctionEnabled is now in OCP\Util Both function are still keep but all internal usage in nextcloud/server were migrated to the new usage, so that we can remove it in 26 Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | Merge pull request #33047 from nextcloud/fix/ijob-logger-deprecatedCarl Schwan2022-08-232-12/+13
|\ \ | | | | | | Deprecated ILogger from IJob
| * | Port existing server code to new interfaceCarl Schwan2022-08-082-12/+13
| | | | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | | [tx-robot] updated from transifexNextcloud bot2022-08-232-2/+2
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-08-222-0/+4
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-08-214-0/+6
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-08-204-0/+8
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge pull request #33615 from ↵Joas Schilling2022-08-192-13/+6
|\ \ \ | | | | | | | | | | | | | | | | nextcloud/perf/noid/user-displayname-cache-for-activity-providers Use user name cache in activity providers
| * | | Use user name cache in activity providersJoas Schilling2022-08-192-13/+6
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Merge pull request #33522 from nextcloud/fix/358-add-missing-expanded-attributesJulia Kirschenheuter2022-08-195-3/+14
|\ \ \ \ | |/ / / |/| | | Fix/358 add missing expanded attributes
| * | | Add ```aria-expanded``` value to select2-container om systemtag and file tagsjulia.kirschenheuter2022-08-175-3/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add ```aria-expanded``` to color picker Add ```aria-expanded``` to UnifiedSearch.vue Add ```aria-expanded``` to new button on files Add ```aria-expanded``` to action menu Add ```aria-expanded``` to icon .federation-menu Add ```aria-expanded``` to app navigation collapse button Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | | [tx-robot] updated from transifexNextcloud bot2022-08-186-0/+18
|/ / / | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | / [tx-robot] updated from transifexNextcloud bot2022-08-178-2/+18
| |/ |/| | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-08-1684-84/+94
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Remove redundant eventsVincent Petry2022-08-151-0/+3
| | | | | | | | Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* | Merge pull request #33495 from nextcloud/unify-initial-and-updated-quota-displayVincent Petry2022-08-153-5/+7
|\ \ | | | | | | Unify initial and updated quota display
| * | Show usage percenteage in the tooltipDaniel Calviño Sánchez2022-08-103-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The tooltip of the initial quota display showed the usage percenteage and the total available space. However, the total available space was redundant, as it was shown just below. The tooltip of the updated quota display showed the usage percenteage, but based on the quota rather than the total available space, so there was a mismatch between the tooltip and the bar below. Now the tooltip of the initial and the updated quota display both show just the usage percenteage based on the total available space. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Use total available space rather than quota when updating the displayDaniel Calviño Sánchez2022-08-102-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | The initial quota display uses the total available space rather than the quota. Moreover, the relative usage is based on the total space rather than the quota. Due to this now the total available space is also used when updating the quota display. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-08-124-2/+6
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-08-104-4/+18
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | [tx-robot] updated from transifexNextcloud bot2022-08-092-0/+4
|/ / | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-08-084-0/+6
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-08-074-4/+36
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-08-0622-20/+60
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-08-05144-146/+178
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #32482 from nextcloud/enh/noid/share-attributesCarl Schwan2022-08-012-0/+10
|\ | | | | Add share attributes + prevent download permission
| * Add share attrs + download permission support in frontendVincent Petry2022-07-281-0/+1
| | | | | | | | | | | | | | Added download permission checkbox in frontend Added share attributes parsing and setting in frontend. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
| * Add share attributes + prevent download permissionVincent Petry2022-07-281-0/+9
| | | | | | | | | | | | Makes it possible to store download permission Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* | Merge pull request #33394 from ↵Julia Kirschenheuter2022-07-281-3/+4
|\ \ | |/ |/| | | | | nextcloud/fix/fix-370-Label_not_connected_to_form-element_in_file_listing Connect ```input``` checkbox with corresponding file name via ```aria-describedby```
| * Connect ```input``` checkbox with corresponding file name via ↵julia.kirschenheuter2022-07-281-3/+4
| | | | | | | | | | | | ```aria-describedby``` Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
* | Merge pull request #33299 from nextcloud/fix/files-dark-color-themeLouis2022-07-281-2/+5
|\ \ | |/ |/| [files app]: Fix dark color mode detection for filelist
| * files: Fix colormode detection for filelistFerdinand Thiessen2022-07-261-2/+5
| | | | | | | | | | | | | | | | | | | | When system default color theme is selected for theming, the `enabledThemes` array is empty or just contains on entry `'default'`, in this case the color theme has to be retrieved from the browser to ensure text like the modified date is readable. This fixes #33298 Signed-off-by: Ferdinand Thiessen <rpm@fthiessen.de>
* | Remove more legacy idsVincent Petry2022-07-275-7/+3
| | | | | | | | | | | | | | | | Remove more unused legacy ids from early ownCloud times. This reduces the number of duplicate ids in the DOM. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* | Merge pull request #33373 from nextcloud/techdebt/noid/remove-legacy-dirVincent Petry2022-07-278-29/+25
|\ \ | | | | | | Remove legacy #dir element in files list
| * | Remove legacy #dir element in files listVincent Petry2022-07-278-29/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed legacy "#dir" input element in the DOM. Apps should use OCA.Files.App.currentFileList or OCA.Sharing.PublicApp.fileList and call getCurrentDirectory() to retrieve the current directory and changeDirectory() to change it. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* | | Merge pull request #33271 from nextcloud/enh/a11y-new-file-menuVincent Petry2022-07-271-2/+2
|\ \ \ | |/ / |/| | Use explicit name for new file/folder menu
| * | Use explicit name for new file/folder menuChristopher Ng2022-07-181-2/+2
| | | | | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* | | Merge pull request #33361 from nextcloud/techdebt/noid/further-cleanupVincent Petry2022-07-262-2/+2
|\ \ \ | | | | | | | | Further markup cleanup
| * | | Removed id=modified in files appVincent Petry2022-07-262-2/+2
| | | | | | | | | | | | | | | | Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* | | | Remove obsolete notification containerVincent Petry2022-07-267-20/+2
|/ / / | | | | | | | | | | | | | | | | | | The future is TOAST 🍞 Signed-off-by: Vincent Petry <vincent@nextcloud.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | / Replace files app ids to classesVincent Petry2022-07-2623-609/+612
| |/ |/| | | | | | | | | | | | | | | | | | | Replaced ids to classes for the following: - #filestable -> .files-filestable - #fileList -> .files-fileList - #controls -> .files-controls - #emptycontent -> .emptyfilelist.emptycontent Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-07-266-2/+6
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-07-254-2/+4
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>