diff options
author | callum_linden <none@none> | 2018-01-11 10:32:23 -0800 |
---|---|---|
committer | callum_linden <none@none> | 2018-01-11 10:32:23 -0800 |
commit | e84e4a1adf29b3a807c9d0c0e4841b5f12ea9756 (patch) | |
tree | 601e16de09f077f7b9f7d335a3915ba6cd88aee7 /indra/newview/llappviewer.cpp | |
parent | 3bd84c2f2f01e05907a651ebbba5f21ade2bdb44 (diff) |
Fix for MAINT-8177 Expose the full version of the matching Chromium/Chrome build for CEF in the About box
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r-- | indra/newview/llappviewer.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index b33b3a6410..e827a728ae 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -3178,8 +3178,14 @@ LLSD LLAppViewer::getViewerInfo() const cef_ver_codec << " / CEF: "; cef_ver_codec << CEF_VERSION; - cef_ver_codec << " / Chrome: "; + cef_ver_codec << " / Chromium: "; cef_ver_codec << CHROME_VERSION_MAJOR; + cef_ver_codec << "."; + cef_ver_codec << CHROME_VERSION_MINOR; + cef_ver_codec << "."; + cef_ver_codec << CHROME_VERSION_BUILD; + cef_ver_codec << "."; + cef_ver_codec << CHROME_VERSION_PATCH; info["LIBCEF_VERSION"] = cef_ver_codec.str(); #else |