Skip to content

Commit c0f80c5

Browse files
authored
Merge pull request #1096 from nextcloud-libraries/chore/release-4.2.2
Release 4.2.2
2 parents f57b190 + 7a1df28 commit c0f80c5

File tree

4 files changed

+1625
-672
lines changed

4 files changed

+1625
-672
lines changed

CHANGELOG.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,25 @@
22

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

5-
## [v4.2.1]()
5+
## [v4.2.2](https://github.com/nextcloud-libraries/nextcloud-dialogs/tree/v4.2.2) (2023-11-02)
6+
7+
[Full Changelog](https://github.com/nextcloud-libraries/nextcloud-dialogs/compare/v4.2.1...v4.2.2)
8+
9+
### :rocket: Enhancement
10+
* 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))
11+
12+
### :bug: Fixed bugs
13+
* fix(i18n): Fix spelling of MIME [\#1042](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1042) ([rakekniven](https://github.com/rakekniven))
14+
* fix: Swap sort icons [\#1058](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1058) ([Pytal](https://github.com/Pytal))
15+
* fix(l10n): Update translations [\#1094](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1094) ([susnux](https://github.com/susnux))
16+
17+
## [v4.2.1](https://github.com/nextcloud-libraries/nextcloud-dialogs/tree/v4.2.1) (2023-09-21)
618

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

921
### :bug: Fixed bugs
10-
* \[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)
11-
* \[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)
22+
* \[stable4\] Avoid error when not using any custom buttons [\#1000](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1000) ([juliushaertl](https://github.com/juliushaertl))
23+
* \[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))
1224

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

lib/components/FilePicker/FilePicker.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,13 +291,13 @@ export default {
291291
}
292292
}
293293
294-
:deep(.file-picker) {
294+
:deep(.dialog.file-picker) {
295295
// Dialog is max. 900px wide so the best looking height seems to be 800px
296296
height: min(80vh, 800px);
297297
}
298298
299299
@media (max-width: 512px) {
300-
:deep(.file-picker) {
300+
:deep(.dialog.file-picker) {
301301
// below 512px the modal is fullscreen so we use 100% height - margin of heading (4px + 12px) - height of heading (default-clickable-area)
302302
height: calc(100% - 16px - var(--default-clickable-area));
303303
}

0 commit comments

Comments
 (0)