Update changelog

This commit is contained in:
Mitchell Hashimoto 2013-07-20 16:37:48 -07:00
parent cff38c6aea
commit f97148bc22
3 changed files with 9 additions and 4 deletions

View File

@ -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]

View File

@ -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"}

View File

@ -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