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

[full-ci] Redesign "Create and manage sharing links" #6749

Merged
merged 2 commits into from
Apr 27, 2022
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
2 changes: 1 addition & 1 deletion .drone.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# The version of OCIS to use in pipelines that test against OCIS
OCIS_COMMITID=726604951db1a1921697a6b493e661f451e67755
OCIS_COMMITID=4202a99600ef15bc7a6bd91b011074775c19a24a
OCIS_BRANCH=master
7 changes: 7 additions & 0 deletions changelog/unreleased/bugfix-public-link-password-enforcement
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Bugfix: Password enforcement for public links

Password enforcement for public links, which can be adjusted on a per-role basis, wasn't properly reflected in the UI.
We have made the necessary adjustments to only enforce passwords for public links with the permissions that require a password according to the backend settings.

https://github.com/owncloud/web/issues/6323
https://github.com/owncloud/web/pull/6749
5 changes: 0 additions & 5 deletions changelog/unreleased/enhancement-bump-ods-13.1.0-rc.5

This file was deleted.

5 changes: 5 additions & 0 deletions changelog/unreleased/enhancement-redesign-link-sharing
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Enhancement: Redesign link sharing

We have redesigned the public link list in the right sidebar. Links now can be edited in-line and have a similiar look-and-feel to people and group shares.

https://github.com/owncloud/web/pull/6749
19 changes: 19 additions & 0 deletions changelog/unreleased/enhancement-update-ods
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Enhancement: Update ODS to v13.1.0-rc.5

We updated the ownCloud Design System to version 13.1.0-rc.5. Please refer to the full changelog in the ODS release (linked) for more details. Summary:

- Enhancement - Add isFileExtensionDisplayed property: https://github.com/owncloud/owncloud-design-system/pull/2087
- Enhancement - OcModal input type: https://github.com/owncloud/owncloud-design-system/pull/2077
- Enhancement - Add OcContextualHelper: https://github.com/owncloud/owncloud-design-system/pull/2064
- Enhancement - Add selection range for OcModal and OcTextInput: https://github.com/owncloud/owncloud-design-system/pull/2061
- Enhancement - Replace deprecated String.prototype.substr(): https://github.com/owncloud/owncloud-design-system/pull/2059
- Enhancement - Redesign OcGhostElement: https://github.com/owncloud/owncloud-design-system/pull/2049
- Enhancement - Export package members: https://github.com/owncloud/owncloud-design-system/pull/2048
- Enhancement - Make OcResource inline-flex: https://github.com/owncloud/owncloud-design-system/pull/2041
- Bugfix - Disabled textarea color contrast in darkmode: https://github.com/owncloud/owncloud-design-system/pull/2055
- Bugfix - OcTextInput: Fix event handlers in loops: https://github.com/owncloud/owncloud-design-system/pull/2054

https://github.com/owncloud/web/pull/6749
https://github.com/owncloud/web/pull/6750
https://github.com/owncloud/owncloud-design-system/releases/tag/v13.1.0-rc.5

2 changes: 1 addition & 1 deletion packages/web-app-files/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
id="files-sidebar"
ref="filesSidebar"
tabindex="-1"
class="oc-width-1-1 oc-width-1-3@m oc-width-1-4@xl"
class="oc-width-1-1 oc-width-2-5@m oc-width-1-4@xl"
:sidebar-active-panel="sidebarActivePanel"
@beforeDestroy="focusSideBar"
@mounted="focusSideBar"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
v-oc-tooltip="label"
:aria-label="label"
appearance="raw"
:variation="copied ? 'success' : 'passive'"
@click="copyValueToClipboard"
>
<span v-text="text" />
Expand Down Expand Up @@ -84,7 +85,7 @@ export default {
<style scoped>
._clipboard-success-animation {
animation-name: _clipboard-success-animation;
animation-duration: 0.5s;
animation-duration: 0.8s;
animation-timing-function: ease-out;
animation-fill-mode: both;
}
Expand Down
Loading