Skip to content

Commit bae857b

Browse files
committed
iOS
1 parent 418acd8 commit bae857b

File tree

16 files changed

+42
-24
lines changed

16 files changed

+42
-24
lines changed

libcblite-3.0.3/lib/.DS_Store

0 Bytes
Binary file not shown.

libcblite-3.0.3/lib/ios/.DS_Store

0 Bytes
Binary file not shown.
24 Bytes
Binary file not shown.

libcblite-3.0.3/lib/ios/CouchbaseLite.xcframework/ios-arm64/CouchbaseLite.framework/Headers/CBLCollection.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ CBL_PUBLIC extern const FLString kCBLDefaultCollectionName;
7373

7474
/** Returns the names of all existing scopes in the database.
7575
The scope exists when there is at least one collection created under the scope.
76-
The default scope is exceptional in that it will always exists even there are no collections under it.
77-
@note You are responsible for releasing the returned array.
76+
@note The default scope will always exist, containing at least the default collection.
77+
@note You are responsible for releasing the returned array.
7878
@param db The database.
7979
@param outError On failure, the error will be written here.
8080
@return The names of all existing scopes in the database, or NULL if an error occurred. */
@@ -93,8 +93,8 @@ FLMutableArray _cbl_nullable CBLDatabase_CollectionNames(const CBLDatabase* db,
9393

9494
/** Returns an existing scope with the given name.
9595
The scope exists when there is at least one collection created under the scope.
96-
The default scope is exception in that it will always exists even there are no collections under it.
97-
@note You are responsible for releasing the returned scope.
96+
@note The default scope will always exist, containing at least the default collection.
97+
@note You are responsible for releasing the returned scope.
9898
@param db The database.
9999
@param scopeName The name of the scope.
100100
@param outError On failure, the error will be written here.
@@ -146,7 +146,6 @@ bool CBLDatabase_DeleteCollection(CBLDatabase* db,
146146
CBLError* _cbl_nullable outError) CBLAPI;
147147

148148
/** Returns the default scope.
149-
@note The default scope always exist even there are no collections under it.
150149
@note You are responsible for releasing the returned scope.
151150
@param db The database.
152151
@param outError On failure, the error will be written here.

libcblite-3.0.3/lib/ios/CouchbaseLite.xcframework/ios-arm64/CouchbaseLite.framework/Headers/CBLDatabase.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,16 @@ typedef struct {
5858
#ifdef COUCHBASE_ENTERPRISE
5959
CBLEncryptionKey encryptionKey; ///< The database's encryption key (if any)
6060
#endif
61+
/** As Couchbase Lite normally configures its databases, There is a very
62+
small (though non-zero) chance that a power failure at just the wrong
63+
time could cause the most recently committed transaction's changes to
64+
be lost. This would cause the database to appear as it did immediately
65+
before that transaction.
66+
67+
Setting this mode true ensures that an operating system crash or
68+
power failure will not cause the loss of any data. FULL synchronous
69+
is very safe but it is also dramatically slower. */
70+
bool fullSync;
6171
} CBLDatabaseConfiguration;
6272

6373
/** Returns the default database configuration. */

libcblite-3.0.3/lib/ios/CouchbaseLite.xcframework/ios-arm64/CouchbaseLite.framework/Headers/CBL_Edition.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
#define COUCHBASE_ENTERPRISE
2121
#endif
2222

23-
#define CBLITE_VERSION "3.1.7"
24-
#define CBLITE_VERSION_NUMBER 3001007
25-
#define CBLITE_BUILD_NUMBER 5
26-
#define CBLITE_SOURCE_ID "036da58+b89b125"
27-
#define CBLITE_BUILD_TIMESTAMP "2024-04-23T18:55:12Z"
23+
#define CBLITE_VERSION "3.1.10"
24+
#define CBLITE_VERSION_NUMBER 3001010
25+
#define CBLITE_BUILD_NUMBER 52760
26+
#define CBLITE_SOURCE_ID "036da58+f7cfc38"
27+
#define CBLITE_BUILD_TIMESTAMP "2024-09-30T21:15:22Z"
5 Bytes
Binary file not shown.

libcblite-3.0.3/lib/ios/CouchbaseLite.xcframework/ios-arm64/dSYMs/CouchbaseLite.framework.dSYM/Contents/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<key>CFBundleSignature</key>
1414
<string>????</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>3.1.7</string>
16+
<string>3.1.10</string>
1717
<key>CFBundleVersion</key>
18-
<string>5</string>
18+
<string>52760</string>
1919
</dict>
2020
</plist>
3.57 KB
Binary file not shown.
16 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)