cui/source/dialogs/about.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e1027c8740f81e0fc1f29341d3685320a30f5154
Author:     Hossein <[email protected]>
AuthorDate: Mon Dec 22 12:13:31 2025 +0100
Commit:     Ilmari Lauhakangas <[email protected]>
CommitDate: Tue Dec 23 18:09:32 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]>
    Signed-off-by: Xisco Fauli <[email protected]>
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196101

diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx
index 2484940a92ed..b4dae7dc9e37 100644
--- a/cui/source/dialogs/about.cxx
+++ b/cui/source/dialogs/about.cxx
@@ -78,7 +78,7 @@ AboutDialog::AboutDialog(weld::Window *pParent)
   OUString sbuildId = GetBuildString();
   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"...")
                                                              : sbuildId);

Reply via email to