Add CEF/VLC version to sysinfo.

master
Nicky 2016-10-19 01:02:15 +02:00
parent db2d9db8ac
commit f8ccbd53fd
2 changed files with 5 additions and 3 deletions

View File

@ -940,7 +940,9 @@ LLSD FSData::getSystemInfo()
sysinfo2 += llformat("libcurl Version: %s\n", info["LIBCURL_VERSION"].asString().c_str());
sysinfo2 += llformat("J2C Decoder Version: %s\n", info["J2C_VERSION"].asString().c_str());
sysinfo2 += llformat("Audio Driver Version: %s\n", info["AUDIO_DRIVER_VERSION"].asString().c_str());
sysinfo2 += llformat("Qt Webkit Version: %s\n", info["QT_WEBKIT_VERSION"].asString().c_str());
sysinfo2 += llformat("CEF Version: %s\n", info["LLCEFLIB_VERSION"].asString().c_str());
sysinfo2 += llformat("LibVLC Version: %s\n", info["LIBVLC_VERSION"].asString().c_str());
sysinfo2 += llformat("Vivox Version: %s\n", info["VOICE_VERSION"].asString().c_str());
sysinfo2 += llformat("Packets Lost: %.0f/%.0f (%.1f%%)\n\n", info["PACKETS_LOST"].asReal(), info["PACKETS_IN"].asReal(), info["PACKETS_PCT"].asReal());

View File

@ -140,7 +140,7 @@
#include "llexception.h"
//#if !LL_LINUX
#include "cef/llceflib.h"
#if LL_WINDOWS
#if defined(LL_WINDOWS) || defined(LL_LINUX)
#include "vlc/libvlc_version.h"
#endif // LL_WINDOWS
//#endif
@ -3970,7 +3970,7 @@ LLSD LLAppViewer::getViewerInfo() const
//
//#endif
#if LL_WINDOWS
#if defined(LL_WINDOWS) || defined(LL_LINUX)
std::ostringstream ver_codec;
ver_codec << LIBVLC_VERSION_MAJOR;
ver_codec << ".";