From 0f7a25ec5c4418c6a22e942f4e5786afa118c6db Mon Sep 17 00:00:00 2001 From: Andrii Ryzhkov Date: Thu, 25 Jun 2026 14:33:56 +0300 Subject: [PATCH] Point in-app help links to /development/ docs unconditionally --- src/common/usermanual_url.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/usermanual_url.c b/src/common/usermanual_url.c index 6ef7d6b35b09..c13160f1a389 100644 --- a/src/common/usermanual_url.c +++ b/src/common/usermanual_url.c @@ -236,7 +236,8 @@ char *dt_get_manual_base_url() // = en / fr ... (default = en) // in case of a standard release, append the dt version to the url - if(dt_is_dev_version()) + //TODO: drop the "TRUE ||" if dtdocs resumes per-release snapshots + if(TRUE || dt_is_dev_version()) { dt_util_str_cat(&base_url, "development/"); }