Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#221010
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Oct 11, 2022
2 parents 4470433 + 6e2a702 commit 99f3d10
Show file tree
Hide file tree
Showing 20 changed files with 74 additions and 38 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,18 @@ static void PlayFabServices()
PlayFabEditorPrefsSO.Instance.PanelIsShown = true;
}

[MenuItem("Window/PlayFab/Forum")]
static void PlayFabForums()
{
Application.OpenURL("https://community.playfab.com/index.html");
}

[MenuItem("Window/PlayFab/Provide Feedback")]
static void PlayFabFeedback()
{
Application.OpenURL("https://community.playfab.com/index.html");
}

[InitializeOnLoad]
public static class Startup
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
namespace PlayFab.PfEditor { public static partial class PlayFabEditorHelper { public static string EDEX_VERSION = "2.151.220926"; } }
namespace PlayFab.PfEditor { public static partial class PlayFabEditorHelper { public static string EDEX_VERSION = "2.152.221010"; } }
10 changes: 2 additions & 8 deletions ExampleMacProject/Assets/PlayFabSDK/Admin/PlayFabAdminModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2394,6 +2394,8 @@ public enum GenericErrorCodes
AutomationRuleLimitExceeded,
InvalidGooglePlayGamesServerAuthCode,
StorageAccountNotFound,
PlayStreamConnectionFailed,
InvalidEventContents,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -5976,10 +5978,6 @@ public class SetPublisherDataResult : PlayFabResultCommon
[Serializable]
public class SetTitleDataAndOverridesRequest : PlayFabRequestCommon
{
/// <summary>
/// The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.).
/// </summary>
public Dictionary<string,string> CustomTags;
/// <summary>
/// List of titleData key-value pairs to set/delete. Use an empty value to delete an existing key; use a non-empty value to
/// create/update a key.
Expand All @@ -6006,10 +6004,6 @@ public class SetTitleDataAndOverridesResult : PlayFabResultCommon
[Serializable]
public class SetTitleDataRequest : PlayFabRequestCommon
{
/// <summary>
/// The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.).
/// </summary>
public Dictionary<string,string> CustomTags;
/// <summary>
/// key we want to set a value on (note, this is additive - will only replace an existing key's value if they are the same
/// name.) Keys are trimmed of whitespace. Keys may not begin with the '!' character.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1872,7 +1872,7 @@ public class GetCharacterLeaderboardRequest : PlayFabRequestCommon
/// <summary>
/// Optional character type on which to filter the leaderboard entries.
/// </summary>
[Obsolete("No longer available", false)]
[Obsolete("No longer available", true)]
public string CharacterType;
/// <summary>
/// Maximum number of entries to retrieve. Default 10, maximum 100.
Expand Down Expand Up @@ -2109,7 +2109,7 @@ public class GetLeaderboardAroundCharacterRequest : PlayFabRequestCommon
/// <summary>
/// Optional character type on which to filter the leaderboard entries.
/// </summary>
[Obsolete("No longer available", false)]
[Obsolete("No longer available", true)]
public string CharacterType;
/// <summary>
/// Maximum number of entries to retrieve. Default 10, maximum 100.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2285,7 +2285,7 @@ public class SearchItemsRequest : PlayFabRequestCommon
/// </summary>
public string ContinuationToken;
/// <summary>
/// Number of items to retrieve. Maximum page size is 225. Default value is 10.
/// Number of items to retrieve. Maximum page size is 50. Default value is 10.
/// </summary>
public int Count;
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1965,6 +1965,8 @@ public enum GenericErrorCodes
AutomationRuleLimitExceeded,
InvalidGooglePlayGamesServerAuthCode,
StorageAccountNotFound,
PlayStreamConnectionFailed,
InvalidEventContents,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -5773,10 +5775,6 @@ public class SetPublisherDataResult : PlayFabResultCommon
[Serializable]
public class SetTitleDataRequest : PlayFabRequestCommon
{
/// <summary>
/// The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.).
/// </summary>
public Dictionary<string,string> CustomTags;
/// <summary>
/// key we want to set a value on (note, this is additive - will only replace an existing key's value if they are the same
/// name.) Keys are trimmed of whitespace. Keys may not begin with the '!' character.
Expand Down
12 changes: 12 additions & 0 deletions ExampleMacProject/Assets/PlayFabSDK/Shared/Editor/PlayFabHelp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,17 @@ private static void Dashboard()
{
Application.OpenURL("https://developer.playfab.com/");
}

[MenuItem("PlayFab/Forum")]
private static void Forum()
{
Application.OpenURL("https://community.playfab.com/index.html");
}

[MenuItem("PlayFab/Provide Feedback")]
private static void Feedback()
{
Application.OpenURL("https://playfab.com/contact/");
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,8 @@ public enum PlayFabErrorCode
AutomationRuleLimitExceeded = 1544,
InvalidGooglePlayGamesServerAuthCode = 1545,
StorageAccountNotFound = 1546,
PlayStreamConnectionFailed = 1547,
InvalidEventContents = 1548,
MatchmakingEntityInvalid = 2001,
MatchmakingPlayerAttributesInvalid = 2002,
MatchmakingQueueNotFound = 2016,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ static PlayFabSettings() { }
/// </summary>
public static readonly PlayFabAuthenticationContext staticPlayer = new PlayFabAuthenticationContext();

public const string SdkVersion = "2.151.220926";
public const string BuildIdentifier = "adobuild_unitysdk_167";
public const string VersionString = "UnitySDK-2.151.220926";
public const string SdkVersion = "2.152.221010";
public const string BuildIdentifier = "adobuild_unitybeta_167";
public const string VersionString = "UnitySDK-2.152.221010";

public const string DefaultPlayFabApiUrl = "playfabapi.com";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,18 @@ static void PlayFabServices()
PlayFabEditorPrefsSO.Instance.PanelIsShown = true;
}

[MenuItem("Window/PlayFab/Forum")]
static void PlayFabForums()
{
Application.OpenURL("https://community.playfab.com/index.html");
}

[MenuItem("Window/PlayFab/Provide Feedback")]
static void PlayFabFeedback()
{
Application.OpenURL("https://community.playfab.com/index.html");
}

[InitializeOnLoad]
public static class Startup
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
namespace PlayFab.PfEditor { public static partial class PlayFabEditorHelper { public static string EDEX_VERSION = "2.151.220926"; } }
namespace PlayFab.PfEditor { public static partial class PlayFabEditorHelper { public static string EDEX_VERSION = "2.152.221010"; } }
10 changes: 2 additions & 8 deletions ExampleTestProject/Assets/PlayFabSDK/Admin/PlayFabAdminModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2394,6 +2394,8 @@ public enum GenericErrorCodes
AutomationRuleLimitExceeded,
InvalidGooglePlayGamesServerAuthCode,
StorageAccountNotFound,
PlayStreamConnectionFailed,
InvalidEventContents,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -5976,10 +5978,6 @@ public class SetPublisherDataResult : PlayFabResultCommon
[Serializable]
public class SetTitleDataAndOverridesRequest : PlayFabRequestCommon
{
/// <summary>
/// The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.).
/// </summary>
public Dictionary<string,string> CustomTags;
/// <summary>
/// List of titleData key-value pairs to set/delete. Use an empty value to delete an existing key; use a non-empty value to
/// create/update a key.
Expand All @@ -6006,10 +6004,6 @@ public class SetTitleDataAndOverridesResult : PlayFabResultCommon
[Serializable]
public class SetTitleDataRequest : PlayFabRequestCommon
{
/// <summary>
/// The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.).
/// </summary>
public Dictionary<string,string> CustomTags;
/// <summary>
/// key we want to set a value on (note, this is additive - will only replace an existing key's value if they are the same
/// name.) Keys are trimmed of whitespace. Keys may not begin with the '!' character.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1872,7 +1872,7 @@ public class GetCharacterLeaderboardRequest : PlayFabRequestCommon
/// <summary>
/// Optional character type on which to filter the leaderboard entries.
/// </summary>
[Obsolete("No longer available", false)]
[Obsolete("No longer available", true)]
public string CharacterType;
/// <summary>
/// Maximum number of entries to retrieve. Default 10, maximum 100.
Expand Down Expand Up @@ -2109,7 +2109,7 @@ public class GetLeaderboardAroundCharacterRequest : PlayFabRequestCommon
/// <summary>
/// Optional character type on which to filter the leaderboard entries.
/// </summary>
[Obsolete("No longer available", false)]
[Obsolete("No longer available", true)]
public string CharacterType;
/// <summary>
/// Maximum number of entries to retrieve. Default 10, maximum 100.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2285,7 +2285,7 @@ public class SearchItemsRequest : PlayFabRequestCommon
/// </summary>
public string ContinuationToken;
/// <summary>
/// Number of items to retrieve. Maximum page size is 225. Default value is 10.
/// Number of items to retrieve. Maximum page size is 50. Default value is 10.
/// </summary>
public int Count;
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1965,6 +1965,8 @@ public enum GenericErrorCodes
AutomationRuleLimitExceeded,
InvalidGooglePlayGamesServerAuthCode,
StorageAccountNotFound,
PlayStreamConnectionFailed,
InvalidEventContents,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -5773,10 +5775,6 @@ public class SetPublisherDataResult : PlayFabResultCommon
[Serializable]
public class SetTitleDataRequest : PlayFabRequestCommon
{
/// <summary>
/// The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.).
/// </summary>
public Dictionary<string,string> CustomTags;
/// <summary>
/// key we want to set a value on (note, this is additive - will only replace an existing key's value if they are the same
/// name.) Keys are trimmed of whitespace. Keys may not begin with the '!' character.
Expand Down
12 changes: 12 additions & 0 deletions ExampleTestProject/Assets/PlayFabSDK/Shared/Editor/PlayFabHelp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,17 @@ private static void Dashboard()
{
Application.OpenURL("https://developer.playfab.com/");
}

[MenuItem("PlayFab/Forum")]
private static void Forum()
{
Application.OpenURL("https://community.playfab.com/index.html");
}

[MenuItem("PlayFab/Provide Feedback")]
private static void Feedback()
{
Application.OpenURL("https://playfab.com/contact/");
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,8 @@ public enum PlayFabErrorCode
AutomationRuleLimitExceeded = 1544,
InvalidGooglePlayGamesServerAuthCode = 1545,
StorageAccountNotFound = 1546,
PlayStreamConnectionFailed = 1547,
InvalidEventContents = 1548,
MatchmakingEntityInvalid = 2001,
MatchmakingPlayerAttributesInvalid = 2002,
MatchmakingQueueNotFound = 2016,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ static PlayFabSettings() { }
/// </summary>
public static readonly PlayFabAuthenticationContext staticPlayer = new PlayFabAuthenticationContext();

public const string SdkVersion = "2.151.220926";
public const string BuildIdentifier = "adobuild_unitysdk_167";
public const string VersionString = "UnitySDK-2.151.220926";
public const string SdkVersion = "2.152.221010";
public const string BuildIdentifier = "adobuild_unitybeta_167";
public const string VersionString = "UnitySDK-2.152.221010";

public const string DefaultPlayFabApiUrl = "playfabapi.com";

Expand Down
Binary file modified Packages/PlayFabEditorExtensions.unitypackage
Binary file not shown.
Binary file modified Packages/UnitySDK.unitypackage
Binary file not shown.

0 comments on commit 99f3d10

Please sign in to comment.