Skip to content

Commit

Permalink
updated version to ev9
Browse files Browse the repository at this point in the history
updated protocol version to 24
  • Loading branch information
Jack authored and Jack committed Feb 29, 2020
1 parent aa23dac commit ffd0870
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ALVR-common/packet_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ enum ALVR_PACKET_TYPE {
};

enum {
ALVR_PROTOCOL_VERSION = 23
ALVR_PROTOCOL_VERSION = 24
};

enum ALVR_CODEC {
Expand Down
2 changes: 1 addition & 1 deletion ALVR/HelloListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class HelloListener
{
// Use different port than 9944 used by server.
public const int PORT = 9943;
public const int ALVR_PROTOCOL_VERSION = 23;
public const int ALVR_PROTOCOL_VERSION = 24;
public const int ALVR_PACKET_TYPE_HELLO_MESSAGE = 1;
public const byte ALVR_DEVICE_TYPE_OCULUS_MOBILE = 1;
public const byte ALVR_DEVICE_TYPE_DAYDREAM = 2;
Expand Down
2 changes: 1 addition & 1 deletion ALVR/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("2.4.0-experimental v8")]
[assembly: AssemblyInformationalVersion("2.4.0-experimental v9")]
2 changes: 1 addition & 1 deletion alvr_server/resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#define APP_VERSION_MAJOR 2
#define APP_VERSION_MINOR 4
#define APP_VERSION_PATCH 0
#define APP_VERSION_SUFFIX "-experimental v8"
#define APP_VERSION_SUFFIX "-experimental v9"
#define APP_VERSION_STRING__(major, minor, patch, suffix) #major "." #minor "." #patch "" suffix
#define APP_VERSION_STRING_(major, minor, patch, suffix) APP_VERSION_STRING__(major, minor, patch, suffix)
#define APP_VERSION_STRING APP_VERSION_STRING_(APP_VERSION_MAJOR, APP_VERSION_MINOR, APP_VERSION_PATCH, APP_VERSION_SUFFIX)
Expand Down

0 comments on commit ffd0870

Please sign in to comment.