mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-25 19:05:56 +03:00
Merge branch 'develop' into feature/aris/presence
This commit is contained in:
commit
923bc00dcd
453 changed files with 6269 additions and 2483 deletions
4
.github/ISSUE_TEMPLATE/bug.yml
vendored
4
.github/ISSUE_TEMPLATE/bug.yml
vendored
|
@ -64,9 +64,9 @@ body:
|
|||
- type: dropdown
|
||||
id: rageshake
|
||||
attributes:
|
||||
label: Have you submitted a rageshake?
|
||||
label: Will you send logs?
|
||||
description: |
|
||||
Did you know that you can shake your phone to submit logs for this issue? Trigger the defect, then shake your phone and you will see a popup asking if you would like to open the bug report screen. Click YES, and describe the issue, mentioning that you have also filed a bug. Submit the report to send anonymous logs to the developers.
|
||||
Did you know that you can shake your phone to submit logs for this issue? Trigger the defect, then shake your phone and you will see a popup asking if you would like to open the bug report screen. Click YES, and describe the issue, mentioning that you have also filed a bug (it's helpful if you can include a link to the bug). Send the report to submit anonymous logs to the developers.
|
||||
options:
|
||||
- 'Yes'
|
||||
- 'No'
|
||||
|
|
2
.github/ISSUE_TEMPLATE/release.yml
vendored
2
.github/ISSUE_TEMPLATE/release.yml
vendored
|
@ -23,8 +23,6 @@ body:
|
|||
### Do the release
|
||||
|
||||
- [ ] Create release with gitflow, branch name `release/1.1.10`
|
||||
- [ ] Run `./tools/import_emojis.py` and commit the change if any.
|
||||
- [ ] Run `./tools/import_sas_strings.py` and commit the change if any. If there is no change since a while, ping Travis
|
||||
- [ ] Check the crashes from the PlayStore
|
||||
- [ ] Check the rageshake with the current dev version: https://github.com/matrix-org/element-android-rageshakes/labels/1.1.10-dev
|
||||
- [ ] Run the integration test, and especially `UiAllScreensSanityTest.allScreensTest()`
|
||||
|
|
4
.github/workflows/quality.yml
vendored
4
.github/workflows/quality.yml
vendored
|
@ -14,12 +14,12 @@ jobs:
|
|||
- name: Run code quality check suite
|
||||
run: ./tools/check/check_code_quality.sh
|
||||
|
||||
klint:
|
||||
ktlint:
|
||||
name: Kotlin Linter
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Run klint
|
||||
- name: Run ktlint
|
||||
run: |
|
||||
./gradlew ktlintCheck --continue
|
||||
- name: Upload reports
|
||||
|
|
69
.github/workflows/sync-from-external-sources.yml
vendored
Normal file
69
.github/workflows/sync-from-external-sources.yml
vendored
Normal file
|
@ -0,0 +1,69 @@
|
|||
name: Sync Data From External Sources
|
||||
on:
|
||||
schedule:
|
||||
# At 00:00 on every Monday UTC
|
||||
- cron: '0 0 * * 1'
|
||||
|
||||
jobs:
|
||||
sync-emojis:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python 3.8
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: 3.8
|
||||
- name: Cache pip
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/.cache/pip
|
||||
key: ${{ runner.os }}-pip
|
||||
restore-keys: |
|
||||
${{ runner.os }}-pip-
|
||||
${{ runner.os }}-
|
||||
- name: Install Prerequisite dependencies
|
||||
run: |
|
||||
pip install BeautifulSoup4
|
||||
pip install requests
|
||||
- name: Run Emoji script
|
||||
run: ./tools/import_emojis.py
|
||||
- name: Create Pull Request for Emojis
|
||||
uses: peter-evans/create-pull-request@v3
|
||||
with:
|
||||
commit-message: Sync Emojis
|
||||
title: Sync Emojis
|
||||
body: |
|
||||
- Update Emojis from Unicode.org
|
||||
branch: sync-emojis
|
||||
base: develop
|
||||
|
||||
sync-sas-strings:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python 3.8
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: 3.8
|
||||
- name: Cache pip
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/.cache/pip
|
||||
key: ${{ runner.os }}-pip
|
||||
restore-keys: |
|
||||
${{ runner.os }}-pip-
|
||||
${{ runner.os }}-
|
||||
- name: Install Prerequisite dependencies
|
||||
run: |
|
||||
pip install requests
|
||||
- name: Run SAS String script
|
||||
run: ./tools/import_sas_strings.py
|
||||
- name: Create Pull Request for SAS Strings
|
||||
uses: peter-evans/create-pull-request@v3
|
||||
with:
|
||||
commit-message: Sync SAS Strings
|
||||
title: Sync SAS Strings
|
||||
body: |
|
||||
- Update SAS Strings from matrix-doc.
|
||||
branch: sync-sas-strings
|
||||
base: develop
|
54
CHANGES.md
54
CHANGES.md
|
@ -1,3 +1,57 @@
|
|||
Changes in Element v1.3.3 (2021-10-11)
|
||||
======================================
|
||||
|
||||
Bugfixes 🐛
|
||||
----------
|
||||
- Disable Android Auto supports ([#4205](https://github.com/vector-im/element-android/issues/4205))
|
||||
|
||||
|
||||
Changes in Element v1.3.2 (2021-10-08)
|
||||
======================================
|
||||
|
||||
Features ✨
|
||||
----------
|
||||
- Android Auto notification support ([#240](https://github.com/vector-im/element-android/issues/240))
|
||||
- Add a fallback for user displayName when this one is null or empty ([#3732](https://github.com/vector-im/element-android/issues/3732))
|
||||
- Add client base url config to customize permalinks ([#4027](https://github.com/vector-im/element-android/issues/4027))
|
||||
- Check if DM exists before creating a new one ([#4157](https://github.com/vector-im/element-android/issues/4157))
|
||||
- Handle 8 new slash commands: `/ignore`, `/unignore`, `/roomname`, `/myroomnick`, `/roomavatar`, `/myroomavatar`, `/lenny`, `/whois`. ([#4158](https://github.com/vector-im/element-android/issues/4158))
|
||||
- Display identity server policies in the Discovery screen ([#4184](https://github.com/vector-im/element-android/issues/4184))
|
||||
|
||||
Bugfixes 🐛
|
||||
----------
|
||||
- Ensure initial sync progress dialog is hidden when the initial sync is over ([#983](https://github.com/vector-im/element-android/issues/983))
|
||||
- Avoid resending notifications that are already shown ([#1673](https://github.com/vector-im/element-android/issues/1673))
|
||||
- Room filter no results bad CTA in space mode when a space selected ([#3048](https://github.com/vector-im/element-android/issues/3048))
|
||||
- Fixes notifications not dismissing when reading messages on other devices ([#3347](https://github.com/vector-im/element-android/issues/3347))
|
||||
- Fixes the passphrase screen being incorrectly shown when pressing back on the key verification screen.
|
||||
When the user doesn't have a passphrase set we don't show the passphrase screen. ([#3898](https://github.com/vector-im/element-android/issues/3898))
|
||||
- App doesn't take you to a Space after choosing to Join it ([#3933](https://github.com/vector-im/element-android/issues/3933))
|
||||
- Validate public space addresses and room aliases length ([#3934](https://github.com/vector-im/element-android/issues/3934))
|
||||
- Save button for adding rooms to a space is hidden when scrolling through list of rooms ([#3935](https://github.com/vector-im/element-android/issues/3935))
|
||||
- Align new room encryption default to Web ([#4045](https://github.com/vector-im/element-android/issues/4045))
|
||||
- Fix Reply/Edit mode animation is broken when sending ([#4077](https://github.com/vector-im/element-android/issues/4077))
|
||||
- Added changes that will make SearchView in search bar focused by default on opening reaction picker.
|
||||
|
||||
When tapping close icon of SearchView, the SearchView did not collapse therefore added the on close listener
|
||||
which will collapse the SearchView on close. ([#4092](https://github.com/vector-im/element-android/issues/4092))
|
||||
- Troubleshoot notification: Fix button not clickable ([#4109](https://github.com/vector-im/element-android/issues/4109))
|
||||
- Harmonize wording in the message bottom sheet and move up the View Reactions item ([#4155](https://github.com/vector-im/element-android/issues/4155))
|
||||
- Remove unused SendRelationWorker and related API call (3588) ([#4156](https://github.com/vector-im/element-android/issues/4156))
|
||||
- SIP user to native user mapping is wrong ([#4176](https://github.com/vector-im/element-android/issues/4176))
|
||||
|
||||
SDK API changes ⚠️
|
||||
------------------
|
||||
- Create extension `String.isMxcUrl()` ([#4158](https://github.com/vector-im/element-android/issues/4158))
|
||||
|
||||
Other changes
|
||||
-------------
|
||||
- Use ktlint plugin. See [the documentation](https://github.com/vector-im/element-android/blob/develop/CONTRIBUTING.md#ktlint) for more detail. ([#3957](https://github.com/vector-im/element-android/issues/3957))
|
||||
- Minimize the use of exported="true" in android Manifest (link: https://github.com/matrix-org/matrix-dinsic/issues/618) ([#4018](https://github.com/vector-im/element-android/issues/4018))
|
||||
- Fix redundancy in heading in the bug report issue form ([#4076](https://github.com/vector-im/element-android/issues/4076))
|
||||
- Fix release label in the release issue template ([#4113](https://github.com/vector-im/element-android/issues/4113))
|
||||
|
||||
|
||||
Changes in Element v1.3.1 (2021-09-29)
|
||||
======================================
|
||||
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Avoid resending notifications that are already shown
|
|
@ -1 +0,0 @@
|
|||
Android Auto notification support
|
|
@ -1 +0,0 @@
|
|||
Room filter no results bad CTA in space mode when a space selected
|
|
@ -1 +0,0 @@
|
|||
Fixes notifications not dismissing when reading messages on other devices
|
|
@ -1 +0,0 @@
|
|||
Add a fallback for user displayName when this one is null or empty
|
1
changelog.d/3890.misc
Normal file
1
changelog.d/3890.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Migrate to MvRx2 (Mavericks)
|
|
@ -1,2 +0,0 @@
|
|||
Fixes the passphrase screen being incorrectly shown when pressing back on the key verification screen.
|
||||
When the user doesn't have a passphrase set we don't show the passphrase screen.
|
|
@ -1 +0,0 @@
|
|||
App doesn't take you to a Space after choosing to Join it
|
|
@ -1 +0,0 @@
|
|||
Validate public space addresses and room aliases length
|
|
@ -1 +0,0 @@
|
|||
Save button for adding rooms to a space is hidden when scrolling through list of rooms
|
|
@ -1 +0,0 @@
|
|||
Use ktlint plugin. See [the documentation](https://github.com/vector-im/element-android/blob/develop/CONTRIBUTING.md#ktlint) for more detail.
|
|
@ -1 +0,0 @@
|
|||
Minimize the use of exported="true" in android Manifest (link: https://github.com/matrix-org/matrix-dinsic/issues/618)
|
|
@ -1 +0,0 @@
|
|||
Add client base url config to customize permalinks
|
|
@ -1 +0,0 @@
|
|||
Align new room encryption default to Web
|
|
@ -1 +0,0 @@
|
|||
Fix redundancy in heading in the bug report issue form
|
|
@ -1 +0,0 @@
|
|||
Fix Reply/Edit mode animation is broken when sending
|
|
@ -1,4 +0,0 @@
|
|||
Added changes that will make SearchView in search bar focused by default on opening reaction picker.
|
||||
|
||||
When tapping close icon of SearchView, the SearchView did not collapse therefore added the on close listener
|
||||
which will collapse the SearchView on close.
|
2
changelog.d/4106.bugfix
Normal file
2
changelog.d/4106.bugfix
Normal file
|
@ -0,0 +1,2 @@
|
|||
Fixes push notification emails list not refreshing the first time seeing the notifications page.
|
||||
Also improves the error handling in the email notification toggling by using synchronous flows instead of the WorkManager
|
|
@ -1 +0,0 @@
|
|||
Troubleshoot notification: Fix button not clickable
|
|
@ -1 +0,0 @@
|
|||
Fix release label in the release issue template
|
|
@ -1 +0,0 @@
|
|||
Harmonize wording in the message bottom sheet and move up the View Reactions item
|
|
@ -1 +0,0 @@
|
|||
Remove unused SendRelationWorker and related API call (3588)
|
|
@ -1 +0,0 @@
|
|||
Check if DM exists before creating a new one
|
|
@ -1 +0,0 @@
|
|||
Handle 8 new slash commands: `/ignore`, `/unignore`, `/roomname`, `/myroomnick`, `/roomavatar`, `/myroomavatar`, `/lenny`, `/whois`.
|
|
@ -1 +0,0 @@
|
|||
Create extension `String.isMxcUrl()`
|
1
changelog.d/4167.bugfix
Normal file
1
changelog.d/4167.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fixing push notifications starting the looping background sync when the push notification causes the application to be created.
|
1
changelog.d/4193.bugfix
Normal file
1
changelog.d/4193.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix random crash when user logs out just after the log in.
|
1
changelog.d/4216.misc
Normal file
1
changelog.d/4216.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Implement a new github action workflow to generate two PRs for emoji and sas string sync
|
1
changelog.d/4226.misc
Normal file
1
changelog.d/4226.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Improve wording around rageshakes in the defect issue template.
|
1
changelog.d/908.bugfix
Normal file
1
changelog.d/908.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Issue #908 Adding trailing space " " or ": " if the user started a sentence by mentioning someone,
|
|
@ -1 +0,0 @@
|
|||
Ensure initial sync progress dialog is hidden when the initial sync is over
|
|
@ -7,7 +7,7 @@ ext.versions = [
|
|||
'targetCompat' : JavaVersion.VERSION_11,
|
||||
]
|
||||
|
||||
def gradle = "7.0.2"
|
||||
def gradle = "7.0.3"
|
||||
// Ref: https://kotlinlang.org/releases.html
|
||||
def kotlin = "1.5.31"
|
||||
def kotlinCoroutines = "1.5.2"
|
||||
|
@ -19,6 +19,7 @@ def moshi = "1.12.0"
|
|||
def lifecycle = "2.2.0"
|
||||
def rxBinding = "3.1.0"
|
||||
def epoxy = "4.6.2"
|
||||
def mavericks = "2.4.0"
|
||||
def glide = "4.12.0"
|
||||
def bigImageViewer = "1.8.1"
|
||||
def jjwt = "0.11.2"
|
||||
|
@ -98,7 +99,9 @@ ext.libs = [
|
|||
'epoxyGlide' : "com.airbnb.android:epoxy-glide-preloading:$epoxy",
|
||||
'epoxyProcessor' : "com.airbnb.android:epoxy-processor:$epoxy",
|
||||
'epoxyPaging' : "com.airbnb.android:epoxy-paging:$epoxy",
|
||||
'mvrx' : "com.airbnb.android:mvrx:1.5.1"
|
||||
'mavericks' : "com.airbnb.android:mavericks:$mavericks",
|
||||
'mavericksRx' : "com.airbnb.android:mavericks-rxjava2:$mavericks",
|
||||
'mavericksTesting' : "com.airbnb.android:mavericks-testing:$mavericks"
|
||||
],
|
||||
mockk : [
|
||||
'mockk' : "io.mockk:mockk:$mockk",
|
||||
|
|
104
docs/design.md
Normal file
104
docs/design.md
Normal file
|
@ -0,0 +1,104 @@
|
|||
# Element Android design
|
||||
|
||||
## Introduction
|
||||
|
||||
Design at element.io is done using Figma - https://www.figma.com
|
||||
|
||||
## How to import from Figma to the Element Android project
|
||||
|
||||
Integration should be done using the Android development best practice, and should follow the existing convention in the code.
|
||||
|
||||
### Colors
|
||||
|
||||
Element Android already contains all the colors which can be used by the designer, in the module `ui-style`.
|
||||
Some of them depend on the theme, so ensure to use theme attributes and not colors directly.
|
||||
|
||||
### Text
|
||||
|
||||
- click on a text on Figma
|
||||
- on the right panel, information about the style and colors are displayed
|
||||
- in Element Android, text style are already defined, generally you should not create new style
|
||||
- apply the style and the color to the layout
|
||||
|
||||
### Dimension, position and margin
|
||||
|
||||
- click on an item on Figma
|
||||
- dimensions of the item will be displayed.
|
||||
- move the mouse to other items to get relative positioning, margin, etc.
|
||||
|
||||
### Icons
|
||||
|
||||
#### Export drawable from Figma
|
||||
|
||||
- click on the element to export
|
||||
- ensure that the correct layer is selected. Sometimes the parent layer has to be selected on the left panel
|
||||
- on the right panel, click on "export"
|
||||
- select SVG
|
||||
- you can check the preview of what will be exported
|
||||
- click on "export" and save the file locally
|
||||
- unzip the file if necessary
|
||||
|
||||
It's also possible for any icon to go to the main component by right-clicking on the icon.
|
||||
|
||||
#### Import in Android Studio
|
||||
|
||||
- right click on the drawable folder where the drawable will be created
|
||||
- click on "New"/"Vector Asset"
|
||||
- select the exported file
|
||||
- update the filename if necessary
|
||||
- click on "Next" and click on "Finish"
|
||||
- open the created vector drawable
|
||||
- optionally update the color(s) to "#FF0000" (red) to ensure that the drawable is correctly tinted at runtime.
|
||||
|
||||
## Figma links
|
||||
|
||||
Figma links can be included in the layout, for future reference, but it is also OK to add a paragraph below here, to centralize the information
|
||||
|
||||
Main entry point: https://www.figma.com/files/project/5612863/Element?fuid=779371459522484071
|
||||
|
||||
Note: all the Figma links are not publicly available.
|
||||
|
||||
### Coumpound
|
||||
|
||||
Coumpound contains the theme of the application, with all the components, in Light and Dark theme: palette (colors), typography, iconography, etc.
|
||||
|
||||
https://www.figma.com/file/X4XTH9iS2KGJ2wFKDqkyed/Compound
|
||||
|
||||
### Login
|
||||
|
||||
TBD
|
||||
|
||||
#### Login v2
|
||||
|
||||
https://www.figma.com/file/xdV4PuI3DlzA1EiBvbrggz/Login-Flow-v2
|
||||
|
||||
### Room list
|
||||
|
||||
TBD
|
||||
|
||||
### Timeline
|
||||
|
||||
https://www.figma.com/file/x1HYYLYMmbYnhfoz2c2nGD/%5BRiotX%5D-Misc?node-id=0%3A1
|
||||
|
||||
### Voice message
|
||||
|
||||
https://www.figma.com/file/uaWc62Ux2DkZC4OGtAGcNc/Voice-Messages?node-id=473%3A12
|
||||
|
||||
### Room settings
|
||||
|
||||
TBD
|
||||
|
||||
### VoIP
|
||||
|
||||
https://www.figma.com/file/V6m2z0oAtUV1l8MdyIrAep/VoIP?node-id=4254%3A25767
|
||||
|
||||
### Presence
|
||||
|
||||
https://www.figma.com/file/qmvEskET5JWva8jZJ4jX8o/Presence---User-Status?node-id=114%3A9174
|
||||
(Option B is chosen)
|
||||
|
||||
### Spaces
|
||||
|
||||
https://www.figma.com/file/m7L63aGPW7iHnIYStfdxCe/Spaces?node-id=192%3A30161
|
||||
|
||||
### List to be continued...
|
11
docs/mavericks_migration.md
Normal file
11
docs/mavericks_migration.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
Useful links:
|
||||
- https://airbnb.io/mavericks/#/new-2x
|
||||
|
||||
Mavericks 2 is replacing MvRx, by removing usage of Rx by Flow, both internally and in the API.
|
||||
See the link ^ to have more intel, but basically, the changes are:
|
||||
|
||||
session.rx() => session.flow()
|
||||
room.rx() => room.flow()
|
||||
subscribe { }.disposeOnClear() => onEach { }.launchIn(viewModelScope)
|
||||
|
||||
Only using manually onEach requires to add launchIn,any other methods provided by Mavericks on viewModel and activity/fragment are already taking care of lifecycle.
|
2
fastlane/metadata/android/cs-CZ/changelogs/40103000.txt
Normal file
2
fastlane/metadata/android/cs-CZ/changelogs/40103000.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Hlavní změny v této verzi: Uspořádejte si místnosti pomocí Prostorů!
|
||||
Úplný seznam změn: https://github.com/vector-im/element-android/releases/tag/v1.3.0
|
2
fastlane/metadata/android/en-US/changelogs/40103020.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/40103020.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Main changes in this version: Add support for Android Auto. Lot of bug fixes!
|
||||
Full changelog: https://github.com/vector-im/element-android/releases/tag/v1.3.2
|
2
fastlane/metadata/android/en-US/changelogs/40103030.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/40103030.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Main changes in this version: Make identity server policy(ies) visible in the settings. Temporarily remove Android Auto support.
|
||||
Full changelog: https://github.com/vector-im/element-android/releases/tag/v1.3.3
|
|
@ -1 +1,2 @@
|
|||
// TODO
|
||||
Esta nueva versión contiene principalmente correcciones de errores y mejoras. Enviar un mensaje ahora es mucho más rápido.
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.0.10
|
||||
|
|
2
fastlane/metadata/android/es-ES/changelogs/40100110.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40100110.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Esta nueva versión contiene principalmente mejoras en la interfaz de usuario y la experiencia del usuario. Ahora puedes invitar amigos y crear mensajes directos muy rápido escaneando códigos QR.
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.0.11
|
2
fastlane/metadata/android/es-ES/changelogs/40100120.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40100120.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: Vista previa de URL, nuevo teclado Emoji, nuevas capacidades de configuración de la habitación y ¡nieve para Navidad!
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.0.12
|
2
fastlane/metadata/android/es-ES/changelogs/40100130.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40100130.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: Vista previa de URL, nuevo teclado Emoji, nuevas capacidades de configuración de la habitación y ¡nieve para Navidad!
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.0.13
|
2
fastlane/metadata/android/es-ES/changelogs/40100140.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40100140.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: Editar permisos de sala, tema automático de luz / oscuridad y un montón de correcciones de errores.
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.0.14
|
2
fastlane/metadata/android/es-ES/changelogs/40100150.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40100150.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: Soporte de inicio de sesión social.
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.0.15
|
2
fastlane/metadata/android/es-ES/changelogs/40100160.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40100160.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: Soporte de inicio de sesión social.
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.0.15 y https://github.com/vector-im/element-android/releases/tag/v1.0.16
|
2
fastlane/metadata/android/es-ES/changelogs/40100170.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40100170.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: ¡Corrección de errores!
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.0.17
|
2
fastlane/metadata/android/es-ES/changelogs/40101000.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40101000.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: ¡Mejora de VoIP (audio y videollamadas en DM) y corrección de errores!
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.1.0
|
2
fastlane/metadata/android/es-ES/changelogs/40101010.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40101010.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: mejora del rendimiento y corrección de errores.
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.1.1
|
2
fastlane/metadata/android/es-ES/changelogs/40101020.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40101020.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: mejora del rendimiento y corrección de errores.
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.1.2
|
2
fastlane/metadata/android/es-ES/changelogs/40101030.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40101030.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: mejora del rendimiento y corrección de errores.
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.1.3
|
2
fastlane/metadata/android/es-ES/changelogs/40101040.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40101040.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: mejora del rendimiento y corrección de errores.
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.1.4
|
2
fastlane/metadata/android/es-ES/changelogs/40101050.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40101050.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: correcciones urgentes para 1.1.4
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.1.5
|
2
fastlane/metadata/android/es-ES/changelogs/40101060.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40101060.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: correcciones urgentes para 1.1.5
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.1.6
|
2
fastlane/metadata/android/es-ES/changelogs/40101070.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40101070.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: soporte beta para Spaces. Comprima el video antes de enviarlo.
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.1.7
|
2
fastlane/metadata/android/es-ES/changelogs/40101080.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40101080.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: mejora de Spaces.
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.1.8
|
2
fastlane/metadata/android/es-ES/changelogs/40101090.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40101090.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: agregar soporte para la red gitter.im.
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.1.9
|
2
fastlane/metadata/android/es-ES/changelogs/40101100.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40101100.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: actualización de tema y estilo y nuevas funcionalidades para espacios.
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.1.10
|
2
fastlane/metadata/android/es-ES/changelogs/40101110.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40101110.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: actualización de tema y estilo y nuevas funciones para espacios (corrección de errores para 1.1.10)
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.1.11
|
2
fastlane/metadata/android/es-ES/changelogs/40101120.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40101120.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: actualización de tema y estilo y corrección de un bloqueo después de la videollamada
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.1.12
|
2
fastlane/metadata/android/es-ES/changelogs/40101130.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40101130.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: principalmente actualización de estabilidad y corrección de errores.
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.1.13
|
2
fastlane/metadata/android/es-ES/changelogs/40102000.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40102000.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: Mensaje de voz está habilitado por defecto.
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.2.0
|
2
fastlane/metadata/android/es-ES/changelogs/40102010.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40102010.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: Muchas mejoras en VoIP y Spaces (aún en beta).
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.2.1
|
2
fastlane/metadata/android/es-ES/changelogs/40103000.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40103000.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: ¡Organiza tus habitaciones usando Spaces!
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.3.0
|
2
fastlane/metadata/android/es-ES/changelogs/40103010.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40103010.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: ¡Organiza tus habitaciones usando Spaces! v1.3.1 está arreglando un bloqueo que puede ocurrir en v1.3.0.
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.3.1
|
2
fastlane/metadata/android/es-ES/changelogs/40103020.txt
Normal file
2
fastlane/metadata/android/es-ES/changelogs/40103020.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principales cambios en esta versión: agregar soporte para Android Auto. ¡Muchas correcciones de errores!
|
||||
Registro de cambios completo: https://github.com/vector-im/element-android/releases/tag/v1.3.2
|
|
@ -1,30 +1,39 @@
|
|||
Element es un nuevo tipo de aplicación de mensajería y colaboración que:
|
||||
Element es un mensajero seguro y una aplicación de colaboración en equipo de productividad que es ideal para chats grupales mientras se trabaja a distancia. Esta aplicación de chat utiliza encriptación de un extremo a otro para proporcionar poderosas videoconferencias, uso compartido de archivos y llamadas de voz.
|
||||
|
||||
1. Te da el control para preservar su privacidad
|
||||
2. Te permite comunicarse con cualquier persona en la red Matrix e incluso más allá al integrarse con aplicaciones como Slack
|
||||
3. Te protege de la publicidad, la minería de datos y los jardines vallados
|
||||
4. Te protege a través de encriptación de Extremo-a-Extremo, con firma cruzada para verificar a otros
|
||||
<b>Las características de Element incluyen:</b>
|
||||
- Herramientas de comunicación online avanzadas
|
||||
- Mensajes totalmente encriptados para permitir una comunicación corporativa más segura, incluso para trabajadores remotos
|
||||
- Chat descentralizado basado en el marco de código abierto Matrix
|
||||
- Uso compartido de archivos de forma segura con datos cifrados mientras gestiona proyectos
|
||||
- Chats de video con voz sobre IP y pantalla compartida
|
||||
- Fácil integración con sus herramientas de colaboración en línea favoritas, herramientas de gestión de proyectos, servicios VoIP y otras aplicaciones de mensajería para equipos
|
||||
|
||||
Element es completamente diferente de otras aplicaciones de mensajería y colaboración porque es descentralizado y de código abierto.
|
||||
Element es completamente diferente de otras aplicaciones de mensajería y colaboración. Opera en Matrix, una red abierta para mensajería segura y comunicación descentralizada. Permite el autohospedaje para brindar a los usuarios la máxima propiedad y control de sus datos y mensajes.
|
||||
|
||||
Element te permite tener su propio servidor privado, o elegir uno público, para que tenga privacidad, posesión, y control de sus datos y conversaciones. Te da acceso a una red abierta; para que no se quede atrapado hablando solo con otros usuarios de Element. Y es muy seguro.
|
||||
<b>Privacidad y mensajería encriptada</b>
|
||||
Element lo protege de anuncios no deseados, minería de datos y jardines amurallados. También protege todos sus datos, video uno a uno y comunicación de voz a través del cifrado de extremo a extremo y la verificación de dispositivos con firma cruzada.
|
||||
|
||||
Element puede hacer todo esto porque opera en Matrix, el estándar para la comunicación abierta y descentralizada.
|
||||
Element le brinda control sobre su privacidad al mismo tiempo que le permite comunicarse de manera segura con cualquier persona en la red Matrix u otras herramientas de colaboración empresarial al integrarse con aplicaciones como Slack.
|
||||
|
||||
Element te da el control permitiéndote elegir quién aloja tus conversaciones. Desde la aplicación Element, puedes elegir hospedar de diferentes maneras:
|
||||
<b>El elemento puede ser autohospedado</b>
|
||||
Para permitir un mayor control de sus conversaciones y datos confidenciales, Element puede ser autohospedado o puede elegir cualquier host basado en Matrix, el estándar para la comunicación descentralizada de código abierto. Element le brinda privacidad, cumplimiento de seguridad y flexibilidad de integración.
|
||||
|
||||
1. Obtén una cuenta gratuita en el servidor público de matrix.org alojado por los desarrolladores de Matrix, o elije entre miles de servidores públicos alojados por voluntarios
|
||||
2. Autohospeda tu cuenta con un servidor en tu propio hardware
|
||||
3. Regístrate para obtener una cuenta en un servidor personalizado simplemente suscribiéndote a la plataforma de alojamiento de Element Matrix Services
|
||||
<b>Sea dueño de sus datos</b>
|
||||
Tú decides dónde guardar tus datos y mensajes. Sin riesgo de minería de datos o acceso de terceros.
|
||||
|
||||
<b>¿Por qué elegir Element?</b>
|
||||
Element te da el control de diferentes maneras:
|
||||
1. Obtenga una cuenta gratuita en el servidor público de matrix.org alojado por los desarrolladores de Matrix, o elija entre miles de servidores públicos alojados por voluntarios
|
||||
2. Autohospede su cuenta ejecutando un servidor en su propia infraestructura de TI
|
||||
3. Regístrese para obtener una cuenta en un servidor personalizado simplemente suscribiéndose a la plataforma de alojamiento de Element Matrix Services
|
||||
|
||||
<b>TOMA POSESIÓN DE TUS DATOS</b>: Tú decides dónde guardar tus datos y mensajes. Tú eres el propietario y quien lo controla, no alguna MEGACORP que extrae tu datos o da acceso a terceros.
|
||||
<b>Colaboración y mensajería abierta</b>
|
||||
Puede chatear con cualquier persona en la red Matrix, ya sea que esté usando Element, otra aplicación Matrix o incluso si está usando una aplicación de mensajería diferente.
|
||||
|
||||
<b>MENSAJERÍA ABIERTA Y COLABORACIÓN</b>: Puede chatear con cualquier otra persona en la red de Matrix, tanto si usan Element u otra aplicación de Matrix, e incluso si están usando un sistema de mensajería diferente como Slack, IRC o XMPP.
|
||||
<b>Súper seguro</b>
|
||||
Cifrado real de extremo a extremo (solo aquellos en la conversación pueden descifrar mensajes) y verificación de dispositivos con firma cruzada.
|
||||
|
||||
<b>SUPER SEGURO</b>: Encriptación de Extremo-a-Extremo real (solo aquellos en la conversación pueden descifrar mensajes) y firma cruzada para verificar los dispositivos de los participantes de la conversación.
|
||||
<b>Completa comunicación e integración</b>
|
||||
Mensajería, llamadas de voz y video, uso compartido de archivos, uso compartido de pantalla y un montón de integraciones, bots y widgets. Construya salas, comunidades, manténgase en contacto y haga las cosas.
|
||||
|
||||
<b>COMUNICACIÓN COMPLETA</b>: Mensajería, llamadas de voz y video, uso compartido de archivos, uso compartido de pantalla y un montón de integraciones, bots y widgets. Crea salas, comunidades, mantente en contacto y organízate con eficacia.
|
||||
|
||||
<b>EN TODAS PARTES</b>: Mantente en contacto donde quiera que estés con un historial de mensajes totalmente sincronizado en todos sus dispositivos y en la web en https://app.element.io.
|
||||
<b>Continúa donde lo dejaste</b>
|
||||
Manténgase en contacto donde quiera que esté con el historial de mensajes totalmente sincronizado en todos sus dispositivos y en la web en https://app.element.io
|
||||
|
|
|
@ -1 +1 @@
|
|||
Element (previamente Riot.im)
|
||||
Element - Mensajero seguro
|
||||
|
|
2
fastlane/metadata/android/et/changelogs/40103000.txt
Normal file
2
fastlane/metadata/android/et/changelogs/40103000.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Põhilised muutused selles versioonis: halda oma jututubasid koondades neid uut tüüpi kogukondadesse!
|
||||
Kogu ingliskeelne muudatuste logi: https://github.com/vector-im/element-android/releases/tag/v1.3.0
|
2
fastlane/metadata/android/et/changelogs/40103010.txt
Normal file
2
fastlane/metadata/android/et/changelogs/40103010.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Põhilised muutused selles versioonis: halda oma jututubasid koondades neid uut tüüpi kogukondadesse! Lisaks parandasime versioonis 1.3.0 tekkinud olulise vea.
|
||||
Kogu ingliskeelne muudatuste logi: https://github.com/vector-im/element-android/releases/tag/v1.3.1
|
2
fastlane/metadata/android/et/changelogs/40103020.txt
Normal file
2
fastlane/metadata/android/et/changelogs/40103020.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Põhilised muutused selles versioonis: Android Auto tugi ning palju veaparandusi!
|
||||
Kogu ingliskeelne muudatuste logi: https://github.com/vector-im/element-android/releases/tag/v1.3.2
|
2
fastlane/metadata/android/fa/changelogs/40103000.txt
Normal file
2
fastlane/metadata/android/fa/changelogs/40103000.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
تغییرات عمده در این نگارش: سازماندهی اتاقهایتان با استفاده از فضاها
|
||||
گزارش دگرگونی کامل: https://github.com/vector-im/element-android/releases/tag/v1.3.0
|
2
fastlane/metadata/android/fa/changelogs/40103010.txt
Normal file
2
fastlane/metadata/android/fa/changelogs/40103010.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
تغییرات اصلی در این نگارش: سازماندهی اتاقهایتان با فضاها! نگارش ۱٫۳٫۱ فروپاشیای را که میتوانست در نگارش ۱٫۳٫۰ رخ دهد، رفع میکند.
|
||||
گزارش دگرگونی کامل: https://github.com/vector-im/element-android/releases/tag/v1.3.1
|
2
fastlane/metadata/android/fa/changelogs/40103020.txt
Normal file
2
fastlane/metadata/android/fa/changelogs/40103020.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
تغییرات اصلی در این نگارش: افزودن پشتیبانی از اندروید خودرو. کلّی رفع اشکال!
|
||||
گزارش دگرگونی کامل: https://github.com/vector-im/element-android/releases/tag/v1.3.2
|
|
@ -1,2 +1,2 @@
|
|||
Principaux changements pour cette version : messages vocaux activés par défault.
|
||||
Intégralité des changements : https://github.com/vector-im/element-android/releases/tag/v1.1.16
|
||||
Principaux changements pour cette version : messages vocaux activés par défaut.
|
||||
Intégralité des changements : https://github.com/vector-im/element-android/releases/tag/v1.2.0
|
||||
|
|
2
fastlane/metadata/android/fr-FR/changelogs/40102010.txt
Normal file
2
fastlane/metadata/android/fr-FR/changelogs/40102010.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principaux changements pour cette version : Beaucoup d’améliorations sur la VoIP et les Espaces (toujours en bêta).
|
||||
Intégralité des changements : https://github.com/vector-im/element-android/releases/tag/v1.2.1
|
2
fastlane/metadata/android/fr-FR/changelogs/40103000.txt
Normal file
2
fastlane/metadata/android/fr-FR/changelogs/40103000.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principaux changements pour cette version : Organisez vous salons à l’aide des Espaces !
|
||||
Intégralité des changements : https://github.com/vector-im/element-android/releases/tag/v1.3.0
|
2
fastlane/metadata/android/hu-HU/changelogs/40103000.txt
Normal file
2
fastlane/metadata/android/hu-HU/changelogs/40103000.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Fő változás ebben a verzióban: Szobák terekbe szervezése
|
||||
Teljes változásnapló: https://github.com/vector-im/element-android/releases/tag/v1.3.0
|
2
fastlane/metadata/android/hu-HU/changelogs/40103010.txt
Normal file
2
fastlane/metadata/android/hu-HU/changelogs/40103010.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Fő változás ebben a verzióban: Rendezd a szobáidat terekbe! v1.3.1 a v1.3.0 összeomlásait javítja.
|
||||
Teljes változásnapló: https://github.com/vector-im/element-android/releases/tag/v1.3.1
|
2
fastlane/metadata/android/hu-HU/changelogs/40103020.txt
Normal file
2
fastlane/metadata/android/hu-HU/changelogs/40103020.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Fő változás ebben a verzióban: Android Auto támogatás és sok hibajavítás!
|
||||
Teljes változásnapló: https://github.com/vector-im/element-android/releases/tag/v1.3.2
|
|
@ -1,2 +1,2 @@
|
|||
Perubahan utama dalam versi ini: Pesan Suara diaktifkan secara default
|
||||
Changelog lanjutan: https://github.com/vector-im/element-android/releases/tag/v1.1.16
|
||||
Changelog lanjutan: https://github.com/vector-im/element-android/releases/tag/v1.2.0
|
||||
|
|
2
fastlane/metadata/android/id/changelogs/40102010.txt
Normal file
2
fastlane/metadata/android/id/changelogs/40102010.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Perubahan utama di versi ini: Banyak perbaikan di VoIP dan Space (masih beta).
|
||||
Changelog lanjutan: https://github.com/vector-im/element-android/releases/tag/v1.2.1
|
2
fastlane/metadata/android/id/changelogs/40103000.txt
Normal file
2
fastlane/metadata/android/id/changelogs/40103000.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Perubahan utama di versi ini: Organisir ruangan Anda menggunakan sebuah Space!
|
||||
Changelog lanjutan: https://github.com/vector-im/element-android/releases/tag/v1.3.0
|
2
fastlane/metadata/android/id/changelogs/40103010.txt
Normal file
2
fastlane/metadata/android/id/changelogs/40103010.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Perubahan utama dalam versi ini: Organisir ruangan Anda dengan menggunakan sebuah Space! v1.3.1 memperbaiki crash yang dapat terjadi di v1.3.0.
|
||||
Changelog lengkap: https://github.com/vector-im/element-android/releases/tag/v1.3.1
|
2
fastlane/metadata/android/id/changelogs/40103020.txt
Normal file
2
fastlane/metadata/android/id/changelogs/40103020.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Perubahan utama dalam versi ini: Penambahan dukungan untuk Android Auto. Banyak perbaikan bug!
|
||||
Changelog lanjutan: https://github.com/vector-im/element-android/releases/tag/v1.3.2
|
|
@ -11,7 +11,7 @@ Element adalah perpesanan yang aman dan aplikasi kolaborasi tim produktivitas ya
|
|||
Element benar-benar berbeda dari aplikasi perpesanan dan kolaborasi lainnya. Element beroperasi pada Matrix, jaringan terbuka untuk pengiriman pesan yang aman dan komunikasi terdesentralisasi. Matrix memungkinkan hosting sendiri untuk memberi pengguna kepemilikan maksimum dan kontrol data dan pesan mereka.
|
||||
|
||||
<b>Pesan privasi dan terenkripsi</b>
|
||||
Element melindungi Anda dari iklan yang tidak diinginkan, data penambangan dan taman berdinding. Element juga mengamankan semua data Anda, komunikasi video dan suara satu-ke-satu melalui enkripsi ujung-ke-ujung dan verifikasi perangkat yang ditanda tangani silang.
|
||||
Element melindungi Anda dari iklan yang tidak diinginkan, penambangan data dan taman berdinding. Element juga mengamankan semua data Anda, komunikasi video dan suara satu-ke-satu melalui enkripsi ujung-ke-ujung dan verifikasi perangkat yang ditandatangani secara silang.
|
||||
|
||||
Element memberi Anda kendali atas privasi Anda sambil memungkinkan Anda untuk berkomunikasi dengan aman dengan siapa pun di jaringan Matrix, atau alat kolaborasi bisnis lainnya dengan mengintegrasikan dengan aplikasi seperti Slack.
|
||||
|
||||
|
|
2
fastlane/metadata/android/it-IT/changelogs/40103000.txt
Normal file
2
fastlane/metadata/android/it-IT/changelogs/40103000.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Modifiche principali in questa versione: organizza le tue stanze usando gli Spazi!
|
||||
Cronologia completa: https://github.com/vector-im/element-android/releases/tag/v1.3.0
|
2
fastlane/metadata/android/pt-BR/changelogs/40103000.txt
Normal file
2
fastlane/metadata/android/pt-BR/changelogs/40103000.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principais mudanças nesta versão: Organize suas salas usando Espaços!
|
||||
Changelog completo: https://github.com/vector-im/element-android/releases/tag/v1.3.0
|
2
fastlane/metadata/android/pt-BR/changelogs/40103010.txt
Normal file
2
fastlane/metadata/android/pt-BR/changelogs/40103010.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principais mudanças nesta versão: Organize suas salas usando Espaços! v1.3.1 está consertando um crash que pode ocorrer em v1.3.0.
|
||||
Changelog completo: https://github.com/vector-im/element-android/releases/tag/v1.3.1
|
2
fastlane/metadata/android/pt-BR/changelogs/40103020.txt
Normal file
2
fastlane/metadata/android/pt-BR/changelogs/40103020.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Principais mudanças nesta versão: Adicionar suporte para Android Auto. Muitos consertos de bugs!
|
||||
Changelog completo: https://github.com/vector-im/element-android/releases/tag/v1.3.2
|
2
fastlane/metadata/android/sq/changelogs/40103000.txt
Normal file
2
fastlane/metadata/android/sq/changelogs/40103000.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Ndryshime kryesore në këtë version: Sistemoni dhomat tuaja duke përdorur Hapësira!
|
||||
Regjistër i plotë ndryshimesh: https://github.com/vector-im/element-android/releases/tag/v1.3.0
|
2
fastlane/metadata/android/sq/changelogs/40103010.txt
Normal file
2
fastlane/metadata/android/sq/changelogs/40103010.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Ndryshime kryesore në këtë version: Sistemoni dhomat tuaja duke përdorur Hapësira! v1.3.1 ndreq një vithisje që mund të ndodhë në v1.3.0.
|
||||
Regjistër i plotë ndryshimesh: https://github.com/vector-im/element-android/releases/tag/v1.3.1
|
2
fastlane/metadata/android/sq/changelogs/40103020.txt
Normal file
2
fastlane/metadata/android/sq/changelogs/40103020.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Ndryshime kryesore në këtë version: Shtim mbulimi për Android Auto. Plot ndreqje të metash!
|
||||
Regjistër i plotë ndryshimesh: https://github.com/vector-im/element-android/releases/tag/v1.3.2
|
2
fastlane/metadata/android/sv-SE/changelogs/40102010.txt
Normal file
2
fastlane/metadata/android/sv-SE/changelogs/40102010.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Huvudsakliga ändringar i den här versionen: Många förbättringar för VoIP och utrymmen (fortfarande i beta).
|
||||
Full ändringslogg: https://github.com/vector-im/element-android/releases/tag/v1.2.1
|
2
fastlane/metadata/android/sv-SE/changelogs/40103000.txt
Normal file
2
fastlane/metadata/android/sv-SE/changelogs/40103000.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Huvudsakliga ändringar i den här versionen: Organisera dina rum med utrymmen!
|
||||
Full ändringslogg: https://github.com/vector-im/element-android/releases/tag/v1.3.0
|
2
fastlane/metadata/android/uk/changelogs/40103000.txt
Normal file
2
fastlane/metadata/android/uk/changelogs/40103000.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Основні зміни в цій версії: Упорядковуйте свої кімнати за допомогою Просторів!
|
||||
Повний журнал змін: https://github.com/vector-im/element-android/releases/tag/v1.3.0
|
2
fastlane/metadata/android/uk/changelogs/40103010.txt
Normal file
2
fastlane/metadata/android/uk/changelogs/40103010.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Основні зміни в цій версії: Впорядковуйте кімнати у простори. v1.3.1 виправляє збої, які виникали у v1.3.0.
|
||||
Повний журнал змін: https://github.com/vector-im/element-android/releases/tag/v1.3.1
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue