Skip to content

Releases: indiesoftby/defold-yagames

0.14.0

30 Jul 10:32
Compare
Choose a tag to compare

The Yandex Games platform has changed the URL to their SDK. Now it is relative instead of absolute - /sdk.js.

For this reason, a new option sdk_url has been added to the extension, where you can specify the old URL to the SDK (for example:)

[yagames]
sdk_url = https://yandex.ru/games/sdk/v2

Read more: https://yandex.ru/dev/games/doc/ru/release-notes#17-iyulya-2024-g

0.13.0

29 Jul 18:56
Compare
Choose a tag to compare

What's Changed

  • Implemented Gameplay API.
  • Implemented Server Time API.

0.12.0

21 Jun 18:40
0f6cd93
Compare
Choose a tag to compare

What's Changed

  • Implemented product.getPriceCurrencyImage .
  • Implemented ysdk.isAvailableMethod.
  • Revised README, removed old info.

0.11.0

25 Apr 12:44
Compare
Choose a tag to compare

This version adds support for Defold 1.8.0. Also added new player profile function yagames.player_get_paying_status(). Improved the mock.lua module.

Removed deprecated functions to create RTB banners (use sticky ads).

0.10.0

11 Dec 16:01
Compare
Choose a tag to compare

This release implements the new remote config feature - https://yandex.ru/dev/games/doc/en/sdk/sdk-config

Usage example:

    local options = { defaultFlags = { test1 = "A" } } -- also, it can be `nil`
    yagames.flags_get(options, function(self, err, result)
        -- result is a table
    end)

0.9.1

21 Jul 22:27
Compare
Choose a tag to compare

This release implements the function ysdk.features.LoadingAPI?.ready(), which informs the SDK that the game has loaded and is ready to play.

0.9.0

07 Nov 20:28
Compare
Choose a tag to compare

Due to the changes to the dmJson API, it's an updated version of YaGames for use with the Defold 1.4.0+. More info on the Defold forum.

Changelog: 0.8.1...0.9.0

0.8.1

09 Oct 11:19
Compare
Choose a tag to compare

Native Cache support updated to be in line with the docs:

if the app is running on a platform that supports Native Cache and Native Cache is enabled in the app, we need to unregister all Service Workers for Native Cache to work correctly.

0.8.0

05 Oct 18:14
Compare
Choose a tag to compare

What's Changed

  • Sticky banners API in #14

Full Changelog: 0.7.6...0.8.0

Quick fix

30 Aug 10:58
Compare
Choose a tag to compare

Fix: event_on didn't work properly in the previous release.