Show crypto version in developer settings
This commit is contained in:
@@ -59,6 +59,7 @@
|
|||||||
"username": "Username",
|
"username": "Username",
|
||||||
"video": "Video"
|
"video": "Video"
|
||||||
},
|
},
|
||||||
|
"crypto_version": "Crypto version: {{version}}",
|
||||||
"device_id": "Device ID: {{id}}",
|
"device_id": "Device ID: {{id}}",
|
||||||
"disconnected_banner": "Connectivity to the server has been lost.",
|
"disconnected_banner": "Connectivity to the server has been lost.",
|
||||||
"full_screen_view_description": "<0>Submitting debug logs will help us track down the problem.</0>",
|
"full_screen_view_description": "<0>Submitting debug logs will help us track down the problem.</0>",
|
||||||
@@ -156,7 +157,7 @@
|
|||||||
"unauthenticated_view_eula_caption": "By clicking \"Go\", you agree to our <2>End User Licensing Agreement (EULA)</2>",
|
"unauthenticated_view_eula_caption": "By clicking \"Go\", you agree to our <2>End User Licensing Agreement (EULA)</2>",
|
||||||
"unauthenticated_view_login_button": "Login to your account",
|
"unauthenticated_view_login_button": "Login to your account",
|
||||||
"unmute_microphone_button_label": "Unmute microphone",
|
"unmute_microphone_button_label": "Unmute microphone",
|
||||||
"version": "Version: {{version}}",
|
"version": "{{productName}} version: {{version}}",
|
||||||
"video_tile": {
|
"video_tile": {
|
||||||
"always_show": "Always show",
|
"always_show": "Always show",
|
||||||
"change_fit_contain": "Fit to frame",
|
"change_fit_contain": "Fit to frame",
|
||||||
|
|||||||
@@ -241,9 +241,15 @@ export const SettingsModal: FC<Props> = ({
|
|||||||
>
|
>
|
||||||
<p>
|
<p>
|
||||||
{t("version", {
|
{t("version", {
|
||||||
|
productName: import.meta.env.VITE_PRODUCT_NAME || "Element Call",
|
||||||
version: import.meta.env.VITE_APP_VERSION || "dev",
|
version: import.meta.env.VITE_APP_VERSION || "dev",
|
||||||
})}
|
})}
|
||||||
</p>
|
</p>
|
||||||
|
<p>
|
||||||
|
{t("crypto_version", {
|
||||||
|
version: client.getCrypto()?.getVersion() || "unknown",
|
||||||
|
})}
|
||||||
|
</p>
|
||||||
<p>
|
<p>
|
||||||
{t("matrix_id", {
|
{t("matrix_id", {
|
||||||
id: client.getUserId() || "unknown",
|
id: client.getUserId() || "unknown",
|
||||||
|
|||||||
Reference in New Issue
Block a user