forked from phpvirtualbox/phpvirtualbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.txt
1450 lines (1008 loc) · 47.4 KB
/
CHANGELOG.txt
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
-------------------------------------
5.2-0
-------------------------------------
Long overdue post 5.0 support (5.2 at this stage)
PHP 7.1 support thanks to @mikedld
New Czech localization thanks to @p-bo
MySQL autho module thanks to @tioigor96
Various bugfixes thanks to @tschoening and @ashway83
-------------------------------------
5.0-5 2016-01-08
-------------------------------------
PHP 7 support
-------------------------------------
5.0-4 2015-12-07
-------------------------------------
Fixed bug in file / folder browser when $browserRestrictFolders is
set.
https://sourceforge.net/p/phpvirtualbox/bugs/50/
Fixed bug in host network interface sorting.
https://sourceforge.net/p/phpvirtualbox/bugs/36/
Fixed bug where phpVirtualBox installations on the same server may
share session cookies in certain PHP configurations.
Fixed bug where noPreview=true; was ignored in settings.
https://sourceforge.net/p/phpvirtualbox/bugs/38/
-------------------------------------
5.0-3 2015-09-09
-------------------------------------
Fixed file browser header content type causing blank file / folder
contents
https://sourceforge.net/p/phpvirtualbox/bugs/49/
Fixed selection highlighting in file / folder browser
Fixed all VMs in a group starting on the same RDP port
https://sourceforge.net/p/phpvirtualbox/bugs/46/
Fixed missing en.xml language file
https://sourceforge.net/p/phpvirtualbox/bugs/45/
-------------------------------------
5.0-2 2015-08-12
-------------------------------------
Translation fixes
Fixed error when creating host-only networks
Fixed host-only network DHCP server settings
Fix USB device attaching / detaching from Settings menu of a
running VM.
-------------------------------------
5.0-1 2015-08-05
-------------------------------------
Fix paths in recovery.php-disabled
Fix Content-type header in api.php
Fix add medium button context menu in VM settings
Fix RDP link
Fix bug when changing password
Removed unused OnAdditionsStateChanged event
Change in the way Windows drive list is obtained
Fixed errors manipulating groups when $phpVboxGroups is set
-------------------------------------
5.0-0 2015-07-18
-------------------------------------
VirtualBox 5.0 compatibility.
Progress operations are now listed in order of creation from top
top bottom.
-------------------------------------
4.3-3 2015-04-04
-------------------------------------
Added 2d/3d video acceleration configuration options in VM
settings
Fixed guest OS icon for Linux 2.6 (32-bit)
Added $eventListenerTimeout configuration option.
Upgraded jQuery to 1.11.2 and jQuery-ui to 1.11.4
-------------------------------------
4.3-2 2014-12-16
-------------------------------------
Updated documentation to remove all googlecode.com references.
Changing the guest OS type now updates LongMode CPU Feature of VM.
https://sourceforge.net/p/phpvirtualbox/bugs/31/
Removed phptest.php and related check to see if PHP parsing works
correctly. This gives a false negative result in some browsers
/ web server configurations.
https://sourceforge.net/p/phpvirtualbox/bugs/32/
Copied missing image from VirtualBox src.
Fixed bug that would incorrectly determine the name of some images
causing 404s in web server logs and broken images.
Fixed bug in global NAT network settings that would not save the
'Active' checkbox setting.
-------------------------------------
4.3-1 2014-01-02
-------------------------------------
Fixed bug that would not stop the Global Preferences dialog from
being displayed when $noAuth was enabled or some other auth method
was set in config.php
https://sourceforge.net/p/phpvirtualbox/bugs/7/
Fixed JavaScript error when $enforceVMOwnership is enabled
https://sourceforge.net/p/phpvirtualbox/bugs/9/
Updated the links to point to new Sourceforge home instead of
googlecode
http://sourceforge.net/p/phpvirtualbox/bugs/11/
Updated guest OS type icons
Allow SCSI and SAS controllers to have CD/DVD drives
-------------------------------------
4.3-0 2013-10-17
-------------------------------------
VirtualBox 4.3.x support.
Fixed behavior when a VM is inaccessible.
Fixed Clone VM Wizard bug that would not keep MAC addresses even
when 'Reinitialize MAC address...' was not set
https://sourceforge.net/p/phpvirtualbox/bugs/3/
Fixed bug that would not allow a VM to be powered off if it stuck
https://sourceforge.net/p/phpvirtualbox/bugs/5/
-------------------------------------
4.2-8 2013-10-15
-------------------------------------
Updated media menus to indicate which media is already mounted
by the given virtual machine.
Minor UI enhancements.
Fixed bug when collapsing and expanding the Preview box in VM
details sections that would leave an arrow image drawn over the
preview image.
Removed bug workarounds for old version of Opera.
Minor translation bug fixes.
Added VNC viewer for VirtualBox-OSE with VNC support
(experimental).
VRDE port in the Details pane is now a vnc:// link if VirtualBox
with VNC support is detected and the VM is running.
-------------------------------------
4.2-7 2013-08-12
-------------------------------------
Upgraded jQuery from 1.8.2 to 1.10.2. Updated code to reflect
library changes.
Upgraded jQuery-UI from 1.8.23 to 1.10.3. Updated code to reflect
library changes.
Consolidated some JavaScript, and CSS files where possible.
Minor translation fixes.
Some VM properties are now editable when a VM is in a Saved state.
Fixed bug when selecting a medium by location where it would have
to be selected twice.
http://code.google.com/p/phpvirtualbox/issues/detail?id=641
Minor UI enhancements.
EHCI is no longer enabled by default on USB controller when
creating a new VM.
Moved USB, Serial, and Parallel port settings back into their own
sections.
Progress operation text is now resizable.
Fixed bug that would not update VM display when a VM's custom icon
was changed.
Fixed bug when refreshing VM data that would not cause redraws of
certain sections.
Fixed display of Acceleration properties in VM details view.
Added ability to handle more than one instance of SATA, SAS, and
SCSI controllers in VM settings.
Changed new controller names when creating a new VM to align with
VirtualBox naming conventions.
Added support for setting VNC properties in the Remote Display tab
of VM settings (beta). The console tab is still RDP specific.
Added ability to change servers while operations are in progress.
Better election of new hard drive names in Create Virtual Hard
Drive wizards.
Cloning operations are no longer modal.
Snapshot operations are no longer modal.
-------------------------------------
4.2-6 2013-07-22
-------------------------------------
Fixed bug where deleting or renaming a VM snapshot may not cause
the chooser to refresh VM data.
Minor translation bug fixes.
Fixed "Restore Defaults" button in Appliance Export Wizard.
VM settings dialog now prompts for reload if settings change while
the dialog is open.
VM settings dialog is now aware of VM state changes while the
dialog is open and updates VM editability accordingly.
Fixed XSS vulnerability.
Fixed bug that would not subscribe to events of machines that were
powered on while phpVirtualBox is open.
Added icons from VirtualBox source for Windows 8.1 and 2012.
Updated language files from latest VirtualBox release (4.2.16).
Added running VM count to VM Group tool tips.
Removing a copy of a VM in the chooser now removes it from the
interface rather than unregistering it.
Improved VM Group saving logic. Some items are no longer editable
or draggable while VM group definitions are being saved to
VirtualBox.
Minor UI changes.
Fixed bug that would not allow VMs to be dropped / copied into the
root VM group.
-------------------------------------
4.2-5 2013-07-11
-------------------------------------
More details pane redraw fixes when VM selection list changes
while VM data is still loading
Fixed multiple IE8 bugs that affected selecting and removing VMs
Fixed bug that would incorrectly set the VRDE host to null if no
consoleHost was configured in config.php
http://code.google.com/p/phpvirtualbox/issues/detail?id=620
Added workaround for VirtualBox bug that generates an error when
taking or restoring snapshots.
http://code.google.com/p/phpvirtualbox/issues/detail?id=614
Fixed bug that would not allow starting VMs if
$vmMemoryStartLimitWarn was enabled in config.php
http://code.google.com/p/phpvirtualbox/issues/detail?id=619
VMs that are selected in the VM list are now selected by default
in the Export Appliance Wizard
http://code.google.com/p/phpvirtualbox/issues/detail?id=629
Fixed bug in ActiveDirectory authentication module that would not
correctly recognize the adminUser setting.
https://code.google.com/p/phpvirtualbox/issues/detail?id=649
Fixed bug that would not allow 'Stuck' VMs to be powered off.
https://code.google.com/p/phpvirtualbox/issues/detail?id=651
Fixed bug that would not allow "." to be entered in an IP address
text box in some cases.
https://code.google.com/p/phpvirtualbox/issues/detail?id=653
Fixed bug in LDAP authentication module that would not allow users
to log in.
https://code.google.com/p/phpvirtualbox/issues/detail?id=687
Canceling the 'First Run' wizard now resumes starting the VM.
-------------------------------------
4.2-4 2012-11-02
-------------------------------------
Fixed details pane redraws when VM selection list changes while VM
data is still loading
Added VM group tooltips
Fixed bug that would not display the first VM added to VirtualBox
when there were no other VMs until the page was refreshed
Fixed bug that would not allow attachment of USB devices from the
Settings menu
Cleaned up snapshot logic and snapshot list UI
Taking a snapshot of a running VM now automatically pauses the VM
to take the snapshot and resumes it once the snapshot has been
taken
Minor look and feel changes to more closely match the VirtualBox
GUI
Added First Run wizard
Major rewrite of AJAX data <-> vboxwebsrv back-end interaction
PHP session support is no longer required and AJAX requests should
be a little more responsive
Fixed bug that would not save DHCP server settings of host-only
network interfaces
Fixed bug in Clone Virtual Machine wizard that would not create a
full clone when in 'Expert' (Hide Description) mode
Reintroduced the Stop button in place of the Discard button in the
main window toolbar
Cleaned up wizards to perform expected actions when pressing Enter
vboxinit now reads VBOX_BIN_PATH if set in /etc/default/virtualbox
and adds it to the PATH environment variable
http://code.google.com/p/phpvirtualbox/issues/detail?id=616
If multiple servers are configured, progress operation rows now
contain the server's name on which the operation was performed
http://code.google.com/p/phpvirtualbox/issues/detail?id=617
Fixed bug in IE8 that would prevent opening a detached console
window for any VM that has a space in its name
-------------------------------------
4.2-3b 2012-10-21
-------------------------------------
Fixed error when detaching a VM console window
http://code.google.com/p/phpvirtualbox/issues/detail?id=613
-------------------------------------
4.2-3 2012-10-21
-------------------------------------
Fixed line endings in vboxinit
http://code.google.com/p/phpvirtualbox/issues/detail?id=606
Fixed VM state change updates that did not update menus and
toolbars
Fixed bug that would hide the Remote Display tab in VM settings
while a VM is running
Fixed Preview section update bug that would not update the preview
window at the selected interval
Removed obsolete configuration items from config.php-example
Fixed UI updating of UI components when a VM is added or removed
from a selected group or its subgroups
Added PHP version check
Better error handling when the VirtualBox event listener fails
Menu bug that would not always trigger an action when a menu item
was clicked
Added check for PHP LDAP extension in LDAP authentication module
Added Active Directory authentication module
Fixed bug in Virtual Media Manager that would fail to properly
refresh media
Fixed permission errors that would enforce VM ownership actions
even when $enforceVMOwnership was not enabled in config.php
Changing servers while an operation is in progress is no longer
allowed as it causes progress operations to fail
Preview screen is now a hardware accelerated HTML5 canvas if
supported by the browser
Improved support for older browsers (IE 8, FF 3.6, Opera 10)
Added better visual indication in the Details section of when a
VM's VRDE server fails to start - its port number is now red and
has a line through it
Improved redraw and menu update logic
-------------------------------------
4.2-2 2012-10-15
-------------------------------------
Look-and-feel changes to more closely match the VirtualBox GUI
Better UI handling of long group and VM names
Fixed bug causing phpVirtualBox to not load in IE unless the
JavaScript console was open
Added config option to exclusively use phpVirtualBox's own groups
configuration rather than VirtualBox groups - see
config.php-example for more info
Fixed bug that would leave group information (vm / group counts
and icons) always visible after renaming a group
Improved redraw logic for VM data in the Details section / tab
Improved chooser grouping logic when grouping multiple items
GUI state information is now saved in browser's localStorage
instead of using cookies
http://www.w3schools.com/html/html5_webstorage.asp
Collapsed state of groups is now remembered if the browser
supports localStorage
-------------------------------------
4.2-1 2012-10-09
-------------------------------------
VirtualBox 4.2.x compatibility release
Various regression bug fixes from beta versions
Moved to using VirtualBox's passive event listener mechanism, and
as a result:
PHP session support is now required
PHP minimum requirement is now at 5.2.0 (released in 2006)
-------------------------------------
4.2-0b 2012-09-27
-------------------------------------
VirtualBox 4.2.x compatibility - beta release
NOT ALL VirtualBox 4.2 FEATURES ARE IMPLEMENTED!!
http://code.google.com/p/phpvirtualbox/issues/detail?id=585
Various regression bug fixes.
Fixed vboxinit script for users that have /bin/false or some other
invalid shell.
Updated languages.
Added advanced mode ("Hide Description") to wizards.
-------------------------------------
4.2-0 2012-09-25
-------------------------------------
VirtualBox 4.2.x compatibility - beta release
NOT ALL VirtualBox 4.2 FEATURES ARE IMPLEMENTED!!
http://code.google.com/p/phpvirtualbox/issues/detail?id=585
Updated jquery to 1.8.2 and jquery-ui to 1.8.23
Corrected IE9 support.
Removed Firefox App Tab support.
-------------------------------------
4.1-8 2012-08-20
-------------------------------------
Fixed bug that would error out when creating a VM without a boot
disk.
http://code.google.com/p/phpvirtualbox/issues/detail?id=482
Fixed bug that would cause the progress bar to hang when
performing progress operations in some cases.
http://code.google.com/p/phpvirtualbox/issues/detail?id=495
Fixed "Next" arrow wizard code bug visible when the number of
wizard steps changes at run-time.
Fixed bug that would fail to generate a correct RDP connection
file when enforceVMOwnership is set.
http://code.google.com/p/phpvirtualbox/issues/detail?id=523
Fixed bug when creating HDD on drive letters under Windows.
Fixed Windows Bug when selecting folder from Hard Drive List
Added better support for IE9.
Added LDAP authentication module.
Cosmetic changes in init script output.
-------------------------------------
4.1-7 2012-01-17
-------------------------------------
Fixed bug that would not properly set the Use host I/O cache
and Enable Page Fusion settings.
Added Windows 8 OS icons.
Cleaned up Wizard code.
Removed unused images from source tree.
-------------------------------------
4.1-6.1 2012-01-03
-------------------------------------
Fixed bug for IE 8 that would prevent the Global Preferences
dialog from opening.
-------------------------------------
4.1-6 2012-01-02
-------------------------------------
Added $startStopConfig to config.php-example
Added Traditional Chinese (zh_tw) translation.
Fixed bug that would not allow the mounting of media when its
path or file name contains a quote.
http://code.google.com/p/phpvirtualbox/issues/detail?id=474
-------------------------------------
4.1-5 2011-11-15
-------------------------------------
Fixed bug that would not set Acceleration options for a VM if the
$enableAdvancedConfig option was not set in config.php
http://code.google.com/p/phpvirtualbox/issues/detail?id=438
Added OpenMediaVault authentication module.
Added option to set VM startup mode and associated config option
in config.php. Use vboxinit script in phpVirtualBox's root folder.
Fixed a bug in IE 8 that would cause the "Loading ..." screen to
stay in place after login.
http://code.google.com/p/phpvirtualbox/issues/detail?id=455
Added $enableGuestAdditionsVersionDisplay setting and associated
functionality to display guest additions version of a running
VM on its Details tab.
http://code.google.com/p/phpvirtualbox/issues/detail?id=454
Added Romanian translation.
-------------------------------------
4.1-4 2011-10-17
-------------------------------------
$vmMemoryOffset if configured, is now displayed in yellow(-ish) in
the host memory usage graph.
http://code.google.com/p/phpvirtualbox/issues/detail?id=414
Fixed bug that would throw a VirtualBox error when cloning the
"Current State" item of a virtual machine on the Snapshot tab.
Fixed regression bug that would show all USB devices as being
attached to the selected VM in the USB Devices section of the
Settings toolbar menu.
Fixed bug that would cause an error when "USB Devices" was clicked
in the Settings toolbar menu.
Minor UI changes.
Fixed Export Appliance wizard so that it now displays the correct
Export Appliance instructions rather than the Import Appliance
wizard instructions.
Added $enableHDFlushConfig configuration setting. For more info
see "Responding to guest IDE/SATA flush requests" at:
http://www.virtualbox.org/manual/ch12.html#idp12757424
Added workaround for http://www.virtualbox.org/ticket/9255. Taking
a snapshot of a running VM now prompts to pause the VM. This check
was added in 4.1-3, now however it no longer verifies the
VirtualBox version. 4.1-3 assumed this would be fixed in
VirtualBox versions > 4.1.2.
Added support for network adapter "Generic Properties" when the
Generic Driver adapter type is selected.
Added Doxygen style comments to PHP and JavaScript files.
Added Chinese translation.
-------------------------------------
4.1-3 2011-9-20
-------------------------------------
Added Polish translation.
Fixed 4.1-0 regression bug that would not allow runtime attachment
of USB devices from the Settings menu in the toolbar.
Fixed 4.1-1 regression bug that would not allow one to edit
existing USB filters for a running VM.
Better handling of CD/DVD medium changes when 'Live CD/DVD' is not
selected for a medium attachment.
Less context menu levels for removable media attachments in the
Settings toolbar button menu of a running VM when the VM only has 1
removable media attachment of the a given type (CD/DVD and Floppy).
Improved Guest Additions installation handling.
Added test to check that PHP files are being parsed as PHP and
associated error message if not.
Added Parallels hard disk image format creation support. Available
hard disk formats and their capabilities are now programmatically
obtained through the VirtualBox API.
Minor translation fixes.
Advanced acceleration options are now correctly hidden when
enableAdvancedConfig is not enabled in config.php.
Login form on console tab is now hidden if remote console
authentication is set to None. This should avoid some confusion.
Improved PHP session handling. This should resolve some timeout
issues and speed up response time in phpVirtualBox.
Added context menus to the Virtual Media Manager.
Added workaround for http://www.virtualbox.org/ticket/9255. Taking
a snapshot of a running VM now prompts to pause the VM if
VirtualBox <= 4.1.2 is detected.
Fixed VM cloning bug.
http://code.google.com/p/phpvirtualbox/issues/detail?id=380
Fixed some display issues for GTK based web browsers when a dark
GTK theme is applied.
Added check to see that get_magic_quotes_gpc() function exists
before calling it. This fix problems for people running newer
(unsupported) versions of PHP.
Fixed bug where phpVirtualBox would try to pre-load images that do
not exist - causing 404 errors in web server logs.
http://code.google.com/p/phpvirtualbox/issues/detail?id=396
Added host memory usage information when the VirtualBox host is
selected in the VM list. See associated hostMemInfoRefreshInterval
option in config.php-example.
http://code.google.com/p/phpvirtualbox/issues/detail?id=402
Added $vmListMinimal config option and associated code. See
config.php-example.
Added $vmMemoryStartLimitWarn and associated logic to emit a
warning when starting a virtual machine would use more memory
than the host has available.
http://code.google.com/p/phpvirtualbox/issues/detail?id=291
Added context menu to VM list.
A list of drives is now displayed when browsing for a file or
folder when Windows is detected. This can be turned off if desired
using the $noWindowsDriveList configuration option in config.php.
http://code.google.com/p/phpvirtualbox/issues/detail?id=388
Fixed bug when creating or copying a new VMDK disk image where the
disk would always be split into files < 2GB regardless of whether
or not the "split" option was selected.
-------------------------------------
4.1-2 2011-8-21
-------------------------------------
Added Stop options to VM list context menu.
Fixed bug in Global Preferences that would not allow you to save
settings if a Language was not selected in the Languages section.
http://code.google.com/p/phpvirtualbox/issues/detail?id=348
Added context menus to VM Storage settings.
Fixed bug that would cause network adapters to disconnect and
reconnect when saving settings of a running VM.
http://code.google.com/p/phpvirtualbox/issues/detail?id=361
Changing a VM name in the Appliance Import Wizard now
automatically updates virtual disk image paths.
http://code.google.com/p/phpvirtualbox/issues/detail?id=362
Minor translation fixes.
Added Linked Clone support to match VirtualBox 4.1.2.
Fixed bug when the bridged adapter of a VM was assigned to a host
sub-interface. This would not allow for selection of the interface
in VM settings.
http://code.google.com/p/phpvirtualbox/issues/detail?id=371
Fixed bug in VM log viewer that would not display log file
contents when non-utf-8 characers are present.
-------------------------------------
4.1-1b 2011-8-1
-------------------------------------
Added snapshot thumbnail and full image link when viewing snapshot
details of an online snapshot.
Added context menus for snapshots.
Minor UI changes.
Fixed page fusion setting bug for people running VirtualBox in a
32-bit OS with a 64-bit processor.
http://code.google.com/p/phpvirtualbox/issues/detail?id=347
-------------------------------------
4.1-1 2011-8-1
-------------------------------------
Upgraded jquery-ui to 1.8.14
Numerous translation bug fixes.
VM settings are now available while VM is running. Some settings
can be modified.
Minor UI changes.
Fixed bug that would activate all configured USB filters when
saving a VM.
Implemented overwriting of existing file in appliance export
wizard.
Fixed bug in IE that would not allow for the entry of internal
network names in VM settings.
Fixed Clone VM wizard bug that would force the selection of
"Current machine and all child states."
Removed "Current machine and all child states" option from Clone
VM wizard as it is unsupported by VirtualBox at this time.
Fixed display bug in VM log viewer when pressing the Refresh
button.
Snapshots tab now prompts to take a new snapshot when attempting to
restore a snapshot while VM is in a (changed) Saved state.
Added license agreement dialog when importing appliances that have
a license.
Added a check for phpVirtualBox <-> VirtualBox versions.
Added "Restore Defaults" button and functionality to appliance
import wizard.
Added Page Fusion setting in VM Settings -> System -> Motherboard
when $enableAdvancedConfig is set in config.php.
Fixed bug that would not allow a disk to be set to Multi-attach.
Fixed bug with PHP versions < 5.2 that would not enable network
cards of VMs when saving VM settings.
http://code.google.com/p/phpvirtualbox/issues/detail?id=333
Added $enableAppTabSupport configuration option and feature. See
config.php-example for more information.
Added "Split into files of less than 2GB" option when creating or
copying VMDK disks.
Fixed bug in New Virtual Disk Wizard that would create all hard
disk images in VDI format regardless of which format was selected.
WSDL files now contain VirtualBox version number in file names.
This should fix any WSDL file caching issues after a VBox upgrade.
Fixed bug for OS X hosts that would not allow the Settings dialog
to be displayed.
http://code.google.com/p/phpvirtualbox/issues/detail?id=338
VM Settings -> System -> Acceleration tab now always appears, but
is disabled if host CPU does not support virtualization extensions.
CPUs are limited to 1 if host CPU does not support virtualization
extensions. Mimicking the VirtualBox GUI.
Host CPU features are now displayed regardless of config.php
$enableAdvancedConfig setting.
Fixed bug in Storage settings that would always display the Port
Count option. Even when a non-SATA controller was selected.
Fixed bug that would not close the progress dialog after taking a
snapshot.
-------------------------------------
4.1-0 2011-7-19
-------------------------------------
VirtualBox 4.1.x compatibility.
jquery upgrade to 1.6.2.
Fixed issue where exported disks would be incorrectly named when
exporting a virtual machine.
http://code.google.com/p/phpvirtualbox/issues/detail?id=307
UI updates for wizards.
Most translations are now taken from the VirtualBox source .qt
files.
-------------------------------------
4.0-7 2011-6-8
-------------------------------------
Removed $sessionSecurityLevel setting and associated logic as it
really provided no extra session security.
Fixed session bug where another client running the same browser
from the same subnet could inherit another user's session.
http://code.google.com/p/phpvirtualbox/issues/detail?id=295
Fixed bug that would not allow you to edit more than one host-only
networking adapter.
http://code.google.com/p/phpvirtualbox/issues/detail?id=310
Added $consoleKeyboardLayout setting.
http://code.google.com/p/phpvirtualbox/issues/detail?id=248
-------------------------------------
4.0-6 2011-5-24
-------------------------------------
Pressing Esc key now closes most dialog boxes.
http://code.google.com/p/phpvirtualbox/issues/detail?id=237
File / folder browser no longer shows "Access Denied" message
when $restrictFolders is configured.
http://code.google.com/p/phpvirtualbox/issues/detail?id=238
Hard disks that are already attached to a VM are not elected to
be attached when adding a Hard Disk attachment in VM settings.
http://code.google.com/p/phpvirtualbox/issues/detail?id=239
Pressing Enter key works on add user form.
http://code.google.com/p/phpvirtualbox/issues/detail?id=240
Fixed bug in appliance import wizard where changed values would
not be reflected in the interface after changing them.
http://code.google.com/p/phpvirtualbox/issues/detail?id=243
Added simple authentication plugin framework.
http://code.google.com/p/phpvirtualbox/issues/detail?id=249
Added disableHostTimeSync option when $enableAdvancedConfig is
set.
http://code.google.com/p/phpvirtualbox/issues/detail?id=226
When selecting media, the file / folder browser remembers the last
media location.
Added custom VM icons functionality and related $enableCustomIcons
setting.
http://code.google.com/p/phpvirtualbox/issues/detail?id=225
Added "Bind to IP" setting for NAT network adapters when
$enableAdvancedConfig is set.
http://code.google.com/p/phpvirtualbox/issues/detail?id=232
Fixed bug that would not correctly set the host network adapter of
a running VM when changing the adapter to bridged mode.
http://code.google.com/p/phpvirtualbox/issues/detail?id=245
Port forwarding protocol is now selectable in advanced NAT
options.
http://code.google.com/p/phpvirtualbox/issues/detail?id=263
Network adapters on the VirtualBox Host details page now shows
which VMs (and their adapters) are attached.
http://code.google.com/p/phpvirtualbox/issues/detail?id=276
Host / port setting is now exposed and editable on the console
tab.
Fixed bug when viewing snapshot details that would keep appending
rows to the details pane rather than clearing then redrawing info.
Fixed bug that would throw an exception when a DHCP server does not
exist on a host-only interface.
http://code.google.com/p/phpvirtualbox/issues/detail?id=278
Fixed bug that would cause IPv6 information to not be displayed
for host interfaces when viewing VirtualBox host details.
-------------------------------------
4.0-5 2011-3-26
-------------------------------------
Added Norwegian translation.
Added Japanese translation.
Fixed translation of 'Log in' in log in dialog.
Fixed bug that would not allow editing of NAT port forwarding
http://code.google.com/p/phpvirtualbox/issues/detail?id=215
Virtual Media Manager now has scrolling media list and sortable
columns.
Fixed bug / error in RDP file generation script that occurs when
the remote console port is configured for a range or list of
ports.
Storage controller pane now resizes as expected.
Attached USB devices in VM settings is now obtained in real-time
rather than only when the settings dialog is first opened.
Fixed clone medium bug that would always clone a disk as
dynamically expanding storage type no matter which option was
selected.
Fixed bug when removing a VM when using PHP < 5.2.0.
Fixed bug when editing shared folders of a non-running VM.
Log in form now submits when pressing enter.
Import / Export Appliances now has scrolling lists.
Fixed bug when PHP does not have session support enabled. This
incorrectly displays the error 'Not logged in.' each time an
action is attempted in phpVirtualBox.
Fixed CRLF injection security hole in rdp.php.
-------------------------------------
4.0-4b 2011-3-1
-------------------------------------
Fixed bug that would not display error messages when attempting
to log in if there was an error connecting to vboxwebsrv.
-------------------------------------
4.0-4 2011-3-1
-------------------------------------
Added Exclusive and VPID hardware acceleration options to
Acceleration tab visible when $enableAdvancedConfig is set.
Added "Automatic" SATA Port Count option to the SATA Port Count
list when $enableAdvancedConfig is set. New VMs created through
phpVirtualBox will automatically have this set to Auto.
Fixed bug that would display the Input tab rather than the
Description tab when clicking on the Description section link in
the VM Details section if $enableAdvancedConfig is set.
Fixed bug that would reload the list of VMs rather than refresh
the list when resetting a VM.
Fixed bug that would not change some settings when using
PHP < 5.2.0. This was reported by CentOS users regarding the
Cable Connected network setting in particular.
http://code.google.com/p/phpvirtualbox/issues/detail?id=192
Fixed bug that would not allow you to add a VM through Machine ->
Add when using PHP < 5.2.0.
Circumvent unconfirmed VirtualBox bug when trying to obtain a
screen shot for the Preview window returns "Could not take a
screenshot (VERR_TRY_AGAIN)." screen.php now runs
console->display->invalidateAndUpdate() on error.
VM settings while running are now available via the Settings
button on the toolbar. Moved Install Guest Additions function
to this menu.
Added more files to default $browserRestrictFiles setting.
OS Type can now be changed when importing a VM.