Skip to content

Commit c9f2317

Browse files
committed
Merge pull request #25 from qiniu/develop
publish v6
2 parents 3de64d9 + 2c3e6f6 commit c9f2317

File tree

107 files changed

+4569
-6020
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+4569
-6020
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
*.swp
33
*.suo
44

5+
test-results
6+
csharp-sdk.userprefs
7+
58
bin
6-
obj
9+
obj

.travis.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: c
2+
3+
# Make sure build dependencies are installed.
4+
install:
5+
- sudo apt-get update && sudo apt-get install nunit mono-gmcs cli-common-dev libgl1-mesa-dev libsdl1.2-dev libopenal-dev
6+
7+
before_script:
8+
- export QINIU_ACCESS_KEY="IFkgYHCdmdNPWNjMMhk9LAV7guz1wpI5Sp5h8ssK"
9+
- export QINIU_SECRET_KEY="R6Nlsu6SQwStqhlDv-e4fMGW3qM4ryBspHgdjAFR"
10+
- export QINIU_TEST_BUCKET="icattlecoder3"
11+
- export QINIU_TEST_DOMAIN="qiniuphotos.qiniudn.com"
12+
13+
script:
14+
- make
15+
- make test

CHANGELOG.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
## CHANGE LOG
22

3-
### v2.4.0
4-
5-
2013-02-19
6-
7-
Issue [#10](https://github.com/qiniu/csharp-sdk/pull/10):
8-
9-
- QBox.Auth.AuthPolicy 增加成员:CallbackBodyType, Escape, AsyncOps, ReturnBody
10-
- DownloadToken支持:增加 QBox.Auth.DownloadPolicy 类
11-
- 增加 PutAuth 支持:增加 QBox.Auth.PutAuthClient 类
12-
- 非兼容调整:QBox.RS.Client 改名为 QBox.RPC.Client
13-
- 简易断点续上传支持: 增加 QBox.RS.ResumablePut 类
14-
- hotfix: 修复了 Base64 编码不支持中文的情况(QBox/Util)
15-
3+
### v6.0.0
4+
5+
2013-07-30 #issue[17](https://github.com/qiniu/csharp-sdk/pull/17)
6+
7+
- 开发环境支持Xamarin,Mono
8+
- 增加tools,包含Json库,nunit.framework.dll
9+
- 移植单元测试,由原VisulStudio支持变换为Nunit Framework支持
10+
- QBox命名空间更新为Qiniu
11+
- 遵循 [Qiniu API SDKSpec 6.0](https://github.com/qiniu/sdkspec/tree/v6.0.0)
12+
- 增加 RSF 支持:增加 Qiniu.RSF.RSFClient 类
13+
- 增加 RS批量操作
14+
- 引用第三方JSON库,[JSON.NET](json.codeplex.com)
15+
- 大文件断点并行上传支持: 增加 Qiniu.IO.Resumable.ResumablePut 类

Demo/Demo.cs

-300
This file was deleted.

0 commit comments

Comments
 (0)