Skip to content
This repository has been archived by the owner on Jul 25, 2023. It is now read-only.

Commit

Permalink
Release 1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Str4tos committed May 18, 2021
1 parent 296061b commit 5a3e338
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Editor/ConsentRequestParametersEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
```
Expand Down
2 changes: 2 additions & 0 deletions Runtime/ConsentClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
3 changes: 2 additions & 1 deletion Runtime/MediationSettingsUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion Runtime/UserConsent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";

/// <summary>
/// User latest consent status values.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 5a3e338

Please sign in to comment.