5 Commits

Author SHA1 Message Date
recroom2016
dc949325a1 Update changelog.txt 2022-02-27 02:45:34 -05:00
recroom2016
88b37a9bbc Update changelog.txt 2022-02-27 02:06:09 -05:00
recroom2016
3a8c07098d Update changelog.txt 2022-02-25 20:55:19 -05:00
recroom2016
ada0777275 patch v0.4.1 2022-02-25 20:54:56 -05:00
recroom2016
21706a82fb Update version.txt 2022-02-25 20:53:01 -05:00
4 changed files with 10 additions and 3 deletions

View File

@@ -1,3 +1,10 @@
Patch v0.4.2:
-Fixed the issue with only hosts being able to start the games, now everyone is a host!
-Added basic charades cards, now charades is possible!
Patch v0.4.1:
-Fixed the room creation feature
Third public release of OpenRec, and probably the biggest update to date. Third public release of OpenRec, and probably the biggest update to date.
Supports: Supports:

View File

@@ -1 +1 @@
0.4.0 0.4.1

View File

@@ -74,7 +74,7 @@ namespace gamesessions2018
RoomId = createRequest.ActivityLevelId, RoomId = createRequest.ActivityLevelId,
RecRoomId = null, RecRoomId = null,
EventId = null, EventId = null,
CreatorPlayerId = 1243409L, CreatorPlayerId = (long?)APIServer.CachedPlayerID,
Name = "Custom Room", Name = "Custom Room",
ActivityLevelId = createRequest.ActivityLevelId, ActivityLevelId = createRequest.ActivityLevelId,
Private = false, Private = false,

View File

@@ -241,7 +241,7 @@ namespace start
} }
} }
public static string version = "0.4.0"; public static string version = "0.4.1";
} }
} }