-
Notifications
You must be signed in to change notification settings - Fork 158
/
CHANGELOG.md
14286 lines (9908 loc) · 656 KB
/
CHANGELOG.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Changelog for ownCloud Web [unreleased] (UNRELEASED)
=======================================
The following sections list the changes in ownCloud web unreleased relevant to
ownCloud admins and users.
[unreleased]: https://github.com/owncloud/web/compare/v11.0.0...master
Summary
-------
* Bugfix - Files appearing in file list: [#11803](https://github.com/owncloud/web/issues/11803)
* Bugfix - Add missing translations: [#11804](https://github.com/owncloud/web/pull/11804)
* Bugfix - Folder size mismatch: [#11806](https://github.com/owncloud/web/issues/11806)
* Bugfix - Preview image retries: [#11813](https://github.com/owncloud/web/pull/11813)
* Bugfix - Respect post logout url: [#11817](https://github.com/owncloud/web/pull/11817)
* Bugfix - Right side bar cut off: [#11830](https://github.com/owncloud/web/issues/11830)
* Bugfix - Sidebar showing wrong shares: [#11831](https://github.com/owncloud/web/pull/11831)
Details
-------
* Bugfix - Files appearing in file list: [#11803](https://github.com/owncloud/web/issues/11803)
We've fixed a bug where files would wrongly appear in the current file list
during an ongoing upload.
https://github.com/owncloud/web/issues/11803
https://github.com/owncloud/web/pull/11824
* Bugfix - Add missing translations: [#11804](https://github.com/owncloud/web/pull/11804)
Missing translations for the tile sort options and the editor "Save"-button have
been added.
https://github.com/owncloud/web/pull/11804
* Bugfix - Folder size mismatch: [#11806](https://github.com/owncloud/web/issues/11806)
We've fixed the size mismatch between a folder in the file list and the
accumulated size inside the folder beneath the file list.
https://github.com/owncloud/web/issues/11806
https://github.com/owncloud/web/pull/11814
* Bugfix - Preview image retries: [#11813](https://github.com/owncloud/web/pull/11813)
We've added a retry mechanism to preview loading in case the server is being
overrun with too many requests.
https://github.com/owncloud/web/issues/11798
https://github.com/owncloud/web/pull/11813
* Bugfix - Respect post logout url: [#11817](https://github.com/owncloud/web/pull/11817)
We've fixed a bug where setting the `post_logout_redirect_url` in the oidc
config had no effect.
https://github.com/owncloud/web/issues/11816
https://github.com/owncloud/web/pull/11817
* Bugfix - Right side bar cut off: [#11830](https://github.com/owncloud/web/issues/11830)
We've fixed a bug where the right sidebar would cut off at a browser width
>960px and <1024px.
https://github.com/owncloud/web/issues/11830
https://github.com/owncloud/web/pull/11842
* Bugfix - Sidebar showing wrong shares: [#11831](https://github.com/owncloud/web/pull/11831)
We've fixed a bug where the right sidebar would display wrong shares when being
inside a space and opening a file from another space (e.g. via the search
results).
https://github.com/owncloud/web/issues/11787
https://github.com/owncloud/web/pull/11831
Changelog for ownCloud Web [11.0.0] (2024-10-18)
=======================================
The following sections list the changes in ownCloud web 11.0.0 relevant to
ownCloud admins and users.
[11.0.0]: https://github.com/owncloud/web/compare/v10.3.0...v11.0.0
Summary
-------
* Bugfix - User filters after page reload: [#11604](https://github.com/owncloud/web/issues/11604)
* Bugfix - Hide copy permanent link action on public pages: [#11645](https://github.com/owncloud/web/issues/11645)
* Bugfix - Missing tags on "Shared with me" page: [#11677](https://github.com/owncloud/web/issues/11677)
* Bugfix - Undefined request IDs: [#11678](https://github.com/owncloud/web/issues/11678)
* Bugfix - Deleting federated connections: [#11688](https://github.com/owncloud/web/issues/11688)
* Bugfix - Escape HTML characters in activities and notification view: [#11706](https://github.com/owncloud/web/pull/11706)
* Bugfix - Prevent not allowed characters in shortcut name: [#11707](https://github.com/owncloud/web/pull/11707)
* Bugfix - Details panel wrong WebDAV URL of received shares: [#11712](https://github.com/owncloud/web/pull/11712)
* Bugfix - Accessing disabled password-protected space does not show error: [#11725](https://github.com/owncloud/web/pull/11725)
* Bugfix - Application menu not operable in Safari browser: [#11726](https://github.com/owncloud/web/pull/11726)
* Bugfix - Navigating into folders that have been shared externally: [#11758](https://github.com/owncloud/web/pull/11758)
* Bugfix - Sharing label for locked files: [#11795](https://github.com/owncloud/web/pull/11795)
* Change - Remove importer as default app: [#11709](https://github.com/owncloud/web/pull/11709)
* Enhancement - Allow setting view mode for apps via query: [#11668](https://github.com/owncloud/web/pull/11668)
* Enhancement - File size warning in editors: [#11731](https://github.com/owncloud/web/pull/11731)
* Enhancement - Add not found page: [#11737](https://github.com/owncloud/web/pull/11737)
* Enhancement - Create documents from templates: [#11750](https://github.com/owncloud/web/issues/11750)
Details
-------
* Bugfix - User filters after page reload: [#11604](https://github.com/owncloud/web/issues/11604)
We've fixed an issue where applied user filters would not be visible after page
reload.
https://github.com/owncloud/web/issues/11604
https://github.com/owncloud/web/pull/11666
* Bugfix - Hide copy permanent link action on public pages: [#11645](https://github.com/owncloud/web/issues/11645)
We've hidden the action for copying permanent links on public pages since it
doesn't make any sense in this context.
https://github.com/owncloud/web/issues/11645
https://github.com/owncloud/web/pull/11670
* Bugfix - Missing tags on "Shared with me" page: [#11677](https://github.com/owncloud/web/issues/11677)
Missing resource tags on the "Shared with me" page have been added.
https://github.com/owncloud/web/issues/11677
https://github.com/owncloud/web/pull/11703
* Bugfix - Undefined request IDs: [#11678](https://github.com/owncloud/web/issues/11678)
Request IDs from failing copy, move and delete requests are no longer undefined.
https://github.com/owncloud/web/issues/11678
https://github.com/owncloud/web/pull/11684
* Bugfix - Deleting federated connections: [#11688](https://github.com/owncloud/web/issues/11688)
We've fixed an issue where federated connections could not be deleted.
https://github.com/owncloud/web/issues/11688
https://github.com/owncloud/web/pull/11734
* Bugfix - Escape HTML characters in activities and notification view: [#11706](https://github.com/owncloud/web/pull/11706)
We've fixed a bug where HTML characters were not escaped in the activities and
notification view. This could lead to potential XSS attacks.
https://github.com/owncloud/web/issues/11705
https://github.com/owncloud/web/pull/11706
* Bugfix - Prevent not allowed characters in shortcut name: [#11707](https://github.com/owncloud/web/pull/11707)
We've fixed an issue where not allowed characters were allowed in the shortcut
name. Now, the shortcut name will be validated and only allowed characters will
be accepted.
https://github.com/owncloud/web/issues/11702
https://github.com/owncloud/web/pull/11707
* Bugfix - Details panel wrong WebDAV URL of received shares: [#11712](https://github.com/owncloud/web/pull/11712)
We've fixed a bug where the WebDAV URL in the details panel of received shares
was wrong.
https://github.com/owncloud/web/issues/11704
https://github.com/owncloud/web/pull/11712
* Bugfix - Accessing disabled password-protected space does not show error: [#11725](https://github.com/owncloud/web/pull/11725)
We've fixed a bug where accessing a disabled password-protected space did not
show an error message. Now, users will see an error message when trying to
access a disabled password-protected space.
https://github.com/owncloud/web/issues/11721
https://github.com/owncloud/web/pull/11725
* Bugfix - Application menu not operable in Safari browser: [#11726](https://github.com/owncloud/web/pull/11726)
We've fixed a bug where the application menu was not operable in the Safari
browser.
https://github.com/owncloud/web/issues/11718
https://github.com/owncloud/web/pull/11726
* Bugfix - Navigating into folders that have been shared externally: [#11758](https://github.com/owncloud/web/pull/11758)
We've fixed an issue where navigating into folders that have been shared
externally would not work.
https://github.com/owncloud/web/issues/11753
https://github.com/owncloud/web/pull/11758
* Bugfix - Sharing label for locked files: [#11795](https://github.com/owncloud/web/pull/11795)
We've fixed a bug where a locked file would be falsely labelled as shared in the
right sidebar.
https://github.com/owncloud/web/pull/11795
* Change - Remove importer as default app: [#11709](https://github.com/owncloud/web/pull/11709)
BREAKING CHANGE for administrators: importer has been removed as default web
app. The app is now available via the [web-extensions
repository](https://github.com/owncloud/web-extensions).
Please refer to [the web-app docs](https://owncloud.dev/services/web/#web-apps)
to see how to load an external web app.
https://github.com/owncloud/web/issues/11698
https://github.com/owncloud/web/pull/11709
* Enhancement - Allow setting view mode for apps via query: [#11668](https://github.com/owncloud/web/pull/11668)
We've added a new query param 'view_mode' to the app URL to allow setting the
view mode for apps. If the specific app and permission allows it, the view mode
can be set to 'view' or 'write' via the query param.
https://github.com/owncloud/web/issues/11667
https://github.com/owncloud/web/pull/11668
* Enhancement - File size warning in editors: [#11731](https://github.com/owncloud/web/pull/11731)
We've added a warning to the editors, when the respective file size exceeds 2MB.
This will help the user to avoid performance issues when working with large
files.
https://github.com/owncloud/web/issues/8038
https://github.com/owncloud/web/pull/11731
* Enhancement - Add not found page: [#11737](https://github.com/owncloud/web/pull/11737)
We've added a not found page to communicate to users when they've navigated to a
page that doesn't exist.
https://github.com/owncloud/web/issues/5804
https://github.com/owncloud/web/pull/11737
* Enhancement - Create documents from templates: [#11750](https://github.com/owncloud/web/issues/11750)
We've added a new file action to the `external` app which utilizes the document
conversion capabilities of certain WOPI apps to create a document from the
contents of a template file. This action is the default action for left clicks
on template files and is also available in the file context menu.
https://github.com/owncloud/web/issues/11750
https://github.com/owncloud/web/pull/11775
Changelog for ownCloud Web [10.3.0] (2024-09-26)
=======================================
The following sections list the changes in ownCloud web 10.3.0 relevant to
ownCloud admins and users.
[10.3.0]: https://github.com/owncloud/web/compare/v8.0.6...v10.3.0
Summary
-------
* Bugfix - OCM token clipboard copy: [#11557](https://github.com/owncloud/web/pull/11557)
* Bugfix - OCM local instance check: [#11560](https://github.com/owncloud/web/pull/11560)
* Bugfix - Thumbnails for GeoGebra slides not showing up: [#11583](https://github.com/owncloud/web/pull/11583)
* Bugfix - Logout issues on token renewal failure: [#11584](https://github.com/owncloud/web/pull/11584)
* Bugfix - App version downloads: [#11633](https://github.com/owncloud/web/pull/11633)
* Bugfix - Wrong webdav URL in sidebar: [#11642](https://github.com/owncloud/web/pull/11642)
* Bugfix - Renaming space in projects view files table does not work: [#11643](https://github.com/owncloud/web/pull/11643/)
* Bugfix - Hide share type switch for project spaces: [#11653](https://github.com/owncloud/web/pull/11653)
* Bugfix - File name truncation: [#11658](https://github.com/owncloud/web/pull/11658)
* Enhancement - Copy quick link action removal: [#11553](https://github.com/owncloud/web/pull/11553)
* Enhancement - Internal link removal: [#11553](https://github.com/owncloud/web/pull/11553)
* Enhancement - Add split confirm button to create link modal: [#11558](https://github.com/owncloud/web/pull/11558)
* Enhancement - Add versions to the left sidebar bottom: [#11561](https://github.com/owncloud/web/pull/11561)
* Enhancement - Accessibility improvements: [#11574](https://github.com/owncloud/web/pull/11574)
* Enhancement - Show min oCIS version in app details (app store): [#11580](https://github.com/owncloud/web/pull/11580)
* Enhancement - Add a "Save As" function to the app top bar: [#11586](https://github.com/owncloud/web/pull/11586)
* Enhancement - Move permanent link indicator: [#11606](https://github.com/owncloud/web/pull/11606)
* Enhancement - Redesign sidebar link section in sharing panel: [#11606](https://github.com/owncloud/web/pull/11606)
* Enhancement - Soothe right sidebar panel transitions: [#11614](https://github.com/owncloud/web/pull/11614)
* Enhancement - Preview loading performance: [#11631](https://github.com/owncloud/web/pull/11631)
* Enhancement - Add cancel button to unsaved changes dialog: [#11644](https://github.com/owncloud/web/pull/11644)
* Enhancement - File type icon for .ggs files: [#11646](https://github.com/owncloud/web/pull/11646)
* Enhancement - Remove link type "Uploader": [#11661](https://github.com/owncloud/web/pull/11661)
Details
-------
* Bugfix - OCM token clipboard copy: [#11557](https://github.com/owncloud/web/pull/11557)
We've fixed an issue where the token was not being copied to the clipboard after
creating an OCM invitation.
https://github.com/owncloud/web/issues/11552
https://github.com/owncloud/web/pull/11557
* Bugfix - OCM local instance check: [#11560](https://github.com/owncloud/web/pull/11560)
We've fixed the issue where the current instance was not recognized as a local
instance in inviter select.
https://github.com/owncloud/web/pull/11560
* Bugfix - Thumbnails for GeoGebra slides not showing up: [#11583](https://github.com/owncloud/web/pull/11583)
We've fixed a bug, where the thumbnails for GeoGebra slide files were not
showing up in the files list anymore.
https://github.com/owncloud/web/issues/11576
https://github.com/owncloud/web/pull/11583
* Bugfix - Logout issues on token renewal failure: [#11584](https://github.com/owncloud/web/pull/11584)
When token renewal fails for any reason, we now retry the user login one more
time. If this fails, the user gets logged out and redirected to the login page.
This solves an issue where a logged out user was still able to access and
navigate the UI in a broken state.
https://github.com/owncloud/web/issues/11478
https://github.com/owncloud/ocis/issues/10038
https://github.com/owncloud/web/pull/11584
* Bugfix - App version downloads: [#11633](https://github.com/owncloud/web/pull/11633)
We've fixed an issue in the app store where downloading specific versions of an
app would fail.
https://github.com/owncloud/web/pull/11633
* Bugfix - Wrong webdav URL in sidebar: [#11642](https://github.com/owncloud/web/pull/11642)
We've fixed a bug where the webdav URL in the sidebar was wrong.
https://github.com/owncloud/web/issues/11590
https://github.com/owncloud/web/pull/11642
* Bugfix - Renaming space in projects view files table does not work: [#11643](https://github.com/owncloud/web/pull/11643/)
We've fixed a bug where renaming a space in the projects view files table did
not work.
https://github.com/owncloud/web/issues/11638
https://github.com/owncloud/web/pull/11643/
* Bugfix - Hide share type switch for project spaces: [#11653](https://github.com/owncloud/web/pull/11653)
We've hidden the share type switch when adding members to project spaces because
they currently don't support external shares.
https://github.com/owncloud/web/issues/11579
https://github.com/owncloud/web/pull/11653
* Bugfix - File name truncation: [#11658](https://github.com/owncloud/web/pull/11658)
We've fixed the broken file name truncation in file lists.
https://github.com/owncloud/web/issues/11617
https://github.com/owncloud/web/pull/11658
* Enhancement - Copy quick link action removal: [#11553](https://github.com/owncloud/web/pull/11553)
The action for creating/copying quick links for a resource has been removed.
Instead, a new action has been added to copy the permanent link of a resource.
https://github.com/owncloud/web/issues/11544
https://github.com/owncloud/web/pull/11553
* Enhancement - Internal link removal: [#11553](https://github.com/owncloud/web/pull/11553)
The internal link type has been removed because the permanent link makes it
obsolete. Existing internal links still resolve correctly to ensure backwards
compatibility.
https://github.com/owncloud/web/issues/11544
https://github.com/owncloud/web/pull/11553
* Enhancement - Add split confirm button to create link modal: [#11558](https://github.com/owncloud/web/pull/11558)
We've added a split button to the create link modal, which allows you to copy
the link to the clipboard with or without the password.
https://github.com/owncloud/web/issues/11551
https://github.com/owncloud/web/pull/11558
* Enhancement - Add versions to the left sidebar bottom: [#11561](https://github.com/owncloud/web/pull/11561)
We have added the versions to the left sidebar bottom to make it easier for
users to find the versions of the server and web UI.
https://github.com/owncloud/enterprise/issues/6814
https://github.com/owncloud/web/pull/11561
* Enhancement - Accessibility improvements: [#11574](https://github.com/owncloud/web/pull/11574)
The following accessibility improvements have been made:
- Contextual helpers now have a focus trap, meaning the user can't focus
elements in the background while the contextual helper is showing. - An issue
where the current focus would not change when navigating the resource
table/tiles with the keyboard has been fixed. - The contrasts of input borders
have been aligned with the official WCAG requirements. - The space member search
in the right sidebar now has a label. Also, the search has been moved from the
top of the sharing panel to the members section where all members are listed. -
Leaving dropdown menus via the keyboard navigation now closes them. - When the
sidebar is open and uses 100% of the screen width (mobile view), it is no longer
possible to focus elements in the background. - Focus issues with the right
sidebar have been fixed.
https://github.com/owncloud/web/issues/10725
https://github.com/owncloud/web/issues/10729
https://github.com/owncloud/web/issues/10724
https://github.com/owncloud/web/issues/10733
https://github.com/owncloud/web/issues/10618
https://github.com/owncloud/web/pull/11574
https://github.com/owncloud/web/pull/11591
https://github.com/owncloud/web/pull/11600
https://github.com/owncloud/web/pull/11609
https://github.com/owncloud/web/pull/11659
* Enhancement - Show min oCIS version in app details (app store): [#11580](https://github.com/owncloud/web/pull/11580)
We're now showing the minimum required oCIS version of apps in the app releases
of the app store.
https://github.com/owncloud/web/pull/11580
* Enhancement - Add a "Save As" function to the app top bar: [#11586](https://github.com/owncloud/web/pull/11586)
We've added a "Save As" function to the app top bar. This allows the user to
save a file with a new name or in a different location with our regular editors.
https://github.com/owncloud/web/issues/11525
https://github.com/owncloud/web/pull/11586
* Enhancement - Move permanent link indicator: [#11606](https://github.com/owncloud/web/pull/11606)
The permanent link indicator has been moved to the top right of the sharing
sidebar panel. This is ensures that it's always visible, no matter if there are
shares present or not.
https://github.com/owncloud/web/issues/11602
https://github.com/owncloud/web/pull/11606
* Enhancement - Redesign sidebar link section in sharing panel: [#11606](https://github.com/owncloud/web/pull/11606)
The design of the sidebar link section in the sharing panel has been aligned
with the people sharing section.
https://github.com/owncloud/web/issues/11602
https://github.com/owncloud/web/pull/11606
* Enhancement - Soothe right sidebar panel transitions: [#11614](https://github.com/owncloud/web/pull/11614)
The panel transitions of the right sidebar are a bit smoother now.
https://github.com/owncloud/web/pull/11614
* Enhancement - Preview loading performance: [#11631](https://github.com/owncloud/web/pull/11631)
We've improved the performance of loading previews, especially for spaces.
https://github.com/owncloud/ocis/issues/10054
https://github.com/owncloud/web/pull/11631
* Enhancement - Add cancel button to unsaved changes dialog: [#11644](https://github.com/owncloud/web/pull/11644)
We've added a cancel button to the unsaved changes dialog to allow users to
cancel the action.
https://github.com/owncloud/web/issues/11636
https://github.com/owncloud/web/pull/11644
* Enhancement - File type icon for .ggs files: [#11646](https://github.com/owncloud/web/pull/11646)
We've added a new file type icon for .ggs files.
https://github.com/owncloud/web/pull/11646
* Enhancement - Remove link type "Uploader": [#11661](https://github.com/owncloud/web/pull/11661)
The link type "Uploader" has been removed because it's almost the same as
"Editor". Existing links of this type still work though.
https://github.com/owncloud/web/issues/11381
https://github.com/owncloud/web/pull/11661
Changelog for ownCloud Web [8.0.6] (2024-09-23)
=======================================
The following sections list the changes in ownCloud web 8.0.6 relevant to
ownCloud admins and users.
[8.0.6]: https://github.com/owncloud/web/compare/v10.2.0...v8.0.6
Summary
-------
* Bugfix - Force logout after token expiry retry: [#11620](https://github.com/owncloud/ocis/issues/11620)
Details
-------
* Bugfix - Force logout after token expiry retry: [#11620](https://github.com/owncloud/ocis/issues/11620)
When the access token has expired and the retry to re-login the user didn't work
for some reason, we now force a logout.
https://github.com/owncloud/ocis/issues/11620
Changelog for ownCloud Web [10.2.0] (2024-09-05)
=======================================
The following sections list the changes in ownCloud web 10.2.0 relevant to
ownCloud admins and users.
[10.2.0]: https://github.com/owncloud/web/compare/v8.0.5...v10.2.0
Summary
-------
* Bugfix - OCM invite generation body format: [#11512](https://github.com/owncloud/web/pull/11512)
* Bugfix - Logout on access token renewal failure: [#11526](https://github.com/owncloud/web/pull/11526)
* Enhancement - Replace custom datepicker with native html element: [#11377](https://github.com/owncloud/web/pull/11377)
* Enhancement - Display disabled role permissions: [#11387](https://github.com/owncloud/web/pull/11387)
* Enhancement - Mark external shares: [#11394](https://github.com/owncloud/web/pull/11394)
* Enhancement - Hide versions panel with insufficient permissions: [#11484](https://github.com/owncloud/web/pull/11484)
* Enhancement - Support a tags in actions: [#11502](https://github.com/owncloud/web/pull/11502)
* Enhancement - Improve tiles view performance: [#11508](https://github.com/owncloud/web/pull/11508)
* Enhancement - Add default actions extension point: [#11515](https://github.com/owncloud/web/pull/11515)
* Enhancement - Add select all checkbox to tiles view: [#11518](https://github.com/owncloud/web/pull/11518)
Details
-------
* Bugfix - OCM invite generation body format: [#11512](https://github.com/owncloud/web/pull/11512)
We've fixed the issue where the body of the OCM invite generation was not
formatted correctly.
https://github.com/owncloud/ocis/issues/9583
https://github.com/owncloud/web/pull/11512
* Bugfix - Logout on access token renewal failure: [#11526](https://github.com/owncloud/web/pull/11526)
We've fixed the issue with the user being able to navigate the Web UI after a
failed token renewal. Instead, the user is now properly being logged out.
https://github.com/owncloud/web/issues/11478
https://github.com/owncloud/web/pull/11526
* Enhancement - Replace custom datepicker with native html element: [#11377](https://github.com/owncloud/web/pull/11377)
We've replaced the custom datepicker with a native html date input element. This
change will improve the user experience and accessibility of the datepicker.
https://github.com/owncloud/web/issues/11374
https://github.com/owncloud/web/pull/11377
https://github.com/owncloud/web/pull/11388
* Enhancement - Display disabled role permissions: [#11387](https://github.com/owncloud/web/pull/11387)
We've added a new feature to the sharing sidebar panel which allows you to see
the permissions of a role that has been disabled.
https://github.com/owncloud/web/pull/11387
* Enhancement - Mark external shares: [#11394](https://github.com/owncloud/web/pull/11394)
External shares are now being marked in the right sidebar so they can be
distinguished from regular shares.
https://github.com/owncloud/web/issues/11361
https://github.com/owncloud/web/pull/11394
* Enhancement - Hide versions panel with insufficient permissions: [#11484](https://github.com/owncloud/web/pull/11484)
Users that have insufficient permissions to view file versions don't see the
versions sidebar panel anymore. This currently affects regular share receivers,
space viewers and space editors without the permission to view versions.
https://github.com/owncloud/web/issues/11359
https://github.com/owncloud/web/pull/11484
* Enhancement - Support a tags in actions: [#11502](https://github.com/owncloud/web/pull/11502)
We've added support for `a` tags in actions. This allows developers to create
action extensions for e.g. opening file-specific URLs from the context menu.
https://github.com/owncloud/web/pull/11502
* Enhancement - Improve tiles view performance: [#11508](https://github.com/owncloud/web/pull/11508)
We've made some changes to the tiles view to improve performance. So that users
can see their files and folders faster, when working with a lot of files.
https://github.com/owncloud/web/issues/11480
https://github.com/owncloud/web/pull/11508
* Enhancement - Add default actions extension point: [#11515](https://github.com/owncloud/web/pull/11515)
We've added a new extension point `global.files.default-action` for allowing
action extensions to register themselves for the left click default action.
https://github.com/owncloud/web/pull/11515
* Enhancement - Add select all checkbox to tiles view: [#11518](https://github.com/owncloud/web/pull/11518)
We have added a select all checkbox to the tiles view to allow users to select
all resources at once.
https://github.com/owncloud/web/pull/11518
https://github.com/owncloud/web/pull/11521
Changelog for ownCloud Web [8.0.5] (2024-09-02)
=======================================
The following sections list the changes in ownCloud web 8.0.5 relevant to
ownCloud admins and users.
[8.0.5]: https://github.com/owncloud/web/compare/v10.1.0...v8.0.5
Summary
-------
* Bugfix - Show more toggle in space members view not reactive: [#11263](https://github.com/owncloud/web/pull/11263)
* Bugfix - Space show links from other spaces: [#11263](https://github.com/owncloud/web/pull/11263)
* Bugfix - Uploading nested folders: [#11299](https://github.com/owncloud/web/issues/11299)
* Bugfix - Missing space members for group memberships: [#11384](https://github.com/owncloud/web/issues/11384)
Details
-------
* Bugfix - Show more toggle in space members view not reactive: [#11263](https://github.com/owncloud/web/pull/11263)
We've fixed a bug where the toggle to show more members in the space members
view was not reactive. Clicking the toggle in the sidebar will now correctly
display “Show More” or “Show Less” as intended.
https://github.com/owncloud/web/issues/11261
https://github.com/owncloud/web/pull/11263
* Bugfix - Space show links from other spaces: [#11263](https://github.com/owncloud/web/pull/11263)
We've fixed a bug where in a special constellation, links from other spaces were
shown in the space. This is now fixed.
https://github.com/owncloud/web/issues/11261
https://github.com/owncloud/web/pull/11263
* Bugfix - Uploading nested folders: [#11299](https://github.com/owncloud/web/issues/11299)
We've fixed a bug where the upload overlay breaks when uploading a folder that
contains exactly one folder (which then contains some files).
https://github.com/owncloud/web/issues/11299
https://github.com/owncloud/web/pull/11302
* Bugfix - Missing space members for group memberships: [#11384](https://github.com/owncloud/web/issues/11384)
We've fixed a bug where group members of a space could not see other space
members on regular resources within the space.
https://github.com/owncloud/web/issues/11384
https://github.com/owncloud/web/pull/11395
Changelog for ownCloud Web [10.1.0] (2024-08-16)
=======================================
The following sections list the changes in ownCloud web 10.1.0 relevant to
ownCloud admins and users.
[10.1.0]: https://github.com/owncloud/web/compare/v10.0.0...v10.1.0
Summary
-------
* Bugfix - Toggling checkboxes via keyboard: [#11312](https://github.com/owncloud/web/pull/11312)
* Bugfix - Prevent horizontal table scroll: [#11313](https://github.com/owncloud/web/pull/11313)
* Bugfix - Keyboard actions for disabled resources: [#11342](https://github.com/owncloud/web/pull/11342)
* Bugfix - OCM page reload: [#11348](https://github.com/owncloud/web/pull/11348)
* Bugfix - Closing an app opened via in-app open feature stays open: [#11353](https://github.com/owncloud/web/pull/11353)
* Enhancement - Add quota information to account page: [#11287](https://github.com/owncloud/web/pull/11287)
* Enhancement - App Store app: [#11302](https://github.com/owncloud/web/pull/11302)
* Enhancement - Redesign share link modal: [#11310](https://github.com/owncloud/web/pull/11310)
* Enhancement - Accessibility: [#11315](https://github.com/owncloud/web/pull/11315)
* Enhancement - Files as links: [#11329](https://github.com/owncloud/web/pull/11329)
* Enhancement - Unstick top bar: [#11344](https://github.com/owncloud/web/pull/11344)
Details
-------
* Bugfix - Toggling checkboxes via keyboard: [#11312](https://github.com/owncloud/web/pull/11312)
Toggling checkboxes via the keyboard enter key has been fixed and does now work.
https://github.com/owncloud/web/issues/10730
https://github.com/owncloud/web/pull/11312
https://github.com/owncloud/web/pull/11315
* Bugfix - Prevent horizontal table scroll: [#11313](https://github.com/owncloud/web/pull/11313)
We've prevented resource tables from being horizontally scrollable for a11y
reasons. Instead, information that is available elsewhere will get hidden on
smaller displays.
https://github.com/owncloud/web/issues/10728
https://github.com/owncloud/web/pull/11313
* Bugfix - Keyboard actions for disabled resources: [#11342](https://github.com/owncloud/web/pull/11342)
We've fixed an issue where certain actions such as rename or select were still
possible for disabled resources when navigating via keyboard.
https://github.com/owncloud/web/issues/11335
https://github.com/owncloud/web/pull/11342
* Bugfix - OCM page reload: [#11348](https://github.com/owncloud/web/pull/11348)
We've fixed an issue where reloading the Open Cloud Mesh page would show an
error.
https://github.com/owncloud/web/issues/11153
https://github.com/owncloud/web/pull/11348
* Bugfix - Closing an app opened via in-app open feature stays open: [#11353](https://github.com/owncloud/web/pull/11353)
We've fixed a bug, where closing an opened file from the app itself via the
'Open' item in the three-dot-menu would not close the app.
https://github.com/owncloud/web/pull/11353
https://github.com/owncloud/web/pull/11354
* Enhancement - Add quota information to account page: [#11287](https://github.com/owncloud/web/pull/11287)
We've added a new section to the account page that displays the users current
quota usage.
https://github.com/owncloud/web/pull/11287
* Enhancement - App Store app: [#11302](https://github.com/owncloud/web/pull/11302)
We've added a new App Store app to the platform. This app allows you to explore
available apps and download them from our `awesome-ocis` github repository.
In order to use this app, you currently need to adjust your `csp.yaml` file
(only if you have it customized). Please add the URL
`'https://raw.githubusercontent.com/owncloud/awesome-ocis/'` to the sections
`connect-src` and `img-src`.
https://github.com/owncloud/web/pull/11302
* Enhancement - Redesign share link modal: [#11310](https://github.com/owncloud/web/pull/11310)
We've redesigned the share link modal to make it easier to share. The new modal
is more user-friendly and provides a better experience for sharing.
https://github.com/owncloud/web/issues/11204
https://github.com/owncloud/web/pull/11310
https://github.com/owncloud/web/pull/11324
* Enhancement - Accessibility: [#11315](https://github.com/owncloud/web/pull/11315)
Several accessibility improvements have been made, most notably in regards to
color contrasts and outlines when navigating via keyboard.
https://github.com/owncloud/web/issues/10730
https://github.com/owncloud/web/issues/10726
https://github.com/owncloud/web/issues/10735
https://github.com/owncloud/web/pull/11315
https://github.com/owncloud/web/pull/11331
https://github.com/owncloud/web/pull/11320
* Enhancement - Files as links: [#11329](https://github.com/owncloud/web/pull/11329)
We have converted the former buttons in the files list to links, this change
makes it easier to open files in a new tab or window. The same applies to the
context menu, where we also add a hint to the shortcut for opening the file in a
new tab.´
https://github.com/owncloud/web/issues/11222
https://github.com/owncloud/web/pull/11329
* Enhancement - Unstick top bar: [#11344](https://github.com/owncloud/web/pull/11344)
The top bar above tables as well as the table headers now lose their
"stickiness" with limited vertical screen space. This way, we prevent those
elements from overflowing content below.
https://github.com/owncloud/web/issues/10728
https://github.com/owncloud/web/pull/11344
Changelog for ownCloud Web [10.0.0] (2024-07-29)
=======================================
The following sections list the changes in ownCloud web 10.0.0 relevant to
ownCloud admins and users.
[10.0.0]: https://github.com/owncloud/web/compare/v9.1.0...v10.0.0
Summary
-------
* Bugfix - Downloading files via the app top bar doesn't reflect the current state: [#11174](https://github.com/owncloud/web/pull/11174)
* Bugfix - Images stretched in preview app in Safari browser: [#11186](https://github.com/owncloud/web/pull/11186)
* Bugfix - UI breaks when tags are numbers: [#11194](https://github.com/owncloud/web/pull/11194)
* Bugfix - Open dropdown menu does not deselect other items in admin settings app: [#11253](https://github.com/owncloud/web/pull/11253)
* Change - Removal of Deprecated Config Options: [#11251](https://github.com/owncloud/web/pull/11251)
* Change - Remove draw-io as default app: [#11252](https://github.com/owncloud/web/pull/11252)
* Change - Remove set as description space action: [#11277](https://github.com/owncloud/web/pull/11277)
* Enhancement - Add share role icon to shared with me table: [#11166](https://github.com/owncloud/web/pull/11166)
* Enhancement - Application menu extension point: [#11258](https://github.com/owncloud/web/pull/11258)
* Enhancement - Move quota info to general info in user menu: [#11279](https://github.com/owncloud/web/pull/11279)
* Enhancement - Add edit description button to space info: [#11280](https://github.com/owncloud/web/pull/11280)
Details
-------
* Bugfix - Downloading files via the app top bar doesn't reflect the current state: [#11174](https://github.com/owncloud/web/pull/11174)
We've fixed a bug where downloading a file via the app top bar does reflect the
last saved state, but not the the current state of the respective file. This
happened when the user opened a text file in web and entered new text without
saving it.
https://github.com/owncloud/web/issues/11072
https://github.com/owncloud/web/pull/11174
* Bugfix - Images stretched in preview app in Safari browser: [#11186](https://github.com/owncloud/web/pull/11186)
We've fixed a bug, where images have been stretched in the preview app while
using the Safari browser.
https://github.com/owncloud/web/issues/10511
https://github.com/owncloud/web/pull/11186
* Bugfix - UI breaks when tags are numbers: [#11194](https://github.com/owncloud/web/pull/11194)
We fixed a bug where the UI breaks when tags only consists of numbers
https://github.com/owncloud/web/issues/11193
https://github.com/owncloud/web/pull/11194
* Bugfix - Open dropdown menu does not deselect other items in admin settings app: [#11253](https://github.com/owncloud/web/pull/11253)
We've fixed a bug where, other like in the other tables, the dropdown menu in
the admin settings app did not deselect other items when opening a new dropdown
menu.
https://github.com/owncloud/web/issues/11245
https://github.com/owncloud/web/pull/11253
* Change - Removal of Deprecated Config Options: [#11251](https://github.com/owncloud/web/pull/11251)
BREAKING CHANGE for developers and administrators: The following configuration
options have been removed to simplify the configuration process for
administrators and improve the overall manageability of the project, as they
were either not used anymore or only relevant for CI testing:
- `options.ocm.openRemotely` - `options.openLinksWithDefaultApp` -
`options.upload.xhr.timeout` - `options.routing.idBased` -
`options.routing.fullShareOwnerPaths` - `options.hoverableQuickActions` -
`options.sidebar.exif.showLocation` - `options.sidebar.shares.showAllOnLoad` -
`options.sharingRecipientsPerPage` - `options.displayThumbnails` -
`options.disablePreviews` - `options.previewFileMimeType` -
`options.topCenterNotifications` - `options.displayResourcesLazy`
https://github.com/owncloud/web/issues/11212
https://github.com/owncloud/web/issues/11219
https://github.com/owncloud/web/issues/11216
https://github.com/owncloud/web/issues/11218
https://github.com/owncloud/web/issues/11217
https://github.com/owncloud/web/issues/11211
https://github.com/owncloud/web/issues/11213
https://github.com/owncloud/web/issues/11215
https://github.com/owncloud/web/issues/11214
https://github.com/owncloud/web/issues/11207
https://github.com/owncloud/web/pull/11251
https://github.com/owncloud/web/pull/11249
https://github.com/owncloud/web/pull/11240
https://github.com/owncloud/web/pull/11238
https://github.com/owncloud/web/pull/11229
https://github.com/owncloud/web/pull/11228
https://github.com/owncloud/web/pull/11226
https://github.com/owncloud/web/pull/11224
https://github.com/owncloud/web/pull/11223
https://github.com/owncloud/web/pull/11209
* Change - Remove draw-io as default app: [#11252](https://github.com/owncloud/web/pull/11252)
BREAKING CHANGE for administrators: draw-io has been removed as default web app.
The app is now available via the [web-extensions
repository](https://github.com/owncloud/web-extensions).
Please refer to [the web-app docs](https://owncloud.dev/services/web/#web-apps)
to see how to load an external web app.
https://github.com/owncloud/web/issues/11248
https://github.com/owncloud/web/pull/11252
* Change - Remove set as description space action: [#11277](https://github.com/owncloud/web/pull/11277)
BREAKING CHANGE: In order to eliminate complexity and reduce confusion, we
removed the "Set as description" space action. This action was not used
frequently and was not necessary for the user experience. The space description
can still be simply updated via the "Edit description" action.
https://github.com/owncloud/web/issues/11276
https://github.com/owncloud/web/pull/11277
* Enhancement - Add share role icon to shared with me table: [#11166](https://github.com/owncloud/web/pull/11166)
We've added the respective share role icon with a tooltip that contains the
share role name to each share column, so the user knows which permission they
have in a share.
https://github.com/owncloud/web/issues/11101
https://github.com/owncloud/web/pull/11166
* Enhancement - Application menu extension point: [#11258](https://github.com/owncloud/web/pull/11258)
We've added an extension point for adding items in the top left application
switcher menu.
`AppMenuItemExtension`'s can either link to an internal page (via `path`), an
external page (via `url`) or have a button handler (via `handler`). Please refer
to the docs for more information.
DEPRECATION NOTICE: This deprecates the `applicationMenu` property of the
appinfo object.
https://github.com/owncloud/web/pull/11258
* Enhancement - Move quota info to general info in user menu: [#11279](https://github.com/owncloud/web/pull/11279)
We've moved the quota information out of its own section in the user menu and
into the general information section. This change makes it easier to find and
understand the quota information.
https://github.com/owncloud/web/pull/11279
* Enhancement - Add edit description button to space info: [#11280](https://github.com/owncloud/web/pull/11280)
We've added an edit description button to the space info section. This button
allows you to edit the description of a space directly from the space info
section.
https://github.com/owncloud/web/pull/11280
Changelog for ownCloud Web [9.1.0] (2024-07-05)
=======================================
The following sections list the changes in ownCloud web 9.1.0 relevant to
ownCloud admins and users.
[9.1.0]: https://github.com/owncloud/web/compare/v8.0.4...v9.1.0
Summary
-------
* Bugfix - Resetting user after logout: [#11058](https://github.com/owncloud/web/pull/11058)
* Bugfix - Admin settings UI update after save: [#11059](https://github.com/owncloud/web/pull/11059)
* Bugfix - Editor save after token renewal: [#11068](https://github.com/owncloud/web/pull/11068)
* Bugfix - Trash bin breaking on navigation: [#11132](https://github.com/owncloud/web/pull/11132)
* Bugfix - Tooltips in trashbin covered: [#11135](https://github.com/owncloud/web/issues/11135)
* Bugfix - Duplicated elements on public link page: [#11137](https://github.com/owncloud/web/pull/11137)
* Bugfix - Secure view default action: [#11139](https://github.com/owncloud/web/pull/11139)
* Enhancement - Accessibility improvements: [#5387](https://github.com/owncloud/web/issues/5387)
* Enhancement - Activities sidebar app panel: [#10996](https://github.com/owncloud/web/pull/10996)
* Enhancement - Consistent initial loading spinner: [#11054](https://github.com/owncloud/web/pull/11054)
* Enhancement - Add action drop down to app top bar: [#11057](https://github.com/owncloud/web/pull/11057)
* Enhancement - Decrease text editor loading times: [#11060](https://github.com/owncloud/web/pull/11060)
* Enhancement - Reduce network load on token renewal: [#11077](https://github.com/owncloud/web/pull/11077)
* Enhancement - Open file directly from app: [#11085](https://github.com/owncloud/web/pull/11085)
* Enhancement - Enable default autosave in editors: [#11093](https://github.com/owncloud/web/pull/11093)
Details
-------
* Bugfix - Resetting user after logout: [#11058](https://github.com/owncloud/web/pull/11058)
We've fixed a bug where the current user would not be resetted after logout.
https://github.com/owncloud/web/issues/11055
https://github.com/owncloud/web/pull/11058
* Bugfix - Admin settings UI update after save: [#11059](https://github.com/owncloud/web/pull/11059)
We've fixed a bug where the UI would not display changes made in the admin
settings until re-loading the entire page.
https://github.com/owncloud/web/issues/11033
https://github.com/owncloud/web/pull/11059
* Bugfix - Editor save after token renewal: [#11068](https://github.com/owncloud/web/pull/11068)
We've fixed a bug where saving changes in an editor would not work after the
access token has been renewed.
https://github.com/owncloud/web/issues/11062
https://github.com/owncloud/web/pull/11068
* Bugfix - Trash bin breaking on navigation: [#11132](https://github.com/owncloud/web/pull/11132)
We've fixed a bug where the trash bin would break when navigating into the
parent folder of a resource.