Skip to content

Releases: indiesoftby/defold-yagames

Quick fix

30 Aug 10:58
Compare
Choose a tag to compare

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

0.7.5

21 Aug 18:49
Compare
Choose a tag to compare

What's New

  • Added functions for the events: yagames.event_on(event_name, listener), yagames.event_dispatch(event_name) (docs)

0.7.4

01 Apr 21:55
Compare
Choose a tag to compare

What's New

0.7.3

28 Mar 15:38
Compare
Choose a tag to compare

What's New

0.7.2

28 Mar 14:24
Compare
Choose a tag to compare

The release adds a function to get player's personal info. Use it to check the auth mode:

yagames.player_init({scopes = false, signed = true}, function(self, err)
    if not err then
        local personal_info = yagames.player_get_personal_info()
        if personal_info.mode == "lite" then
            -- do something!
        end
    end
end)

0.7.1

24 Jan 08:59
Compare
Choose a tag to compare

What's Changed

  • Fixed error when recalling yagames.init by @sergeysinyavsky in #10
  • Added RTB banner option "append_to_id"

New Contributors

Full Changelog: 0.7.0...0.7.1