mirror of
https://gitlab.com/xynngh/YetAnotherCallBlocker.git
synced 2025-06-05 22:19:12 +02:00
Update description
This commit is contained in:
16
README.md
16
README.md
@@ -13,10 +13,12 @@ A free and open source application that can block unwanted calls or warn about p
|
|||||||
## Key features
|
## Key features
|
||||||
|
|
||||||
* Uses offline database.
|
* Uses offline database.
|
||||||
* Blocks unwanted calls automatically (option).
|
* Blocks calls with negative rating automatically (option).
|
||||||
|
* Local blacklist with wildcard support.
|
||||||
* Displays a notification with phone number summary (rating, reviews count, category) during incoming calls (option).
|
* Displays a notification with phone number summary (rating, reviews count, category) during incoming calls (option).
|
||||||
* Automatic incremental/delta database updates (option).
|
* Automatic incremental/delta database updates (option).
|
||||||
* You can view online reviews for caller's number (provided by 3rd party service).
|
* You can view online reviews for caller's number (provided by 3rd party service).
|
||||||
|
* "Advanced call blocking mode" for blocking calls on Android 7+ before the phone starts ringing (needs to be manually enabled in Settings).
|
||||||
|
|
||||||
|
|
||||||
## How to use
|
## How to use
|
||||||
@@ -26,9 +28,9 @@ A free and open source application that can block unwanted calls or warn about p
|
|||||||
* At first start, the app will suggest to download main database which is required for most of the functions. Simply confirm the download.
|
* At first start, the app will suggest to download main database which is required for most of the functions. Simply confirm the download.
|
||||||
(The DB is downloaded from [another gitlab repo](https://gitlab.com/xynngh/YetAnotherCallBlocker_data), so no privacy-related implications.)
|
(The DB is downloaded from [another gitlab repo](https://gitlab.com/xynngh/YetAnotherCallBlocker_data), so no privacy-related implications.)
|
||||||
* Check the "Auto-update database" checkbox in the menu (recommended) to automatically receive daily DB updates (these are incremental/delta updates, so they consume very little traffic).
|
* Check the "Auto-update database" checkbox in the menu (recommended) to automatically receive daily DB updates (these are incremental/delta updates, so they consume very little traffic).
|
||||||
* Check the "Block unwanted calls" checkbox to block calls with negative rating automatically.
|
* Check the "Block by rating" checkbox to block calls with negative rating automatically.
|
||||||
* You can also check the "Use contacts" checkbox if you want your contacts not to be treated as unknown callers.
|
* You can also check the "Use contacts" checkbox if you want your contacts not to be treated as unknown callers.
|
||||||
* After these steps everything should just work. Enjoy!
|
* After these steps everything should just work (but you can always find more options in Settings). Enjoy!
|
||||||
|
|
||||||
|
|
||||||
## [Screenshots](fastlane/metadata/android/en-US/images/phoneScreenshots/)
|
## [Screenshots](fastlane/metadata/android/en-US/images/phoneScreenshots/)
|
||||||
@@ -42,12 +44,18 @@ A free and open source application that can block unwanted calls or warn about p
|
|||||||
|
|
||||||
At this point most of the essential features (one would expect from a call blocking app) are implemented. Here's an overview:
|
At this point most of the essential features (one would expect from a call blocking app) are implemented. Here's an overview:
|
||||||
|
|
||||||
|
* Automatic blocking of calls with negative rating, calls from hidden or locally blacklisted numbers. *Works offline.*
|
||||||
|
Call blocking should work on most Android versions (including Android 10).
|
||||||
|
Some phones (like some Xiaomi) require to enable "Advanced call blocking mode".
|
||||||
|
* Local blacklist with wildcard support.
|
||||||
|
Import of NoPhoneSpam backup is supported.
|
||||||
* Showing a notification with some caller info (positive/negative rating, category, number of negative reviews and such) when the phone's ringing. *Works offline.*
|
* Showing a notification with some caller info (positive/negative rating, category, number of negative reviews and such) when the phone's ringing. *Works offline.*
|
||||||
* Loading and displaying a list of reviews for a number (accessed from the notification or the info view). *Requires internet.*
|
* Loading and displaying a list of reviews for a number (accessed from the notification or the info view). *Requires internet.*
|
||||||
* Automatic blocking of unwanted calls (may not work on some devices; tested to work on modern Android versions (including Android 10)). *Works offline.*
|
|
||||||
* Automatic update of the database (for offline use). *Requires internet.*
|
* Automatic update of the database (for offline use). *Requires internet.*
|
||||||
* Displaying a list of recent calls with caller rating and the ability to show more info or load online reviews for the number. The list *works offline*, but loading reviews *requires internet.*
|
* Displaying a list of recent calls with caller rating and the ability to show more info or load online reviews for the number. The list *works offline*, but loading reviews *requires internet.*
|
||||||
* If "use contacts" option is enabled, the numbers present in the phone book are never blocked and the contact name is displayed next to/instead of a number throughout the app.
|
* If "use contacts" option is enabled, the numbers present in the phone book are never blocked and the contact name is displayed next to/instead of a number throughout the app.
|
||||||
|
* "Advanced call blocking mode" for blocking calls on Android 7+ before the phone starts ringing.
|
||||||
|
Needs to be manually enabled in app Settings.
|
||||||
|
|
||||||
|
|
||||||
## Privacy
|
## Privacy
|
||||||
|
@@ -4,10 +4,12 @@ using an offline phone number database.
|
|||||||
Features:
|
Features:
|
||||||
|
|
||||||
* Uses offline database.
|
* Uses offline database.
|
||||||
* Blocks unwanted calls automatically (option).
|
* Blocks calls with negative rating automatically (option).
|
||||||
|
* Local blacklist with wildcard support.
|
||||||
* Displays a notification with phone number summary (rating, reviews count, category) during incoming calls (option).
|
* Displays a notification with phone number summary (rating, reviews count, category) during incoming calls (option).
|
||||||
* Automatic incremental/delta database updates (option).
|
* Automatic incremental/delta database updates (option).
|
||||||
* You can view online reviews for caller's number (provided by 3rd party service).
|
* You can view online reviews for caller's number (provided by 3rd party service).
|
||||||
|
* "Advanced call blocking mode" for blocking calls on Android 7+ before the phone starts ringing (needs to be manually enabled in app Settings).
|
||||||
|
|
||||||
How to use:
|
How to use:
|
||||||
|
|
||||||
@@ -15,9 +17,9 @@ How to use:
|
|||||||
* The option to show caller info notifications is enabled by default, so the app will ask for phone-related permissions.
|
* The option to show caller info notifications is enabled by default, so the app will ask for phone-related permissions.
|
||||||
* At first start, the app will suggest to download main database which is required for most of the functions. Simply confirm the download.
|
* At first start, the app will suggest to download main database which is required for most of the functions. Simply confirm the download.
|
||||||
* Check the "Auto-update database" checkbox in the menu (recommended) to automatically receive daily DB updates (these are incremental/delta updates, so they consume very little traffic).
|
* Check the "Auto-update database" checkbox in the menu (recommended) to automatically receive daily DB updates (these are incremental/delta updates, so they consume very little traffic).
|
||||||
* Check the "Block unwanted calls" checkbox to block calls with negative rating automatically.
|
* Check the "Block by rating" checkbox to block calls with negative rating automatically.
|
||||||
* You can also check the "Use contacts" checkbox if you want your contacts not to be treated as unknown callers.
|
* You can also check the "Use contacts" checkbox if you want your contacts not to be treated as unknown callers.
|
||||||
* After these steps everything should just work. Enjoy!
|
* After these steps everything should just work (but you can always find more options in Settings). Enjoy!
|
||||||
|
|
||||||
The main phone number database is downloaded from a gitlab repository.
|
The main phone number database is downloaded from a gitlab repository.
|
||||||
Delta updates and detailed review queries are performed using 3rd-party servers.
|
Delta updates and detailed review queries are performed using 3rd-party servers.
|
||||||
|
@@ -4,10 +4,12 @@
|
|||||||
Особенности:
|
Особенности:
|
||||||
|
|
||||||
* Использует заранее загруженную (офлайн) базу номеров.
|
* Использует заранее загруженную (офлайн) базу номеров.
|
||||||
* Автоматически блокирует нежелательные вызовы (опция).
|
* Автоматически блокирует вызовы с номеров с отрицательным рейтингом (опция).
|
||||||
|
* Локальный чёрный список с поддержкой масок.
|
||||||
* Отображает уведомление с краткой информацией о номере (рейтинги, кол-во отзывов, категория) при входящих вызовах (опция).
|
* Отображает уведомление с краткой информацией о номере (рейтинги, кол-во отзывов, категория) при входящих вызовах (опция).
|
||||||
* Автоматические инкрементальные (небольшие) обновления базы (опция).
|
* Автоматические инкрементальные (небольшие) обновления базы (опция).
|
||||||
* Возможность посмотреть онлайн-отзывы по номеру звонящего (используется сторонний сервис).
|
* Возможность посмотреть онлайн-отзывы по номеру звонящего (используется сторонний сервис).
|
||||||
|
* "Продвинутый режим блокирования вызовов" для блокирования вызовов на Android 7+ до того, как телефон зазвонит (требует включения в Настройках приложения вручную).
|
||||||
|
|
||||||
Подготовка и настройка:
|
Подготовка и настройка:
|
||||||
|
|
||||||
@@ -15,9 +17,9 @@
|
|||||||
* По умолчанию включена опция отображения уведомлений при входящем вызове, поэтому приложение запросит разрешения связанные с телефонными вызовами.
|
* По умолчанию включена опция отображения уведомлений при входящем вызове, поэтому приложение запросит разрешения связанные с телефонными вызовами.
|
||||||
* При первом запуске будет предложено загрузить базу номеров, это необходимо для полноценной работы приложения. Просто подтвердите загрузку.
|
* При первом запуске будет предложено загрузить базу номеров, это необходимо для полноценной работы приложения. Просто подтвердите загрузку.
|
||||||
* Рекомендуется включить опцию "Авто-обновл. базы номеров", чтобы получать ежедневные обновления базы (загружаются только изменения, поэтому расход трафика небольшой).
|
* Рекомендуется включить опцию "Авто-обновл. базы номеров", чтобы получать ежедневные обновления базы (загружаются только изменения, поэтому расход трафика небольшой).
|
||||||
* Включите опцию "Блокир-ть нежелат. вызовы", чтобы автоматически сбрасывать звонки c номеров с отрицательным рейтингом.
|
* Включите опцию "Блокир. по отзывам", чтобы автоматически сбрасывать звонки c номеров с отрицательным рейтингом.
|
||||||
* С опцией "Отображать имена контактов" вызовы от контактов перестанут расцениваться как неизвестные.
|
* С опцией "Отображать имена контактов" вызовы от контактов перестанут расцениваться как неизвестные.
|
||||||
* После настройки всё должно работать. Приятного общения!
|
* После настройки всё должно работать (но вы всегда можете найти больше опций в Настройках). Приятного общения!
|
||||||
|
|
||||||
База номеров загружается из gitlab-репозитория.
|
База номеров загружается из gitlab-репозитория.
|
||||||
Обновления и отзывы предоставляются сторонним сервисом.
|
Обновления и отзывы предоставляются сторонним сервисом.
|
||||||
|
Reference in New Issue
Block a user