Skip to content

Commit

Permalink
Merge branch 'release/2.11.9'
Browse files Browse the repository at this point in the history
  • Loading branch information
yostyle committed Jun 18, 2024
2 parents 3cceb82 + cde2f71 commit 7b64683
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
9 changes: 8 additions & 1 deletion TCHAP_CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
Changes in Tchap 2.11.9 (2024-06-18)
====================================

In development 🚧
----------------
- Activation du mode debug pour les appels audio. ([#1070](https://github.com/tchapgouv/tchap-android/issues/1070))

Changes in Tchap 2.11.8 (2024-06-12)
====================================

Features ✨
----------
- Activation des appels vocaux pour finances. ([#1068](https://github.com/tchapgouv/tchap-android/issues/1068))

Improvements 🙌
In development 🚧
--------------
- Support d'un proxy dans les paramètres de la librairie webrtc. ([#1055](https://github.com/tchapgouv/tchap-android/issues/1055))

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.11.8"
version = "2.11.9"
directory = "changelog.d"
filename = "TCHAP_CHANGES.md"
name = "Changes in Tchap"
Expand Down
2 changes: 1 addition & 1 deletion vector-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ext.versionMinor = 11
// 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 = 8
ext.versionPatch = 9

static def getGitTimestamp() {
def cmd = 'git show -s --format=%ct'
Expand Down
2 changes: 1 addition & 1 deletion vector/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ dependencies {

// TCHAP Manage jitsi lib
// WebRTC
withdmvoipImplementation('com.github.tchapgouv:webrtc:124.1.0')
withdmvoipImplementation('com.github.tchapgouv:webrtc:124.1.3')
// Jitsi
withvoipApi('org.jitsi.react:jitsi-meet-sdk:8.1.1') {
exclude group: 'com.google.firebase'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ class WebRtcCallManager @Inject constructor(
.setVideoEncoderFactory(defaultVideoEncoderFactory)
.setVideoDecoderFactory(defaultVideoDecoderFactory)
if (!proxyHost.isNullOrBlank() && proxyPort != null) {
Timber.d("proxy settings are configured")
builder.setHttpsProxy(proxyHost, proxyPort)
}
peerConnectionFactory = builder.createPeerConnectionFactory()
Expand Down

0 comments on commit 7b64683

Please sign in to comment.