diff --git a/CHANGELOG.md b/CHANGELOG.md index f16c6e030..f9a0c5287 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ * Do not show "1 member" when the process of joining the group is not finished * Improve handling of video recoding * Tweak advanced section and wording of some advanced options +* Opened in-chat apps got a 'About Apps' menu item + ## v2.25.0 2025-11 diff --git a/src/main/java/org/thoughtcrime/securesms/WebxdcActivity.java b/src/main/java/org/thoughtcrime/securesms/WebxdcActivity.java index a376edea7..585fc279a 100644 --- a/src/main/java/org/thoughtcrime/securesms/WebxdcActivity.java +++ b/src/main/java/org/thoughtcrime/securesms/WebxdcActivity.java @@ -296,6 +296,8 @@ public class WebxdcActivity extends WebViewActivity implements DcEventCenter.DcE if (itemId == R.id.menu_add_to_home_screen) { addToHomeScreen(this, dcAppMsg.getId()); return true; + } else if (itemId == R.id.webxdc_help) { + DcHelper.openHelp(this, "#webxdc"); } else if (itemId == R.id.source_code) { IntentUtils.showInBrowser(this, sourceCodeUrl); return true; diff --git a/src/main/res/menu/webxdc.xml b/src/main/res/menu/webxdc.xml index 69aebb7c7..b71b85d7d 100644 --- a/src/main/res/menu/webxdc.xml +++ b/src/main/res/menu/webxdc.xml @@ -2,10 +2,12 @@