@@ -6,15 +6,15 @@ ObjectBox Data Persistence and Data Sync follows an offline-first approach and c
66
77This is the ** ObjectBox runtime library** to run ObjectBox as an embedded database in your C or C++ application.
88
9- Here's a C++ example that inserts a ` Task ` data object (a plain user defined ` struct ` ) into the database:
9+ Here's a C++ example that inserts a ` Task ` data object (a plain user defined ` struct ` ) into the database:
1010``` c++
1111obx::Box<Task> box (store);
1212box.put({.text = "Buy milk"});
1313```
1414
15- See [ObjectBox C and C++ docs](https://cpp.objectbox.io/) for API details.
15+ See [ObjectBox C and C++ docs](https://cpp.objectbox.io/) for API details.
1616
17- **Latest version: 0.15.1 ** (2022-01-26 ).
17+ **Latest version: 0.15.2 ** (2022-02-15 ).
1818See [changelog](CHANGELOG.md) for more details.
1919
2020Feature Highlights
@@ -36,7 +36,7 @@ Feature Highlights
3636Some more technical details:
3737
3838* Zero-copy reads for highest possible performance; access tens of millions of objects on commodity hardware
39- * Lightweight for smart devices; its binary size is only around 1 MB
39+ * Lightweight for smart devices; its binary size is only around 1 MB
4040* Direct support for [FlatBuffers](https://google.github.io/flatbuffers/) data objects (aka "flatbuffers table")
4141* Flex type to represent any FlexBuffers
4242* Secondary indexes based on object properties
@@ -50,10 +50,10 @@ In most cases you want to use the C and C++ APIs in combination with the **[Obje
5050This way, you get a convenient C or C++ API which requires minimal code on your side to work with the database.
5151
5252The APIs come as single header file for C and C++:
53-
54- * C: [include/objectbox.h](include/objectbox.h)
55- * C++: [include/objectbox.hpp](include/objectbox.hpp) (depends on objectbox.h)
56-
53+
54+ * C: [include/objectbox.h](include/objectbox.h)
55+ * C++: [include/objectbox.hpp](include/objectbox.hpp) (depends on objectbox.h)
56+
5757Compile your code against it and use the binary library (.so, .dylib, .dll depending on the platform) to link against.
5858Head over to [ObjectBox C and C++ installation docs](https://cpp.objectbox.io/installation) for step-by-step instructions.
5959
@@ -70,16 +70,16 @@ Examples
7070Have a look at the following TaskList example apps, depending on your programming language and preference:
7171
7272* [C, cursor, no generated code](examples/c-cursor-no-gen) - plain C; using flatcc directly; without any generated code
73- * [C, with generated code](examples/c-gen) - plain C, using code generated by `objectbox-generator`
73+ * [C, with generated code](examples/c-gen) - plain C, using code generated by `objectbox-generator`
7474* [C++, with generated code](examples/cpp-gen) - C++, using code generated by `objectbox-generator`
75- * also includes sync client application example
75+ * also includes sync client application example
7676
7777Documentation
7878-------------
79- * [C and C++ docs](https://cpp.objectbox.io/) - official ObjectBox C and C++ documentation
80- * [include/objectbox.h](include/objectbox.h) - C API header file contains docs as code comments
81- * [include/objectbox.hpp](include/objectbox.hpp) - C++ API header file contains docs as code comments
82- * [C and C++ API reference docs](https://objectbox.io/docfiles/c/current/) - online HTML docs (Doxygen)
79+ * [C and C++ docs](https://cpp.objectbox.io/) - official ObjectBox C and C++ documentation
80+ * [include/objectbox.h](include/objectbox.h) - C API header file contains docs as code comments
81+ * [include/objectbox.hpp](include/objectbox.hpp) - C++ API header file contains docs as code comments
82+ * [C and C++ API reference docs](https://objectbox.io/docfiles/c/current/) - online HTML docs (Doxygen)
8383
8484Current state / Changelog
8585-------------------------
@@ -89,7 +89,7 @@ The C API is a thin wrapper around a robust DB core, which is version 3.x and al
8989Until then, API improvements may result in breaking changes. For example, functions may still be renamed.
9090
9191**[Changelog](CHANGELOG.md):** If you update from a previous version, please check the [changelog](CHANGELOG.md).
92- Besides new features, there may be breaking changes requiring modifications to your code.
92+ Besides new features, there may be breaking changes requiring modifications to your code.
9393
9494### Supported platforms:
9595* Linux 64-bit
@@ -110,12 +110,12 @@ For the C API, data consists of bytes representing FlatBuffers tables, which you
110110Other languages/bindings
111111------------------------
112112ObjectBox supports multiple platforms and languages.
113- Besides C/C++, ObjectBox also offers:
113+ Besides C/C++, ObjectBox also offers:
114114
115115* [ObjectBox Java / Kotlin](https://github.com/objectbox/objectbox-java): runs on Android, desktop, and servers.
116- * [ObjectBox Swift](https://github.com/objectbox/objectbox-swift): build fast mobile apps for iOS (and macOS)
117- * [ObjectBox Dart/Flutter](https://github.com/objectbox/objectbox-dart): cross-platform for mobile and desktop apps
118- * [ObjectBox Go](https://github.com/objectbox/objectbox-go): great for data-driven tools and embedded server applications
116+ * [ObjectBox Swift](https://github.com/objectbox/objectbox-swift): build fast mobile apps for iOS (and macOS)
117+ * [ObjectBox Dart/Flutter](https://github.com/objectbox/objectbox-dart): cross-platform for mobile and desktop apps
118+ * [ObjectBox Go](https://github.com/objectbox/objectbox-go): great for data-driven tools and embedded server applications
119119
120120
121121How can I help ObjectBox?
@@ -124,10 +124,10 @@ Let us know what you love, what you don’t, what do you want to see next?
124124
125125**We're looking forward to receiving your comments and requests:**
126126
127- - Add [GitHub issues](https://github.com/ObjectBox/objectbox-java/issues)
127+ - Add [GitHub issues](https://github.com/ObjectBox/objectbox-java/issues)
128128- Upvote issues you find important by hitting the 👍/+1 reaction button
129129- Drop us a line via [@ObjectBox_io](https://twitter.com/ObjectBox_io/)
130- - ⭐ us, if you like what you see
130+ - ⭐ us, if you like what you see
131131
132132Thank you! 🙏
133133
@@ -148,4 +148,3 @@ License
148148 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
149149 See the License for the specific language governing permissions and
150150 limitations under the License.
151-
0 commit comments