Revert "Merge branch 'master' of https://codeberg.org/iNPUTmice/Conversations"
This reverts commit6e71e26044
, reversing changes made to82b4208304
.
1
.gitignore
vendored
|
@ -11,7 +11,6 @@ src/quicksyPlaystore/res/values/push.xml
|
|||
build/
|
||||
captures/
|
||||
signing.properties
|
||||
signing.managed.properties
|
||||
# Ignore Gradle GUI config
|
||||
gradle-app.setting
|
||||
|
||||
|
|
56
CHANGELOG.md
|
@ -1,61 +1,5 @@
|
|||
# Changelog
|
||||
|
||||
### Version 2.15.3
|
||||
|
||||
* fix call integration on some Android 14 devices
|
||||
* Introduce 'Invites from Strangers' setting
|
||||
|
||||
### Version 2.15.2
|
||||
|
||||
* Fix Quicksy registration on Android 6/7
|
||||
* Play incoming call ringtone on notification channel
|
||||
|
||||
### Version 2.15.1
|
||||
|
||||
* Show message status as icons
|
||||
* Introduce 'Large font' setting for message bubbles
|
||||
|
||||
### Version 2.15.0
|
||||
|
||||
* Use Material 3 theme
|
||||
* Reorganize settings
|
||||
* Synchronize read state across devices
|
||||
|
||||
### Version 2.14.2
|
||||
|
||||
* Restore access to Channel Discovery for Android 6+7
|
||||
* Improve logging for failed call integration
|
||||
|
||||
### Version 2.14.1
|
||||
|
||||
* Fix A/V calls on Android 8
|
||||
* Fix race conditions in new call integration
|
||||
* Fix video compression sticking around
|
||||
|
||||
### Version 2.14.0
|
||||
|
||||
* Improve integration of A/V calls into the operating system
|
||||
|
||||
### Version 2.13.4
|
||||
|
||||
* Fix minor regressions introduced with 2.13.1
|
||||
|
||||
### Version 2.13.3
|
||||
|
||||
* Provide easier access to 'Privacy Policy' on Play Store version (Quicksy and Conversations)
|
||||
* Remove address book integration on Play Store version of Conversations
|
||||
|
||||
### Version 2.13.2
|
||||
|
||||
* minor bug fixes
|
||||
* slight modifications in Quicksy onboard flow
|
||||
|
||||
### Version 2.13.1
|
||||
|
||||
* Support P2P file transfer via WebRTC data channels
|
||||
* Fix interoperability issues with Bind 2.0 on ejabberd
|
||||
* Bundle Let’s Encrypt root certificates for Android <= 7
|
||||
|
||||
### Version 2.13.0
|
||||
|
||||
* Easier access to 'Show QR code'
|
||||
|
|
|
@ -11,13 +11,7 @@
|
|||
</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img src="https://codeberg.org/iNPUTmice/Conversations/raw/branch/master/fastlane/metadata/android/en-US/images/phoneScreenshots/01.png" width="216"/>
|
||||
<img src="https://codeberg.org/iNPUTmice/Conversations/raw/branch/master/fastlane/metadata/android/en-US/images/phoneScreenshots/02.png" width="216"/>
|
||||
<img src="https://codeberg.org/iNPUTmice/Conversations/raw/branch/master/fastlane/metadata/android/en-US/images/phoneScreenshots/03.png" width="216"/>
|
||||
<img src="https://codeberg.org/iNPUTmice/Conversations/raw/branch/master/fastlane/metadata/android/en-US/images/phoneScreenshots/04.png" width="216"/>
|
||||
<img src="https://codeberg.org/iNPUTmice/Conversations/raw/branch/master/fastlane/metadata/android/en-US/images/phoneScreenshots/05.png" width="216"/>
|
||||
</p>
|
||||
![screenshots](https://codeberg.org/iNPUTmice/Conversations/raw/branch/master/screenshots.png)
|
||||
|
||||
## Design principles
|
||||
|
||||
|
|
30
build.gradle
|
@ -7,7 +7,7 @@ buildscript {
|
|||
maven { url "https://www.jitpack.io" }
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:8.3.1'
|
||||
classpath 'com.android.tools.build:gradle:8.2.0-rc03'
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21"
|
||||
}
|
||||
}
|
||||
|
@ -35,26 +35,24 @@ configurations {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
|
||||
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.3'
|
||||
|
||||
implementation 'androidx.viewpager:viewpager:1.0.0'
|
||||
|
||||
playstoreImplementation('com.google.firebase:firebase-messaging:23.4.1') {
|
||||
playstoreImplementation('com.google.firebase:firebase-messaging:23.3.1') {
|
||||
exclude group: 'com.google.firebase', module: 'firebase-core'
|
||||
exclude group: 'com.google.firebase', module: 'firebase-analytics'
|
||||
exclude group: 'com.google.firebase', module: 'firebase-measurement-connector'
|
||||
}
|
||||
conversationsPlaystoreImplementation("com.android.installreferrer:installreferrer:2.2")
|
||||
quicksyPlaystoreImplementation 'com.google.android.gms:play-services-auth-api-phone:18.0.2'
|
||||
quicksyPlaystoreImplementation 'com.google.android.gms:play-services-auth-api-phone:18.0.1'
|
||||
implementation 'com.github.open-keychain.open-keychain:openpgp-api:v5.7.1'
|
||||
implementation("com.github.CanHub:Android-Image-Cropper:2.2.0")
|
||||
implementation 'androidx.appcompat:appcompat:1.6.1'
|
||||
implementation 'androidx.exifinterface:exifinterface:1.3.7'
|
||||
implementation 'androidx.exifinterface:exifinterface:1.3.6'
|
||||
implementation 'androidx.cardview:cardview:1.0.0'
|
||||
implementation "androidx.preference:preference:1.2.1"
|
||||
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
||||
implementation 'com.google.android.material:material:1.11.0'
|
||||
implementation 'androidx.work:work-runtime:2.9.0'
|
||||
implementation 'com.google.android.material:material:1.10.0'
|
||||
|
||||
implementation "androidx.emoji2:emoji2:1.4.0"
|
||||
freeImplementation "androidx.emoji2:emoji2-bundled:1.4.0"
|
||||
|
@ -67,7 +65,7 @@ dependencies {
|
|||
implementation 'me.leolin:ShortcutBadger:1.1.22@aar'
|
||||
implementation 'org.whispersystems:signal-protocol-java:2.6.2'
|
||||
implementation 'com.makeramen:roundedimageview:2.3.0'
|
||||
|
||||
implementation "com.wefika:flowlayout:0.4.1"
|
||||
//noinspection GradleDependency
|
||||
implementation('com.github.natario1:Transcoder:v0.9.1') {
|
||||
exclude group: 'com.otaliastudios.opengl', module: 'egloo'
|
||||
|
@ -80,15 +78,15 @@ dependencies {
|
|||
implementation 'org.hsluv:hsluv:0.2'
|
||||
implementation 'org.conscrypt:conscrypt-android:2.5.2'
|
||||
implementation 'me.drakeet.support:toastcompat:1.1.0'
|
||||
implementation "com.leinardi.android:speed-dial:3.3.0"
|
||||
implementation "com.leinardi.android:speed-dial:3.2.0"
|
||||
|
||||
implementation "com.squareup.retrofit2:retrofit:2.9.0"
|
||||
implementation "com.squareup.retrofit2:converter-gson:2.9.0"
|
||||
implementation "com.squareup.okhttp3:okhttp:4.12.0"
|
||||
implementation "com.squareup.okhttp3:okhttp:4.11.0"
|
||||
|
||||
implementation 'com.google.guava:guava:32.1.3-android'
|
||||
quicksyImplementation 'io.michaelrocks:libphonenumber-android:8.13.28'
|
||||
implementation 'im.conversations.webrtc:webrtc-android:119.0.1'
|
||||
implementation 'io.michaelrocks:libphonenumber-android:8.13.17'
|
||||
implementation 'im.conversations.webrtc:webrtc-android:119.0.0'
|
||||
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
||||
implementation "androidx.recyclerview:recyclerview:1.2.1"
|
||||
|
@ -119,8 +117,8 @@ android {
|
|||
defaultConfig {
|
||||
minSdkVersion 24
|
||||
targetSdkVersion 34
|
||||
versionCode 42110
|
||||
versionName "2.15.3"
|
||||
versionCode 42081
|
||||
versionName "2.13.0"
|
||||
archivesBaseName += "-$versionName"
|
||||
applicationId "eu.siacs.conversations.narayana"
|
||||
resValue "string", "applicationId", applicationId
|
||||
|
@ -166,12 +164,10 @@ android {
|
|||
def appName = "Quicksy"
|
||||
resValue "string", "app_name", appName
|
||||
buildConfigField "String", "APP_NAME", "\"$appName\""
|
||||
buildConfigField "String", "PRIVACY_POLICY", "\"https://quicksy.im/privacy.htm\""
|
||||
}
|
||||
|
||||
conversations {
|
||||
dimension "mode"
|
||||
buildConfigField "String", "PRIVACY_POLICY", "\"https://conversations.im/privacy.html\""
|
||||
}
|
||||
|
||||
playstore {
|
||||
|
|
|
@ -474,26 +474,12 @@
|
|||
<xmpp:version>0.1.0</xmpp:version>
|
||||
</xmpp:SupportedXep>
|
||||
</implements>
|
||||
<implements>
|
||||
<xmpp:SupportedXep>
|
||||
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0484.html"/>
|
||||
<xmpp:status>complete</xmpp:status>
|
||||
<xmpp:version>0.1.0</xmpp:version>
|
||||
</xmpp:SupportedXep>
|
||||
</implements>
|
||||
<implements>
|
||||
<xmpp:SupportedXep>
|
||||
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0490.html"/>
|
||||
<xmpp:status>complete</xmpp:status>
|
||||
<xmpp:version>0.1.0</xmpp:version>
|
||||
</xmpp:SupportedXep>
|
||||
</implements>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>2.14.0</revision>
|
||||
<created>2024-03-22</created>
|
||||
<file-release rdf:resource="https://codeberg.org/iNPUTmice/Conversations/archive/2.14.0.tar.gz"/>
|
||||
<revision>2.9.13</revision>
|
||||
<created>2021-05-03</created>
|
||||
<file-release rdf:resource="https://github.com/iNPUTmice/Conversations/archive/2.9.13.tar.gz"/>
|
||||
</Version>
|
||||
</release>
|
||||
</Project>
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
* Leichterer Zugriff auf 'QR-Code anzeigen'
|
||||
* Unterstützung von PEP Native Bookmarks
|
||||
* Unterstützung für SDP Offer / Answer-Model (wird von SIP Gateways verwendet)
|
||||
* Anhebung der Ziel-API auf Android 14
|
|
@ -1,3 +0,0 @@
|
|||
* Unterstützung von P2P-Dateiübertragung über WebRTC-Datenkanäle
|
||||
* Behebung von Interoperabilitätsproblemen mit Bind 2.0 auf ejabberd
|
||||
* Bündelung von Let's Encrypt Root-Zertifikaten für Android <= 7
|
|
@ -1,2 +0,0 @@
|
|||
* kleinere Fehlerbehebungen
|
||||
* Geringfügige Änderungen beim Quicksy-Onboarding
|
|
@ -1,2 +0,0 @@
|
|||
* Einfacherer Zugang zu den Datenschutzbestimmungen in der Play Store-Version (Quicksy und Conversations)
|
||||
* Entfernen der Adressbuchintegration in der Play Store-Version von Conversations
|
|
@ -1 +0,0 @@
|
|||
* Behebung kleinerer Schwierigkeiten, die mit 2.13.1 eingeführt wurden
|
|
@ -1 +0,0 @@
|
|||
* Verbesserung der Integration von A/V-Aufrufen in das Betriebssystem
|
|
@ -1,3 +0,0 @@
|
|||
* Behebung von A/V-Anrufen unter Android 8
|
||||
* Behebung von Problemen bei der Integration neuer Anrufe
|
||||
* Behebt das Problem mit der Videokompression
|
|
@ -1,2 +0,0 @@
|
|||
* Wiederherstellung des Zugangs zu Channel Discovery für Android 6+7
|
||||
* Verbesserte Protokollierung bei fehlgeschlagener Anrufintegration
|
|
@ -1,3 +0,0 @@
|
|||
* Nutzung des Material 3 Designs
|
||||
* Einstellungen umgestaltet
|
||||
* Lesestatus geräteübergreifend synchronisieren
|
|
@ -1,3 +0,0 @@
|
|||
* Nutzung des Material 3 Designs
|
||||
* Einstellungen umgestaltet
|
||||
* Lesestatus geräteübergreifend synchronisieren
|
|
@ -1,2 +0,0 @@
|
|||
* Nachrichtenstatus als Symbole anzeigen
|
||||
* Einstellung für Schriftgröße der Nachrichten hinzugefügt
|
|
@ -1,2 +0,0 @@
|
|||
* Quicksy Registrierung auf Android 6/7 repariert
|
||||
* Klingelton für eingehende Anrufe im Benachrichtigungskanal abspielen
|
|
@ -1,2 +0,0 @@
|
|||
* Anrufintegration auf einigen Android 14-Geräten behoben
|
||||
* Neue Einstellung "Einladungen von Unbekannten"
|
|
@ -1,3 +0,0 @@
|
|||
* Support P2P file transfer via WebRTC data channels
|
||||
* Fix interoperability issues with Bind 2.0 on ejabberd
|
||||
* Bundle Let’s Encrypt root certificates for Android <= 7
|
|
@ -1,2 +0,0 @@
|
|||
* minor bug fixes
|
||||
* slight modifications in Quicksy onboard flow
|
|
@ -1,2 +0,0 @@
|
|||
* Provide easier access to 'Privacy Policy' on Play Store version (Quicksy and Conversations)
|
||||
* Remove address book integration on Play Store version of Conversations
|
|
@ -1 +0,0 @@
|
|||
* Fix minor regressions introduced with 2.13.1
|
|
@ -1 +0,0 @@
|
|||
* Improve integration of A/V calls into the operating system
|
|
@ -1,3 +0,0 @@
|
|||
* Fix A/V calls on Android 8
|
||||
* Fix race conditions in new call integration
|
||||
* Fix video compression sticking around
|
|
@ -1,2 +0,0 @@
|
|||
* Restore access to Channel Discovery for Android 6+7
|
||||
* Improve logging for failed call integration
|
|
@ -1,3 +0,0 @@
|
|||
* Use Material 3 theme
|
||||
* Reorganize settings
|
||||
* Synchronize read state across devices
|
|
@ -1,2 +0,0 @@
|
|||
* Show message status as icons
|
||||
* Introduce 'Large font' setting for message bubbles
|
|
@ -1,2 +0,0 @@
|
|||
* Fix Quicksy registration on Android 6/7
|
||||
* Play incoming call ringtone on notification channel
|
|
@ -1,2 +0,0 @@
|
|||
* fix call integration on some Android 14 devices
|
||||
* Introduce 'Invites from Strangers' setting
|
Before Width: | Height: | Size: 154 KiB After Width: | Height: | Size: 525 KiB |
Before Width: | Height: | Size: 222 KiB After Width: | Height: | Size: 449 KiB |
Before Width: | Height: | Size: 208 KiB After Width: | Height: | Size: 612 KiB |
Before Width: | Height: | Size: 198 KiB After Width: | Height: | Size: 475 KiB |
Before Width: | Height: | Size: 168 KiB After Width: | Height: | Size: 339 KiB |
Before Width: | Height: | Size: 124 KiB After Width: | Height: | Size: 364 KiB |
Before Width: | Height: | Size: 148 KiB After Width: | Height: | Size: 284 KiB |
Before Width: | Height: | Size: 83 KiB After Width: | Height: | Size: 168 KiB |
Before Width: | Height: | Size: 184 KiB After Width: | Height: | Size: 418 KiB |
Before Width: | Height: | Size: 109 KiB After Width: | Height: | Size: 433 KiB |
Before Width: | Height: | Size: 119 KiB After Width: | Height: | Size: 424 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 86 KiB |
Before Width: | Height: | Size: 109 KiB After Width: | Height: | Size: 462 KiB |
|
@ -1,3 +0,0 @@
|
|||
* Admite transferencia de archivos P2P a través del canal de datos WebRTC
|
||||
* Solucionar problemas de interoperabilidad con Bind 2.0 en ejabberd
|
||||
* Paquetes de certificado raíz Let's Encrypt para Android <= 7
|
|
@ -1,2 +0,0 @@
|
|||
* Correcciones de errores menores
|
||||
* ligeras modificaciones en el flujo interno de Quicksy
|
|
@ -1,2 +0,0 @@
|
|||
* Facilitar el acceso a la "Política de privacidad" en la versión de Play Store (Quicksy y Conversations).
|
||||
* Eliminar la integración de la libreta de direcciones en la versión Play Store de Conversations
|
|
@ -1 +0,0 @@
|
|||
* Se corrigieron problemas menores introducidos en 2.13.1
|
|
@ -1 +0,0 @@
|
|||
* Mejorar la integración de las llamadas A/V en el sistema operativo
|
|
@ -1,3 +0,0 @@
|
|||
* Reparar llamadas de audio/vídeo en Android 8
|
||||
* Se corrigió la condición de carrera en la integración de nuevas llamadas.
|
||||
* Soluciona el problema de compresión de video
|
|
@ -1,2 +0,0 @@
|
|||
* Restaurar el acceso a Channel Discovery para Android 6+7
|
||||
* Mejorar el registro para la integración de llamadas fallidas
|
|
@ -1,3 +0,0 @@
|
|||
* Usar el tema Material 3
|
||||
* Reorganizar la configuración
|
||||
* Sincronizar el estado de lectura entre dispositivos
|
|
@ -1,2 +0,0 @@
|
|||
* Mostrar el estado de los mensajes como iconos
|
||||
* Introducir la opción "Fuente grande" para las burbujas de mensajes
|
|
@ -1,2 +0,0 @@
|
|||
* Arreglar el registro de Quicksy en Android 6/7
|
||||
* Reproducir el tono de llamada entrante en el canal de notificación
|
|
@ -1,2 +0,0 @@
|
|||
* arreglar la integración de llamadas en algunos dispositivos con Android 14
|
||||
* Introducir la configuración 'Invitaciones de extraños'
|
|
@ -1,4 +1,4 @@
|
|||
* Acceso mais rápido a 'Mostrar código QR'
|
||||
* Soporte para PEP Marcadores Nativos
|
||||
* Acceso mais rápido á 'Mostrar código QR'
|
||||
* Soporte para a PEP Marcadores Nativos
|
||||
* Engadido soporte para SDP Offer / Answer Model (usado por pasarelas SIP)
|
||||
* Establecida a API de Android 14 como obxectivo
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
* Soporte para a transferencia de ficheiros P2P a través de canles de datos WebRTC
|
||||
* Arranxo dos problemas de interoperabilidade con Bind 2.0 en ejabberd
|
||||
* Paquete de certificados raiz Let's Encrypt para Android <=7
|
|
@ -1,2 +0,0 @@
|
|||
* arranxos menores
|
||||
* pequenos cambios no primeiro incio de Quicksy
|
|
@ -1,2 +0,0 @@
|
|||
* Acceso máis doado á 'Política de Privacidade' na versión da Play Store (Quicksy e Conversations)
|
||||
* Retirada a integración coa libreta de enderezo na versión de Conversations da Play Store
|
|
@ -1 +0,0 @@
|
|||
* Arranxo de regresións menores introducidas en 2.13.1
|
|
@ -1 +0,0 @@
|
|||
* Melloras na integración das chamadas de A/V co sistema operativo
|
|
@ -1,3 +0,0 @@
|
|||
* Arranxo das chamadas de A/V en Android 8
|
||||
* Arranxo das prioridades na novas chamadas integradas
|
||||
* Arranxo do antigo problema coa compresión do vídeo
|
|
@ -1,2 +0,0 @@
|
|||
* Restablecer o acceso ao Descubrimento de Canles para Android 6+7
|
||||
* Mellorar o acceso para a integración de chamadas que fallou
|
|
@ -1,3 +0,0 @@
|
|||
* Uso do decorado Material 3
|
||||
* Reorganización dos Axustes
|
||||
* Sincronización entre dispositivos do estado de lectura
|
|
@ -1,2 +0,0 @@
|
|||
* Mostrar estado das mensaxes como iconas
|
||||
* Novo axuste para 'Tamaño de letra grande' nas mensaxes
|
|
@ -1,2 +0,0 @@
|
|||
* Solución para crear conta con Quicksy en Android 6/7
|
||||
* Reproducir ton de chamada recibida na canle de notificación
|
|
@ -1,2 +0,0 @@
|
|||
* arranxo da integración de chamadas nalgúns Android 14
|
||||
* novo axuste para 'Convites de Descoñecidas'
|
|
@ -1,3 +0,0 @@
|
|||
* Supporto per trasferimenti P2P di file via canali di dati WebRTC
|
||||
* Corretti problemi di interoperabilità con Bind 2.0 su ejabberd
|
||||
* Integra certificati root di Let’s Encrypt su Android <= 7
|
|
@ -1,2 +0,0 @@
|
|||
* correzioni minori
|
||||
* piccole modifiche nel flusso di configurazione di Quicksy
|
|
@ -1,2 +0,0 @@
|
|||
* Accesso più facile alla 'Informativa sulla privacy' nella versione Play Store (Quicksy e Conversations)
|
||||
* Rimossa l'integrazione alla rubrica nella versione Play Store di Conversations
|
|
@ -1 +0,0 @@
|
|||
* Corrette regressioni minori introdotte con la 2.13.1
|
|
@ -1 +0,0 @@
|
|||
* Migliorata l'integrazione di chiamate A/V nel sistema operativo
|
|
@ -1,3 +0,0 @@
|
|||
* Corrette chiamate A/V su Android 8
|
||||
* Corretta race conditions nella nuova integrazione chiamate
|
||||
* Correzioni sulla compressione video
|
|
@ -1,2 +0,0 @@
|
|||
* Ripristinato l'accesso alla scoperta dei canali su Android 6+7
|
||||
* Migliorati i log per integrazione fallita di chiamate
|
|
@ -1,3 +0,0 @@
|
|||
* Utilizzo del tema Material 3
|
||||
* Riorganizzazione impostazioni
|
||||
* Sincronizzazione stato di lettura tra dispositivi
|
|
@ -1,2 +0,0 @@
|
|||
* Mostra lo stato dei messaggi come icone
|
||||
* Introdotta impostazione 'Caratteri grandi' per i messaggi
|
|
@ -1,2 +0,0 @@
|
|||
* Corretta registrazione a Quicksy su Android 6/7
|
||||
* Riproduci suoneria per chiamate in arrivo nel canale di notifica
|
|
@ -1,2 +0,0 @@
|
|||
* corretta l'integrazione delle chiamate su alcuni dispositivi con Android 14
|
||||
* Introdotta l'impostazione 'Inviti da estranei'
|
|
@ -1,3 +0,0 @@
|
|||
* Używanie motywu Material 3
|
||||
* Reorganizacja ustawień
|
||||
* Synchronizacja stanu przeczytania pomiędzy urządzeniami
|
|
@ -1,2 +0,0 @@
|
|||
* Pokazywanie stanu wiadomości poprzez ikony
|
||||
* Wprowadzenia ustawienia „Duża czcionka” dla baniek wiadomości
|
|
@ -1,2 +0,0 @@
|
|||
* Naprawienie rejestracji w Quicksy w Androidzie 6/7
|
||||
* Odtwarzanie dzwonka połączenia przychodzącego w kanale powiadomień
|
|
@ -1,2 +0,0 @@
|
|||
* Naprawienie integracji rozmów na niektórych urządzeniach z Androidem 14
|
||||
* Wprowadzenie ustawienia „Zaproszenia od nieznajomych”
|
|
@ -1,2 +0,0 @@
|
|||
* незначительные исправления
|
||||
* значительные изменения приветствия Quicksy
|
|
@ -1,2 +0,0 @@
|
|||
* Упрощён доступ к Политике конфиденциальности в версии для Play Маркета (Quicksy и Conversations)
|
||||
* Из версии Conversations для Play Маркета удалена интеграция с Контактами
|
|
@ -1 +0,0 @@
|
|||
* Исправлены незначительные ухудшения, появившиеся в версии 2.13.1
|
|
@ -1 +0,0 @@
|
|||
* Улучшена интеграция вызовов A/V с операционной системой
|
|
@ -1,8 +1,8 @@
|
|||
Version 2.10.9
|
||||
* Kërko leje Bluetooth, kur bëhen thirrje A/V (Mund ta hidhni tej, nëse s’përdorni kufje Bluetooth me mikrofon)
|
||||
* Ndreqje të mete, për thirrje në Movim
|
||||
* Ndreqje shfaqjeje avatari të gabuar për fjalosje në grup
|
||||
* Kërko leje Bluetooth, kur bëhen thirrje A/V (Mund ta hidhni tej këtë, nëse s’përdorni kufje Bluetooth me mikrofon)
|
||||
* Ndreqje të mete, kur thirret dikush në Movim
|
||||
* Ndreqje shfaqjeje avatari gabim për fjalosje në grup
|
||||
* Pyet përherë për lënie jashtë optimizimesh për baterinë
|
||||
* Vendosje flamurke “vetëm vendore” për njoftime “x llogari të lidhura”
|
||||
* Ndreqje ndërveprimi me shtojcën Google Maps Share Location
|
||||
* Heqje poshtëshënimi lidhur me tarifë shërbyesi
|
||||
* Ndreqje ndërveprimi me shtojcën Google Maps Share Location Plugin
|
||||
* Heqje poshtëshënimi lidhur me tarifa shërbyesi
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
* Rritje rrezeje cepi për foto profilesh
|
|
@ -1,2 +0,0 @@
|
|||
* Kalim i versionit për Target SDK sërish në 33
|
||||
* Ndreqje problemesh për shërbyes që mbulojnë SASL2 me/pa Administrim brendazi Rrjedhash
|
|
@ -1 +0,0 @@
|
|||
* Ndreqje e interpretimit gabimisht të 'q' si një shkronjë cirilike
|
|
@ -1 +0,0 @@
|
|||
* Heqje nga versioni në Google Play e veçorisë së pikasjes së kanaleve
|
|
@ -1 +0,0 @@
|
|||
* Çaktivizim i hapjes së kartelave kopjeruajtje (ceb) nga përgjegjës kartelash
|
|
@ -1 +0,0 @@
|
|||
* Sjellje për herë të parë e formati të ri kartelash kopjeruajtje
|
|
@ -1,2 +0,0 @@
|
|||
* mbulim rregullimesh njoftimi bazuar në bisedë specifike
|
||||
* përdorim opus-i për mesazhe zanorë në Android 10
|
|
@ -1,3 +0,0 @@
|
|||
* Kalim versioni për varësi libwebrtc në M117 dhe ndryshim edhe për libvpx
|
||||
* Rikthim te AAC për mesazhe zanorë
|
||||
* Mbulim rregullimesh gjuhe sipas aplikacioni
|
|
@ -1,3 +0,0 @@
|
|||
* Mbulim për DNS Private (DNS përmes TLS)
|
||||
* Mbulim për ikonë nisësi të përshtatur nga temë
|
||||
* Ndreqje problemi të rrallë me leje, kur ndahen kartela në Android 11+
|
|
@ -1,4 +0,0 @@
|
|||
* Përdorim më i lehtë i “Shfaq kod QR”
|
||||
* Mbulim për Faqerojtës PEP të vetëm sistemit
|
||||
* Shtim mbulimi për Ofertë SDP / Model Përgjigjesh (Përdorur nga kanale SIP)
|
||||
* Ngritje e versioni të synuar API në Android 14
|
|
@ -1,3 +0,0 @@
|
|||
* Mbulim shpërnguljesh kartelash P2P përmes kanalesh WebRTC të dhënash
|
||||
* Ndreqje problemesh shkalle ndërveprimi me Bind 2.0 në ejabberd
|
||||
* Paketim dëshmish Let’s Encrypt rrënje për Android <= 7
|
|
@ -1,2 +0,0 @@
|
|||
* ndreqje të metash të vockla
|
||||
* ndryshime të vockla te hapat e mirëseardhjes në Quicksy
|
|
@ -1,2 +0,0 @@
|
|||
* Furnizim hyrjeje më të lehtë te “Rregulla Privatësie” në versionin Play Store (Quicksy dhe Conversations)
|
||||
* Heqje integrimi libri adresash te versioni në Play Store i Conversations
|
|
@ -1 +0,0 @@
|
|||
* Ndreqje prapakthimesh të vockla të sjella me 2.13.1
|
|
@ -1 +0,0 @@
|
|||
* Përmirësim integrimi thirrjesh A/V me sistemin operativ
|