Skip to content

Commit

Permalink
3.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Stéphane JAIS committed Oct 6, 2023
1 parent cbd75f8 commit 2e07de0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wonderpush-cordova-sdk",
"version": "3.2.8",
"version": "3.2.9",
"description": "Mobile push notification delivery with the WonderPush service. The WonderPush Cordova SDK is compatible with iOS and Android.",
"typings": "types/index.d.ts",
"main": "www/WonderPush.js",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<plugin id="wonderpush-cordova-sdk" version="3.2.8" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<plugin id="wonderpush-cordova-sdk" version="3.2.9" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>WonderPush</name>
<description>Advanced push notification service for mobile applications and Websites. High volume, fast delivery and full-featured starting €1/month.</description>
<author>WonderPush</author>
Expand Down
2 changes: 1 addition & 1 deletion src/android/WonderPushPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class WonderPushPlugin extends CordovaPlugin implements Delegate.SubDeleg

@Override
protected void pluginInitialize() {
WonderPush.setIntegrator("wonderpush-cordova-sdk-3.2.8");
WonderPush.setIntegrator("wonderpush-cordova-sdk-3.2.9");

// Forward notification clicks and data notifications receipt
LocalBroadcastManager.getInstance(cordova.getContext()).registerReceiver(new BroadcastReceiver() {
Expand Down
2 changes: 1 addition & 1 deletion src/ios/WonderPushPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ - (void)pluginInitialize {
[WonderPush setupDelegateForUserNotificationCenter];
}

[WonderPush setIntegrator:@"wonderpush-cordova-sdk-3.2.8"];
[WonderPush setIntegrator:@"wonderpush-cordova-sdk-3.2.9"];


// Here we have no access to launchOptions from application:didFinishLaunchingWithOptions:,
Expand Down

0 comments on commit 2e07de0

Please sign in to comment.