Skip to content

Commit

Permalink
Merge branch 'release/tchap_v2.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Renaud committed May 25, 2022
2 parents 69ba584 + 263ddae commit bee4dc7
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
18 changes: 17 additions & 1 deletion TCHAP_CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Changes in Tchap 2.3.1 (2022-05-25)
===================================

Bugfixes 🐛
----------
- Remove "answer in a thread" from the message's quick actions ([#599](https://github.com/tchapgouv/tchap-android-v2/issues/599))

Other changes
-------------
- Rename home tab titles ([#601](https://github.com/tchapgouv/tchap-android-v2/issues/601))


Changes in Tchap 2.3.0 (2022-05-23)
===================================

Expand All @@ -16,6 +28,10 @@ Bugfixes 🐛
- Fix Crash: Exception: kotlin.UninitializedPropertyAccessException: lateinit property login has not been initialized ([#557](https://github.com/tchapgouv/tchap-android-v2/issues/557))
- Replace the "app_name" wording in the rageshake dialog ([#579](https://github.com/tchapgouv/tchap-android-v2/issues/579))

Other changes
-------------
- Rebase against Element-Android v1.4.11 ([#541](https://github.com/tchapgouv/tchap-android/issues/541))


Changes in Tchap 2.2.1 (2022-04-19)
===================================
Expand All @@ -39,7 +55,7 @@ Bugfixes 🐛

Other changes
-------------
- Rebase against version v1.4.8 ([#497](https://github.com/tchapgouv/tchap-android/issues/497))
- Rebase against Element-Android v1.4.8 ([#497](https://github.com/tchapgouv/tchap-android/issues/497))
- Hide/Disable unwanted features from Element: polls, location sharing, analytics(PostHog) ([#404](https://github.com/tchapgouv/tchap-android/issues/404))


Expand Down
2 changes: 1 addition & 1 deletion towncrier.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.towncrier]
version = "2.3.0"
version = "2.3.1"
directory = "changelog.d"
filename = "TCHAP_CHANGES.md"
name = "Changes in Tchap"
Expand Down
2 changes: 1 addition & 1 deletion vector/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ext.versionMinor = 3
// Note: even values are reserved for regular release, odd values for hotfix release.
// When creating a hotfix, you should decrease the value, since the current value
// is the value for the next regular release.
ext.versionPatch = 0
ext.versionPatch = 1

static def getGitTimestamp() {
def cmd = 'git show -s --format=%ct'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,8 @@ class MessageActionsViewModel @AssistedInject constructor(
messageContent: MessageContent?,
actionPermissions: ActionPermissions): Boolean {
// We let reply in thread visible even if threads are not enabled, with an enhanced flow to attract users
// if (!vectorPreferences.areThreadMessagesEnabled()) return false
// Tchap: don't show the canReplyInThread quick action if it's not enable in the labs
if (!vectorPreferences.areThreadMessagesEnabled()) return false
if (initialState.isFromThreadTimeline) return false
if (event.root.isThread()) return false
if (event.root.getClearType() != EventType.MESSAGE &&
Expand Down
6 changes: 3 additions & 3 deletions vector/src/main/res/values-fr/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
<string name="dialog_title_warning">Attention</string>
<string name="bottom_action_favourites">Favoris</string>
<string name="bottom_action_people">Personnes</string> <!-- Tchap: Custom string -->
<string name="bottom_action_rooms">Conversations</string> <!-- Tchap: Custom string -->
<string name="bottom_action_rooms">Salons</string>
<string name="home_filter_placeholder_home">Rechercher des conversations</string> <!-- Tchap: Custom string -->
<string name="invitations_header">Invitations</string>
<string name="low_priority_header">Priorité basse</string>
Expand Down Expand Up @@ -891,8 +891,8 @@
<string name="send_suggestion_report_placeholder">Décrivez votre suggestion ici</string>
<string name="send_suggestion_sent">Merci, la suggestion a bien été envoyée</string>
<string name="send_suggestion_failed">Échec d’envoi de la suggestion (%s)</string>
<string name="settings_labs_show_hidden_events_in_timeline">Afficher les évènements cachés dans l’historique</string> <!-- Tchap: Custom string -->
<string name="bottom_action_people_x">Conversations privées</string>
<string name="settings_labs_show_hidden_events_in_timeline">Afficher les événements cachés dans l’historique</string> <!-- Tchap: Custom string -->
<string name="bottom_action_people_x">Messages Directs</string> <!-- Tchap: Custom string -->
<string name="send_file_step_idle">Attente…</string>
<string name="send_file_step_encrypting_thumbnail">Chiffrement de la miniature…</string>
<string name="send_file_step_sending_thumbnail">Envoi de la miniature (%1$s / %2$s)</string>
Expand Down

0 comments on commit bee4dc7

Please sign in to comment.