diff --git a/.drone.env b/.drone.env index 11667c0290c..a3c4e868e2d 100644 --- a/.drone.env +++ b/.drone.env @@ -1,3 +1,3 @@ # The version of OCIS to use in pipelines that test against OCIS -OCIS_COMMITID=8bb2ebcf4bcecd0ddfb3ce8f2cb4ba3d51be19b5 -OCIS_BRANCH=master +OCIS_COMMITID=f99a2072d33debc7fda43f9b27ba48c01014a83b +OCIS_BRANCH=experimental diff --git a/changelog/unreleased/enhancement-tags-support b/changelog/unreleased/enhancement-tags-support new file mode 100644 index 00000000000..971cbdc959f --- /dev/null +++ b/changelog/unreleased/enhancement-tags-support @@ -0,0 +1,10 @@ +Enhancement: Add Tag support + +Managing files via tags is now possible in web, the feature is experimental and will be only available through a dedicated experimental web build. +Beside that the web version is experimental, it also needs a special experimental ocis version. + +Creating Tags, tagging resources and search for tags now is possible and can be used as an alternative way of working and organizing resources. + +https://github.com/owncloud/web/pull/7388 +https://github.com/owncloud/web/pull/7385 +https://github.com/owncloud/web/pull/7442 diff --git a/packages/web-app-files/src/components/FilesList/ContextActions.vue b/packages/web-app-files/src/components/FilesList/ContextActions.vue index 0fd0b2f09ea..d7c2d1f0971 100644 --- a/packages/web-app-files/src/components/FilesList/ContextActions.vue +++ b/packages/web-app-files/src/components/FilesList/ContextActions.vue @@ -22,6 +22,7 @@ import Rename from '../../mixins/actions/rename' import Restore from '../../mixins/actions/restore' import ShowActions from '../../mixins/actions/showActions' import ShowDetails from '../../mixins/actions/showDetails' +import ShowEditTags from '../../mixins/actions/showEditTags' import ShowShares from '../../mixins/actions/showShares' import SetSpaceImage from '../../mixins/spaces/actions/setImage' import SetSpaceReadme from '../../mixins/spaces/actions/setReadme' @@ -50,6 +51,7 @@ export default { Restore, ShowActions, ShowDetails, + ShowEditTags, ShowShares, SetSpaceImage, SetSpaceReadme, @@ -152,6 +154,7 @@ export default { ...this.$_copy_items, ...this.$_paste_items, ...this.$_rename_items, + ...this.$_showEditTags_items, ...this.$_restore_items, ...this.$_acceptShare_items, ...this.$_declineShare_items, diff --git a/packages/web-app-files/src/components/FilesList/ResourceTable.vue b/packages/web-app-files/src/components/FilesList/ResourceTable.vue index f4a97d70194..e203bbe3c58 100644 --- a/packages/web-app-files/src/components/FilesList/ResourceTable.vue +++ b/packages/web-app-files/src/components/FilesList/ResourceTable.vue @@ -81,6 +81,22 @@ +