From 5a3e33814eff7515059e8c0704ccde3f8c92e701 Mon Sep 17 00:00:00 2001 From: Eschenko_D Date: Tue, 18 May 2021 11:12:24 +0300 Subject: [PATCH] Release 1.2.5 --- CHANGELOG.md | 4 ++++ Editor/ConsentRequestParametersEditor.cs | 2 +- README.md | 2 +- Runtime/ConsentClient.cs | 2 ++ Runtime/MediationSettingsUI.cs | 3 ++- Runtime/UserConsent.cs | 2 +- package.json | 4 ++-- 7 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d85e83..1582914 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Clever Ads Solutions Unity Plugin Change Log +## [1.2.5] - 2021-04-06 +### Dependencies +- CleverAdsSolutions - [2.2.2](https://github.com/cleveradssolutions/CAS-Unity/releases) + ## [1.2.4] - 2021-04-06 ### Dependencies - CleverAdsSolutions - [2.1.4](https://github.com/cleveradssolutions/CAS-Unity/releases) diff --git a/Editor/ConsentRequestParametersEditor.cs b/Editor/ConsentRequestParametersEditor.cs index 1606a6f..9252fab 100644 --- a/Editor/ConsentRequestParametersEditor.cs +++ b/Editor/ConsentRequestParametersEditor.cs @@ -84,7 +84,7 @@ protected override void OnHeaderGUI() GUILayout.Label( "CleverAdsSolutions", HelpStyles.largeTitleStyle ); GUILayout.Label( "Consent", HelpStyles.largeTitleStyle, GUILayout.ExpandWidth( false ) ); EditorGUILayout.EndHorizontal(); - + EditorGUILayout.Space(); Utils.OnHeaderGUI( gitRepoName, allowedPackageUpdate, UserConsent.version, ref newCASVersion ); } diff --git a/README.md b/README.md index ef1cbb8..1c651fa 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Modify `Packages/manifest.json` to the following form: } ], "dependencies": { -"com.cleversolutions.ads.consent.unity": "https://github.com/cleveradssolutions/CAS-Unity-Consent.git#1.2.4" +"com.cleversolutions.ads.consent.unity": "https://github.com/cleveradssolutions/CAS-Unity-Consent.git#1.2.5" } } ``` diff --git a/Runtime/ConsentClient.cs b/Runtime/ConsentClient.cs index 5c298c5..00fe363 100644 --- a/Runtime/ConsentClient.cs +++ b/Runtime/ConsentClient.cs @@ -180,6 +180,8 @@ private static string GetNetworkTag( AdNetwork network ) case AdNetwork.Fyber: case AdNetwork.FairBid: return "Fy"; + case AdNetwork.Mintegral: + return "MB"; default: return string.Empty; } diff --git a/Runtime/MediationSettingsUI.cs b/Runtime/MediationSettingsUI.cs index 281dea1..698ff76 100644 --- a/Runtime/MediationSettingsUI.cs +++ b/Runtime/MediationSettingsUI.cs @@ -49,7 +49,8 @@ private IEnumerator Start() "https://www.mopub.com/en/legal/privacy", "https://www.tapjoy.com/legal/players/privacy-policy/", null, - "https://www.fyber.com/privacy-policy/" + "https://www.fyber.com/privacy-policy/", + "https://www.mintegral.com/en/privacy/" }; yield return null; diff --git a/Runtime/UserConsent.cs b/Runtime/UserConsent.cs index 5fcb090..d2344d9 100644 --- a/Runtime/UserConsent.cs +++ b/Runtime/UserConsent.cs @@ -5,7 +5,7 @@ namespace CAS.UserConsent { public static class UserConsent { - public const string version = "1.2.4"; + public const string version = "1.2.5"; /// /// User latest consent status values. diff --git a/package.json b/package.json index 0cc5c78..2899401 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "com.cleversolutions.ads.consent.unity", - "version": "1.2.4", + "version": "1.2.5", "displayName": "CleverAdsSolutions Consent", "description": "Clever Ads Solutions User consent Unity plugin.", "unity": "2017.4", "dependencies": { - "com.cleversolutions.ads.unity": "2.0.1" + "com.cleversolutions.ads.unity": "2.2.2" }, "author": { "name": "CleverAdsSolutions",