Skip to content

Commit ef0c38f

Browse files
author
Qiming Yuan
committed
3.8.0 release.
1 parent 0ffad48 commit ef0c38f

File tree

434 files changed

+98538
-38523
lines changed

Some content is hidden

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

434 files changed

+98538
-38523
lines changed

.jazzy.json

Lines changed: 634 additions & 64 deletions
Large diffs are not rendered by default.

ObjectiveDropboxOfficial.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'ObjectiveDropboxOfficial'
3-
s.version = '3.7.0'
3+
s.version = '3.8.0'
44
s.summary = 'Dropbox Objective C SDK for APIv2'
55
s.homepage = 'https://dropbox.com/developers/'
66
s.license = 'MIT'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ brew install carthage
167167

168168
```
169169
# ObjectiveDropboxOfficial
170-
github "https://github.com/dropbox/dropbox-sdk-obj-c" ~> 3.7.0
170+
github "https://github.com/dropbox/dropbox-sdk-obj-c" ~> 3.8.0
171171
```
172172

173173
Then, run the following command to checkout and build the Dropbox Objective-C SDK repository:

Source/ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.xcodeproj/project.pbxproj

Lines changed: 8053 additions & 6343 deletions
Large diffs are not rendered by default.

Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_iOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>3.7.0</string>
20+
<string>3.8.0</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>

Source/ObjectiveDropboxOfficial/Platform/ObjectiveDropboxOfficial_macOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.7.0</string>
18+
<string>3.8.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Common/Headers/DBCOMMONRootInfo.h

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,24 @@ NS_ASSUME_NONNULL_BEGIN
2727

2828
#pragma mark - Instance fields
2929

30-
/// The namespace id for user's root namespace. It will be the namespace id of
31-
/// the shared team root if the user is member of a CDM team. Otherwise it will
32-
/// be same as `homeNamespaceId` in `DBCOMMONRootInfo`.
30+
/// The namespace ID for user's root namespace. It will be the namespace ID of
31+
/// the shared team root if the user is member of a team with a separate team
32+
/// root. Otherwise it will be same as `homeNamespaceId` in `DBCOMMONRootInfo`.
3333
@property (nonatomic, readonly, copy) NSString *rootNamespaceId;
3434

35-
/// The namespace id for user's home namespace.
35+
/// The namespace ID for user's home namespace.
3636
@property (nonatomic, readonly, copy) NSString *homeNamespaceId;
3737

3838
#pragma mark - Constructors
3939

4040
///
4141
/// Full constructor for the struct (exposes all instance variables).
4242
///
43-
/// @param rootNamespaceId The namespace id for user's root namespace. It will
44-
/// be the namespace id of the shared team root if the user is member of a CDM
45-
/// team. Otherwise it will be same as `homeNamespaceId` in `DBCOMMONRootInfo`.
46-
/// @param homeNamespaceId The namespace id for user's home namespace.
43+
/// @param rootNamespaceId The namespace ID for user's root namespace. It will
44+
/// be the namespace ID of the shared team root if the user is member of a team
45+
/// with a separate team root. Otherwise it will be same as `homeNamespaceId` in
46+
/// `DBCOMMONRootInfo`.
47+
/// @param homeNamespaceId The namespace ID for user's home namespace.
4748
///
4849
/// @return An initialized instance.
4950
///

Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Common/Headers/DBCOMMONTeamRootInfo.h

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ NS_ASSUME_NONNULL_BEGIN
1818
///
1919
/// The `TeamRootInfo` struct.
2020
///
21-
/// Root info when user is member of a CDM team.
21+
/// Root info when user is member of a team with a separate root namespace ID.
2222
///
2323
/// This class implements the `DBSerializable` protocol (serialize and
2424
/// deserialize instance methods), which is required for all Obj-C SDK API route
@@ -36,10 +36,11 @@ NS_ASSUME_NONNULL_BEGIN
3636
///
3737
/// Full constructor for the struct (exposes all instance variables).
3838
///
39-
/// @param rootNamespaceId The namespace id for user's root namespace. It will
40-
/// be the namespace id of the shared team root if the user is member of a CDM
41-
/// team. Otherwise it will be same as `homeNamespaceId` in `DBCOMMONRootInfo`.
42-
/// @param homeNamespaceId The namespace id for user's home namespace.
39+
/// @param rootNamespaceId The namespace ID for user's root namespace. It will
40+
/// be the namespace ID of the shared team root if the user is member of a team
41+
/// with a separate team root. Otherwise it will be same as `homeNamespaceId` in
42+
/// `DBCOMMONRootInfo`.
43+
/// @param homeNamespaceId The namespace ID for user's home namespace.
4344
/// @param homePath The path for user's home directory under the shared team
4445
/// root.
4546
///

Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/Common/Headers/DBCOMMONUserRootInfo.h

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ NS_ASSUME_NONNULL_BEGIN
1818
///
1919
/// The `UserRootInfo` struct.
2020
///
21-
/// Root info when user is not member of a CDM team.
21+
/// Root info when user is not member of a team or the user is a member of a
22+
/// team and the team does not have a separate root namespace.
2223
///
2324
/// This class implements the `DBSerializable` protocol (serialize and
2425
/// deserialize instance methods), which is required for all Obj-C SDK API route
@@ -33,10 +34,11 @@ NS_ASSUME_NONNULL_BEGIN
3334
///
3435
/// Full constructor for the struct (exposes all instance variables).
3536
///
36-
/// @param rootNamespaceId The namespace id for user's root namespace. It will
37-
/// be the namespace id of the shared team root if the user is member of a CDM
38-
/// team. Otherwise it will be same as `homeNamespaceId` in `DBCOMMONRootInfo`.
39-
/// @param homeNamespaceId The namespace id for user's home namespace.
37+
/// @param rootNamespaceId The namespace ID for user's root namespace. It will
38+
/// be the namespace ID of the shared team root if the user is member of a team
39+
/// with a separate team root. Otherwise it will be same as `homeNamespaceId` in
40+
/// `DBCOMMONRootInfo`.
41+
/// @param homeNamespaceId The namespace ID for user's home namespace.
4042
///
4143
/// @return An initialized instance.
4244
///

Source/ObjectiveDropboxOfficial/Shared/Generated/ApiObjects/FileRequests/Headers/DBFILEREQUESTSFileRequestDeadline.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ NS_ASSUME_NONNULL_BEGIN
2929
/// The deadline for this file request.
3030
@property (nonatomic, readonly) NSDate *deadline;
3131

32-
/// If set, allow uploads after the deadline has passed. These uploads will be
33-
/// marked overdue.
32+
/// If set, allow uploads after the deadline has passed. These uploads will
33+
/// be marked overdue.
3434
@property (nonatomic, readonly, nullable) DBFILEREQUESTSGracePeriod *allowLateUploads;
3535

3636
#pragma mark - Constructors
@@ -40,7 +40,7 @@ NS_ASSUME_NONNULL_BEGIN
4040
///
4141
/// @param deadline The deadline for this file request.
4242
/// @param allowLateUploads If set, allow uploads after the deadline has passed.
43-
/// These uploads will be marked overdue.
43+
/// These uploads will be marked overdue.
4444
///
4545
/// @return An initialized instance.
4646
///

0 commit comments

Comments
 (0)