Skip to content

Releases: stashgg/stash-unity

Stash Unity 0.9.4

27 Feb 23:09
Compare
Choose a tag to compare

[0.9.4] - 2025-02-28

  • Added GetLoyaltyUrl to StashLauncher.
//Get the loyalty URL from Stash API and open it in the browser. Requires playerID & auth token.

 try
 {
    LoyaltyUrlResponse loyaltyUrl = await StashLauncher.GetLoyaltyUrl(InternalPlayerId, IdToken);
    Application.OpenURL(loyaltyUrl.url);
 }
 catch (StashRequestError e)
 {
    Debug.LogError(e.Message);
 }

Stash Unity 0.9.3

04 Feb 13:16
b813bb1
Compare
Choose a tag to compare

[0.9.3] - 2025-02-04

  • Added STASH_MID environment variable to the request headers to identify launcher instance. (Windows, Mac, Editor Only)

Stash Unity 0.9.2

29 Oct 13:25
Compare
Choose a tag to compare

[0.9.2] - 2024-10-29

  • Added /sdk/launcher/payment/generate_add_to_cart_url for launcher checkout.
  • StashClient Refactoring

Stash Unity 0.9.1

16 Oct 20:47
Compare
Choose a tag to compare

[0.9.1] - 2024-10-16

  • Added /sdk/launcher/payment/generate_add_to_cart_url for launcher checkout.

Stash Unity 0.9.0

19 Aug 17:41
Compare
Choose a tag to compare

[0.9.0] - 2024-08-19

  • Added the following device and app build information to Stash API requests:
x-stash-unity-platform
x-stash-unity-runtime
x-stash-unity-build-guid
x-stash-unity-app-version
x-stash-unity-device-os
x-stash-unity-device-model
x-stash-unity-device-type
x-stash-unity-editor

Stash Unity 0.8.0

24 Jul 09:47
Compare
Choose a tag to compare

[0.8.0] - 2024-07-24

  • Added new custom login for Facebook

Stash Unity 0.8.0 - Patched

29 Jul 15:23
Compare
Choose a tag to compare
Pre-release

Patched Apple custom login.

Stash Unity 0.7.0

07 Jul 20:38
Compare
Choose a tag to compare

[0.7.0] - 2024-07-07

  • Added new custom login for Apple Game Center and Google Play Games.

Linking game accounts to Stash Web Shop is now split into two separate classes StashLink & StashCustomLogin.
Please use the appropriate class for your web shop setup. StashLink is used for web shops with Stash Accounts and 'StashCustomLogin` is used for web shops with a custom auth directly using deep-link or QR code.

Stash Unity 0.6.0

10 Jun 18:25
Compare
Choose a tag to compare

[0.6.0] - 2024-06-10

  • Added ability to specify user's avatar while using custom login provider. (/sdk/custom_login/approve_with_jwt)

Stash Unity 0.5.0

27 May 21:32
Compare
Choose a tag to compare

[0.5.0] - 2024-05-27

  • Added custom login (For use with a bespoke login provider.)