Skip to content

Commit

Permalink
Merge pull request #427 from OneSignal/release/3.0.0-beta.3
Browse files Browse the repository at this point in the history
Release 3.0.0-beta.3
  • Loading branch information
adamschlesinger authored Dec 18, 2021
2 parents 4a9cd22 + 9d694fa commit 8b61496
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 13 deletions.
6 changes: 4 additions & 2 deletions OneSignalExample/Assets/OneSignal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ 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).

## [Unreleased]
## [3.0.0-beta.3]
### Fixed
- Eliminated syntax only supported on Unity 2020 or above
- Global callbacks on Android are now correctly setup post `initWithContext`
- Properly push `LogLevel` and `AlertLevel` settings to native SDKs
- Added missing setter to override the detected language
- Added missing setter to override the detected language. Fixes [#416](https://github.com/OneSignal/OneSignal-Unity-SDK/issues/416)
- Add missing getters for permission and subscription states
### Changed
- Implemented missing `Notification` properties `additionalData` and `actionButtons`
Expand Down Expand Up @@ -76,7 +77,8 @@ If you run into any problems, please don’t hesitate to [open an issue](https:/
- If you are updating from a previous version of the OneSignal Unity SDK please follow the Unity Asset Store instructions in
the [README](https://github.com/OneSignal/OneSignal-Unity-SDK/README.md#unity-asset-store) to ensure a smooth transition.

[Unreleased]: https://github.com/OneSignal/OneSignal-Unity-SDK/compare/3.0.0-beta.2...HEAD
[Unreleased]: https://github.com/OneSignal/OneSignal-Unity-SDK/compare/3.0.0-beta.3...HEAD
[3.0.0-beta.3]: https://github.com/OneSignal/OneSignal-Unity-SDK/compare/3.0.0-beta.2...3.0.0-beta.3
[3.0.0-beta.2]: https://github.com/OneSignal/OneSignal-Unity-SDK/compare/3.0.0-beta.1...3.0.0-beta.2
[3.0.0-beta.1]: https://github.com/OneSignal/OneSignal-Unity-SDK/compare/2.14.6...3.0.0-beta.1
[2.14.6]: https://github.com/OneSignal/OneSignal-Unity-SDK/compare/2.14.5...2.14.6
Expand Down
2 changes: 1 addition & 1 deletion OneSignalExample/Assets/OneSignal/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0-beta.2
3.0.0-beta.3
4 changes: 2 additions & 2 deletions OneSignalExample/Packages/packages-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"depth": 0,
"source": "local",
"dependencies": {
"com.onesignal.unity.core": "3.0.0-beta.2"
"com.onesignal.unity.core": "3.0.0-beta.3"
}
},
"com.onesignal.unity.core": {
Expand All @@ -19,7 +19,7 @@
"depth": 0,
"source": "local",
"dependencies": {
"com.onesignal.unity.core": "3.0.0-beta.2"
"com.onesignal.unity.core": "3.0.0-beta.3"
}
},
"com.unity.ext.nunit": {
Expand Down
2 changes: 1 addition & 1 deletion OneSignalExample/ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ PlayerSettings:
16:10: 1
16:9: 1
Others: 1
bundleVersion: 3.0.0-beta.2
bundleVersion: 3.0.0-beta.3
preloadedAssets: []
metroInputSource: 0
wsaTransparentSwapchain: 0
Expand Down
4 changes: 2 additions & 2 deletions com.onesignal.unity.android/Runtime/OneSignalAndroid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,15 @@ public override LogLevel LogLevel {
get => _logLevel;
set {
_logLevel = value;
_sdkClass.CallStatic("setLogLevel", _logLevel, _alertLevel);
_sdkClass.CallStatic("setLogLevel", (int) _logLevel, (int) _alertLevel);
}
}

public override LogLevel AlertLevel {
get => _alertLevel;
set {
_alertLevel = value;
_sdkClass.CallStatic("setLogLevel", _logLevel, _alertLevel);
_sdkClass.CallStatic("setLogLevel", (int) _logLevel, (int) _alertLevel);
}
}

Expand Down
4 changes: 2 additions & 2 deletions com.onesignal.unity.android/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "com.onesignal.unity.android",
"displayName": "OneSignal Unity SDK - Android",
"version": "3.0.0-beta.2",
"version": "3.0.0-beta.3",
"unity": "2018.4",
"description": "OneSignal is the market leader in customer engagement, powering mobile push, web push, email, and in-app messages.",
"dependencies": {
"com.onesignal.unity.core": "3.0.0-beta.2"
"com.onesignal.unity.core": "3.0.0-beta.3"
},
"keywords": [
"push-notifications",
Expand Down
2 changes: 1 addition & 1 deletion com.onesignal.unity.core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.onesignal.unity.core",
"displayName": "OneSignal Unity SDK - Core",
"version": "3.0.0-beta.2",
"version": "3.0.0-beta.3",
"unity": "2018.4",
"description": "OneSignal is the market leader in customer engagement, powering mobile push, web push, email, and in-app messages.",
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions com.onesignal.unity.ios/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "com.onesignal.unity.ios",
"displayName": "OneSignal Unity SDK - iOS",
"version": "3.0.0-beta.2",
"version": "3.0.0-beta.3",
"unity": "2018.4",
"description": "OneSignal is the market leader in customer engagement, powering mobile push, web push, email, and in-app messages.",
"dependencies": {
"com.onesignal.unity.core": "3.0.0-beta.2"
"com.onesignal.unity.core": "3.0.0-beta.3"
},
"keywords": [
"push-notifications",
Expand Down

0 comments on commit 8b61496

Please sign in to comment.