Skip to content
Snippets Groups Projects
Commit f3b1efae authored by Oz Linden's avatar Oz Linden
Browse files

put the KDU, Fmod*, and CEF versions back in the About info

parent b46627ff
No related branches found
No related tags found
No related merge requests found
...@@ -3359,6 +3359,10 @@ LLSD LLAppViewer::getViewerInfo() const ...@@ -3359,6 +3359,10 @@ LLSD LLAppViewer::getViewerInfo() const
#endif #endif
info["OPENGL_VERSION"] = (const char*)(glGetString(GL_VERSION)); info["OPENGL_VERSION"] = (const char*)(glGetString(GL_VERSION));
info["J2C_VERSION"] = LLImageJ2C::getEngineInfo();
bool want_fullname = true;
info["AUDIO_DRIVER_VERSION"] = gAudiop ? LLSD(gAudiop->getDriverName(want_fullname)) : LLSD();
if(LLVoiceClient::getInstance()->voiceEnabled()) if(LLVoiceClient::getInstance()->voiceEnabled())
{ {
LLVoiceVersionInfo version = LLVoiceClient::getInstance()->getVersion(); LLVoiceVersionInfo version = LLVoiceClient::getInstance()->getVersion();
...@@ -3371,6 +3375,12 @@ LLSD LLAppViewer::getViewerInfo() const ...@@ -3371,6 +3375,12 @@ LLSD LLAppViewer::getViewerInfo() const
info["VOICE_VERSION"] = LLTrans::getString("NotConnected"); info["VOICE_VERSION"] = LLTrans::getString("NotConnected");
} }
#if !LL_LINUX
info["LLCEFLIB_VERSION"] = LLCEFLIB_VERSION;
#else
info["LLCEFLIB_VERSION"] = "Undefined";
#endif
S32 packets_in = LLViewerStats::instance().getRecording().getSum(LLStatViewer::PACKETS_IN); S32 packets_in = LLViewerStats::instance().getRecording().getSum(LLStatViewer::PACKETS_IN);
if (packets_in > 0) if (packets_in > 0)
{ {
......
...@@ -47,6 +47,10 @@ Graphics Card: [GRAPHICS_CARD] ...@@ -47,6 +47,10 @@ Graphics Card: [GRAPHICS_CARD]
<string name="AboutDriver">Windows Graphics Driver Version: [GRAPHICS_DRIVER_VERSION]</string> <string name="AboutDriver">Windows Graphics Driver Version: [GRAPHICS_DRIVER_VERSION]</string>
<string name="AboutLibs"> <string name="AboutLibs">
OpenGL Version: [OPENGL_VERSION] OpenGL Version: [OPENGL_VERSION]
J2C Decoder Version: [J2C_VERSION]
Audio Driver Version: [AUDIO_DRIVER_VERSION]
LLCEFLib/CEF Version: [LLCEFLIB_VERSION]
Voice Server Version: [VOICE_VERSION] Voice Server Version: [VOICE_VERSION]
</string> </string>
<string name="AboutTraffic">Packets Lost: [PACKETS_LOST,number,0]/[PACKETS_IN,number,0] ([PACKETS_PCT,number,1]%)</string> <string name="AboutTraffic">Packets Lost: [PACKETS_LOST,number,0]/[PACKETS_IN,number,0] ([PACKETS_PCT,number,1]%)</string>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment