diff options
author | Remco de Man <gitlab@remcodeman.nl> | 2020-02-07 09:25:37 +0100 |
---|---|---|
committer | Remco de Man <gitlab@remcodeman.nl> | 2020-02-07 09:25:37 +0100 |
commit | 02ebfba78f9595791f3e118998a2b143e2744b36 (patch) | |
tree | 4e9b24bb48986bd21755df2d0b4e46a719a8b9a8 | |
parent | b4dd0ae3ea297cb8472d99bee165734eaed4a146 (diff) | |
download | phpvirtualbox-02ebfba78f9595791f3e118998a2b143e2744b36.zip phpvirtualbox-02ebfba78f9595791f3e118998a2b143e2744b36.tar.gz phpvirtualbox-02ebfba78f9595791f3e118998a2b143e2744b36.tar.bz2 |
Add OS icon for Windows Server 2019.
Simple merge request adds the OS icon for Windows Server 2019, taken from the VirtualBox source code.
-rw-r--r-- | images/vbox/os_win2k19_64.png | bin | 0 -> 12642 bytes | |||
-rw-r--r-- | js/utils.js | 1 |
2 files changed, 1 insertions, 0 deletions
diff --git a/images/vbox/os_win2k19_64.png b/images/vbox/os_win2k19_64.png Binary files differnew file mode 100644 index 0000000..b88ee72 --- /dev/null +++ b/images/vbox/os_win2k19_64.png diff --git a/js/utils.js b/js/utils.js index ec49c3a..cfb713e 100644 --- a/js/utils.js +++ b/js/utils.js @@ -255,6 +255,7 @@ function vboxGuestOSTypeIcon(osTypeId) { case "WindowsNT_64": strIcon = "os_win_other_64.png"; break; case "Windows2012_64": strIcon = "os_win2k12_64.png"; break; case "Windows2016_64": strIcon = "os_win2k16_64.png"; break; + case "Windows2019_64": strIcon = "os_win2k19_64.png"; break; case "OS2Warp3": strIcon = "os_os2warp3.png"; break; case "OS2Warp4": strIcon = "os_os2warp4.png"; break; case "OS2Warp45": strIcon = "os_os2warp45.png"; break; |