Skip to content

Commit

Permalink
Merge pull request #1096 from nextcloud-libraries/chore/release-4.2.2
Browse files Browse the repository at this point in the history
Release 4.2.2
  • Loading branch information
susnux committed Nov 2, 2023
2 parents f57b190 + 7a1df28 commit c0f80c5
Show file tree
Hide file tree
Showing 4 changed files with 1,625 additions and 672 deletions.
18 changes: 15 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,25 @@

All notable changes to this project will be documented in this file.

## [v4.2.1]()
## [v4.2.2](https://github.com/nextcloud-libraries/nextcloud-dialogs/tree/v4.2.2) (2023-11-02)

[Full Changelog](https://github.com/nextcloud-libraries/nextcloud-dialogs/compare/v4.2.1...v4.2.2)

### :rocket: Enhancement
* Bring back previews of images, this worked with FilePicker on Nextcloud 26 but was missing in this rewrite [\#1015](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1015) ([susnux](https://github.com/susnux))

### :bug: Fixed bugs
* fix(i18n): Fix spelling of MIME [\#1042](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1042) ([rakekniven](https://github.com/rakekniven))
* fix: Swap sort icons [\#1058](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1058) ([Pytal](https://github.com/Pytal))
* fix(l10n): Update translations [\#1094](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1094) ([susnux](https://github.com/susnux))

## [v4.2.1](https://github.com/nextcloud-libraries/nextcloud-dialogs/tree/v4.2.1) (2023-09-21)

[Full Changelog](https://github.com/nextcloud-libraries/nextcloud-dialogs/compare/v4.2.0...v4.2.1)

### :bug: Fixed bugs
* \[stable4\] Avoid error when not using any custom buttons by ([juliushaertl](https://github.com/juliushaertl)) in [\#1000](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1000)
* \[stable4\] Bring back the default value for legacy file picker by ([susnux](https://github.com/susnux)) in [\#1007](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1007)
* \[stable4\] Avoid error when not using any custom buttons [\#1000](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1000) ([juliushaertl](https://github.com/juliushaertl))
* \[stable4\] Bring back the default value for legacy file picker [\#1007](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1007) ([susnux](https://github.com/susnux))

## [v4.2.0](https://github.com/nextcloud-libraries/nextcloud-dialogs/tree/v4.2.0) (2023-09-13)

Expand Down
4 changes: 2 additions & 2 deletions lib/components/FilePicker/FilePicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -291,13 +291,13 @@ export default {
}
}
:deep(.file-picker) {
:deep(.dialog.file-picker) {
// Dialog is max. 900px wide so the best looking height seems to be 800px
height: min(80vh, 800px);
}
@media (max-width: 512px) {
:deep(.file-picker) {
:deep(.dialog.file-picker) {
// below 512px the modal is fullscreen so we use 100% height - margin of heading (4px + 12px) - height of heading (default-clickable-area)
height: calc(100% - 16px - var(--default-clickable-area));
}
Expand Down
Loading

0 comments on commit c0f80c5

Please sign in to comment.