forked from GNOME/gnome-boxes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
3554 lines (3142 loc) · 111 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
3.19.1 - Oct 27, 2015
=====================
Changes since 3.17.92:
- All changes in 3.18.0 and 3.18.1 releases.
- Add note about spice-vdagent in help pages.
- Add missing accessibility labels on buttons.
- Better accessibility label for 'Exit fullscreen' button.
- Fix the issue of VM not starting if bridge networking is no longer available.
- Added/updated/fixed translations:
- Arabic
- Basque
- Czech
- Danish
- Dutch
- Finnish
- Greek
- Romanian
- Serbian
- Swedish
- Ukrainian
All contributors to this release:
Anders Jonsson <[email protected]>
Daniel Korostil <[email protected]>
Daniel Șerbănescu <[email protected]>
Federico Bruni <[email protected]>
Hannie Dumoleyn <[email protected]>
Inaki Larranaga Murgoitio <[email protected]>
Jiri Grönroos <[email protected]>
Kenneth Nielsen <[email protected]>
Khaled Hosny <[email protected]>
Marek Černocký <[email protected]>
Petr Kovar <[email protected]>
Piotr Drąg <[email protected]>
Tom Tryfonidis <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
Марко Костић <[email protected]>
Милош Поповић <[email protected]>
3.17.92 - Sep 16, 2015
======================
Changes since 3.17.91:
- Don't show launching status in overview.
- Theme:
- Drop most of custom CSS.
- Fix and improve custom CSS.
- Add some comments for translators.
- Added/updated/fixed translations:
- Catalan
- Finnish
- French
- Galician
- German
- Greek
- Indonesian
- Italian
- Kazakh
- Korean
- Latvian
- Lithuanian
- Norwegian bokmål
- Portuguese
- Spanish
- Turkish
All contributors to this release:
Alexandre Franke <[email protected]>
Andika Triwidada <[email protected]>
Aurimas Černius <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Bernd Homuth <[email protected]>
Daniel Mustieles <[email protected]>
Fran Dieguez <[email protected]>
Jiri Grönroos <[email protected]>
Jordi Mas <[email protected]>
Kjartan Maraas <[email protected]>
Lapo Calamandrei <[email protected]>
Luca Ferretti <[email protected]>
Osman Karagöz <[email protected]>
Pedro Albuquerque <[email protected]>
Piotr Drąg <[email protected]>
Rūdolfs Mazurs <[email protected]>
Seong-ho Cho <[email protected]>
Tom Tryfonidis <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
3.17.91 - Sep 01, 2015
======================
Changes since 3.17.90:
- Add a list view.
- Many internal cleanups and fixes.
- Added/updated/fixed translations:
- Catalan
- Chinese (Taiwan)
- French
- Galician
- Greek
- Hebrew
- Hungarian
- Japanese
- Lithuanian
- Polish
- Portuguese
- Slovak
- Spanish
All contributors to this release:
Adrien Plazas <[email protected]>
Alexandre Franke <[email protected]>
Aurimas Černius <[email protected]>
Chao-Hsiung Liao <[email protected]>
Daniel Mustieles <[email protected]>
Dušan Kazik <[email protected]>
Fran Dieguez <[email protected]>
Gábor Kelemen <[email protected]>
Hajime Taira <[email protected]>
Jordi Mas <[email protected]>
Pedro Albuquerque <[email protected]>
Piotr Drąg <[email protected]>
Tom Tryfonidis <[email protected]>
Yosef Or Boczko <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
3.17.90 - Aug 18, 2015
======================
Changes since 3.17.4:
- Add toggle buttons to titlebar to easily filter the main view to show:
- All
- Remote or
- Local boxes
- Show IP/hostname of remote libvirt and oVirt boxes in main icon view.
- Improve accessibility
- Add mnemonics to various UI components.
- Allow switching settings pages through Alt+Left/Right.
- Fix SPICE connection leaks.
- Better handle box launch cancellation.
- Port/fix tests.
- Add tests for Fedora 21 and 22 express installation.
- Added/updated/fixed translations:
- Brazilian Portuguese
- Catalan
- Czech
- Esperanto
- Greek
- Norwegian bokmål
- Portuguese
- Slovak
- Spanish
All contributors to this release:
Adrien Plazas <[email protected]>
Daniel Mustieles <[email protected]>
Dimitris Spingos <[email protected]>
Dušan Kazik <[email protected]>
Felipe Braga <[email protected]>
Jordi Mas <[email protected]>
Kjartan Maraas <[email protected]>
Kristjan SCHMIDT <[email protected]>
Marek Černocký <[email protected]>
Pedro Albuquerque <[email protected]>
Vladimir Benes <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
3.17.4 - July 22, 2015
======================
Changes since 3.17.3:
- Show guest IP on 'General' page for local VMs.
- Show IP/hostname of remote desktop boxes in main icon view.
- Add a switch to allow disabling autosaving for a box in the 'System' page of
properties window.
- Improved
- favourite emblem.
- stopped boxes and fallback, thumbnails.
- Fix the issue of secondary windows ending up in weird unusable state on
closing of properties window over main window.
- More reliable setup of storage pool.
- Fix import of system libvirt VMs that use device nodes as main disk.
- Fix crash on failure to import system libvirt VMs.
- Fix transparency of underflow and overflow indicators.
- Make values of text properties, selectable.
- Only autosave VMs on default connection.
- Smaller markers on resource properties' scales.
- Avoid some criticals warnings on console.
- More vertical spacing between resource scales in customization view.
- More reliable test for raw images.
- Fix alignment of resource properties' values.
- Prefix display properties' labels with "Display " to make the context clear.
- Added/updated/fixed translations:
- Hebrew
- Hungarian
- Portuguese
- Slovak
- Spanish
Dependencies changed:
- Require libvirt-glib >= 0.2.2
All contributors to this release:
Adrien Plazas <[email protected]>
Balázs Úr <[email protected]>
Daniel Mustieles <[email protected]>
Dušan Kazik <[email protected]>
Pedro Albuquerque <[email protected]>
Piotr Drąg <[email protected]>
Yosef Or Boczko <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
3.17.3 - June 24, 2015
======================
Changes since 3.17.2:
- Add CD-ROM device to imported VMs too.
- Make storage pool autostart on boot.
- Fix issue of "ghost" VMs appearing when going back and forth in wizard.
- Automated tests
- Port to new UI.
- Add a test for sending key combos to box.
- Speed up many tests.
- Improve reliability of many tests.
- Added/updated/fixed translations:
- Czech
- German
- Hungarian
- Occitan
- Turkish
Dependencies changed:
- Require libvirt-glib >= 0.2.1
All contributors to this release:
Balázs Úr <[email protected]>
Benjamin Steinwender <[email protected]>
Cédric Valmary <[email protected]>
Marek Černocký <[email protected]>
Necdet Yücel <[email protected]>
Vladimir Benes <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
3.17.2 - May 28, 2015
=====================
Changes since 3.17.1:
- Adapt to new libosinfo API to be able to offer express installation for
Fedora 21 and 22.
- Display system notification on install completion.
- Assign 2G RAM by default to new VMs.
- Stack up notifications vertically, instead of displaying them in the same
place and ending up with all but one being obstructed.
- Asynchronously setup non-default sources at startup to not block UI.
- Look for bridge.conf in /etc/qemu-kvm directory too.
- Selection bar
- Drop "Properties" button
- Move "Delete" button at the end and apply destructive theme to it.
- Adapt to Gtk+ Vala API change.
- Added/updated/fixed translations:
- Indonesian
- Italian
- Simplified Chinese
- Slovak
- Spanish
- Turkish
Dependencies changed:
- Require libosinfo >= 0.2.12
- Require Vala >= 0.28.0.16
All contributors to this release:
Adrien Plazas <[email protected]>
Daniel Mustieles <[email protected]>
Dean Chen <[email protected]>
Dušan Kazik <[email protected]>
Federico Bruni <[email protected]>
Muhammet Kara <[email protected]>
Will Thompson <[email protected]>
Zamani Karmana <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
3.17.1 - Apr 28, 2015
=====================
Changes since 3.16.0:
- Add "Restart" button to properties view, for libvirt machines.
- Add "Force shutdown" option in context and hamburger menu.
- Provide a symbolic icon.
- Dismiss properties window on restart and force shutdown.
- Check files' extensions in a case-insensitive way. This fixes support for
latest Windows ISOs that have filenames in all caps.
- Revert the changes to only add USB input devices if guest was known to support
them. I-e always add USB input devices to new VMs.
- Ensure "Saving…" status goes away on saving operation failure.
- Only autosave running machines.
- Don't show "Delete" option in the hamburger menu. Showing it there when box is
in foreground, looks odd.
- Other minor UI improvements.
- All code changes included in 3.16.1.
- Added/updated/fixed translations:
- Czech
- Greek
All contributors to this release:
Anders Jonsson <[email protected]>
Christophe Fergeau <[email protected]>
Marek Černocký <[email protected]>
Michael Catanzaro <[email protected]>
Tom Tryfonidis <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
3.16.0 - March 23, 2015
=======================
Changes since 3.15.92:
- Ensure wizard page titles are translated.
- Added/updated/fixed translations:
- Basque
- French
- German
- Italian
- Slovenian
- Spanish
All contributors to this release:
Alex Puchades <[email protected]>
Bernd Homuth <[email protected]>
Christian Kirbach <[email protected]>
Christophe Fergeau <[email protected]>
Inaki Larranaga Murgoitio <[email protected]>
Matej Urbančič <[email protected]>
Milo Casagrande <[email protected]>
3.15.92 - March 16, 2015
========================
Changes since 3.15.91:
- Notifications no longer timeout when mouse is hovering above them.
- Show correct favorite option in box actions popup menu.
- Only show resolution overlay on actual resize.
- Added/updated/fixed translations:
- Bosnian
- Brazilian Portuguese
- Chinese (Taiwan)
- Czech
- Danish
- Finnish
- Galician
- Greek
- Hebrew
- Hungarian
- Kazakh
- Korean
- Lithuanian
- Norwegian bokmål
- Polish
- Russian
- Serbian
- Slovak
- Spanish
- Swedish
- Ukrainian
All contributors to this release:
Alex Puchades <[email protected]>
Anders Jonsson <[email protected]>
Ask Hjorth Larsen <[email protected]>
Aurimas Černius <[email protected]>
Balázs Úr <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Cheng-Chia Tseng <[email protected]>
Daniel Korostil <[email protected]>
Daniel Mustieles <[email protected]>
Dušan Kazik <[email protected]>
Efstathios Iosifidis <[email protected]>
Enrico Nicoletto <[email protected]>
Fran Dieguez <[email protected]>
Jiri Grönroos <[email protected]>
Kjartan Maraas <[email protected]>
Marek Černocký <[email protected]>
Paweł Żołnowski <[email protected]>
Samir Ribic <[email protected]>
Seong-ho Cho <[email protected]>
Stas Solovey <[email protected]>
Yosef Or Boczko <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
Мирослав Николић <[email protected]>
3.15.91 - March 03, 2015
========================
Changes since 3.15.90:
- Cache express install toggle, username, password and product key for every
media. No need to keep product keys in a separate file and having to paste
them each time you create a windows box anymore. \o/
- Beautify
- USB devices list
- Snapshots list
- Resource graphs
- Friendlier 'no snapshots' view.
- Fix invisible separators in menus.
- Fix some label alignments.
- Fix main window hanging in weird blank state on launching new windows.
- Don't present useless 'Open in new window' option when box already has its
own window.
- Connect to local libvirt machines' SPICE display through a file descriptor.
While this alone doesn't fix the issue of spice connection being exposed to
other local users yet, all work in Boxes is done for that.
- Mark a few forgotten UI strings for translation.
- Fix a few UI strings.
- Ellipsize URL in the middle to ensure the hostname and filename are visible.
- Fix criticals and warnings on console.
- Added/updated/fixed translations:
- Brazilian Portuguese
- Chinese (Taiwan)
- French
- Galician
- Greek
- Hebrew
- Hungarian
- Kazakh
- Russian
- Slovak
- Slovenian
- Spanish
- Ukrainian
All contributors to this release:
Adrien Plazas <[email protected]>
Alexandre Franke <[email protected]>
Balázs Úr <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Chao-Hsiung Liao <[email protected]>
Cheng-Chia Tseng <[email protected]>
Daniel Korostil <[email protected]>
Daniel Mustieles <[email protected]>
Dimitris Spingos <[email protected]>
Dušan Kazik <[email protected]>
Efstathios Iosifidis <[email protected]>
Fran Dieguez <[email protected]>
Jiro Matsuzawa <[email protected]>
Kalev Lember <[email protected]>
Matej Urbančič <[email protected]>
Rafael Ferreira <[email protected]>
Stas Solovey <[email protected]>
Tom Tryfonidis <[email protected]>
Yosef Or Boczko <[email protected]>
Yuri Myasoedov <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
3.15.90 - Feb 18, 2015
======================
Changes since 3.15.4:
- New cool first experience screen.
- Drop intro page from wizard now that we have a cool first experience screen.
- Show step titles rather than numbers in wizard titlebar.
- Ensure titlebar always has a title.
- Inform users how to release the keyboard grab.
- Don't autosave a VM when view/editing its propties.
- Show normal entries for editable string properties instead of our custom
widget that shows a button to edit.
- Ensure selection-mode exit on launching properties view.
- URL entry in wizard
- Provide completion based on media URLs known to libosinfo.
- More thorough validation of local URLs.
- Don't enable 'Continue' for invalid URLs.
- Better explain expected URLs.
- Fix and improve snapshot naming.
- Add automated UI tests.
- Import of system libvirt VMs
- Fix import failing with a weird 'Empty location' error message.
- Don't needlessly chmod disk (and hence launch annoying policykit dialog).
- Replace network interface so imported VM can be started successfully.
- Set proper accessible name on windows.
- Added/updated/fixed translations:
- Czech
- Hebrew
- Hungarian
- Norwegian bokmål
- Russian
- Slovak
- Spanish
- Many other minor UI fixes/improvements.
All contributors to this release:
Balázs Úr <[email protected]>
Daniel Mustieles <[email protected]>
Dušan Kazik <[email protected]>
Fabiano Fidêncio <[email protected]>
Kjartan Maraas <[email protected]>
Marek Černocký <[email protected]>
Pavel Grunt <[email protected]>
Vladimir Benes <[email protected]>
Vladimir Benes <[email protected]>
Yosef Or Boczko <[email protected]>
Yuri Myasoedov <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
3.15.4 - Jan 20, 2015
=====================
Changes since 3.15.3:
- Fix express installation for Fedora and RHEL.
- Fixes to user documentation.
- Added/updated/fixed translations:
- Basque
- Brazilian Portuguese
- Czech
- Galician
- German
- Greek
- Hebrew
- Hungarian
- Japanese
- Russian
- Spanish
- Ukrainian
All contributors to this release:
Balázs Úr <[email protected]>
Bernd Homuth <[email protected]>
Daniel Korostil <[email protected]>
Daniel Mustieles <[email protected]>
Dimitris Spingos <[email protected]>
Ekaterina Gerasimova <[email protected]>
Fran Dieguez <[email protected]>
Gabor Kelemen <[email protected]>
Inaki Larranaga Murgoitio <[email protected]>
Jiro Matsuzawa <[email protected]>
Marek Černocký <[email protected]>
Rafael Ferreira <[email protected]>
Ricardo Barbosa <[email protected]>
Stas Solovey <[email protected]>
Yosef Or Boczko <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
3.15.3 - Dec 15, 2014
=====================
Changes since 3.15.2:
- Add a menu button that, when clicked pops up a menu to allow user to send
system key combos to guest. Currently supported combos are:
- Ctrl+Alt+Backspace
- Ctrl+Alt+F1
- Ctrl+Alt+F2
- Ctrl+Alt+F7
- Drop all nested dialogs by use of notifications and GtkStack widget. This also
implies that we now only allow customization of resources before a box is
created.
- As a USB device is no longer available on the host after being redirected
to guest, do not present keyboards and mice to user for redirection.
- Place fullscreen button before others in display headerbar. This is for
consistency with UI mockups and other apps.
- Show correct number of steps in wizard title.
- Show notifications on correct window in properties and wizard views.
- Apply appropriate theme to 'Force shutdown' button.
- Correctly restore notebook page in properties view.
- Don't show empty pages in properties view.
- Bigger properties and wizard windows.
- Add a USB keyboard to new domains.
- Added/updated/fixed translations:
- Czech
- Dutch
- German
- Hebrew
- Hungarian
- Japanese
- Norwegian bokmål
- Spanish
- Turkish
Dependencies changed:
- Require spice-gtk >= 0.27
- Require libusb explicitly
All contributors to this release:
Balázs Úr <[email protected]>
Christian Kirbach <[email protected]>
Daniel Mustieles <[email protected]>
Fabiano Fidêncio <[email protected]>
Hajime Taira <[email protected]>
Hannie Dumoleyn <[email protected]>
Kjartan Maraas <[email protected]>
Marek Černocký <[email protected]>
Muhammet Kara <[email protected]>
Piotr Drąg <[email protected]>
Yaşar Şentürk <[email protected]>
Yosef Or Boczko <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
3.15.2 - Nov 25, 2014
=====================
Changes since 3.14.0, that were not included in any subsequent stable releases:
- Properties view rework:
- Now a separate dialog-like window.
- Rename 'Login' section to 'General'.
- Merge 'Display' secion into 'General' section.
- Replace sidebar with:
- system stats and controls in the 'System' section.
- notebook tabs for each section.
- Remove the vague 'Resize guest' property and instead tell SPICE to always
try to scale the guest display to allocated size.
- Remove vague auto-usbredirection option.
- Replace use of vague term 'Virtualizer' with a more friendlier (and
consistent) term, 'Broker'.
- Show broker name instead of URL in properties view but do show broker URL
in troubleshooting log.
- Wizard view rework:
- Now a separate dialog-like window.
- Replace sidebar with step info in the title.
- Present a popover with item-specific actions menu that includes:
- Open in new window
- Favorite
- Pause
- Delete
- Properties
when user:
- right-clicks (or hits menu key) over an item.
- clicks a new menu button in display view that replaces the 'properties'
button.
- Show box display resolution on window resize.
- Automatically save/pause VMs running in background, except for ones under
express installation.
- Tell SPICE to also upscale the display when needed so that we don't end up
with a very tiny box display on hidpi screens when no autoresolution is in
effect (e.g boot loader screen or guests with no qxl/agent).
- Download files to temporary location first. This fixes the issue of Boxes
trying to use partially downloaded files.
- Set 'USB' bus for mouse since the default PS/2 bus has been reported to be
much slower.
- Correctly handle the case of user clicking on a box that is being saved.
- Explicitly disable HPET, based on input from libvirt and Qemu developers.
- Report ovirt support in the configure summary.
- Don't spin spinner on paused machines.
- If Boxes is launched with SOUP_DEBUG environment variable set, attach a
logger to libsoup session.
- Added/updated/fixed translations:
- Arabic
- Czech
- French
- Greek
- Hebrew
- Hindi
- Italian
- Kazakh
- Latvian
- Norwegian bokmål
- Simplified Chinese
- Spanish
- Telugu
- Turkish
All contributors to this release:
Abderrahim Kitouni <[email protected]>
Alain Lojewski <[email protected]>
Baurzhan Muftakhidinov <[email protected]>
Daniel Mustieles <[email protected]>
Florian Müllner <[email protected]>
Kjartan Maraas <[email protected]>
Krishnababu Krothapalli <[email protected]>
Lasse Schuirmann <[email protected]>
Marek Černocký <[email protected]>
Michael Hill <[email protected]>
Milo Casagrande <[email protected]>
Mosaab Alzoubi <[email protected]>
Osman Karagöz <[email protected]>
Piotr Drąg <[email protected]>
Rajesh Ranjan <[email protected]>
Rūdolfs Mazurs <[email protected]>
Tom Tryfonidis <[email protected]>
Yosef Or Boczko <[email protected]>
YunQiang Su <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
3.14.0 - Sep 23, 2014
=====================
Changes since 3.14.0:
- Documentation improvements
- Translation updates:
Bengali (India)
Chinese
Czech
Gujarati
Hindi
Korean
Marathi
Punjabi
Serbian
Spanish
Swedish
Ukrainian
3.13.92 - Sep 16, 2014
======================
Changes since 3.13.91:
- Remove custom code for RTL back icon as gtk+ takes care of that for us now.
- Fix hang on editting of box name.
- Drop some redunant color hardcoding from theme.
- Don't show snapshots option for machines that can't handle snapshots.
- Don't show snapshots option for machines under installation.
- Update CPU model for existing/old machines that were created by Boxes.
- Make empty boxes image more visible.
- Fix alignment of a empty boxes description label.
- Fix Boxes ending up in weird states on hitting back button.
- Close secondary window automatically if its machine
- stops running.
- is deleted.
- Update screenshot on machine disconnection.
- Fix checkboxes in selection mode by use of latest libgd.
- Make D-Bus autolaunch work.
- User help:
- Add page about keyboard shortcuts.
- Add page about gnome-continuous images.
- Add page about snapshots.
- Add pages about various options in properties view.
- Updates/cleanups.
- Added/updated/fixed translations:
- Catalan
- Catalan (Valencian)
- Czech
- Finnish
- French
- Galician
- German
- Greek
- Hebrew
- Hungarian
- Indonesian
- Kannada
- Korean
- Lithuanian
- Norwegian bokmål
- Polish
- Russian
- Slovak
- Spanish
- Tamil
Dependencies changed:
- Require gtk+ >= 3.13.2
All contributors to this release:
Andika Triwidada <[email protected]>
Aurimas Černius <[email protected]>
Balázs Úr <[email protected]>
Carles Ferrando <[email protected]>
Christian Kirbach <[email protected]>
Christophe Fergeau <[email protected]>
Daniel Mustieles <[email protected]>
Dušan Kazik <[email protected]>
Fran Diéguez <[email protected]>
Gil Forcada <[email protected]>
Kjartan Maraas <[email protected]>
Lasse Schuirmann <[email protected]>
Manoj Kumar Giri <[email protected]>
Marek Černocký <[email protected]>
Michael Hill <[email protected]>
Paweł Żołnowski <[email protected]>
Seong-ho Cho <[email protected]>
Shankar Prasad <[email protected]>
Shantha kumar <[email protected]>
Timm Bäder <[email protected]>
Tom Tryfonidis <[email protected]>
Ville-Pekka Vainio <[email protected]>
Yosef Or Boczko <[email protected]>
Yuri Myasoedov <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
3.13.91 - Sep 02, 2014
======================
Changes since 3.13.90:
- Add ability to create, delete, rename and revert to VM snapshots.
- Don't ignore CDROM devices.
- Fix build against '-Wl,--as-needed' linker flags.
- Better error message on failure to start a VM.
- Fix a a regression that broke showing of 'empty boxes' UI.
- Alignment fixes.
- Added/updated/fixed translations:
- Assamese
- Brazilian Portuguese
- Chinese (Taiwan)
- Czech
- French
- Greek
- Hebrew
- Japanese
- Norwegian bokmål
- Spanish
- Traditional Chinese (Hong Kong and Taiwan)
All contributors to this release:
Alexandre Franke <[email protected]>
Chao-Hsiung Liao <[email protected]>
Cheng-Chia Tseng <[email protected]>
Daniel Mustieles <[email protected]>
Dominique Leuenberger <[email protected]>
Enrico Nicoletto <[email protected]>
Hajime Taira <[email protected]>
Kjartan Maraas <[email protected]>
Marek Černocký <[email protected]>
Maria Mavridou <[email protected]>
Nilamdyuti Goswami <[email protected]>
Piotr Drąg <[email protected]>
Timm Bäder <[email protected]>
Tom Tryfonidis <[email protected]>
Yosef Or Boczko <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
3.13.90 - Aug 19, 2014
======================
Changes since 3.13.4:
- Allow running boxes in their own seperate windows.
- Handle initrd script injection method and therefore support for Debian express
installation through libosinfo >= 0.2.11.
- Introduce media downloading feature. You can now enter an HTTP(S) URL to a
remote media in wizard and Boxes will download it for you.
- Allow editting the machine's name through the title in properties view.
- More keyboard shortcuts:
- Ctrl+N for launching wizard.
- Ctrl+F for launching search.
- If internet connection is required for express installation by an OS:
- ensure it is available before allowing to start express installation.
- Inform user of this requirement.
- Replace hardcoded colors and background images with theme colors.
- Menu button in selection mode disappeared recently due to a gtk+ bug, lets
bring it back using a simple work around.
- Fix support for non-kvm hosts.
- Ensure minimum storage for an OS is actually known before using that
information.
- Improved maximum disk capacity calculation.
- Warn on not enough space on the host to inscrease maximum disk size of VMs.
- More information in DOAP file
- module category
- programming language
- Added/updated/fixed translations:
- Assamese
- Basque
- Brazilian Portuguese
- Catalan
- Catalan (Valencian)
- Greek
- Japanese
- Lithuanian
- Spanish
Dependencies changed:
- libvirt-gconfig >= 0.1.9
- libarchive 3
- Drop runtime depdendency on iso-read command.
All contributors to this release:
Adrien Plazas <[email protected]>
Aurimas Černius <[email protected]>
Carles Ferrando <[email protected]>
Daniel Mustieles <[email protected]>
Enrico Nicoletto <[email protected]>
Fabiano Fidêncio <[email protected]>
Gil Forcada <[email protected]>
Hajime Taira <[email protected]>
Inaki Larranaga Murgoitio <[email protected]>
Lasse Schuirmann <[email protected]>
Lasse Schuirmann <[email protected]>
MarMav <[email protected]>
ngoswami <[email protected]>
Olav Vitters <[email protected]>
Piotr Drąg <[email protected]>
Tom Tryfonidis <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
3.13.4 - July 21, 2014
======================
Changes since 3.13.3:
- Don't reveal fullscreen topbar on pointer over edges to not interfere with
user trying to reach WM decorations or apply edge gestures (as used in many
modern operating systems) in the guest.
- Don't show WM decorations in fullscreen. This is especially ugly in
classic-mode where we have 3 buttons.
- Drop weird and buggy custom thumbnail hilighting and enable it from gtk+
through latest libgd.
- Fix max storage capacity going lower than min storage capacity.
- Add F1 shortcut for help.
- Allow selecting file from remote shares (for real this time).
- Drop usage of deprecated APIs.
- Added/updated/fixed translations:
- Russian
- Galician
- Norwegian bokmål
- Greek
All contributors to this release:
Fran Diéguez <[email protected]>
Kjartan Maraas <[email protected]>
Lasse Schuirmann <[email protected]>
MarMav <[email protected]>
Yuri Myasoedov <[email protected]>
Zeeshan Ali (Khattak) <[email protected]>
3.13.3 - Jun 24, 2014
=====================
Changes since 3.11.92 that were not part of subsequent stable releases (3.12.3):
- Remove 'New' entry from global menu. It's context-sensitive and therefore does
not belong there.
- Specify exact Ctrl key in hint for ungrabbing.
- Don't auto-fullscreen Boxes on launch.
- Added/updated/fixed translations:
- Basque
- Belarusian
- Brazilian Portuguese
- Catalan (Valencian)
- Czech
- Danish
- French
- German
- Greek
- Hebrew
- Hungarian
- Indonesian
- Khmer
- Latvian
- Serbian
- Slovak
- Slovenian
- Spanish
- Traditional Chinese (Hong Kong and Taiwan)
All contributors to this release:
Adrien Plazas <[email protected]>
Alexandre Franke <[email protected]>
Andika Triwidada <[email protected]>
Andre Klapper <[email protected]>
Ask H. Larsen <[email protected]>
Carles Ferrando <[email protected]>
Chao-Hsiung Liao <[email protected]>
Cheng-Chia Tseng <[email protected]>
Christian Kirbach <[email protected]>
Christophe Fergeau <[email protected]>
Daniel Mustieles <[email protected]>
David King <[email protected]>
Enrico Nicoletto <[email protected]>
Gábor Kelemen <[email protected]>
Ihar Hrachyshka <[email protected]>
Inaki Larranaga Murgoitio <[email protected]>
Jakub Steiner <[email protected]>