TPV Compliance issues resolved:

Message Builder is removed entirely as per requested
Message Log was updated to be less dependent on the message builder for later removal
Version reporting was fixed - Missed some tidbits from Inertia removal

Signed-off-by: Beeks <HgDelirium@gmail.com>
This commit is contained in:
Beeks
2010-09-06 23:16:43 -04:00
parent 512f24a4ca
commit 0be0d095fc
17 changed files with 79 additions and 1158 deletions

View File

@@ -288,18 +288,14 @@ void LLFloaterAbout::show(void*)
static std::string get_viewer_release_notes_url()
{
std::ostringstream version;
// <edit>
version << gSavedSettings.getU32("SpecifiedVersionMaj") << "." //LL_VERSION_MAJOR
<< gSavedSettings.getU32("SpecifiedVersionMin") << "." //LL_VERSION_MINOR
<< gSavedSettings.getU32("SpecifiedVersionPatch") << "." //LL_VERSION_PATCH
<< gSavedSettings.getU32("SpecifiedVersionBuild"); //LL_VERSION_BUILD
// </edit>
version << LL_VERSION_MAJOR
<< "." << LL_VERSION_MINOR
<< "." << LL_VERSION_PATCH
<< "." << LL_VERSION_BUILD;
LLSD query;
// <edit>
//query["channel"] = gSavedSettings.getString("VersionChannelName");
query["channel"] = gSavedSettings.getString("SpecifiedChannel");
// I think the version below is only numbers..
// </edit>
query["channel"] = LL_CHANNEL;
query["version"] = version.str();
std::ostringstream url;