Skip to content

Commit 2ec0ecc

Browse files
committed
Update docs
1 parent 17acef6 commit 2ec0ecc

File tree

9 files changed

+20
-25
lines changed

9 files changed

+20
-25
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,10 @@ implementation("dev.kotbase:couchbase-lite-ee-kermit:3.1.11-1.1.2")
141141

142142
### Kotbase Paging
143143

144-
The [paging extensions](couchbase-lite-paging/README.md) are built on Cash App's [Multiplatform Paging](
145-
https://github.com/cashapp/multiplatform-paging), Google's [AndroidX Paging](
146-
https://developer.android.com/topic/libraries/architecture/paging/v3-overview) with multiplatform support. Kotbase
147-
Paging provides a [`PagingSource`](https://developer.android.com/reference/kotlin/androidx/paging/PagingSource) which
148-
performs limit/offset paging queries based on a user-supplied database query.
144+
The [paging extensions](couchbase-lite-paging/README.md) are built on Google's [AndroidX Paging](
145+
https://developer.android.com/topic/libraries/architecture/paging/v3-overview). Kotbase Paging provides a
146+
[`PagingSource`](https://developer.android.com/reference/kotlin/androidx/paging/PagingSource) which performs
147+
limit/offset paging queries based on a user-supplied database query.
149148

150149
#### Installation
151150

couchbase-lite-ee-paging/README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22

33
## Couchbase Lite Enterprise Edition – Paging Extensions
44

5-
The paging extensions are built on Cash App's [Multiplatform Paging](https://github.com/cashapp/multiplatform-paging),
6-
Google's [AndroidX Paging](https://developer.android.com/topic/libraries/architecture/paging/v3-overview) with
7-
multiplatform support. Kotbase Paging provides a [`PagingSource`](
8-
https://developer.android.com/reference/kotlin/androidx/paging/PagingSource) which performs limit/offset paging queries
9-
based on a user-supplied database query.
5+
The paging extensions are built on Google's [AndroidX Paging](
6+
https://developer.android.com/topic/libraries/architecture/paging/v3-overview). Kotbase Paging provides a
7+
[`PagingSource`](https://developer.android.com/reference/kotlin/androidx/paging/PagingSource) which performs
8+
limit/offset paging queries based on a user-supplied database query.
109

1110
### Installation
1211

couchbase-lite-paging/README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22

33
## Couchbase Lite Community Edition – Paging Extensions
44

5-
The paging extensions are built on Cash App's [Multiplatform Paging](https://github.com/cashapp/multiplatform-paging),
6-
Google's [AndroidX Paging](https://developer.android.com/topic/libraries/architecture/paging/v3-overview) with
7-
multiplatform support. Kotbase Paging provides a [`PagingSource`](
8-
https://developer.android.com/reference/kotlin/androidx/paging/PagingSource) which performs limit/offset paging queries
9-
based on a user-supplied database query.
5+
The paging extensions are built on Google's [AndroidX Paging](
6+
https://developer.android.com/topic/libraries/architecture/paging/v3-overview). Kotbase Paging provides a
7+
[`PagingSource`](https://developer.android.com/reference/kotlin/androidx/paging/PagingSource) which performs
8+
limit/offset paging queries based on a user-supplied database query.
109

1110
### Installation
1211

couchbase-lite-paging/src/commonMain/kotlin/kotbase/paging/OffsetQueryPagingSource.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/*
18-
* Based on https://github.com/cashapp/sqldelight/blob/master/extensions/androidx-paging3/src/commonMain/kotlin/app/cash/sqldelight/paging3/OffsetQueryPagingSource.kt
18+
* Based on https://github.com/sqldelight/sqldelight/blob/master/extensions/androidx-paging3/src/commonMain/kotlin/app/cash/sqldelight/paging3/OffsetQueryPagingSource.kt
1919
*/
2020

2121
package kotbase.paging

couchbase-lite-paging/src/commonMain/kotlin/kotbase/paging/QueryPagingSource.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/*
18-
* Based on https://github.com/cashapp/sqldelight/blob/master/extensions/androidx-paging3/src/commonMain/kotlin/app/cash/sqldelight/paging3/QueryPagingSource.kt
18+
* Based on https://github.com/sqldelight/sqldelight/blob/master/extensions/androidx-paging3/src/commonMain/kotlin/app/cash/sqldelight/paging3/QueryPagingSource.kt
1919
*/
2020

2121
@file:Suppress("FunctionName")

couchbase-lite-paging/src/commonTest/kotlin/kotbase/paging/OffsetQueryPagingSourceTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/*
18-
* Based on https://github.com/cashapp/sqldelight/blob/master/extensions/androidx-paging3/src/commonTest/kotlin/app/cash/sqldelight/paging3/OffsetQueryPagingSourceTest.kt
18+
* Based on https://github.com/sqldelight/sqldelight/blob/master/extensions/androidx-paging3/src/commonTest/kotlin/app/cash/sqldelight/paging3/OffsetQueryPagingSourceTest.kt
1919
*/
2020

2121
package kotbase.paging

couchbase-lite-paging/src/commonTest/kotlin/kotbase/paging/WithPagingDataDiffer.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/*
18-
* Based on https://github.com/cashapp/sqldelight/blob/master/extensions/androidx-paging3/src/commonTest/kotlin/app/cash/sqldelight/paging3/WithPagingDataDiffer.kt
18+
* Based on https://github.com/sqldelight/sqldelight/blob/master/extensions/androidx-paging3/src/commonTest/kotlin/app/cash/sqldelight/paging3/WithPagingDataDiffer.kt
1919
*/
2020

2121
package kotbase.paging

docs/site/license.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,5 @@ limitations under the License.
3838
* [MkDocs Macros Plugin](https://github.com/fralau/mkdocs_macros_plugin/blob/master/LICENSE.md)
3939
* [MockK](https://github.com/mockk/mockk/blob/master/LICENSE)
4040
* [MOLO17 Couchbase Lite Kotlin](https://github.com/MOLO17/couchbase-lite-kotlin/blob/master/LICENSE)
41-
* [Multiplatform Paging](https://github.com/cashapp/multiplatform-paging/blob/main/LICENSE)
4241
* [Stately](https://github.com/touchlab/Stately/blob/main/LICENSE.txt)
4342
* [vanniktech gradle-maven-publish-plugin](https://github.com/vanniktech/gradle-maven-publish-plugin/blob/main/LICENSE)

docs/site/paging.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
The paging extensions are built on Cash App's [Multiplatform Paging](https://github.com/cashapp/multiplatform-paging),
2-
Google's [AndroidX Paging](https://developer.android.com/topic/libraries/architecture/paging/v3-overview) with
3-
multiplatform support. Kotbase Paging provides a [`PagingSource`](
4-
https://developer.android.com/reference/kotlin/androidx/paging/PagingSource) which performs limit/offset paging queries
5-
based on a user-supplied database query.
1+
The paging extensions are built on Google's [AndroidX Paging](
2+
https://developer.android.com/topic/libraries/architecture/paging/v3-overview). Kotbase Paging provides a
3+
[`PagingSource`](https://developer.android.com/reference/kotlin/androidx/paging/PagingSource) which performs
4+
limit/offset paging queries based on a user-supplied database query.
65

76
## Installation
87

0 commit comments

Comments
 (0)