-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathNEWS
6644 lines (5783 loc) · 192 KB
/
NEWS
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
48.alpha - Jan 09, 2025
=======================
Changes since 47.0
- Includ failed ISO download url in error message
- Fix fullscreen button icon not updating when toggled
- Fix focus-on-click focus steal in fullscreen button
- Avoid GdkPixbuf critical when failing to create thumbnails
- Added/updated/fixed translations
47.0 - Sep 17, 2024
===================
Changes since 47.beta
- Add HW and brand colors info to metainfo file
- Rename metainfo file to o.g.B.metainfo.xml.in
- Don't consider distro derivatives when resolving logos
- Added/updated/fixed translations
47.beta - Aug 14, 2024
======================
Changes since 46.1
- Fix appdata validation for "Devel" build profile
- Check when a libvirt-broker reference is invalid
- Improve some print format specifiers
- Add "Trisquel" logo
- Various CI fixes
- Added/updated/fixed translations
46.1 - Apr 22, 2024
===================
Changes since 46.0
- Fix build with clang
- Added/updated/fixed translations
46.0 - Mar 18, 2024
===================
Changes since 45.0
- Disable "secure-boot" for EFI virtual machines
- Use libportal to call Background Portal
- Fallback to default resources on error cases
- Fix crash when processing a non bootable ISO image
- Fix permissions when copying template files
- Added/updated/fixed translations
45.0 - Sep 18, 2023
===================
Changes since 45.rc
- Fix crash in the flatpak detection code causing a crash when closing
- Added/updated/fixed translations
45.rc - Sep 04, 2023
====================
Changes since 44.2
- Mark Shell search-provider to not autostart
- Report OS download errors to the user
- Fix current-memory not being updated on RAM preference changes
- Fix failure to create VMs when G_MESSAGES_DEBUG=all was set
- Appdata updates and validation fixes
- Added/updated/fixed translations
44.beta - Feb 14, 2023
======================
Changes since 43.1
- Modernize the VM creation UI
- Add new widget to rename VMs
- Fix import of raw images
- Create new storage volumes with compat=1.1
- Update the documentation
43.1 - Oct 25, 2022
===================
Changes since 43.0
- Sync VM's clock to the host's configured timezone
- Store all express-install credentials in the keyring
- Added/updated/fixed translations
43.0 - 16 Sept, 2022
====================
Changes since 43.rc
- Added/updated/fixed translations
43.rc - 05 Sept, 2022
=====================
Changes since 43.beta
- Ensure disk creation for cloned virtual machines
- Filter search results in the model (GListModel)
- Use meson's GNOME module post_install function
- Added/updated/fixed translations
43.beta - 09 Aug, 2022
======================
Changes since 43.alpha
- Fetch recommended download operating systems from remote address
- Revert change that made Boxes honor default system color-scheme
- Added/updated/fixed translations
43.alpha - 01 Jul, 2022
=======================
Changes since 42.2
- Save screenshots into ~/Pictures/Screenshots
- Rename default development branch to "main"
- Rename Devel Flatpak manifest to match Devel app_id
- Use our custom logic to draw thumbnails
- Honor the default system color-scheme
- Update Boxes homepage links to gnomeboxes.org
- Drop build option that made possible building without SPICE
- Disable network test before download starts
- Port to libsoup3
- Added/updated/fixed translations
Dependencies changed:
- libosinfo >= 1.10.0
- libsoup3 >= 3.0.0
- webkit2gtk-4.1
- gtk-vnc (removed)
- gtk-frdp (removed)
42.2 - 01 Jul, 2022
===================
Changes since 42.1
- Ensure spice graphics is specified in vm creation
- Recommend openSUSE 15.4
42.1 - 30 May, 2022
===================
Changes since 42.0.1
- Use host-model cpu mode when using QEMU emulation
- Exclude unreleased OSes from being promoted
- Fix issue with renaming box
- Don't require product-key for express installs
- Added/updated/fixed translations:
- Serbian
- Catalan
- Bulgarian
- Slovak
- Basque
- Friulian
- Brazilian Portuguese
- Russian
- British English
- German
- French
- Ukrainian
- Polish
- Czech
42.0.1 - 18 Mar, 2022
=====================
Changes since 42.0
- Fix error in appdata
42.0 - 18 Mar, 2022
===================
Changes since 42.rc
- Fixed a typo in the documentation
- Added/updated/fixed translations:
- Lithuanian
- Catalan
- Ukrainian
- Swedish
- Danish
- Czech
- Finnish
- Hungarian
- Indonesian
- Kazakh
- Polish
- Slovak
- Serbian
- Italian
42.rc - 07 Mar, 2022
====================
Changes since 42.beta
- Updated app screenshots
- Use IEC (base 1024) units for memory widgets
- Handle manual memory input on memory widgets
- Make domain device updates more reliable
- Recommend latest OSes for download when available in osinfo-db
- Added/updated/fixed translations:
- French
- Indonesian
- Swedish
- Czech
- Korean
- Danish
- Spanish
42.beta - 24 Feb, 2022
======================
Changes since 42.alpha
- Show machine.status also in IconView (while installing, importing, cloning...)
- Stop snapshotiong VMs after creation
- Redesigned starting page of the VM creation assistant
- Updated documentation for Preferences dialog and VM creation assistant
- Add ctrl-alt-f9 shortcut to forward to the guest
- Replace in-app notifications with Toasts
- build: remove positional i18n.merge_file arguments
- Added/updated/fixed translations:
- Basque
- Brazilian Portuguese
- Catalan
- Chinese (China)
- Croatian
- Czech
- Danish
- Galician
- Hebrew
- Indonesian
- Italian
- Japanese
- Lithuanian
- Persian
- Portuguese
- Russian
- Slovenian
- Spanish
- Turkish
- Ukrainian
42.alpha - 11 Jan, 22022
========================
Changes since 41.3
- Update to the list of downloadable operating systems
- Fix an issue causing VMs to have no sound
- Fix an issue preventing users from configuring 3D acceleration
- Fix crash with absent storage volumes
- Go to display-view after importing a box
- Stop bundling libhandy as a subproject
- New Preferences dialog
- Port box creation Assistant widgets to libhandy
- Use content-type to detect media files
- Remove selection-mode
- New box thumbnail drawing logic (with CSS)
- Added/updated/fixed translations:
- Persian
- Portuguese
- Russian
- Brazilian Portuguese
- Ukrainian
- Indonesian
- Spanish
- Lithuanian
- Chinese (China)
- Basque
- Friulian
- Hebrew
- Catalan
- Swedish
- Croatian
- Latvian
- Vietnamese
- Slovak
- Serbian
41.0 - 17 Sep, 2021
===================
Changes since 41.rc
- Added/updated/fixed translations:
- Croatian
- Danish
- Dutch
- Hungarian
- Polish
- Russian
- Spanish
- Swedish
All contributors to this release:
Alan Mortensen <[email protected]>
Anders Jonsson <[email protected]>
Balázs Úr <[email protected]>
Felipe Borges <[email protected]>
Goran Vidović <[email protected]>
Konstantin Nezhbert <[email protected]>
Nathan Follens <[email protected]>
Piotr Drąg <[email protected]>
Rodrigo Lledó <[email protected]>
41.rc - 03 Sep, 2021
======================
Changes since 41.alpha
- Make Boxes use Vnc when SPICE is not available
- transfer-popover: Encapsulate widget setup internally
- Added/updated/fixed translations:
- Basque
- Catalan
- Chinese (China)
- Czech
- Finnish
- French
- Friulian
- Galician
- German
- Indonesian
- Kazakh
- Korean
- Lithuanian
- Occitan
- Persian
- Slovenian
- Swedish
- Turkish
All contributors to this release:
Asier Sarasua Garmendia <[email protected]>
Aurimas Černius <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Burhan KELEŞ <[email protected]>
Claude Paroz <[email protected]>
Danial Behzadi <[email protected]>
Fabio Tomat <[email protected]>
Felipe Borges <[email protected]>
Fran Dieguez <[email protected]>
Jiri Grönroos <[email protected]>
Jordi Mas <[email protected]>
Kukuh Syafaat <[email protected]>
Luna Jernberg <[email protected]>
Marek Černocký <[email protected]>
Matej Urbančič <[email protected]>
Philipp Kiemle <[email protected]>
Quentin PAGÈS <[email protected]>
Seong-ho Cho <[email protected]>
Tao Liu <[email protected]>
41.alpha - 09 Jul, 2021
=======================
Changes since 40.3
- Provide source for svg icons
- Fix run-in-bg VMs for non-Flatpak builds
- Replace uses of "open-menu-symbolic" with view-more-symbolic in docs
- Update recommended downloads to latest releases
- Update the empty-state title and description text
- Remove remaining UI references to remote capabilities
- Override "--help" command line argument
- Introduce script to auto-generate release notes
- Display downloadable entries' URL in tooltip
- Display image filepath in Discovered Sources tooltip
- Add AlmaLinux logo
- Add audio playback support for VNC connections
- Fix wrong margin to scrollable area in troubleshooting logs dialog
- Added/updated/fixed translations:
- Brazilian Portuguese
- Chinese (China)
- Chinese (Taiwan)
- Dutch
- French
- Friulian
- German
- Greek
- Hebrew
- Indonesian
- Italian
- Nepali
- Norwegian Bokmål
- Occitan
- Persian
- Polish
- Portuguese
- Romanian
- Russian
- Spanish
- Ukrainian
All contributors to this release:
Alexey Rubtsov <[email protected]>
Andika Triwidada <[email protected]>
Andre Klapper <[email protected]>
Boyuan Yang <[email protected]>
Chao-Hsiung Liao <[email protected]>
Danial Behzadi <[email protected]>
Daniel Mustieles <[email protected]>
Efstathios Iosifidis <[email protected]>
Fabio Tomat <[email protected]>
Federico Bruni <[email protected]>
Felipe Borges <[email protected]>
Florentina Mușat <[email protected]>
Guillaume Bernard <[email protected]>
Hugo Carvalho <[email protected]>
Jakub Steiner <[email protected]>
Kjartan Maraas <[email protected]>
Nathan Follens <[email protected]>
Olivier Lemasle <[email protected]>
Pawan Chitrakar <[email protected]>
Piotr Drąg <[email protected]>
Quentin PAGÈS <[email protected]>
Rafael Fontenelle <[email protected]>
Tim Sabsch <[email protected]>
Yaron Shahrabani <[email protected]>
Yuri Chornoivan <[email protected]>
40.3 - Jul 09, 2021
===================
Changes since 40.2
- fix run-in-background functionaly for non-flatpak builds
All contributors to this release:
Felipe Borges <[email protected]>
40.2 - Jun 23, 2021
===================
Changes since 40.1
- recommended-downloads: Update to latest releases
- unattended-installer: Avoid accessing non-existant gvariant child
- unattended-installer: Fix access to possibly null value
- Added/updated/fixed translations:
- Spanish
- Friulian
- Indonesian
- Norwegian Bokmål
All contributors to this release:
Andika Triwidada <[email protected]>
Daniel Mustieles <[email protected]>
Fabio Tomat <[email protected]>
Felipe Borges <[email protected]>
Kjartan Maraas <[email protected]>
40.1 - May 03, 2021
===================
Changes since 40.0
- Added/updated/fixed translations:
- Chinese (China)
- Chinese (Taiwan)
- Dutch
- French
- Galician
- German
- Hebrew
- Nepali
- Persian
- Polish
- Portuguese
All contributors to this release:
Boyuan Yang <[email protected]>
Chao-Hsiung Liao <[email protected]>
Christian Kirbach <[email protected]>
Danial Behzadi <[email protected]>
Felipe Borges <[email protected]>
Fran Dieguez <[email protected]>
Guillaume Bernard <[email protected]>
Hugo Carvalho <[email protected]>
Nathan Follens <[email protected]>
Pawan Chitrakar <[email protected]>
Piotr Drąg <[email protected]>
Yaron Shahrabani <[email protected]>
40.0 - Mar 19, 2021
===================
Changes since 40.rc
- Added/updated/fixed translations:
- Korean
- Czech
- Brazilian Portuguese
- Ukrainian
- Turkish
- Catalan
- Swedish
- Punjabi
- Italian
- Indonesian
- Portuguese
- Basque
- Romanian
- German
- Spanish
- Finnish
- Hungarian
- Slovenian
- Greek
- French
- Lithuanian
- Serbian
All contributors to this release:
A S Alam <[email protected]>
Anders Jonsson <[email protected]>
Asier Sarasua Garmendia <[email protected]>
Aurimas Černius <[email protected]>
Balázs Úr <[email protected]>
Efstathios Iosifidis <[email protected]>
Enrico Nicoletto <[email protected]>
Daniel Mustieles <[email protected]>
Daniel Șerbănescu <[email protected]>
Felipe Borges <[email protected]>
Guillaume Bernard <[email protected]>
Hugo Carvalho <[email protected]>
Jiri Grönroos <[email protected]>
Jordi Mas <[email protected]>
Kukuh Syafaat <[email protected]>
Марко Костић <[email protected]>
Marek Černocký <[email protected]>
Matej Urbančič <[email protected]>
Milo Casagrande <[email protected]>
Muhammet Kara <[email protected]>
Rafael Fontenelle <[email protected]>
Philipp Kiemle <[email protected]>
Piotr Drąg <[email protected]>
Sabri Ünal <[email protected]>
Seong-ho Cho <[email protected]>
Yuri Chornoivan <[email protected]>
40.rc - Mar 12, 2021
====================
Changes since 40.beta
- Use USB3 for supported operating systems
- Improve human-readable names for OS variants
- Fix config-editor error message formating
- Indicate that we can open other formats other than .iso
- Undefine NVRAM domains also for non-flatpak builds
- References of [GtkChild] no longer take ownership
- Update documentation for editing libvirt domain config
- Use scallable icon in help pages
- Default sound model to ich9 for undetected OSes
- Added/updated/fixed translations:
- Brazilian Portuguese
- Slovenian
- French
- Hungarian
- German
- Finnish
- Lithuanian
- Basque
- Galician
- Croatian
- Catalan
- Turkish
- Indonesian
- Ukrainian
- Swedish
- Kazakh
- Persian
- British English
- Serbian
- Korean
- Portuguese
- Spanish
- Czech
- Romanian
- Friulian
- Dutch
Dependencies changed:
- libvirt-glib >= 4.0.0
All contributors to this release:
Alexandre Franke <[email protected]>
Anders Jonsson <[email protected]>
Asier Sarasua Garmendia <[email protected]>
Aurimas Černius <[email protected]>
Balázs Úr <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Charles Monzat <[email protected]>
Danial Behzadi <[email protected]>
Daniel Mustieles <[email protected]>
Daniel Șerbănescu <[email protected]>
Emin Tufan Çetin <[email protected]>
Fabio Tomat <[email protected]>
Felipe Borges <[email protected]>
Fran Dieguez <[email protected]>
Goran Vidović <[email protected]>
Guillaume Bernard <[email protected]>
Hannie Dumoleyn <[email protected]>
Hugo Carvalho <[email protected]>
Jiri Grönroos <[email protected]>
Jordi Mas <[email protected]>
Kukuh Syafaat <[email protected]>
Marek Černocký <[email protected]>
Matej Urbančič <[email protected]>
Мирослав Николић <[email protected]>
Philipp Kiemle <[email protected]>
Rafael Fontenelle <[email protected]>
Rico Tzschichholz <[email protected]>
Sabri Ünal <[email protected]>
Sebastian Grabowski <[email protected]>
Seong-ho Cho <[email protected]>
Stephan Woidowski <[email protected]>
Tim Sabsch <[email protected]>
Vanadiae <[email protected]>
Yuri Chornoivan <[email protected]>
Zander Brown <[email protected]>
40.beta - Feb 15, 2021
======================
Changes since 40.alpha
- Handle run-in-bg VMs in Flatpak
- Add rounded bottom window corners
- Align welcome tutorial graphic grid
- Use new standardized Empty State page
- Allow users to replace install source of live images
- Allow the override of the dark theme
- Pass discard "unmap" to virtio-blk disks
- Set disk 'startupPolicy' only for 'file' based volumes
- Update the recommended-downloads list with latest releases
- Various doc updates
- Added/updated/fixed translations:
- Turkish
- Ukrainian
- Catalan
- Czech
- Swedish
- Norwegian Bokmål
- Spanish
- Romanian
- Indonesian
- Basque
- Friulian
- German
- Greek
- Portuguese
- Lithuanian
- Galician
- Hungarian
- Persian
- Brazilian Portuguese
- Slovenian
- French
All contributors to this release:
Anders Jonsson <[email protected]>
Andika Triwidada <[email protected]>
Asier Sarasua Garmendia <[email protected]>
Aurimas Černius <[email protected]>
Balázs Meskó <[email protected]>
Christopher Davis <[email protected]>
Danial Behzadi <[email protected]>
Daniel Mustieles <[email protected]>
Daniel Șerbănescu <[email protected]>
Efstathios Iosifidis <[email protected]>
Emin Tufan Çetin <[email protected]>
Fabio Tomat <[email protected]>
Felipe Borges <[email protected]>
Florentina Mușat <[email protected]>
Fran Dieguez <[email protected]>
Guillaume Bernard <[email protected]>
Hugo Carvalho <[email protected]>
Jordi Mas <[email protected]>
Kjartan Maraas <[email protected]>
Kukuh Syafaat <[email protected]>
Marek Černocký <[email protected]>
Matej Urbančič <[email protected]>
Philipp Kiemle <[email protected]>
Rafael Fontenelle <[email protected]>
Yuri Chornoivan <[email protected]>
Zeeshan Ali <[email protected]>
3.38.2 - Nov 20, 2020
=====================
Changes since 3.38.2
- Improve handling of file extensions
- Update recommended downloads to latest distro releases
- Update download URLs for GNOME OS
- Install GNOME OS under the Boxes osinfo custom database
- Added/updated/fixed translations:
- Catalan
- British English
- Danish
- Turkish
All contributors to this release:
Ask Hjorth Larsen <[email protected]>
Bruce Cowan <[email protected]>
Emin Tufan Çetin <[email protected]>
Felipe Borges <[email protected]>
Jordi Mas <[email protected]>
3.38.1 - Oct 2, 2020
====================
Changes since 3.38.0
- Adjust for GNOME OS VM 3.38
- Allow libhandy to be built as a subproject
- Port to Tracker 3
- Added/updated/fixed translations:
- Friulian
- Chinese (Taiwan)
- British English
- Latvian
- Catalan
All contributors to this release:
Carlos Garnacho <[email protected]>
Cheng-Chia Tseng <[email protected]>
Fabio Tomat <[email protected]>
Felipe Borges <[email protected]>
Jordi Mas <[email protected]>
Piotr Drąg <[email protected]>
Rūdolfs Mazurs <[email protected]>
Sam Thursfield <[email protected]>
Zander Brown <[email protected]>
3.38.0 - Sep 11, 2020
=====================
Changes since 3.37.91
- Added/updated/fixed translations:
- Portuguese
- Italian
- Friulian
All contributors to this release:
Fabio Tomat <[email protected]>
Felipe Borges <[email protected]>
Juliano Camargo <[email protected]>
Milo Casagrande <[email protected]>
3.37.91 - Sep 07, 2020
======================
Changes since 3.37.90
- Only show Snapshots tab when it is supported (not supported for EFI guests)
- Add URL for GNOME Nightly OS ISO image
- Various fixes on the image detection for the GNOME Nightly OS images
- Added/updated/fixed translations:
- Greek
- Ukrainian
- Catalan
- Basque
- Brazilian Portuguese
- Indonesian
- Turkish
- French
- Romanian
- Japanese
- Galician
- Kazakh
- Finnish
- Swedish
- Croatian
- Dutch
- Chinese (China)
- Polish
- Lithuanian
- Persian
- Slovenian
- Friulian
- Korean
- Slovak
- German
- Hungarian
- Serbian
- Czech
- Danish
All contributors to this release:
Abderrahim Kitouni <[email protected]>
Alan Mortensen <[email protected]>
Alexandre Franke <[email protected]>
Anders Jonsson <[email protected]>
Asier Sarasua Garmendia <[email protected]>
Aurimas Černius <[email protected]>
Balázs Meskó <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Boyuan Yang <[email protected]>
Charles Monzat <[email protected]>
Danial Behzadi <[email protected]>
Dušan Kazik <[email protected]>
Efstathios Iosifidis <[email protected]>
Emin Tufan Çetin <[email protected]>
Fabio Tomat <[email protected]>
Felipe Borges <[email protected]>
Florentina Mușat <[email protected]>
Fran Dieguez <[email protected]>
Goran Vidović <[email protected]>
Hannie Dumoleyn <[email protected]>
Jiri Grönroos <[email protected]>
Jordan Petridis <[email protected]>
Jordi Mas <[email protected]>
Kukuh Syafaat <[email protected]>
Марко Костић <[email protected]>
Marek Černocký <[email protected]>
Mario Blättermann <[email protected]>
Matej Urbančič <[email protected]>
Piotr Drąg <[email protected]>
Rafael Fontenelle <[email protected]>
Seong-ho Cho <[email protected]>
Valentin David <[email protected]>
Yuri Chornoivan <[email protected]>
Yuki Okushi <[email protected]>
3.37.90 - Aug 07, 2020
======================
Changes since 3.37.1
- Only downscale SPICE displays to avoid blurred upscaled displays
- Fix actions popover placement
- Account for offset of outer widgets while passing events to display
- Prevent displays from overlapping each other
- Let users pick the OS from a list if the OS is unknown
- Special case the GNOME OS images
- Add editor for libvirt VM configuration
- Added/updated/fixed translations:
- Chinese (China)
- Ukrainian
- Slovenian
- Kazakh
- Friulian
- Lithuanian
- Brazilian Portuguese
- Catalan
- Romanian
- Swedish
- Indonesian
- Turkish
Dependencies changed:
- gtksourceview-4 (NEW)
All contributors to this release:
Anders Jonsson <[email protected]>
Aurimas Černius <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Emin Tufan Çetin <[email protected]>
Fabio Tomat <[email protected]>
Felipe Borges <[email protected]>
Florentina Mușat <[email protected]>
Jason Gerecke <[email protected]>
Jordan Petridis <[email protected]>
Jordi Mas <[email protected]>
Kukuh Syafaat <[email protected]>
Matej Urbančič <[email protected]>
Monika Grabovska <[email protected]>
Rafael Fontenelle <[email protected]>
tuhaihe <[email protected]>
Yuri Chornoivan <[email protected]>
王滋涵 Zephyr Wang <[email protected]>
3.37.1 - Jun 08, 2020
=====================
Changes since 3.36.0
- Update Flatpak dependencies
- Force "wget" as user-agent in SoupSession
- Various visual polishings of the Welcome Tutorial dialog
- Allow "spice:///" addresses in remote connection assistant
- Drop the view filter switcher
- Offer newest releases of OSes in recommended downloads list
- Grab focus for password fields in AuthNotification
- Fix various build warnings with newer Vala versions
- Fix DnD destination widget interfering with the drop target
- Include rolling releases as Downloadable OSes
- Fix crash when input-source is not available
- Don't recreate GraphicsSpice object at guest startup
- Apply deferred property changes as user progresses on the Assistant
- Move the download popover button left of the search button
- Account for Medias without URLs in serilize_os_title
- Sanitize our GSource handling of notifications
- Don't crash for outdated osinfo db
- Add Manjaro and NixOS logos
- Various gcc 10 build fixes for Flatpak
- Disable creation of VMs with EFI firmware (in favor of Snapshot support)
- Do the cancellation of VM creation properly
- Added/updated/fixed translations:
- Dutch
- Czech
- Romanian
- German
- Italian
- Indonesian
- Catalan
- Japanese
- Serbian
- Chinese (Taiwan)
- Ukrainian
- Chinese (China)
- Persian
- Spanish
- Turkish
- Slovak
- Esperanto
- Greek
Dependencies changed:
- Added libhandy
All contributors to this release:
Alexander Mikhaylenko <[email protected]>
Andika Triwidada <[email protected]>
Carmen Bianca BAKKER <[email protected]>
Cheng-Chia Tseng <[email protected]>
corecontingency <[email protected]>
Danial Behzadi <[email protected]>
Daniel Mustieles <[email protected]>
Daniel Șerbănescu <[email protected]>
Dušan Kazik <[email protected]>
Dz Chen <[email protected]>
Efstathios Iosifidis <[email protected]>
Emin Tufan Çetin <[email protected]>
Fabiano Fidêncio <[email protected]>
Federico Bruni <[email protected]>
Felipe Borges <[email protected]>
Florentina Mușat <[email protected]>
Isaque Galdino <[email protected]>
Jordi Mas <[email protected]>
Kukuh Syafaat <[email protected]>
Manuel Wassermann <[email protected]>
Marek Černocký <[email protected]>
Марко Костић <[email protected]>
Milo Casagrande <[email protected]>
Nathan Follens <[email protected]>
Piotr Drąg <[email protected]>
Ryuta Fujii <[email protected]>
Sergio Costas <[email protected]>
Tim Sabsch <[email protected]>
Yuri Chornoivan <[email protected]>
3.36.0 - Mar 06, 2020
=====================
Changes since 3.35.91
- Added/updated/fixed translations:
- Ukrainian
- Italian
- Norwegian Bokmål
All contributors to this release: