cui/source/dialogs/about.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit f25dbabaec77368a30a8561a9d04120add4e9aa2 Author: Hossein <[email protected]> AuthorDate: Mon Dec 22 12:13:31 2025 +0100 Commit: Ilmari Lauhakangas <[email protected]> CommitDate: Mon Dec 22 15:09:20 2025 +0100 Show the link to a single commit instead of complete history in About Due to the issues discussed in below change, deep links are currently blocked on git.libreoffice.org: https://gerrit.libreoffice.org/c/core/+/188429 Therefore, it is not possible to use the link provided in "Help > About", as it leads to error "Secure Connection Failed". This patch uses /commit instead of /history to show a single commit instead of complete history. Change-Id: Ie52e7e6a52fda3578ab955dcbf8d569a22c0009d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196087 Tested-by: Jenkins Reviewed-by: Ilmari Lauhakangas <[email protected]> diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx index 3a76d5f7900b..f1484a386651 100644 --- a/cui/source/dialogs/about.cxx +++ b/cui/source/dialogs/about.cxx @@ -79,7 +79,7 @@ AboutDialog::AboutDialog(weld::Window* pParent) if (IsStringValidGitHash(sbuildId)) { const tools::Long nMaxChar = 25; - m_pBuildLabel->set_uri("https://git.libreoffice.org/core/history/" + sbuildId); + m_pBuildLabel->set_uri("https://git.libreoffice.org/core/commit/" + sbuildId); m_pBuildLabel->set_label( sbuildId.getLength() > nMaxChar ? sbuildId.replaceAt(nMaxChar, sbuildId.getLength() - nMaxChar, u"...")
