diff --git a/etc/message.xml b/etc/message.xml index 1335e9711ded7e807d1a5223e15943dc11543d34..af3db1d9ad1d661890255ce0d92f10848e5aa833 100644 --- a/etc/message.xml +++ b/etc/message.xml @@ -258,6 +258,8 @@ <string>template</string> <key>trusted-sender</key> <boolean>true</boolean> + <key>only-send-latest</key> + <boolean>true</boolean> </map> <key>SimulatorLoad</key> @@ -537,6 +539,8 @@ <key>EstateChangeInfo</key> <boolean>false</boolean> + <key>FetchInventoryDescendents</key> + <boolean>true</boolean> </map> <key>messageBans</key> diff --git a/indra/llcommon/llversionserver.h b/indra/llcommon/llversionserver.h index 9c3485203129b8bd4e1c3a3513bd1e69af3fec6e..054d8fc896eca8efc59134f1b470e47c1177e3f0 100644 --- a/indra/llcommon/llversionserver.h +++ b/indra/llcommon/llversionserver.h @@ -34,8 +34,8 @@ const S32 LL_VERSION_MAJOR = 1; const S32 LL_VERSION_MINOR = 19; -const S32 LL_VERSION_PATCH = 1; -const S32 LL_VERSION_BUILD = 81992; +const S32 LL_VERSION_PATCH = 2; +const S32 LL_VERSION_BUILD = 82393; const char * const LL_CHANNEL = "Second Life Server"; diff --git a/indra/llmessage/llmessageconfig.cpp b/indra/llmessage/llmessageconfig.cpp index 78e22dd06d8ca55f531b83afb631ccd020509426..550071fade5e5cb6438ee418e7167ece9bf7bf94 100644 --- a/indra/llmessage/llmessageconfig.cpp +++ b/indra/llmessage/llmessageconfig.cpp @@ -252,6 +252,14 @@ bool LLMessageConfig::isValidMessage(const std::string& msg_name) return file.mMessages.has(msg_name); } +//static +bool LLMessageConfig::onlySendLatest(const std::string& msg_name) +{ + LLMessageConfigFile& file = LLMessageConfigFile::instance(); + LLSD config = file.mMessages[msg_name]; + return config["only-send-latest"].asBoolean(); +} + bool LLMessageConfig::isCapBanned(const std::string& cap_name) { return LLMessageConfigFile::instance().isCapBanned(cap_name); diff --git a/indra/llmessage/llmessageconfig.h b/indra/llmessage/llmessageconfig.h index eb3113b121b32ab0f6e21d72543169297378a480..6814089b056c9dec1212521e62bde6e39bedb5fe 100644 --- a/indra/llmessage/llmessageconfig.h +++ b/indra/llmessage/llmessageconfig.h @@ -53,6 +53,7 @@ class LLMessageConfig static Flavor getMessageFlavor(const std::string& msg_name); static SenderTrust getSenderTrustedness(const std::string& msg_name); static bool isValidMessage(const std::string& msg_name); + static bool onlySendLatest(const std::string& msg_name); static bool isCapBanned(const std::string& cap_name); static LLSD getConfigForMessage(const std::string& msg_name); }; diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp index 88271aa7f68c77924a524d0628c52e5a53b1e209..12d461d0d736d35dc6d2510a0a860294b6af3307 100644 --- a/indra/newview/llviewerregion.cpp +++ b/indra/newview/llviewerregion.cpp @@ -950,6 +950,7 @@ void LLViewerRegion::updateCoarseLocations(LLMessageSystem* msg) { //llinfos << "CoarseLocationUpdate" << llendl; mMapAvatars.reset(); + mMapAvatarIDs.reset(); // only matters in a rare case but it's good to be safe. U8 x_pos = 0; U8 y_pos = 0; @@ -1382,7 +1383,6 @@ void LLViewerRegion::setSeedCapability(const std::string& url) capabilityNames.append("MapLayer"); capabilityNames.append("MapLayerGod"); capabilityNames.append("NewFileAgentInventory"); - capabilityNames.append("ParcelGodReserveForNewbie"); capabilityNames.append("ParcelPropertiesUpdate"); capabilityNames.append("ParcelVoiceInfoRequest"); capabilityNames.append("ProvisionVoiceAccountRequest"); diff --git a/indra/test/llmessageconfig_tut.cpp b/indra/test/llmessageconfig_tut.cpp index df50d908c35663b5a38cfa977dccc94c058d6288..7bda48a0a8159a337933eae00bbc559c1bec882c 100644 --- a/indra/test/llmessageconfig_tut.cpp +++ b/indra/test/llmessageconfig_tut.cpp @@ -35,7 +35,6 @@ #include "lltut.h" #include "llsdserialize.h" #include "llfile.h" -#include "lldir.h" #include "lltimer.h" #include "llframetimer.h" #include "llsdutil.h" @@ -199,4 +198,23 @@ namespace tut LLMessageConfig::getServerDefaultFlavor(), LLMessageConfig::LLSD_FLAVOR); } + + template<> template<> + void LLMessageConfigTestObject::test<8>() + // tests that config changes are picked up/refreshed periodically + { + LLSD config; + config["serverDefaults"]["simulator"] = "template"; + config["messages"]["msg1"]["flavor"] = "llsd"; + config["messages"]["msg1"]["only-send-latest"] = true; + config["messages"]["msg2"]["flavor"] = "llsd"; + config["messages"]["msg2"]["only-send-latest"] = false; + LLMessageConfig::useConfig(config); + ensure_equals("Ensure msg1 exists, sent latest-only", + LLMessageConfig::onlySendLatest("msg1"), + true); + ensure_equals("Ensure msg2 exists, sent latest-only", + LLMessageConfig::onlySendLatest("msg2"), + false); + } }