Commit e84811e2 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

Update changelog

parent 581ed976
......@@ -4,6 +4,11 @@ FEATURES:
* VMware builder now works with Workstation 9 on Linux.
IMPROVEMENTS:
* virtualbox, vmware: Add backspace, delete, and F1-F12 keys to the boot
command.
BUG FIXES:
* core: build names no longer cause invalid config errors. [GH-197]
......
......@@ -91,8 +91,8 @@ func (*stepTypeBootCommand) Cleanup(map[string]interface{}) {}
func scancodes(message string) []string {
special := make(map[string][]string)
special["<backspace>"] = []string{"ff", "08"}
special["<delete>"] = []string{"ff", "ff"}
special["<bs>"] = []string{"ff", "08"}
special["<del>"] = []string{"ff", "ff"}
special["<enter>"] = []string{"1c", "9c"}
special["<esc>"] = []string{"01", "81"}
special["<f1>"] = []string{"ff", "be"}
......
......@@ -95,8 +95,8 @@ func (*stepTypeBootCommand) Cleanup(map[string]interface{}) {}
func vncSendString(c *vnc.ClientConn, original string) {
special := make(map[string]uint32)
special["<backspace>"] = 0xFF08
special["<delete>"] = 0xFFFF
special["<bs>"] = 0xFF08
special["<del>"] = 0xFFFF
special["<enter>"] = 0xFF0D
special["<esc>"] = 0xFF1B
special["<f1>"] = 0xFFBE
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment