Releases: leancloud/csharp-sdk
Releases · leancloud/csharp-sdk
2.4.1
2.4.0: Merge pull request #278 from onerain88/240
Features
- 云存储: 请求默认超时时间调整为 20s,并支持 LCApplication.RequestTimeout 修改
- 即时通讯: 支持 LCRealtime.Pause 和 LCRealtime.Resume 幂等调用
- 即时通讯: 调整断线中未处理请求以 OperationCancelException 返回
Bug Fixes
- 即时通讯: 重构连接层,避免断线重连过程中再次触发断线重连的问题
2.3.1: Merge pull request #275 from onerain88/release/231
Bug Fixes
- 多人对战: 修复离开大厅后的状态错误
- 即时通讯: 修复未读消息对话查询异常
- 即时通讯: 修复处理重连异常
2.3.0
Features
支持 NPMJS 安装,可在 package.json 中配置仓库:
"scopedRegistries": [
{
"name": "npmjs",
"url": "https://registry.npmjs.org/",
"scopes": ["com.leancloud"]
}
]
在依赖处只声明版本即可(支持依赖):
"com.leancloud.storage": "2.2.2",
"com.leancloud.realtime": "2.2.2"
Improvements
- 推送: 升级魅族推送 SDK 4.2.7
- 云存储: 调整内置子类请求接口
2.2.2-dev.3: Merge pull request #270 from onerain88/222d2
2.2.2-dev.2: Merge pull request #270 from onerain88/222d2
2.2.2: Merge pull request #271 from onerain88/feat/npm-release
2.2.1: Merge pull request #266 from onerain88/release/221
Bug Fixes
- 云存储: 修复上传七牛文件名 base64 编码导致上传失败的 bug
Improvements
- 推送: 升级魅族推送 SDK 4.2.6
2.2.0: Merge pull request #263 from onerain88/fix/push-unitypackage
Features
- 推送: 支持荣耀推送
LCHonorPushManager.RegisterHonorPush();
2.1.0: Merge pull request #260 from onerain88/fix/push-ios-meta
Bug Fixes
- 推送: 修复华为获取 registerationId 失败,导致上传无效记录的 bug
Features
- 推送: 支持 iOS 前台推送设置
public enum LCIOSNotificationPresentationOption {
None = 0,
Badge = 1 << 0,
Sound = 1 << 1,
Alert = 1 << 2,
List = 1 << 3,
Banner = 1 << 4
}
LCIOSPushManager.SetNotificationPresentationOption(option);