Skip to content

Commit b7c6e1a

Browse files
committed
README.md: some first updates for V3.0.0
1 parent 02bdbe6 commit b7c6e1a

File tree

1 file changed

+4
-17
lines changed

1 file changed

+4
-17
lines changed

README.md

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
greenDAO
22
========
3-
greenDAO is a light & fast ORM solution for Android that maps objects to SQLite databases. Being highly optimized for Android, greenDAO offers great performance and consumes minimal memory.
3+
greenDAO is a light & fast ORM for Android that maps objects to SQLite databases. Being highly optimized for Android, greenDAO offers great performance and consumes minimal memory.
44

55
**<font size="+1">Home page, documentation, and support links: http://greenrobot.org/greendao/</font>**
66

@@ -12,27 +12,25 @@ greenDAO's unique set of features:
1212

1313
* Rock solid: greenDAO has been around since 2011 and is used by countless famous apps
1414
* Super simple: concise and straight-forward API
15-
* Small: The library is <100K and it's just plain Java jar (no CPU dependent native parts)
15+
* Small: The library is <150K and it's just plain Java jar (no CPU dependent native parts)
1616
* Fast: Probably the fastest ORM for Android, driven by intelligent code generation
1717
* Safe and expressive query API: QueryBuilder uses property constants to avoid typos
1818
* Powerful joins: query across entities and even chain joins for complex relations
1919
* Flexible property types: use custom classes or enums to represent data in your entity
2020

21-
2221
Add greenDAO to your project
2322
----------------------------
2423
greenDAO is available on Maven Central. Please ensure that you are using the latest versions by [checking here](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.greenrobot%22%20AND%20a%3A%22greendao%22) [and here](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.greenrobot%22%20AND%20a%3A%22greendao-generator%22)
2524

2625
Gradle dependency for your Android app:
2726
```
28-
compile 'org.greenrobot:greendao-encryption:2.2.2'
27+
compile 'org.greenrobot:greendao:3.0.0'
2928
```
3029

3130
Gradle dependency for your Java generator project:
3231
```
33-
compile 'org.greenrobot:greendao-generator:2.2.0'
32+
compile 'org.greenrobot:greendao-generator:3.0.0'
3433
```
35-
*Note:* to use encrypted databases using SQLCipher, you need to reference different artifacts (postfix '-encryption'). For all details, please refer to the documentation on [database encryption](http://greenrobot.org/greendao/documentation/database-encryption/).
3634

3735
Homepage, Documentation, Links
3836
------------------------------
@@ -48,17 +46,6 @@ For more details on greenDAO please check [greenDAO's website](http://greenrobot
4846

4947
[Non-Technical FAQ](http://greenrobot.org/greendao/documentation/faq/)
5048

51-
Features in Beta
52-
----------------
53-
Those features are already here for you to try out. Note: Documentation and test coverage may be lacking, and the API may change in the future.
54-
### Asynchronous API
55-
* New AsyncSession (acquired from DaoSession.startAsyncSession()) provides most operations for DAOs, Queries, and transactions in a asynchronously variant
56-
* AsyncOperations are processed in order by a background thread
57-
* waitForCompletion methods for AsyncSession and AsyncOperations
58-
* AsyncOperationListener for asynchronous callback when operations complete
59-
* Asynchronous operations can be merged in single transactions (details follow)
60-
* Added raw SQL queries returning a Query object (LazyList support etc.)
61-
6249
More Open Source by greenrobot
6350
==============================
6451
[__EventBus__](https://github.com/greenrobot/EventBus) is a central publish/subscribe bus for Android with optional delivery threads, priorities, and sticky events. A great tool to decouple components (e.g. Activities, Fragments, logic components) from each other.

0 commit comments

Comments
 (0)