[CI SKIP] Disambiguation of extension entry points. (#4822)

* Disambiguation of extension entry points. 

Since the removal of the "Browse" button, the docs don't make much sense at first impressions.

* Update CONTRIBUTING.md

Co-authored-by: arkon <arkon@users.noreply.github.com>
This commit is contained in:
Aria Moradi 2020-11-09 01:21:59 +03:30 committed by GitHub
parent 45202fb6bc
commit 105783a05b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -170,7 +170,7 @@ The class which is refrenced and defined by `extClass` in `build.gradle`. This c
#### Popular Manga
a.k.a. the "Browse" source entry point in the app.
a.k.a. the Browse source entry point in the app (invoked by tapping on the source name).
- The app calls `fetchPopularManga` with `page=1`, and it returns a `MangasPage` and will continue to call it for next pages, when the user scrolls the manga list and more results must be fetched (until you pass `MangasPage.hasNextPage` as `false` which marks the end of the found manga list).
- While passing magnas here you should at least set `url`, `title` and `thumbnail_url`.
@ -178,7 +178,7 @@ a.k.a. the "Browse" source entry point in the app.
#### Latest Manga
a.k.a. the "Latest" source entry point in the app.
a.k.a. the Latest source entry point in the app (invoked by tapping on the "Latest" button beside the source name).
- Used if `supportsLatest` is `true` for a source
- Similar to popular manga, but should be fetching the latest entries from a source.