mirror of
https://github.com/snikket-im/snikket-android.git
synced 2025-10-26 11:19:41 +00:00
Merge with Conversations 5183a51625 (2.13.4)
This commit is contained in:
commit
ef97423e3e
1
.gitignore
vendored
1
.gitignore
vendored
@ -11,6 +11,7 @@ src/quicksyPlaystore/res/values/push.xml
|
||||
build/
|
||||
captures/
|
||||
signing.properties
|
||||
signing.managed.properties
|
||||
# Ignore Gradle GUI config
|
||||
gradle-app.setting
|
||||
|
||||
|
||||
7
.woodpecker.yml
Normal file
7
.woodpecker.yml
Normal file
@ -0,0 +1,7 @@
|
||||
steps:
|
||||
build:
|
||||
image: codeberg.org/freeyourgadget/android-fdroid-tools:latest
|
||||
commands:
|
||||
- ./gradlew clean
|
||||
- ./gradlew assembleConversationsFreeDebug
|
||||
- ./gradlew assembleQuicksyFreeDebug
|
||||
75
CHANGELOG.md
75
CHANGELOG.md
@ -1,5 +1,80 @@
|
||||
# Changelog
|
||||
|
||||
### 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'
|
||||
* Support PEP Native Bookmarks
|
||||
* Add support for SDP Offer / Answer Model (Used by SIP gateways)
|
||||
* Raise target API to Android 14
|
||||
|
||||
### Version 2.12.12
|
||||
|
||||
* Support Private DNS (DNS over TLS)
|
||||
* Support themed launcher icon
|
||||
* Fix rare permission issue when sharing files on Android 11+
|
||||
|
||||
### Version 2.12.11
|
||||
|
||||
* Bump libwebrtc dependency to M117 and bump libvpx
|
||||
* Go back to AAC for voice messages
|
||||
* Support per app language settings
|
||||
|
||||
### Version 2.12.10
|
||||
|
||||
* support per conversation notification settings
|
||||
* use opus for voice messages on Android 10
|
||||
|
||||
### Version 2.12.9
|
||||
|
||||
* Introduce new backup file format
|
||||
|
||||
### Version 2.12.8
|
||||
|
||||
* Disable opening backup files (.ceb) from file manager
|
||||
|
||||
### Version 2.12.7
|
||||
|
||||
* Remove channel discovery feature from Google Play version
|
||||
|
||||
### Version 2.12.6
|
||||
|
||||
* Fix 'q' falsely being recognized as cyrillic
|
||||
|
||||
### Version 2.12.5
|
||||
|
||||
* Bump Target SDK to 33 again
|
||||
* Fix issues on servers supporting SASL2 w/o inline Stream Management
|
||||
|
||||
### Version 2.12.4
|
||||
|
||||
* Revert Target SDK bump (back to 32) to fix various issues on Android 13
|
||||
|
||||
### Version 2.12.3
|
||||
|
||||
* Improve support for new emojis
|
||||
* Add ability to remove account from server
|
||||
* Show timestamp for calls
|
||||
|
||||
### Version 2.12.2
|
||||
|
||||
* Increase corner radius on profile pictures
|
||||
|
||||
@ -8,7 +8,7 @@ Snikket for Android is based on [Conversations](https://conversations.im/) by Da
|
||||
|
||||
The official Conversations repository is available at: https://codeberg.org/iNPUTmice/Conversations
|
||||
|
||||
Copyright (c) 2014-2023 Daniel Gultsch and Snikket Community Interest Company.
|
||||
Copyright (c) 2014-2024 Daniel Gultsch and Snikket Community Interest Company.
|
||||
|
||||
Snikket and the Snikket logo are trademarks of Snikket Community Interest Company.
|
||||
|
||||
|
||||
62
build.gradle
62
build.gradle
@ -6,7 +6,7 @@ buildscript {
|
||||
mavenCentral()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:7.4.0'
|
||||
classpath 'com.android.tools.build:gradle:8.2.0-rc03'
|
||||
}
|
||||
}
|
||||
|
||||
@ -15,7 +15,7 @@ apply plugin: 'com.android.application'
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
jcenter()
|
||||
maven { url='https://jitpack.io'}
|
||||
}
|
||||
|
||||
configurations {
|
||||
@ -31,25 +31,27 @@ configurations {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
|
||||
|
||||
implementation 'androidx.viewpager:viewpager:1.0.0'
|
||||
|
||||
playstoreImplementation('com.google.firebase:firebase-messaging:23.1.1') {
|
||||
playstoreImplementation('com.google.firebase:firebase-messaging:23.4.0') {
|
||||
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.1'
|
||||
implementation 'org.sufficientlysecure:openpgp-api:10.0'
|
||||
implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
|
||||
implementation 'androidx.appcompat:appcompat:1.5.1'
|
||||
implementation 'androidx.exifinterface:exifinterface:1.3.5'
|
||||
implementation 'com.github.open-keychain.open-keychain:openpgp-api:v5.7.1'
|
||||
implementation("com.github.CanHub:Android-Image-Cropper:2.0.0")
|
||||
implementation 'androidx.appcompat:appcompat:1.6.1'
|
||||
implementation 'androidx.exifinterface:exifinterface:1.3.7'
|
||||
implementation 'androidx.cardview:cardview:1.0.0'
|
||||
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
||||
implementation 'com.google.android.material:material:1.7.0'
|
||||
implementation 'com.google.android.material:material:1.11.0'
|
||||
|
||||
implementation "androidx.emoji2:emoji2:1.2.0"
|
||||
freeImplementation "androidx.emoji2:emoji2-bundled:1.2.0"
|
||||
implementation "androidx.emoji2:emoji2:1.4.0"
|
||||
freeImplementation "androidx.emoji2:emoji2-bundled:1.4.0"
|
||||
|
||||
implementation 'org.bouncycastle:bcmail-jdk15on:1.64'
|
||||
//zxing stopped supporting Java 7 so we have to stick with 3.3.3
|
||||
@ -61,9 +63,13 @@ dependencies {
|
||||
implementation 'com.makeramen:roundedimageview:2.3.0'
|
||||
implementation "com.wefika:flowlayout:0.4.1"
|
||||
//noinspection GradleDependency
|
||||
implementation 'com.otaliastudios:transcoder:0.9.1'
|
||||
implementation('com.github.natario1:Transcoder:v0.9.1') {
|
||||
exclude group: 'com.otaliastudios.opengl', module: 'egloo'
|
||||
}
|
||||
implementation 'com.github.natario1:Egloo:v0.4.0'
|
||||
|
||||
implementation 'org.jxmpp:jxmpp-jid:1.0.3'
|
||||
implementation 'org.jxmpp:jxmpp-stringprep-libidn:1.0.3'
|
||||
implementation 'org.osmdroid:osmdroid-android:6.1.11'
|
||||
implementation 'org.hsluv:hsluv:0.2'
|
||||
implementation 'org.conscrypt:conscrypt-android:2.5.2'
|
||||
@ -72,11 +78,11 @@ dependencies {
|
||||
|
||||
implementation "com.squareup.retrofit2:retrofit:2.9.0"
|
||||
implementation "com.squareup.retrofit2:converter-gson:2.9.0"
|
||||
implementation "com.squareup.okhttp3:okhttp:4.10.0"
|
||||
implementation "com.squareup.okhttp3:okhttp:4.12.0"
|
||||
|
||||
implementation 'com.google.guava:guava:31.1-android'
|
||||
quicksyImplementation 'io.michaelrocks:libphonenumber-android:8.12.49'
|
||||
implementation 'im.conversations.webrtc:webrtc-android:104.0.0'
|
||||
implementation 'com.google.guava:guava:32.1.3-android'
|
||||
quicksyImplementation 'io.michaelrocks:libphonenumber-android:8.13.17'
|
||||
implementation 'im.conversations.webrtc:webrtc-android:119.0.0'
|
||||
}
|
||||
|
||||
ext {
|
||||
@ -86,13 +92,13 @@ ext {
|
||||
|
||||
android {
|
||||
namespace 'eu.siacs.conversations'
|
||||
compileSdkVersion 33
|
||||
compileSdk 34
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 33
|
||||
versionCode 42051
|
||||
versionName "2.12.2-2"
|
||||
targetSdkVersion 34
|
||||
versionCode 42094
|
||||
versionName "2.13.4"
|
||||
archivesBaseName += "-$versionName"
|
||||
applicationId "org.snikket.android"
|
||||
resValue "string", "applicationId", applicationId
|
||||
@ -105,6 +111,9 @@ android {
|
||||
abi {
|
||||
universalApk true
|
||||
enable true
|
||||
reset()
|
||||
//noinspection ChromeOsAbiSupport
|
||||
include project.ext.abiCodes.keySet() as String[]
|
||||
}
|
||||
}
|
||||
|
||||
@ -117,11 +126,13 @@ android {
|
||||
}
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_1_8
|
||||
targetCompatibility JavaVersion.VERSION_1_8
|
||||
coreLibraryDesugaringEnabled true
|
||||
sourceCompatibility JavaVersion.VERSION_17
|
||||
targetCompatibility JavaVersion.VERSION_17
|
||||
}
|
||||
|
||||
flavorDimensions("mode", "distribution")
|
||||
flavorDimensions += "mode"
|
||||
flavorDimensions += "distribution"
|
||||
|
||||
productFlavors {
|
||||
|
||||
@ -133,10 +144,12 @@ 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://snikket.org/app/privacy/\""
|
||||
}
|
||||
|
||||
playstore {
|
||||
@ -231,8 +244,11 @@ android {
|
||||
lint {
|
||||
disable 'MissingTranslation', 'InvalidPackage', 'AppCompatResource'
|
||||
}
|
||||
buildFeatures {
|
||||
buildConfig true
|
||||
}
|
||||
|
||||
android.applicationVariants.all { variant ->
|
||||
android.applicationVariants.configureEach { variant ->
|
||||
variant.outputs.each { output ->
|
||||
def baseAbiVersionCode = project.ext.abiCodes.get(output.getFilter(com.android.build.OutputFile.ABI))
|
||||
if (baseAbiVersionCode != null) {
|
||||
|
||||
@ -91,13 +91,6 @@
|
||||
<xmpp:version>1.1</xmpp:version>
|
||||
</xmpp:SupportedXep>
|
||||
</implements>
|
||||
<implements>
|
||||
<xmpp:SupportedXep>
|
||||
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0048.html"/>
|
||||
<xmpp:status>complete</xmpp:status>
|
||||
<xmpp:version>1.1</xmpp:version>
|
||||
</xmpp:SupportedXep>
|
||||
</implements>
|
||||
<implements>
|
||||
<xmpp:SupportedXep>
|
||||
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0049.html"/>
|
||||
@ -215,13 +208,6 @@
|
||||
<xmpp:version>2.0.1</xmpp:version>
|
||||
</xmpp:SupportedXep>
|
||||
</implements>
|
||||
<implements>
|
||||
<xmpp:SupportedXep>
|
||||
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0199.html"/>
|
||||
<xmpp:status>complete</xmpp:status>
|
||||
<xmpp:version>2.0.1</xmpp:version>
|
||||
</xmpp:SupportedXep>
|
||||
</implements>
|
||||
<implements>
|
||||
<xmpp:SupportedXep>
|
||||
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0215.html"/>
|
||||
@ -389,7 +375,7 @@
|
||||
<xmpp:SupportedXep>
|
||||
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0377.html"/>
|
||||
<xmpp:status>complete</xmpp:status>
|
||||
<xmpp:version>0.2</xmpp:version>
|
||||
<xmpp:version>0.3.1</xmpp:version>
|
||||
</xmpp:SupportedXep>
|
||||
</implements>
|
||||
<implements>
|
||||
@ -399,6 +385,20 @@
|
||||
<xmpp:version>0.3.0</xmpp:version>
|
||||
</xmpp:SupportedXep>
|
||||
</implements>
|
||||
<implements>
|
||||
<xmpp:SupportedXep>
|
||||
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0386.html"/>
|
||||
<xmpp:status>complete</xmpp:status>
|
||||
<xmpp:version>0.4.0</xmpp:version>
|
||||
</xmpp:SupportedXep>
|
||||
</implements>
|
||||
<implements>
|
||||
<xmpp:SupportedXep>
|
||||
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0388.html"/>
|
||||
<xmpp:status>complete</xmpp:status>
|
||||
<xmpp:version>0.4.0</xmpp:version>
|
||||
</xmpp:SupportedXep>
|
||||
</implements>
|
||||
<implements>
|
||||
<xmpp:SupportedXep>
|
||||
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0391.html"/>
|
||||
@ -438,6 +438,13 @@
|
||||
<xmpp:version>0.2.1</xmpp:version>
|
||||
</xmpp:SupportedXep>
|
||||
</implements>
|
||||
<implements>
|
||||
<xmpp:SupportedXep>
|
||||
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0402.html"/>
|
||||
<xmpp:status>complete</xmpp:status>
|
||||
<xmpp:version>1.1.3</xmpp:version>
|
||||
</xmpp:SupportedXep>
|
||||
</implements>
|
||||
<implements>
|
||||
<xmpp:SupportedXep>
|
||||
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0410.html"/>
|
||||
@ -453,6 +460,13 @@
|
||||
<xmpp:version>0.2.0</xmpp:version>
|
||||
</xmpp:SupportedXep>
|
||||
</implements>
|
||||
<implements>
|
||||
<xmpp:SupportedXep>
|
||||
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0440.html"/>
|
||||
<xmpp:status>complete</xmpp:status>
|
||||
<xmpp:version>0.4.0</xmpp:version>
|
||||
</xmpp:SupportedXep>
|
||||
</implements>
|
||||
<implements>
|
||||
<xmpp:SupportedXep>
|
||||
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0454.html"/>
|
||||
|
||||
@ -22,12 +22,11 @@ This tutorial explains how you can transfer your Conversations data from an old
|
||||
## 3. Import the backup (new device)
|
||||
1. Install Conversations on your new device.
|
||||
2. Open Conversations for the first time.
|
||||
3. Tap on "Use other server"
|
||||
4. Tap on the three dot menu in the upper right corner and tap on "Import backup"
|
||||
5. If your backup files are not listed, tap on the cloud symbol in the upper right corner to choose the files from the where you saved them.
|
||||
6. Enter your account password to decrypt the backup.
|
||||
7. Remember to activate your account (head back to "manage accounts", see step 1.2).
|
||||
8. Check if chats work.
|
||||
3. Tap on the three dot menu in the upper right corner and tap on "Import backup"
|
||||
4. If your backup files are not listed, tap on the cloud symbol in the upper right corner to choose the files from where you saved them.
|
||||
5. Enter your account password to decrypt the backup.
|
||||
6. Remember to activate your account (head back to "manage accounts", see step 1.2).
|
||||
7. Check if chats work.
|
||||
|
||||
Once confirmed that the new device is running fine you can just uninstall the app from the old device.
|
||||
|
||||
|
||||
1
fastlane/metadata/android/de-DE/changelogs/42050.txt
Normal file
1
fastlane/metadata/android/de-DE/changelogs/42050.txt
Normal file
@ -0,0 +1 @@
|
||||
* Vergrößerung des Eckenradius bei Profilbildern
|
||||
2
fastlane/metadata/android/de-DE/changelogs/42059.txt
Normal file
2
fastlane/metadata/android/de-DE/changelogs/42059.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Ziel-SDK wieder auf 33 erhöht
|
||||
* Behebt Probleme auf Servern, die SASL2 ohne Inline Stream Management unterstützen
|
||||
1
fastlane/metadata/android/de-DE/changelogs/42060.txt
Normal file
1
fastlane/metadata/android/de-DE/changelogs/42060.txt
Normal file
@ -0,0 +1 @@
|
||||
* Fehlerhafte Erkennung von 'q' als kyrillisch behoben
|
||||
1
fastlane/metadata/android/de-DE/changelogs/42061.txt
Normal file
1
fastlane/metadata/android/de-DE/changelogs/42061.txt
Normal file
@ -0,0 +1 @@
|
||||
* Channelsuchfunktion aus der Google Play-Version entfernt
|
||||
1
fastlane/metadata/android/de-DE/changelogs/42062.txt
Normal file
1
fastlane/metadata/android/de-DE/changelogs/42062.txt
Normal file
@ -0,0 +1 @@
|
||||
* Öffnen von Sicherungsdateien (.ceb) im Dateimanager deaktiviert
|
||||
1
fastlane/metadata/android/de-DE/changelogs/42065.txt
Normal file
1
fastlane/metadata/android/de-DE/changelogs/42065.txt
Normal file
@ -0,0 +1 @@
|
||||
* Einführung eines neuen Formats für Sicherungsdateien
|
||||
2
fastlane/metadata/android/de-DE/changelogs/42068.txt
Normal file
2
fastlane/metadata/android/de-DE/changelogs/42068.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Unterstützung der Benachrichtigungseinstellungen pro Unterhaltung
|
||||
* Verwendung von Opus für Sprachnachrichten unter Android 10
|
||||
3
fastlane/metadata/android/de-DE/changelogs/42072.txt
Normal file
3
fastlane/metadata/android/de-DE/changelogs/42072.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Änderung der libwebrtc-Abhängigkeit auf M117 und Änderung von libvpx
|
||||
* Rückkehr zu AAC für Sprachnachrichten
|
||||
* Unterstützung von Spracheinstellungen innerhalb einer App
|
||||
3
fastlane/metadata/android/de-DE/changelogs/42074.txt
Normal file
3
fastlane/metadata/android/de-DE/changelogs/42074.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Unterstützung von Private DNS (DNS über TLS)
|
||||
* Unterstützung für designbasiertes Startsymbol
|
||||
* Behebt ein seltenes Berechtigungsproblem beim Teilen von Dateien unter Android 11+
|
||||
3
fastlane/metadata/android/de-DE/changelogs/4207704.txt
Normal file
3
fastlane/metadata/android/de-DE/changelogs/4207704.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Unterstützung von Private DNS (DNS über TLS)
|
||||
* Unterstützung von designbezogenem Startsymbol
|
||||
* Behebt ein seltenes Berechtigungsproblem beim Teilen von Dateien unter Android 11+
|
||||
4
fastlane/metadata/android/de-DE/changelogs/4208104.txt
Normal file
4
fastlane/metadata/android/de-DE/changelogs/4208104.txt
Normal file
@ -0,0 +1,4 @@
|
||||
* 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
|
||||
3
fastlane/metadata/android/de-DE/changelogs/4208804.txt
Normal file
3
fastlane/metadata/android/de-DE/changelogs/4208804.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* 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
|
||||
2
fastlane/metadata/android/de-DE/changelogs/4209004.txt
Normal file
2
fastlane/metadata/android/de-DE/changelogs/4209004.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* kleinere Fehlerbehebungen
|
||||
* Geringfügige Änderungen beim Quicksy-Onboarding
|
||||
2
fastlane/metadata/android/de-DE/changelogs/4209204.txt
Normal file
2
fastlane/metadata/android/de-DE/changelogs/4209204.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Einfacherer Zugang zu den Datenschutzbestimmungen in der Play Store-Version (Quicksy und Conversations)
|
||||
* Entfernen der Adressbuchintegration in der Play Store-Version von Conversations
|
||||
1
fastlane/metadata/android/en-US/changelogs/42050.txt
Normal file
1
fastlane/metadata/android/en-US/changelogs/42050.txt
Normal file
@ -0,0 +1 @@
|
||||
* Increase corner radius on profile pictures
|
||||
2
fastlane/metadata/android/en-US/changelogs/42059.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/42059.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Bump Target SDK to 33 again
|
||||
* Fix issues on servers supporting SASL2 w/o inline Stream Management
|
||||
1
fastlane/metadata/android/en-US/changelogs/42060.txt
Normal file
1
fastlane/metadata/android/en-US/changelogs/42060.txt
Normal file
@ -0,0 +1 @@
|
||||
* Fix 'q' falsely being recognized as cyrillic
|
||||
1
fastlane/metadata/android/en-US/changelogs/42061.txt
Normal file
1
fastlane/metadata/android/en-US/changelogs/42061.txt
Normal file
@ -0,0 +1 @@
|
||||
* Remove channel discovery feature from Google Play version
|
||||
1
fastlane/metadata/android/en-US/changelogs/42062.txt
Normal file
1
fastlane/metadata/android/en-US/changelogs/42062.txt
Normal file
@ -0,0 +1 @@
|
||||
* Disable opening backup files (.ceb) from file manager
|
||||
1
fastlane/metadata/android/en-US/changelogs/42065.txt
Normal file
1
fastlane/metadata/android/en-US/changelogs/42065.txt
Normal file
@ -0,0 +1 @@
|
||||
* Introduce new backup file format
|
||||
2
fastlane/metadata/android/en-US/changelogs/42068.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/42068.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* support per conversation notification settings
|
||||
* use opus for voice messages on Android 10
|
||||
3
fastlane/metadata/android/en-US/changelogs/42072.txt
Normal file
3
fastlane/metadata/android/en-US/changelogs/42072.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Bump libwebrtc dependency to M117 and bump libvpx
|
||||
* Go back to AAC for voice messages
|
||||
* Support per app language settings
|
||||
3
fastlane/metadata/android/en-US/changelogs/4207704.txt
Normal file
3
fastlane/metadata/android/en-US/changelogs/4207704.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Support Private DNS (DNS over TLS)
|
||||
* Support themed launcher icon
|
||||
* Fix rare permission issue when sharing files on Android 11+
|
||||
4
fastlane/metadata/android/en-US/changelogs/4208104.txt
Normal file
4
fastlane/metadata/android/en-US/changelogs/4208104.txt
Normal file
@ -0,0 +1,4 @@
|
||||
* Easier access to 'Show QR code'
|
||||
* Support PEP Native Bookmarks
|
||||
* Add support for SDP Offer / Answer Model (Used by SIP gateways)
|
||||
* Raise target API to Android 14
|
||||
3
fastlane/metadata/android/en-US/changelogs/4208804.txt
Normal file
3
fastlane/metadata/android/en-US/changelogs/4208804.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* 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
|
||||
2
fastlane/metadata/android/en-US/changelogs/4209004.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/4209004.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* minor bug fixes
|
||||
* slight modifications in Quicksy onboard flow
|
||||
2
fastlane/metadata/android/en-US/changelogs/4209204.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/4209204.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Provide easier access to 'Privacy Policy' on Play Store version (Quicksy and Conversations)
|
||||
* Remove address book integration on Play Store version of Conversations
|
||||
1
fastlane/metadata/android/en-US/changelogs/4209404.txt
Normal file
1
fastlane/metadata/android/en-US/changelogs/4209404.txt
Normal file
@ -0,0 +1 @@
|
||||
* Fix minor regressions introduced with 2.13.1
|
||||
4
fastlane/metadata/android/es-ES/changelogs/349.txt
Normal file
4
fastlane/metadata/android/es-ES/changelogs/349.txt
Normal file
@ -0,0 +1,4 @@
|
||||
* Introducir configuración experta para realizar el descubrimiento de canales en el servidor local en lugar de search.jabber.network
|
||||
* Habilitar las marcas de verificación de entrega por defecto y eliminar la configuración
|
||||
* Habilitar «Enviar botón indica estado» por defecto y eliminar la configuración
|
||||
* Mover los ajustes de copia de seguridad y servicio en primer plano a la pantalla principal
|
||||
3
fastlane/metadata/android/es-ES/changelogs/351.txt
Normal file
3
fastlane/metadata/android/es-ES/changelogs/351.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Corrección de la transferencia de archivos Jingle IBB
|
||||
* Corrección de correcciones repetidas que llenaban la base de datos.
|
||||
* Transición a Last Message Correction v1.1
|
||||
4
fastlane/metadata/android/es-ES/changelogs/353.txt
Normal file
4
fastlane/metadata/android/es-ES/changelogs/353.txt
Normal file
@ -0,0 +1,4 @@
|
||||
* Permitir a los usuarios establecer su propio apodo
|
||||
* reanudar la descarga de archivos encriptados OMEMO
|
||||
* Los canales ahora usan '#' como símbolo en el avatar
|
||||
* Quicksy utiliza «siempre» como cifrado OMEMO por defecto (oculta el icono del candado)
|
||||
1
fastlane/metadata/android/es-ES/changelogs/360.txt
Normal file
1
fastlane/metadata/android/es-ES/changelogs/360.txt
Normal file
@ -0,0 +1 @@
|
||||
* Soporte para los parámetros URI de XMPP «?register» y «?register;preauth»
|
||||
1
fastlane/metadata/android/es-ES/changelogs/362.txt
Normal file
1
fastlane/metadata/android/es-ES/changelogs/362.txt
Normal file
@ -0,0 +1 @@
|
||||
* Soporte para el cambio automático de tema en Android 10
|
||||
2
fastlane/metadata/android/es-ES/changelogs/364.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/364.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Proporcionar vista previa de PDF en Android 5+
|
||||
* Utilizar IVs de 12 bytes para OMEMO
|
||||
2
fastlane/metadata/android/es-ES/changelogs/367.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/367.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Corregir la selección de avatar en algunos dispositivos Android 10
|
||||
* Corregir la transferencia de archivos más grandes
|
||||
1
fastlane/metadata/android/es-ES/changelogs/379.txt
Normal file
1
fastlane/metadata/android/es-ES/changelogs/379.txt
Normal file
@ -0,0 +1 @@
|
||||
* Llamadas de audio/vídeo (requiere soporte de servidor en forma de servidores STUN y TURN detectables mediante XEP-0215)
|
||||
2
fastlane/metadata/android/es-ES/changelogs/381.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/381.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Respuesta audible (marcación, llamada iniciada, llamada finalizada) para llamadas de voz.
|
||||
* Solucionado el problema de reintento de videollamada fallida
|
||||
2
fastlane/metadata/android/es-ES/changelogs/382.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/382.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Añadir botón para cambiar de cámara durante la videollamada
|
||||
* Corregidas las llamadas de voz en tablets
|
||||
3
fastlane/metadata/android/es-ES/changelogs/383.txt
Normal file
3
fastlane/metadata/android/es-ES/changelogs/383.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Mover el icono de llamada a la izquierda para mantener otros iconos de la barra de herramientas en un lugar coherente.
|
||||
* Mostrar la duración de la llamada durante las llamadas de audio
|
||||
* Desempate en las llamadas A/V (dos personas que se llaman al mismo tiempo)
|
||||
2
fastlane/metadata/android/es-ES/changelogs/387.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/387.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Reestructuración de la interfaz de inicio de sesión con certificado
|
||||
* Añadir la posibilidad de anclar chats en la parte superior (añadir a favoritos)
|
||||
3
fastlane/metadata/android/es-ES/changelogs/388.txt
Normal file
3
fastlane/metadata/android/es-ES/changelogs/388.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Reducir el eco durante las llamadas en algunos dispositivos
|
||||
* Arreglar el inicio de sesión cuando las contraseñas contienen caracteres especiales
|
||||
* Reproducir tonos de marcado y ocupado en el altavoz durante las videollamadas
|
||||
1
fastlane/metadata/android/es-ES/changelogs/390.txt
Normal file
1
fastlane/metadata/android/es-ES/changelogs/390.txt
Normal file
@ -0,0 +1 @@
|
||||
* Ofrecer la grabación de un mensaje de voz cuando la persona que llama está ocupada
|
||||
3
fastlane/metadata/android/es-ES/changelogs/393.txt
Normal file
3
fastlane/metadata/android/es-ES/changelogs/393.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Mostrar botón de ayuda si falla la llamada A/V
|
||||
* Corregidos algunos fallos molestos
|
||||
* Corregidas conexiones Jingle (transferencia de archivos + llamadas) con JIDs sin ocultar
|
||||
2
fastlane/metadata/android/es-ES/changelogs/394.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/394.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Se ha corregido el problema de las notificaciones que no aparecían en determinadas circunstancias.
|
||||
* Se han solucionado problemas de compatibilidad y bloqueos relacionados con las llamadas A/V
|
||||
3
fastlane/metadata/android/es-ES/changelogs/395.txt
Normal file
3
fastlane/metadata/android/es-ES/changelogs/395.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Añadir 'Volver al chat' a la pantalla de llamada de audio
|
||||
* Mejorar los atajos del teclado
|
||||
* corrección de errores
|
||||
3
fastlane/metadata/android/es-ES/changelogs/397.txt
Normal file
3
fastlane/metadata/android/es-ES/changelogs/397.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Gestión de archivos GPX
|
||||
* Mejorar el rendimiento de la restauración de las copias de seguridad
|
||||
* Corrección de errores
|
||||
4
fastlane/metadata/android/es-ES/changelogs/398.txt
Normal file
4
fastlane/metadata/android/es-ES/changelogs/398.txt
Normal file
@ -0,0 +1,4 @@
|
||||
* Buscar conversaciones individuales
|
||||
* Notificar al usuario si falla la entrega del mensaje
|
||||
* Recordar los nombres de usuario (nicks) de los usuarios de Quicksy en los reinicios
|
||||
* Añadir el botón para iniciar Orbot (Tor) desde la notificación si es necesario
|
||||
2
fastlane/metadata/android/es-ES/changelogs/401.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/401.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* búsqueda fija en Android <= 5
|
||||
* optimizar el consumo de la memoria
|
||||
3
fastlane/metadata/android/es-ES/changelogs/402.txt
Normal file
3
fastlane/metadata/android/es-ES/changelogs/402.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Ofrece la generación de invitaciones fáciles en los servidores compatibles
|
||||
* Mostrar GIFs enviados desde Movim
|
||||
* Almacenar avatares en caché
|
||||
3
fastlane/metadata/android/es-ES/changelogs/403.txt
Normal file
3
fastlane/metadata/android/es-ES/changelogs/403.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Corregidos problemas de conectividad cuando diferentes cuentas utilizaban diferentes mecanismos SCRAM.
|
||||
* Añadir soporte para SCRAM-SHA-512
|
||||
* Permitir la transferencia de archivos P2P (Jingle) con autocontacto
|
||||
1
fastlane/metadata/android/es-ES/changelogs/404.txt
Normal file
1
fastlane/metadata/android/es-ES/changelogs/404.txt
Normal file
@ -0,0 +1 @@
|
||||
* Pequeñas mejoras de estabilidad en las llamadas A/V
|
||||
1
fastlane/metadata/android/es-ES/changelogs/405.txt
Normal file
1
fastlane/metadata/android/es-ES/changelogs/405.txt
Normal file
@ -0,0 +1 @@
|
||||
* Quicksy: Recibir automáticamente SMS de verificación
|
||||
3
fastlane/metadata/android/es-ES/changelogs/407.txt
Normal file
3
fastlane/metadata/android/es-ES/changelogs/407.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Mostrar botón de llamada para contactos desconectados si previamente anunciaron soporte
|
||||
* El botón Atrás ya no finaliza la llamada cuando está conectada.
|
||||
* Corrección de errores
|
||||
4
fastlane/metadata/android/es-ES/changelogs/42000.txt
Normal file
4
fastlane/metadata/android/es-ES/changelogs/42000.txt
Normal file
@ -0,0 +1,4 @@
|
||||
* Posibilidad de seleccionar el tono de la llamada entrante
|
||||
* Corrección de la identificación de claves OpenPGP para OpenKeychain 5.6+.
|
||||
* Verificación correcta de los certificados TLS punycode
|
||||
* Mejora de la estabilidad del establecimiento de sesiones RTP (llamadas)
|
||||
2
fastlane/metadata/android/es-ES/changelogs/42006.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/42006.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Verificar llamadas A/V con sesiones OMEMO preexistentes
|
||||
* Mejorar la compatibilidad con implementaciones WebRTC no libwebrtc
|
||||
2
fastlane/metadata/android/es-ES/changelogs/42010.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/42010.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Varias correcciones de errores en torno a la compatibilidad con Tor
|
||||
* Mejora de la compatibilidad de llamadas con Dino
|
||||
1
fastlane/metadata/android/es-ES/changelogs/42012.txt
Normal file
1
fastlane/metadata/android/es-ES/changelogs/42012.txt
Normal file
@ -0,0 +1 @@
|
||||
* Corrección de la carga/descarga HTTP para usuarios que no confían en las CA del sistema
|
||||
1
fastlane/metadata/android/es-ES/changelogs/42013.txt
Normal file
1
fastlane/metadata/android/es-ES/changelogs/42013.txt
Normal file
@ -0,0 +1 @@
|
||||
* Solucionados los problemas de 'No Conectividad' en Android 7.1
|
||||
2
fastlane/metadata/android/es-ES/changelogs/42014.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/42014.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Verificar siempre el nombre del dominio. No sobrescribir al usuario
|
||||
* Soporta pre autenticación de roster
|
||||
1
fastlane/metadata/android/es-ES/changelogs/42015.txt
Normal file
1
fastlane/metadata/android/es-ES/changelogs/42015.txt
Normal file
@ -0,0 +1 @@
|
||||
* pequeñas mejoras en A/V
|
||||
3
fastlane/metadata/android/es-ES/changelogs/42018.txt
Normal file
3
fastlane/metadata/android/es-ES/changelogs/42018.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Mostrar barras negras cuando el vídeo remoto no coincide con la relación del aspecto de la pantalla.
|
||||
* Mejorar el rendimiento de la búsqueda
|
||||
* Añadir configuración para evitar capturas de pantalla
|
||||
2
fastlane/metadata/android/es-ES/changelogs/42022.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/42022.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Corrección de un problema que impedía comprimir algunos vídeos.
|
||||
* Corrección de un fallo poco frecuente al abrir una notificación
|
||||
2
fastlane/metadata/android/es-ES/changelogs/42023.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/42023.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Corrección de fallos en la representación de algunas citas
|
||||
* Corrección del fallo en la pantalla de bienvenida
|
||||
11
fastlane/metadata/android/es-ES/changelogs/42037.txt
Normal file
11
fastlane/metadata/android/es-ES/changelogs/42037.txt
Normal file
@ -0,0 +1,11 @@
|
||||
Versión 2.10.9
|
||||
* Pedir permisos Bluetooth al hacer llamadas A/V (Puede rechazar esto si no utiliza auriculares Bluetooth).
|
||||
* Corrección de error al llamar a Movim
|
||||
* Corregir avatar incorrecto que se muestra para los chats de grupo
|
||||
* Preguntar siempre por las optimizaciones de batería
|
||||
* Establecer sólo local bandera en 'x cuentas conectadas' notificaciones
|
||||
* Corrección de la interacción con Google Maps Share Location Plugin
|
||||
* Eliminar nota a pie de página con respecto a la cuota del servidor
|
||||
* Almacenar archivos en la ubicación adecuada para Android 11
|
||||
* Intento de reconectar llamada tras cambio de red
|
||||
* Mostrar el JID de la persona que llama y el JID de la cuenta en la pantalla de llamada entrante
|
||||
2
fastlane/metadata/android/es-ES/changelogs/42038.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/42038.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Corrección de errores menores
|
||||
* Restaurar la capacidad de llamar a través de JMP y otros servicios (versión Playstore)
|
||||
5
fastlane/metadata/android/es-ES/changelogs/42041.txt
Normal file
5
fastlane/metadata/android/es-ES/changelogs/42041.txt
Normal file
@ -0,0 +1,5 @@
|
||||
* Implementación del perfil SASL extensible, Bind 2.0 y Fast para reconexiones más rápidas.
|
||||
* Implementación de Channel Binding
|
||||
* Añadir la posibilidad de cambiar de llamada de audio a videollamada
|
||||
* Añadir la posibilidad de eliminar el propio avatar
|
||||
* Notificación de llamadas perdidas
|
||||
2
fastlane/metadata/android/es-ES/changelogs/42042.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/42042.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Corrección del bucle de reenvío en servidores que sólo admiten sm:2
|
||||
* Mostrar "Cambiar a vídeo" sólo si la otra parte admite vídeo
|
||||
1
fastlane/metadata/android/es-ES/changelogs/42043.txt
Normal file
1
fastlane/metadata/android/es-ES/changelogs/42043.txt
Normal file
@ -0,0 +1 @@
|
||||
* Corregida una regresión en la transferencia de archivos P2P
|
||||
3
fastlane/metadata/android/es-ES/changelogs/42044.txt
Normal file
3
fastlane/metadata/android/es-ES/changelogs/42044.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Corrección del reenvío de mensajes al utilizar SASL2
|
||||
* Corregir vídeo negro entre algunos dispositivos
|
||||
* Arreglar fallo en contraseñas vacías
|
||||
1
fastlane/metadata/android/es-ES/changelogs/42046.txt
Normal file
1
fastlane/metadata/android/es-ES/changelogs/42046.txt
Normal file
@ -0,0 +1 @@
|
||||
* Integrar el Distribuidor UnifiedPush para facilitar los mensajes push a otras aplicaciones habilitadas para UnifiedPush como Tusky y Fedilab
|
||||
1
fastlane/metadata/android/es-ES/changelogs/42047.txt
Normal file
1
fastlane/metadata/android/es-ES/changelogs/42047.txt
Normal file
@ -0,0 +1 @@
|
||||
* Corrección de fallos en el distribuidor de UnifiedPush
|
||||
1
fastlane/metadata/android/es-ES/changelogs/42050.txt
Normal file
1
fastlane/metadata/android/es-ES/changelogs/42050.txt
Normal file
@ -0,0 +1 @@
|
||||
* Aumentar el radio de las esquinas en las fotos de perfil
|
||||
2
fastlane/metadata/android/es-ES/changelogs/42059.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/42059.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Actualizar Target SDK a 33 de nuevo
|
||||
* Corrección de problemas en servidores que soportan SASL2 sin Stream Management en línea
|
||||
1
fastlane/metadata/android/es-ES/changelogs/42060.txt
Normal file
1
fastlane/metadata/android/es-ES/changelogs/42060.txt
Normal file
@ -0,0 +1 @@
|
||||
* Arreglar 'q' falsamente siendo reconocido como cirílico
|
||||
1
fastlane/metadata/android/es-ES/changelogs/42061.txt
Normal file
1
fastlane/metadata/android/es-ES/changelogs/42061.txt
Normal file
@ -0,0 +1 @@
|
||||
* Eliminar la función de descubrimiento de canales de la versión de Google Play
|
||||
1
fastlane/metadata/android/es-ES/changelogs/42062.txt
Normal file
1
fastlane/metadata/android/es-ES/changelogs/42062.txt
Normal file
@ -0,0 +1 @@
|
||||
* Desactivar la apertura de archivos de copia de seguridad (.ceb) desde el gestor de archivos
|
||||
1
fastlane/metadata/android/es-ES/changelogs/42065.txt
Normal file
1
fastlane/metadata/android/es-ES/changelogs/42065.txt
Normal file
@ -0,0 +1 @@
|
||||
* Introducir un nuevo formato de archivo de copia de seguridad
|
||||
2
fastlane/metadata/android/es-ES/changelogs/42068.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/42068.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* soporte para los ajustes de la notificación de la conversación
|
||||
* usar opus para mensajes de voz en Android 10
|
||||
3
fastlane/metadata/android/es-ES/changelogs/42072.txt
Normal file
3
fastlane/metadata/android/es-ES/changelogs/42072.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Aumenta la dependencia de libwebrtc a M117 y aumenta la de libvpx.
|
||||
* Volver a AAC para mensajes de voz
|
||||
* Soporta ajustes de idioma por aplicación
|
||||
3
fastlane/metadata/android/es-ES/changelogs/4207704.txt
Normal file
3
fastlane/metadata/android/es-ES/changelogs/4207704.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* Soporta DNS Privado (DNS sobre TLS)
|
||||
* Icono temático del lanzador
|
||||
* Corrección de un problema de permisos poco frecuente al compartir archivos en Android 11+
|
||||
4
fastlane/metadata/android/es-ES/changelogs/4208104.txt
Normal file
4
fastlane/metadata/android/es-ES/changelogs/4208104.txt
Normal file
@ -0,0 +1,4 @@
|
||||
* Acceso más fácil a "Mostrar el código QR
|
||||
* Soporte para marcadores nativos PEP
|
||||
* Añadir soporte para SDP Oferta / Respuesta Modelo (Utilizado por pasarelas SIP)
|
||||
* Aumento de la API de destino a Android 14
|
||||
3
fastlane/metadata/android/es-ES/changelogs/4208804.txt
Normal file
3
fastlane/metadata/android/es-ES/changelogs/4208804.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* 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
|
||||
2
fastlane/metadata/android/es-ES/changelogs/4209004.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/4209004.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Correcciones de errores menores
|
||||
* ligeras modificaciones en el flujo interno de Quicksy
|
||||
2
fastlane/metadata/android/es-ES/changelogs/4209204.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/4209204.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* 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
|
||||
4
fastlane/metadata/android/gl-ES/changelogs/349.txt
Normal file
4
fastlane/metadata/android/gl-ES/changelogs/349.txt
Normal file
@ -0,0 +1,4 @@
|
||||
* Introdución do axuste de experta para realizar o descubrimento de canle no servidor local e non buscar en search.jabber.network
|
||||
* Activadas as marcas de comprobación de entrega por defecto e eliminación do axuste
|
||||
* Activar por defecto 'O botón enviar indica estado' e eliminar o axuste
|
||||
* Mover os axustes Copia de Apoio e Servizo en primeiro plano á pantalla principal
|
||||
3
fastlane/metadata/android/gl-ES/changelogs/351.txt
Normal file
3
fastlane/metadata/android/gl-ES/changelogs/351.txt
Normal file
@ -0,0 +1,3 @@
|
||||
* fixes for Jingle IBB file transfer
|
||||
* fixes for repeated corrections filling up the database
|
||||
* switched to Last Message Correction v1.1
|
||||
4
fastlane/metadata/android/gl-ES/changelogs/353.txt
Normal file
4
fastlane/metadata/android/gl-ES/changelogs/353.txt
Normal file
@ -0,0 +1,4 @@
|
||||
* permitir que as usuarias elixan o seu propio alcume
|
||||
* retomar a descarga de ficheiros cifrados con OMEMO
|
||||
* agora as Canles usan '#' como símbolo no avatar
|
||||
* Quicksy establece 'sempre' para a cifraxe OMEMO por defecto (agocha a icona do cadeado)
|
||||
1
fastlane/metadata/android/gl-ES/changelogs/360.txt
Normal file
1
fastlane/metadata/android/gl-ES/changelogs/360.txt
Normal file
@ -0,0 +1 @@
|
||||
* Soporte para os parámetros ?register e ?register;preauth da uri XMPP
|
||||
1
fastlane/metadata/android/gl-ES/changelogs/362.txt
Normal file
1
fastlane/metadata/android/gl-ES/changelogs/362.txt
Normal file
@ -0,0 +1 @@
|
||||
* Soporte para o cambio automático de decorado en Android 10
|
||||
2
fastlane/metadata/android/gl-ES/changelogs/364.txt
Normal file
2
fastlane/metadata/android/gl-ES/changelogs/364.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Proporciona vista previa dos PDF en Android 5+
|
||||
* Usa 12 byte IVs con OMEMO
|
||||
2
fastlane/metadata/android/gl-ES/changelogs/367.txt
Normal file
2
fastlane/metadata/android/gl-ES/changelogs/367.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Arranxo da selección do avatar en dispositivos Android 10
|
||||
* Arranxo da transferencia de ficheiros moi grandes
|
||||
1
fastlane/metadata/android/gl-ES/changelogs/379.txt
Normal file
1
fastlane/metadata/android/gl-ES/changelogs/379.txt
Normal file
@ -0,0 +1 @@
|
||||
* Chamadas de Audio/Video (Require soporte no servidor para que os servidores STUN e TURN sexan accesibles vía XEP-0215)
|
||||
2
fastlane/metadata/android/gl-ES/changelogs/381.txt
Normal file
2
fastlane/metadata/android/gl-ES/changelogs/381.txt
Normal file
@ -0,0 +1,2 @@
|
||||
* Audible feedback (dialing, call started, call ended) for voice calls.
|
||||
* Fixed issue with retrying failed video call
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user