Skip to content

Commit

Permalink
Pushwoosh Cordova Plugin 8.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins CI committed Jul 23, 2021
1 parent e86ee77 commit 1e6e4f6
Show file tree
Hide file tree
Showing 19 changed files with 35 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ Cross-Platform push notifications by Pushwoosh for Cordova / PhoneGap
Using npm (requires cordova 7.0+):

```
cordova plugin add pushwoosh-cordova-plugin@8.1.2
cordova plugin add pushwoosh-cordova-plugin@8.2.0
```

Using git:

```
cordova plugin add https://github.com/Pushwoosh/pushwoosh-phonegap-plugin.git#8.1.2
cordova plugin add https://github.com/Pushwoosh/pushwoosh-phonegap-plugin.git#8.2.0
```

#### Phonegap

Using npm (requires phonegap 7.1+):

```
cordova plugin add pushwoosh-cordova-plugin@8.1.2
cordova plugin add pushwoosh-cordova-plugin@8.2.0
```

### Guide
Expand Down
2 changes: 1 addition & 1 deletion README_PGB.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Cross-Platform push notifications by Pushwoosh for PhoneGap
Using npm (requires cordova 5.0+):

```
cordova plugin add pushwoosh-pgb-plugin@8.1.2
cordova plugin add pushwoosh-pgb-plugin@8.2.0
```

### Guide
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pushwoosh-cordova-plugin",
"version": "8.1.2",
"version": "8.2.0",
"description": "\n This plugin allows you to send and receive push notifications. Powered by Pushwoosh (www.pushwoosh.com).\n ",
"cordova": {
"id": "pushwoosh-cordova-plugin",
Expand Down
16 changes: 8 additions & 8 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="pushwoosh-cordova-plugin" version="8.1.2">
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="pushwoosh-cordova-plugin" version="8.2.0">

<name>Pushwoosh</name>

Expand Down Expand Up @@ -65,13 +65,13 @@
<framework src="com.android.support.constraint:constraint-layout:1.0.2" />
<framework src="com.github.bumptech.glide:glide:4.7.1" />
<framework src="org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.60" />
<framework src="com.pushwoosh:pushwoosh:6.2.8"/>
<framework src="com.pushwoosh:pushwoosh-amazon:6.2.8"/>
<framework src="com.pushwoosh:pushwoosh-firebase:6.2.8"/>
<framework src="com.pushwoosh:pushwoosh-badge:6.2.8"/>
<framework src="com.pushwoosh:pushwoosh-inbox:6.2.8"/>
<framework src="com.pushwoosh:pushwoosh-inbox-ui:6.2.8"/>
<framework src="com.pushwoosh:pushwoosh-huawei:6.2.8"/>
<framework src="com.pushwoosh:pushwoosh:6.3.0"/>
<framework src="com.pushwoosh:pushwoosh-amazon:6.3.0"/>
<framework src="com.pushwoosh:pushwoosh-firebase:6.3.0"/>
<framework src="com.pushwoosh:pushwoosh-badge:6.3.0"/>
<framework src="com.pushwoosh:pushwoosh-inbox:6.3.0"/>
<framework src="com.pushwoosh:pushwoosh-inbox-ui:6.3.0"/>
<framework src="com.pushwoosh:pushwoosh-huawei:6.3.0"/>
</platform>

<!-- ios -->
Expand Down
12 changes: 11 additions & 1 deletion src/ios/Pushwoosh.framework/Versions/A/Headers/Pushwoosh.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#endif

#define PUSHWOOSH_VERSION @"6.2.0"
#define PUSHWOOSH_VERSION @"6.2.4"


@class Pushwoosh, PWMessage, PWNotificationCenterDelegateProxy;
Expand Down Expand Up @@ -430,6 +430,16 @@ Unregisters from push notifications.
*/
- (void)mergeUserId:(NSString *)oldUserId to:(NSString *)newUserId doMerge:(BOOL)doMerge completion:(void (^)(NSError *error))completion;

/**
Starts communication with Pushwoosh server.
*/
- (void)startServerCommunication;

/**
Stops communication with Pushwoosh server.
*/
- (void)stopServerCommunication;

/**
Process URL of some deep link. Primarly used for register test devices.
Expand Down
Binary file modified src/ios/Pushwoosh.framework/Versions/A/libPushwoosh.a
Binary file not shown.
Binary file modified src/ios/PushwooshInboxBundle.bundle/Info.plist
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ typedef NSString * (^PWIDateFormatterBlock)(NSDate *date, NSObject *owner);
//! The default text color
@property (nonatomic, readwrite) UIColor *defaultTextColor;

//! The text color of a read notification
@property (nonatomic, readwrite) UIColor *readTextColor;

//! The default background color
@property (nonatomic, readwrite) UIColor *backgroundColor;

Expand Down Expand Up @@ -53,6 +56,9 @@ typedef NSString * (^PWIDateFormatterBlock)(NSDate *date, NSObject *owner);
//! The color of message titles
@property (nonatomic, readwrite) UIColor *titleColor;

//! The title color for read notifications
@property (nonatomic, readwrite) UIColor *readTitleColor;

//! The color of messages descriptions
@property (nonatomic, readwrite) UIColor *descriptionColor;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,9 @@
*/
+ (PWIInboxViewController *)createInboxControllerWithStyle:(PWIInboxStyle *)style;

/**
@return PWIInboxViewController with a specified style and height of table view
*/
+ (PWIInboxViewController *)createInboxControllerWithStyle:(PWIInboxStyle *)style andContentHeight:(CGFloat)contentHeight;

@end
Binary file not shown.

0 comments on commit 1e6e4f6

Please sign in to comment.