Updated fastlane/metadata

This commit is contained in:
partisan 2025-05-26 21:45:06 +02:00
parent b65222ddf9
commit 9dcfe80a26
26 changed files with 90 additions and 82 deletions

View file

@ -7,7 +7,7 @@
</p> </p>
<p align="center"> <p align="center">
Tiny app to redirect outgoing calls to Signal/Telegram/Threema/Whatsapp. Redirecting outgoing calls to E2EE apps.
</p> </p>
--- ---
@ -38,6 +38,25 @@ Tiny app to redirect outgoing calls to Signal/Telegram/Threema/Whatsapp.
</span> </span>
</p> </p>
# Features
- Material You design
- Popup with cancel option
- Extensive settings panel:
- Toggle per-service support
- Redirection only on Wi-Fi/Data
- Allowlist specific contacts
- Change per-service priority
- Customize popup position, animation, and duration
- ...
# Supports
- Signal
- Telegram
- Threema
- WhatsApp
# How to Install # How to Install
## Using Droid-ify (or other F-Droid client) ## Using Droid-ify (or other F-Droid client)
@ -68,13 +87,14 @@ Install it, and youre done!
# Permissions # Permissions
* ACCESS_NETWORK_STATE - check internet is available - `ACCESS_NETWORK_STATE` check connectivity
* CALL_PHONE - make a call via messenger - `CALL_PHONE` make a call via messenger
* READ_CONTACTS - check contact has a messenger record - `READ_CONTACTS` check if contact has a messenger
* SYSTEM_ALERT_WINDOW - show redirecting popup and launch an activity from background - `READ_PHONE_NUMBERS` detect outgoing call
* CALL_REDIRECTION - process outgoing call - `SYSTEM_ALERT_WINDOW` show redirecting popup and launch from background
- `INTERNET` check connectivity and verify donates
All permissions are mandatory. Currently all of the permissions are required.
# License # License

View file

@ -11,8 +11,8 @@ android {
applicationId = "partisan.weforge.xyz.pulse" applicationId = "partisan.weforge.xyz.pulse"
minSdk = 29 minSdk = 29
targetSdk = 34 targetSdk = 34
versionCode = 13 versionCode = 14
versionName = "1.4.1" versionName = "2.0.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Before After
Before After

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<resources> <resources>
<string name="app_name">Pulse</string> <string name="app_name">Pulse</string>
<string name="description">Redirects outgoing calls to E2EE apps if available.</string> <string name="description">Redirecting outgoing calls to E2EE apps.</string>
<string name="popup">Redirecting to %1$s</string> <string name="popup">Redirecting to %1$s</string>
<string name="settings_name">Settings</string> <string name="settings_name">Settings</string>
<string name="popup_name">Popup</string> <string name="popup_name">Popup</string>

View file

@ -1,17 +0,0 @@
package partisan.weforge.xyz.pulse
import org.junit.Test
import org.junit.Assert.*
/**
* Example local unit test, which will execute on the development machine (host).
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
class ExampleUnitTest {
@Test
fun addition_isCorrect() {
assertEquals(4, 2 + 2)
}
}

View file

@ -1,2 +1,5 @@
Forked from Red and renamed to Pulse. v1.3.0
Changed Icons and graphic. - Forked from Red and renamed to Pulse.
- Changed Icons and graphic.
- Added material you icon.
- Added options to toggle and change priority to individual redirect services.

View file

@ -1 +1,2 @@
Added material you icon. v1.3.1
- Updated metadata and removed some background Google BLOB to improve compliance with IzzyOnDroid repo.

View file

@ -1 +1,2 @@
Added options to toggle and change priority to individual redirect services. v1.3.2
- Fixed crash related to redirect popup

View file

@ -1 +1,3 @@
Updated metadata and removed some background Google BLOB to improve compliance with IzzyOnDroid repo. v1.4.0
- Added progress bar to popup, to better indicate loading
- Updated appstore icon

View file

@ -1 +1,2 @@
Fixed crash related to redirect popup v1.4.1
- Dependency update

View file

@ -0,0 +1,16 @@
v2.0.0
- Reworked the entire UI
- Added welcome screen to check for required permissions
- New landing page with a single toggle, moved settings to separate menus
- Added side menu with:
- Allowlist
- Redirection: toggle on Wi-Fi, etc.
- Services: toggle individual redirect services and set their priority
- Popup: change position, animation, and duration
- Added About section with:
- Donate
- About the app
Fixes:
- Popup now uses system Material colors
- Fixed issue where service priority changes didn't work

View file

@ -1,15 +1,33 @@
Tiny app to redirect outgoing calls to Signal/Telegram/Threema/Whatsapp if available. Redirect calls to Signal, Telegram, Threema, or WhatsApp.
You can cancel redirection by clicking on "Redirecting to.." popup. ---
Permissions: **Features:**
* `ACCESS_NETWORK_STATE` - check internet is available - Material You design
* `CALL_PHONE` - make a call via messenger - Popup with cancel option
* `READ_CONTACTS` - check contact has a messenger record - Extensive settings panel:
* `SYSTEM_ALERT_WINDOW` - show redirecting popup and launch an activity from background - Toggle per-service support
* `CALL_REDIRECTION` - process outgoing call - Redirection only on Wi-Fi/Data
- Allowlist specific contacts
- Change per-service priority
- Customize popup position, animation, and duration
...
All permissions are mandatory. **Supports:**
- Signal
- Telegram
- Threema
- WhatsApp
It is Free Open Source Software. **Permissions required:**
License: GPL-3 - `CALL_PHONE` - initiate calls via messenger
- `READ_CONTACTS` - check contact compatibility
- `READ_PHONE_NUMBERS` - detect outgoing call
- `SYSTEM_ALERT_WINDOW` - show popup overlay
- `ACCESS_NETWORK_STATE` - check connectivity
- `INTERNET` - check connectivity and verify donates
Currently all of the permissions are required.
**License:** GPL-3.0
Free and open source

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 60 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 126 KiB

After

Width:  |  Height:  |  Size: 140 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 KiB

After

Width:  |  Height:  |  Size: 65 KiB

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

View file

@ -1 +1 @@
Redirect outgoing calls to Signal/Telegram/Threema/Whatsapp Redirecting outgoing calls to E2EE apps.

View file

@ -1,17 +0,0 @@
Petite application redirigereant les appels sortants vers Signal/Telegram/Threema/Whatsapp si ils sont
disponibles.
Vous pouvez annuler la redirection en cliquant sur la fenêtre contextuelle "Redirection vers...".
Autorisations:
* `ACCESS_NETWORK_STATE` - Vérifié la disponibilité d\'accès à internet
* `CALL_PHONE` - Passer un appel via messenger
* `READ_CONTACTS` - Vérifier que le contact a un enregistreur de message
* `SYSTEM_ALERT_WINDOW` - Afficher une fenêtre contextuelle de redirection et lancer une activité en
arrière-plan
* `CALL_REDIRECTION` - Traiter les appels sortants
Toutes les autorisations sont obligatoires.
C'est un logiciel libre et gratuit.
Licence : GPL-3

View file

@ -1 +0,0 @@
Rediriger les appels sortants vers Signal/Telegram/Threema/Whatsapp

View file

@ -1 +0,0 @@
Pulse

View file

@ -1,16 +0,0 @@
Мини приложение для перенаправления исходящих вызовов в Signal/Telegram/Threema/Whatsapp.
Вы можете отменить перенаправление, кликнув на всплывающее сообщение "Перенаправление в..".
Разрешения:
* `ACCESS_NETWORK_STATE` - проверить наличие интернета
* `CALL_PHONE` - позвонить через мессенджер
* `READ_CONTACTS - проверить контакт на наличие записи из мессенджера
* `SYSTEM_ALERT_WINDOW` - показать всплывающее сообщение о перенаправлении и запустить активити из
фона
* `CALL_REDIRECTION` - обработать исходящий вызов
Все разрешения обязательны для работы приложения.
Это свободное программное обеспечение с открытым исходным кодом.
Лицензия: GPL-3

View file

@ -1 +0,0 @@
Перенаправление исходящих вызовов в Signal/Telegram/Threema/Whatsapp

View file

@ -1 +0,0 @@
Pulse