From a4a69b1df554dd506939b3d1773d9c3f7c6daf84 Mon Sep 17 00:00:00 2001 From: Ondrej Rehacek Date: Thu, 7 Mar 2024 02:14:47 +0100 Subject: [PATCH 1/5] Update CHANGELOG.md --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 569edcb..1d57b6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. +## [0.2.0] - 2024-03-07 + +- Added Apple Game Center linking + + ## [0.1.0] - 2024-03-06 - Initial Release From 6733735b162f7865af14c58051d71bb19befce73 Mon Sep 17 00:00:00 2001 From: Ondrej Rehacek Date: Tue, 12 Mar 2024 12:02:38 +0100 Subject: [PATCH 2/5] URL Change for the API --- Assets/Stash/Scripts/Core/StashConstants.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Stash/Scripts/Core/StashConstants.cs b/Assets/Stash/Scripts/Core/StashConstants.cs index 476fdd8..a3ca450 100644 --- a/Assets/Stash/Scripts/Core/StashConstants.cs +++ b/Assets/Stash/Scripts/Core/StashConstants.cs @@ -2,10 +2,10 @@ namespace Stash.Core { public class StashConstants { - public const string APIRootURL = "https://api-rest-f57w5ea4ya-uc.a.run.app"; + public const string APIRootURL = "https://test-api.stash.gg/"; public const string TestRootURL = "https://stash.requestcatcher.com"; public const string LinkAccount = "/sdk/link_code/link"; public const string LnkGameCenter = "/sdk/link_code/link_game_center"; } -} \ No newline at end of file +} From a1777ee7a9a9ab818bd7fabe8ea77359bf97ddd3 Mon Sep 17 00:00:00 2001 From: Ondrej Rehacek Date: Tue, 12 Mar 2024 12:02:52 +0100 Subject: [PATCH 3/5] Update StashConstants.cs --- Assets/Stash/Scripts/Core/StashConstants.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Stash/Scripts/Core/StashConstants.cs b/Assets/Stash/Scripts/Core/StashConstants.cs index a3ca450..55d92de 100644 --- a/Assets/Stash/Scripts/Core/StashConstants.cs +++ b/Assets/Stash/Scripts/Core/StashConstants.cs @@ -2,7 +2,7 @@ namespace Stash.Core { public class StashConstants { - public const string APIRootURL = "https://test-api.stash.gg/"; + public const string APIRootURL = "https://test-api.stash.gg"; public const string TestRootURL = "https://stash.requestcatcher.com"; public const string LinkAccount = "/sdk/link_code/link"; public const string LnkGameCenter = "/sdk/link_code/link_game_center"; From 22c9e1fd4cf11f178e45942bf687f87699871350 Mon Sep 17 00:00:00 2001 From: Ondrej Rehacek Date: Tue, 12 Mar 2024 12:07:04 +0100 Subject: [PATCH 4/5] Update CHANGELOG.md --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d57b6c..6c92898 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. +## [0.3.0] - 2024-03-12 + +- Stash API URL changes + + ## [0.2.0] - 2024-03-07 - Added Apple Game Center linking From be09da64e3d9bc69a45e644aa4efb7e05e1f3358 Mon Sep 17 00:00:00 2001 From: Ondrej Rehacek Date: Mon, 25 Mar 2024 18:36:02 +0100 Subject: [PATCH 5/5] Update CHANGELOG.md --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c92898..2902f1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. + +## [0.4.0] - 2024-03-25 + +- Stash API payloads & URL changes. +- Added Google Play Games linking endpoint. +- StashClient no longer inherited from MonoBehaviour and added to the scene. +- Removed unused dependencies. +- Added Google Play Games to the sample. +- Sample now refreshes tokens before linking. +- Added conditional compilation for iOS/Android-specific code in the sample. + + ## [0.3.0] - 2024-03-12 - Stash API URL changes