Skip to content

Commit

Permalink
adding reflectHost = False
Browse files Browse the repository at this point in the history
  • Loading branch information
chilcote committed Jul 21, 2019
1 parent 1ed4d53 commit 5d16754
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Shameless fork from the far superior https://github.com/clburlison/pinpoint/blob/master/Makefile

PKGTITLE="vfuse"
PKGVERSION="2.2.2"
PKGVERSION="2.2.3"
PKGID=com.github.vfuse
PROJECT="vfuse"

Expand Down
5 changes: 3 additions & 2 deletions pkgroot/usr/local/vfuse/bin/vfuse
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ except ImportError:
from urllib2 import urlopen, HTTPError


__version__ = "2.2.2"
__version__ = "2.2.3"


class Error(Exception):
Expand Down Expand Up @@ -562,7 +562,8 @@ def create_vmx(
f.write('keyboardAndMouseProfile = "macProfile"\n')
f.write('floppy0.present = "FALSE"\n')
f.write('msg.autoanswer = "TRUE"\n')
f.write('tools.syncTime = "TRUE"')
f.write('tools.syncTime = "TRUE"\n')
f.write('board-id.reflectHost = "FALSE"')
if enable3d:
f.write('\nmks.enable3d = "TRUE"')
else:
Expand Down

0 comments on commit 5d16754

Please sign in to comment.