Skip to content

Commit

Permalink
Updated from pipeline, Version : 25.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
AccelByte-Build committed Jun 30, 2024
1 parent f5ede07 commit f80bee9
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .variables
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export LEVEL=CRITICAL
export REPO_NAME=justice-unreal-sdk-plugin
export WORKDIR=/tmp/pipelines/7027580338/1319821720/
export COMMIT_HASH=1f023f3896a54342c65a833389ac63aad67eabdb
export GIT_HASH=1f023f3896a54342c65a833389ac63aad67eabdb
export VERSION=25.5.1
export REVISION_ID=25.5.1
export WORKDIR=/tmp/pipelines/7225441560/1354539718/
export COMMIT_HASH=3d2e9344d07b9f1cf84f8be3b604360938db7a81
export GIT_HASH=3d2e9344d07b9f1cf84f8be3b604360938db7a81
export VERSION=25.5.2
export REVISION_ID=25.5.2
export [email protected]
export COMMIT_MESSAGE_BASE64='Y2hvcmUocmVsZWFzZSk6IDI1LjUuMSAtIGNvbW1pdGVkIGFuZCB0YWdnZWQgYnkgSmVua2lucwo='
export COMMIT_MESSAGE_BASE64='Y2hvcmUocmVsZWFzZSk6IDI1LjUuMiAtIGNvbW1pdGVkIGFuZCB0YWdnZWQgYnkgSmVua2lucwo='
4 changes: 2 additions & 2 deletions AccelByteUe4Sdk.uplugin
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"FileVersion": 3,
"Version": 69,
"VersionName": "25.5.1",
"Version": 70,
"VersionName": "25.5.2",
"FriendlyName": "AccelByte Unreal Engine SDK",
"Description": "Official AccelByte SDK for Unreal Engine 4",
"Category": "Online Platform",
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [25.5.2](https://bitbucket.org/accelbyte/justice-unreal-sdk-plugin/branches/compare/25.5.2%0D25.5.1) (2024-06-30)


### Features

* **IAM:** support google login ([c1bb77a](https://bitbucket.org/accelbyte/justice-unreal-sdk-plugin/commits/c1bb77af1ac1311f3a8902674be5d78a7cddab5e))


### Bug Fixes

* missing IAM service URL in ServerOAuth API ([ddfcff5](https://bitbucket.org/accelbyte/justice-unreal-sdk-plugin/commits/ddfcff557ef72a98a3f96f431349cab7a449a847))

### [25.5.1](https://bitbucket.org/accelbyte/justice-unreal-sdk-plugin/branches/compare/25.5.1%0D25.5.0) (2024-06-05)


Expand Down
2 changes: 2 additions & 0 deletions Source/AccelByteUe4Sdk/Private/Core/AccelByteUtilities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,8 @@ FString FAccelByteUtilities::GetPlatformString(EAccelBytePlatformType Platform)
return "live";
case EAccelBytePlatformType::Google:
return "google";
case EAccelBytePlatformType::GooglePlayGames:
return "googleplaygames";
case EAccelBytePlatformType::Apple:
return "apple";
case EAccelBytePlatformType::Facebook:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ FAccelByteTaskWPtr ServerOauth2::LoginWithClientCredentials(FVoidHandler const&
{
OnError.ExecuteIfBound(ErrorCode, ErrorMessage);
})
, TEXT("")
, FRegistry::ServerSettings.IamServerUrl
, TMap<FString, FString>{ { TEXT("x-ab-dsid"), DSID } });
}

Expand Down
1 change: 1 addition & 0 deletions Source/AccelByteUe4Sdk/Public/Models/AccelByteUserModels.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ enum class EAccelBytePlatformType : uint8
PSPC,
Live,
Google,
GooglePlayGames,
Apple,
Facebook,
Android,
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "25.5.1"
"version": "25.5.2"
}

0 comments on commit f80bee9

Please sign in to comment.