From 105783a05b6a465f22e97c288a5a89caf5e23b55 Mon Sep 17 00:00:00 2001 From: Aria Moradi Date: Mon, 9 Nov 2020 01:21:59 +0330 Subject: [PATCH] [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 --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4eac30283..06646301e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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.