diff options
Diffstat (limited to 'indra/newview/llfloaterabout.cpp')
-rw-r--r-- | indra/newview/llfloaterabout.cpp | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/indra/newview/llfloaterabout.cpp b/indra/newview/llfloaterabout.cpp index 9746b06500..2fe1781a96 100644 --- a/indra/newview/llfloaterabout.cpp +++ b/indra/newview/llfloaterabout.cpp @@ -39,6 +39,9 @@ #include "llui.h" // for tr() #include "v3dmath.h" +#include "llcurl.h" +#include "llimagej2c.h" + #include "llviewertexteditor.h" #include "llviewercontrol.h" #include "llagent.h" @@ -113,7 +116,7 @@ LLFloaterAbout::LLFloaterAbout() support.append("\n\n"); } - //*NOTE: Do not translate text like GPU, Graphics Card, etc - + // *NOTE: Do not translate text like GPU, Graphics Card, etc - // Most PC users that know what these mean will be used to the english versions, // and this info sometimes gets sent to support @@ -144,6 +147,16 @@ LLFloaterAbout::LLFloaterAbout() support.append( (const char*) glGetString(GL_VERSION) ); support.append("\n"); + support.append("\n"); + + support.append("libcurl Version: "); + support.append( LLCurl::getVersionString() ); + support.append("\n"); + + support.append("J2C Decoder Version: "); + support.append( LLImageJ2C::getEngineInfo() ); + support.append("\n"); + LLMediaManager *mgr = LLMediaManager::getInstance(); if (mgr) { |