Skip to content

Commit 5d86f78

Browse files
authored
Merge branch 'master' into master
2 parents 143dd9a + de87ccf commit 5d86f78

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

Jiguang.JPush.dll

0 Bytes
Binary file not shown.

Jiguang.JPush/Jiguang.JPush.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<Product>JPush</Product>
1212
<Copyright>MIT</Copyright>
1313
<PackageLicenseUrl></PackageLicenseUrl>
14-
<Version>1.0.9</Version>
14+
<Version>1.0.10</Version>
1515
</PropertyGroup>
1616

1717
<ItemGroup>

Jiguang.JPush/Model/Options.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using Newtonsoft.Json;
2+
using System.ComponentModel;
23

34
namespace Jiguang.JPush.Model
45
{
@@ -17,11 +18,16 @@ public class Options
1718
public long? OverrideMessageId { get; set; }
1819

1920
/// <summary>
20-
/// iOS 推送是否为生产环境。默认为 false,开发环境。
21+
/// iOS 推送是否为生产环境。默认为 false - 开发环境。
22+
/// <para>true: 生产环境;false: 开发环境。</para>
2123
/// </summary>
2224
[JsonProperty("apns_production", DefaultValueHandling = DefaultValueHandling.Include)]
2325
public bool IsApnsProduction { get; set; } = false;
2426

27+
/// <summary>
28+
/// 更新 iOS 通知的标识符。
29+
/// <para>APNs 新通知如果匹配到当前通知中心有相同 apns-collapse-id 字段的通知,则会用新通知内容来更新它,并使其置于通知中心首位。collapse id 长度不可超过 64 bytes。</para>
30+
/// </summary>
2531
[JsonProperty("apns_collapse_id", NullValueHandling = NullValueHandling.Ignore)]
2632
public string ApnsCollapseId { get; set; }
2733

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# JPush Library for .NET
22

3-
[![NuGet](https://img.shields.io/badge/NuGet-v1.0.9-blue.svg)](https://preview.nuget.org/packages/Jiguang.JPush/)
3+
[![NuGet](https://img.shields.io/badge/NuGet-v1.0.10-blue.svg)](https://preview.nuget.org/packages/Jiguang.JPush/)
44

55
[极光](https://www.jiguang.cn/)官方支持的 JPush .NET API Client。
66

0 commit comments

Comments
 (0)