Skip to content

Commit

Permalink
Release version 7.1 - Pitaya
Browse files Browse the repository at this point in the history
Updated COM API to make it work with VirtualBox 7.1.
  • Loading branch information
onlyfang committed Sep 18, 2024
1 parent 3d03455 commit 55709cc
Show file tree
Hide file tree
Showing 5 changed files with 34,329 additions and 19,946 deletions.
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Change log

### 2024-09-18 Release 7.1 "Pitaya"
* Updated COM API to make it work with VirtualBox 7.1. Note this is not compatible with old versions of VirtualBox. If you need to use VirtualBox 7.0.X, please stay with 7.0 "Persimmon".

### 2022-10-22 Release 7.0 "Persimmon"
* Updated COM API to make it work with VirtualBox 7.0. Note this is not compatible with old versions of VirtualBox. If you need to use VirtualBox 6.1.X, please stay with 6.1 "Kiwi".
* Add a dependency on LanmanServer to ensure networking is available.
Expand Down
2 changes: 1 addition & 1 deletion setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "VBoxVmService"
#define MyAppVersion "7.0-Persimmon"
#define MyAppVersion "7.1-Pitaya"
#define MyAppPublisher "VBoxVmService Development Team"
#define MyAppURL "https://github.com/onlyfang/VBoxVmService"

Expand Down
2 changes: 1 addition & 1 deletion src/Util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ BOOL SendCommandToService(char * message, char chBuf[], int chBufSize)
sprintf_s(chBuf, chBufSize, "Connect to pipe failed: %s\nIs VBoxVmService running?", LastErrorString());
return FALSE;
}
// The named pipe is busy. Let¡¯s wait for 2 seconds.
// The named pipe is busy. Let's wait for 2 seconds.
if (!WaitNamedPipe((LPSTR)"\\\\.\\pipe\\VBoxVmService", 2000))
{
sprintf_s(chBuf, chBufSize, "WaitNamedPipe failed: %s\n", LastErrorString());
Expand Down
Loading

0 comments on commit 55709cc

Please sign in to comment.