diff --git a/TCHAP_CHANGES.md b/TCHAP_CHANGES.md
index d841bb64fd..c6212a6505 100644
--- a/TCHAP_CHANGES.md
+++ b/TCHAP_CHANGES.md
@@ -1,3 +1,13 @@
+Changes in Tchap 2.6.1 (2023-02-10)
+===================================
+
+Other changes
+-------------
+ - Remove welcome slide related to spaces ([#821](https://github.com/tchapgouv/tchap-android-v2/issues/821))
+ - Remove the ability to install an app from Tchap ([#832](https://github.com/tchapgouv/tchap-android-v2/issues/832))
+ - [Dark modes] Fix contrast of blue color ([#838](https://github.com/tchapgouv/tchap-android-v2/issues/838))
+
+
Changes in Tchap 2.6.0 (2023-01-24)
===================================
diff --git a/library/ui-styles/src/main/res/values/colors.xml b/library/ui-styles/src/main/res/values/colors.xml
index 14df099187..d4256b49bc 100644
--- a/library/ui-styles/src/main/res/values/colors.xml
+++ b/library/ui-styles/src/main/res/values/colors.xml
@@ -54,6 +54,9 @@
+
+
+
- @android:color/black
diff --git a/library/ui-styles/src/main/res/values/theme_dark.xml b/library/ui-styles/src/main/res/values/theme_dark.xml
index b3ee99a2f4..6b3bca924c 100644
--- a/library/ui-styles/src/main/res/values/theme_dark.xml
+++ b/library/ui-styles/src/main/res/values/theme_dark.xml
@@ -32,6 +32,7 @@
- @color/vctr_message_bubble_outbound_dark
- @color/vctr_badge_color_border_dark
- @color/element_system_dark
+ - @color/palette_tchap_dark_blue
- #61708B
diff --git a/library/ui-styles/src/main/res/values/theme_light.xml b/library/ui-styles/src/main/res/values/theme_light.xml
index f41dee2fd1..a9dcae0436 100644
--- a/library/ui-styles/src/main/res/values/theme_light.xml
+++ b/library/ui-styles/src/main/res/values/theme_light.xml
@@ -32,6 +32,7 @@
- @color/vctr_message_bubble_outbound_light
- @color/vctr_badge_color_border_light
- @color/element_background_light
+ - @color/palette_tchap_official_blue
- #61708B
diff --git a/towncrier.toml b/towncrier.toml
index cf4a07aa12..8a6daa1351 100644
--- a/towncrier.toml
+++ b/towncrier.toml
@@ -1,5 +1,5 @@
[tool.towncrier]
- version = "2.6.0"
+ version = "2.6.1"
directory = "changelog.d"
filename = "TCHAP_CHANGES.md"
name = "Changes in Tchap"
diff --git a/vector-app/build.gradle b/vector-app/build.gradle
index 99dec91436..dc21c89934 100644
--- a/vector-app/build.gradle
+++ b/vector-app/build.gradle
@@ -37,7 +37,7 @@ ext.versionMinor = 6
// 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'
diff --git a/vector/src/main/AndroidManifest.xml b/vector/src/main/AndroidManifest.xml
index da49484c17..804b74c2f7 100644
--- a/vector/src/main/AndroidManifest.xml
+++ b/vector/src/main/AndroidManifest.xml
@@ -35,7 +35,9 @@
+
diff --git a/vector/src/main/java/im/vector/app/features/home/room/list/home/release/ReleaseNotesFragment.kt b/vector/src/main/java/im/vector/app/features/home/room/list/home/release/ReleaseNotesFragment.kt
index 6b86897dc8..4fc95d2d15 100644
--- a/vector/src/main/java/im/vector/app/features/home/room/list/home/release/ReleaseNotesFragment.kt
+++ b/vector/src/main/java/im/vector/app/features/home/room/list/home/release/ReleaseNotesFragment.kt
@@ -96,11 +96,12 @@ class ReleaseNotesFragment : VectorBaseFragment(
R.string.onboarding_new_app_layout_welcome_message,
R.drawable.ill_app_layout_onboarding_rooms
),
- ReleaseCarouselData.Item(
+ // Tchap : No space function
+ /* ReleaseCarouselData.Item(
R.string.onboarding_new_app_layout_spaces_title,
R.string.onboarding_new_app_layout_spaces_message,
R.drawable.ill_app_layout_onboarding_spaces
- ),
+ ), */
ReleaseCarouselData.Item(
R.string.onboarding_new_app_layout_feedback_title,
R.string.onboarding_new_app_layout_feedback_message,
diff --git a/vector/src/main/res/drawable-hdpi/ill_app_layout_onboarding_spaces.webp b/vector/src/main/res/drawable-hdpi/ill_app_layout_onboarding_spaces.webp
deleted file mode 100644
index f1fe6c70b7..0000000000
Binary files a/vector/src/main/res/drawable-hdpi/ill_app_layout_onboarding_spaces.webp and /dev/null differ
diff --git a/vector/src/main/res/drawable-mdpi/ill_app_layout_onboarding_spaces.webp b/vector/src/main/res/drawable-mdpi/ill_app_layout_onboarding_spaces.webp
deleted file mode 100644
index 8e16d650e4..0000000000
Binary files a/vector/src/main/res/drawable-mdpi/ill_app_layout_onboarding_spaces.webp and /dev/null differ
diff --git a/vector/src/main/res/drawable-xhdpi/ill_app_layout_onboarding_spaces.webp b/vector/src/main/res/drawable-xhdpi/ill_app_layout_onboarding_spaces.webp
deleted file mode 100644
index 652bc6c77c..0000000000
Binary files a/vector/src/main/res/drawable-xhdpi/ill_app_layout_onboarding_spaces.webp and /dev/null differ
diff --git a/vector/src/main/res/drawable-xxhdpi/ill_app_layout_onboarding_spaces.webp b/vector/src/main/res/drawable-xxhdpi/ill_app_layout_onboarding_spaces.webp
deleted file mode 100644
index 9cf1ea9187..0000000000
Binary files a/vector/src/main/res/drawable-xxhdpi/ill_app_layout_onboarding_spaces.webp and /dev/null differ
diff --git a/vector/src/main/res/drawable-xxxhdpi/ill_app_layout_onboarding_spaces.webp b/vector/src/main/res/drawable-xxxhdpi/ill_app_layout_onboarding_spaces.webp
deleted file mode 100644
index e7d07defe2..0000000000
Binary files a/vector/src/main/res/drawable-xxxhdpi/ill_app_layout_onboarding_spaces.webp and /dev/null differ