diff --git a/CHANGELOG.md b/CHANGELOG.md index b4359bd..8356a23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.2] - 2019-09-11 +### Changed +- Stop using GD test url for SDK + ## [0.3.1] - 2019-09-04 ### Changed - Added rewarded ad support in cordova-ironsource diff --git a/package-lock.json b/package-lock.json index 662fe28..9ad00d3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@azerion/h5-ad-wrapper", - "version": "0.3.1", + "version": "0.3.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 64048ae..fa83a30 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@azerion/h5-ad-wrapper", "author": "Azerion", - "version": "0.3.1", + "version": "0.3.2", "description": "Advertisement provider wrapper, similar to @azerion/phaser-ads but not tied into Phaser :)", "contributors": [ { diff --git a/src/Providers/gamedistribution.ts b/src/Providers/gamedistribution.ts index 6bb5737..1cae4d4 100644 --- a/src/Providers/gamedistribution.ts +++ b/src/Providers/gamedistribution.ts @@ -17,7 +17,6 @@ export class GameDistribution implements IProvider { constructor(gameId: string) { this.areAdsEnabled() - ;(window as any).GD_OPTIONS = { gameId: gameId, advertisementSettings: { @@ -39,7 +38,7 @@ export class GameDistribution implements IProvider { } js = d.createElement(s) js.id = id - js.src = '//html5.api.gamedistribution.com/test/main.js' + js.src = '//html5.api.gamedistribution.com/main.min.js' if (fjs.parentNode) { fjs.parentNode.insertBefore(js, fjs) }