Skip to content

Commit ba082d0

Browse files
PlayFab SDK TeamPlayFab SDK Team
authored andcommitted
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#251121
2 parents 598dcd0 + 68d69af commit ba082d0

30 files changed

Lines changed: 51 additions & 19 deletions

AndroidStudioExample/app/packageMe.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
55
popd
66

77
cd target
8-
Copy-Item client-sdk-0.248.251107.jar -Destination ../../builds/client-sdk-0.248.251107.jar
8+
Copy-Item client-sdk-0.249.251121.jar -Destination ../../builds/client-sdk-0.249.251121.jar

AndroidStudioExample/app/packageMe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ mkdir -p ./builds
77
popd
88

99
cd target
10-
cp client-sdk-0.248.251107.jar ../../builds/client-sdk-0.248.251107.jar
10+
cp client-sdk-0.249.251121.jar ../../builds/client-sdk-0.249.251121.jar

AndroidStudioExample/app/src/main/java/com/playfab/PlayFabErrors.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -611,6 +611,7 @@ public static enum PlayFabErrorCode {
611611
CannotEnableAnonymousPlayerCreation(1611),
612612
ParentCustomerAccountNotFound(1612),
613613
AccountLinkedToABannedPlayer(1613),
614+
AzureSubscriptionNotEligibleForLinking(1614),
614615
MatchmakingEntityInvalid(2001),
615616
MatchmakingPlayerAttributesInvalid(2002),
616617
MatchmakingQueueNotFound(2016),

AndroidStudioExample/app/src/main/java/com/playfab/PlayFabMultiplayerModels.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2910,6 +2910,12 @@ public static class UpdateLobbyRequest {
29102910
* server-owned (must be 'Server') - Any server can set ownership. The useConnections property must be true.
29112911
*/
29122912
public EntityKey Owner;
2913+
/**
2914+
* A setting that controls whether only the lobby owner can send invites to join the lobby. When true, only the lobby owner
2915+
* can send invites. When false or not specified, any member can send invites. Will not modify current configuration if not
2916+
* specified. Restricted to client owned lobbies.
2917+
*/
2918+
public Boolean RestrictInvitesToLobbyOwner;
29132919
/**
29142920
* The public key-value pairs which allow queries to differentiate between lobbies. Optional. Sets or updates key-value
29152921
* pairs on the lobby for use with queries. Only the current lobby owner can set search data. New keys will be added with

AndroidStudioExample/app/src/main/java/com/playfab/PlayFabSettings.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
import com.playfab.PlayFabErrors.ErrorCallback;
1010

1111
public class PlayFabSettings {
12-
public static String SdkVersion = "0.248.251107";
12+
public static String SdkVersion = "0.249.251121";
1313
public static String BuildIdentifier = "adobuild_javasdk_8";
14-
public static String SdkVersionString = "JavaSDK-0.248.251107";
14+
public static String SdkVersionString = "JavaSDK-0.249.251121";
1515

1616
public static Map<String, String> RequestGetParams;
1717
static {

PlayFabClientSDK/packageMe.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
55
popd
66

77
cd target
8-
Copy-Item client-sdk-0.248.251107.jar -Destination ../../builds/client-sdk-0.248.251107.jar
8+
Copy-Item client-sdk-0.249.251121.jar -Destination ../../builds/client-sdk-0.249.251121.jar

PlayFabClientSDK/packageMe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ mkdir -p ./builds
77
popd
88

99
cd target
10-
cp client-sdk-0.248.251107.jar ../../builds/client-sdk-0.248.251107.jar
10+
cp client-sdk-0.249.251121.jar ../../builds/client-sdk-0.249.251121.jar

PlayFabClientSDK/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<!-- GAV & Meta -->
1515
<groupId>com.playfab</groupId>
1616
<artifactId>client-sdk</artifactId>
17-
<version>0.248.251107</version>
17+
<version>0.249.251121</version>
1818
<name>PlayFab Client API</name>
1919
<description>PlayFab is the unified backend platform for games — everything you need to build and operate your game, all in one place, so you can focus on creating and delivering a great player experience. </description>
2020
<url>https://docs.microsoft.com/gaming/playfab/</url>

PlayFabClientSDK/src/main/java/com/playfab/PlayFabErrors.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -611,6 +611,7 @@ public static enum PlayFabErrorCode {
611611
CannotEnableAnonymousPlayerCreation(1611),
612612
ParentCustomerAccountNotFound(1612),
613613
AccountLinkedToABannedPlayer(1613),
614+
AzureSubscriptionNotEligibleForLinking(1614),
614615
MatchmakingEntityInvalid(2001),
615616
MatchmakingPlayerAttributesInvalid(2002),
616617
MatchmakingQueueNotFound(2016),

PlayFabClientSDK/src/main/java/com/playfab/PlayFabMultiplayerModels.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2910,6 +2910,12 @@ public static class UpdateLobbyRequest {
29102910
* server-owned (must be 'Server') - Any server can set ownership. The useConnections property must be true.
29112911
*/
29122912
public EntityKey Owner;
2913+
/**
2914+
* A setting that controls whether only the lobby owner can send invites to join the lobby. When true, only the lobby owner
2915+
* can send invites. When false or not specified, any member can send invites. Will not modify current configuration if not
2916+
* specified. Restricted to client owned lobbies.
2917+
*/
2918+
public Boolean RestrictInvitesToLobbyOwner;
29132919
/**
29142920
* The public key-value pairs which allow queries to differentiate between lobbies. Optional. Sets or updates key-value
29152921
* pairs on the lobby for use with queries. Only the current lobby owner can set search data. New keys will be added with

0 commit comments

Comments
 (0)