This reverts commit 6e71e26044, reversing
changes made to 82b4208304.
This commit is contained in:
kosyak 2024-05-18 11:06:10 +02:00
parent 2c749c8d95
commit 3db7413bf2
1530 changed files with 11939 additions and 21790 deletions

1
.gitignore vendored
View file

@ -11,7 +11,6 @@ src/quicksyPlaystore/res/values/push.xml
build/
captures/
signing.properties
signing.managed.properties
# Ignore Gradle GUI config
gradle-app.setting

View file

@ -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 Lets Encrypt root certificates for Android <= 7
### Version 2.13.0
* Easier access to 'Show QR code'

View file

@ -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

View file

@ -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 {

View file

@ -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>

View file

@ -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

View file

@ -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

View file

@ -1,2 +0,0 @@
* kleinere Fehlerbehebungen
* Geringfügige Änderungen beim Quicksy-Onboarding

View file

@ -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

View file

@ -1 +0,0 @@
* Behebung kleinerer Schwierigkeiten, die mit 2.13.1 eingeführt wurden

View file

@ -1 +0,0 @@
* Verbesserung der Integration von A/V-Aufrufen in das Betriebssystem

View file

@ -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

View file

@ -1,2 +0,0 @@
* Wiederherstellung des Zugangs zu Channel Discovery für Android 6+7
* Verbesserte Protokollierung bei fehlgeschlagener Anrufintegration

View file

@ -1,3 +0,0 @@
* Nutzung des Material 3 Designs
* Einstellungen umgestaltet
* Lesestatus geräteübergreifend synchronisieren

View file

@ -1,3 +0,0 @@
* Nutzung des Material 3 Designs
* Einstellungen umgestaltet
* Lesestatus geräteübergreifend synchronisieren

View file

@ -1,2 +0,0 @@
* Nachrichtenstatus als Symbole anzeigen
* Einstellung für Schriftgröße der Nachrichten hinzugefügt

View file

@ -1,2 +0,0 @@
* Quicksy Registrierung auf Android 6/7 repariert
* Klingelton für eingehende Anrufe im Benachrichtigungskanal abspielen

View file

@ -1,2 +0,0 @@
* Anrufintegration auf einigen Android 14-Geräten behoben
* Neue Einstellung "Einladungen von Unbekannten"

View file

@ -1,3 +0,0 @@
* Support P2P file transfer via WebRTC data channels
* Fix interoperability issues with Bind 2.0 on ejabberd
* Bundle Lets Encrypt root certificates for Android <= 7

View file

@ -1,2 +0,0 @@
* minor bug fixes
* slight modifications in Quicksy onboard flow

View file

@ -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

View file

@ -1 +0,0 @@
* Fix minor regressions introduced with 2.13.1

View file

@ -1 +0,0 @@
* Improve integration of A/V calls into the operating system

View file

@ -1,3 +0,0 @@
* Fix A/V calls on Android 8
* Fix race conditions in new call integration
* Fix video compression sticking around

View file

@ -1,2 +0,0 @@
* Restore access to Channel Discovery for Android 6+7
* Improve logging for failed call integration

View file

@ -1,3 +0,0 @@
* Use Material 3 theme
* Reorganize settings
* Synchronize read state across devices

View file

@ -1,2 +0,0 @@
* Show message status as icons
* Introduce 'Large font' setting for message bubbles

View file

@ -1,2 +0,0 @@
* Fix Quicksy registration on Android 6/7
* Play incoming call ringtone on notification channel

View file

@ -1,2 +0,0 @@
* fix call integration on some Android 14 devices
* Introduce 'Invites from Strangers' setting

Binary file not shown.

Before

Width:  |  Height:  |  Size: 154 KiB

After

Width:  |  Height:  |  Size: 525 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 222 KiB

After

Width:  |  Height:  |  Size: 449 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 208 KiB

After

Width:  |  Height:  |  Size: 612 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 198 KiB

After

Width:  |  Height:  |  Size: 475 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 168 KiB

After

Width:  |  Height:  |  Size: 339 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 124 KiB

After

Width:  |  Height:  |  Size: 364 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 148 KiB

After

Width:  |  Height:  |  Size: 284 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 83 KiB

After

Width:  |  Height:  |  Size: 168 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 KiB

After

Width:  |  Height:  |  Size: 418 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 109 KiB

After

Width:  |  Height:  |  Size: 433 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 119 KiB

After

Width:  |  Height:  |  Size: 424 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 109 KiB

After

Width:  |  Height:  |  Size: 462 KiB

View file

@ -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

View file

@ -1,2 +0,0 @@
* Correcciones de errores menores
* ligeras modificaciones en el flujo interno de Quicksy

View file

@ -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

View file

@ -1 +0,0 @@
* Se corrigieron problemas menores introducidos en 2.13.1

View file

@ -1 +0,0 @@
* Mejorar la integración de las llamadas A/V en el sistema operativo

View file

@ -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

View file

@ -1,2 +0,0 @@
* Restaurar el acceso a Channel Discovery para Android 6+7
* Mejorar el registro para la integración de llamadas fallidas

View file

@ -1,3 +0,0 @@
* Usar el tema Material 3
* Reorganizar la configuración
* Sincronizar el estado de lectura entre dispositivos

View file

@ -1,2 +0,0 @@
* Mostrar el estado de los mensajes como iconos
* Introducir la opción "Fuente grande" para las burbujas de mensajes

View file

@ -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

View file

@ -1,2 +0,0 @@
* arreglar la integración de llamadas en algunos dispositivos con Android 14
* Introducir la configuración 'Invitaciones de extraños'

View file

@ -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

View file

@ -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

View file

@ -1,2 +0,0 @@
* arranxos menores
* pequenos cambios no primeiro incio de Quicksy

View file

@ -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

View file

@ -1 +0,0 @@
* Arranxo de regresións menores introducidas en 2.13.1

View file

@ -1 +0,0 @@
* Melloras na integración das chamadas de A/V co sistema operativo

View file

@ -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

View file

@ -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

View file

@ -1,3 +0,0 @@
* Uso do decorado Material 3
* Reorganización dos Axustes
* Sincronización entre dispositivos do estado de lectura

View file

@ -1,2 +0,0 @@
* Mostrar estado das mensaxes como iconas
* Novo axuste para 'Tamaño de letra grande' nas mensaxes

View file

@ -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

View file

@ -1,2 +0,0 @@
* arranxo da integración de chamadas nalgúns Android 14
* novo axuste para 'Convites de Descoñecidas'

View file

@ -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 Lets Encrypt su Android <= 7

View file

@ -1,2 +0,0 @@
* correzioni minori
* piccole modifiche nel flusso di configurazione di Quicksy

View file

@ -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

View file

@ -1 +0,0 @@
* Corrette regressioni minori introdotte con la 2.13.1

View file

@ -1 +0,0 @@
* Migliorata l'integrazione di chiamate A/V nel sistema operativo

View file

@ -1,3 +0,0 @@
* Corrette chiamate A/V su Android 8
* Corretta race conditions nella nuova integrazione chiamate
* Correzioni sulla compressione video

View file

@ -1,2 +0,0 @@
* Ripristinato l'accesso alla scoperta dei canali su Android 6+7
* Migliorati i log per integrazione fallita di chiamate

View file

@ -1,3 +0,0 @@
* Utilizzo del tema Material 3
* Riorganizzazione impostazioni
* Sincronizzazione stato di lettura tra dispositivi

View file

@ -1,2 +0,0 @@
* Mostra lo stato dei messaggi come icone
* Introdotta impostazione 'Caratteri grandi' per i messaggi

View file

@ -1,2 +0,0 @@
* Corretta registrazione a Quicksy su Android 6/7
* Riproduci suoneria per chiamate in arrivo nel canale di notifica

View file

@ -1,2 +0,0 @@
* corretta l'integrazione delle chiamate su alcuni dispositivi con Android 14
* Introdotta l'impostazione 'Inviti da estranei'

View file

@ -1,3 +0,0 @@
* Używanie motywu Material 3
* Reorganizacja ustawień
* Synchronizacja stanu przeczytania pomiędzy urządzeniami

View file

@ -1,2 +0,0 @@
* Pokazywanie stanu wiadomości poprzez ikony
* Wprowadzenia ustawienia „Duża czcionka” dla baniek wiadomości

View file

@ -1,2 +0,0 @@
* Naprawienie rejestracji w Quicksy w Androidzie 6/7
* Odtwarzanie dzwonka połączenia przychodzącego w kanale powiadomień

View file

@ -1,2 +0,0 @@
* Naprawienie integracji rozmów na niektórych urządzeniach z Androidem 14
* Wprowadzenie ustawienia „Zaproszenia od nieznajomych”

View file

@ -1,2 +0,0 @@
* незначительные исправления
* значительные изменения приветствия Quicksy

View file

@ -1,2 +0,0 @@
* Упрощён доступ к Политике конфиденциальности в версии для Play Маркета (Quicksy и Conversations)
* Из версии Conversations для Play Маркета удалена интеграция с Контактами

View file

@ -1 +0,0 @@
* Исправлены незначительные ухудшения, появившиеся в версии 2.13.1

View file

@ -1 +0,0 @@
* Улучшена интеграция вызовов A/V с операционной системой

View file

@ -1,8 +1,8 @@
Version 2.10.9
* Kërko leje Bluetooth, kur bëhen thirrje A/V (Mund ta hidhni tej, nëse spë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 spë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

View file

@ -1 +0,0 @@
* Rritje rrezeje cepi për foto profilesh

View file

@ -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

View file

@ -1 +0,0 @@
* Ndreqje e interpretimit gabimisht të 'q' si një shkronjë cirilike

View file

@ -1 +0,0 @@
* Heqje nga versioni në Google Play e veçorisë së pikasjes së kanaleve

View file

@ -1 +0,0 @@
* Çaktivizim i hapjes së kartelave kopjeruajtje (ceb) nga përgjegjës kartelash

View file

@ -1 +0,0 @@
* Sjellje për herë të parë e formati të ri kartelash kopjeruajtje

View file

@ -1,2 +0,0 @@
* mbulim rregullimesh njoftimi bazuar në bisedë specifike
* përdorim opus-i për mesazhe zanorë në Android 10

View file

@ -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

View file

@ -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+

View file

@ -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

View file

@ -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 Lets Encrypt rrënje për Android <= 7

View file

@ -1,2 +0,0 @@
* ndreqje të metash të vockla
* ndryshime të vockla te hapat e mirëseardhjes në Quicksy

View file

@ -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

View file

@ -1 +0,0 @@
* Ndreqje prapakthimesh të vockla të sjella me 2.13.1

View file

@ -1 +0,0 @@
* Përmirësim integrimi thirrjesh A/V me sistemin operativ

Some files were not shown because too many files have changed in this diff Show more