Skip to content

Releases: potatojam/defold-ads-wrapper

Add IronSource mediation

01 Aug 17:34
ae57960
Compare
Choose a tag to compare
  • IronSource mediation added as one of the services

1.2.4 Listener for GameDistribution

09 May 16:39
Compare
Choose a tag to compare

You can set a listener that will receive all messages from GD

1.2.3 More banner options for GameDistribution banners

05 May 07:48
Compare
Choose a tag to compare

Now it is possible not to add a banner wrapper

1.2.2 Display property for GameDistribution banners

04 May 14:02
Compare
Choose a tag to compare

You can set the display property when displaying banners

1.2.1 Multiple banners for GameDistribution

04 May 10:51
Compare
Choose a tag to compare

Now you can show multiple banners at the same time.

1.2.0 GameDistribution network and new types

14 Apr 15:37
Compare
Choose a tag to compare

Added support for GameDistribution
It use next extension: https://github.com/GameDistribution/gd-defold

The types for function parameters have been updated.

1.1.3 Removed sitelock from Yandex network

08 Mar 14:07
Compare
Choose a tag to compare

Removed automatic sitelock

1.1.2 Yandex CSS styles

05 Jan 16:13
Compare
Choose a tag to compare

Added the ability to set css styles when creating, showing and hiding banners.

local yandex_net_id = ads_wrapper.register_network(yandex, {
    [ads_wrapper.T_BANNER] = {
        id = "[your id here]",
        size = {width = "100vw", height = "56vh"},
        position = {x = "0px", y = "0px"},
        css_styles = "position: static;align-items: center;justify-content: center;overflow: hidden;display: flex;",
        css_hide = "position: static;align-items: center;justify-content: center;overflow: hidden;display: none;",
        css_show = "position: relative;align-items: center;justify-content: center;overflow: hidden;display: flex;"
    }
})

1.1.1 Added the ability to cancel the execution of the queue.

20 Dec 15:05
Compare
Choose a tag to compare

Added ads_wrapper.cancel(id) function.

The following functions return id to cancel:

  • ads_wrapper.load_rewarded
  • ads_wrapper.show_rewarded
  • ads_wrapper.load_interstitial
  • ads_wrapper.show_interstitial
  • ads_wrapper.load_banner
  • ads_wrapper.show_banner

1.1.0 Yandex Mobile Ads network

06 Dec 17:13
Compare
Choose a tag to compare

Added support for Yandex Mobile Ads SDK
It use next extension: https://github.com/osov/defold-yandex-sdk-ads
Thank you @osov for extension!