summaryrefslogtreecommitdiff
path: root/indra/newview/llviewermessage.cpp
AgeCommit message (Collapse)Author
2010-03-02Work on normal sub-task EXT-5886 ([HARD CODED] - System message "Teleport ↵Mike Antipov
completed from" needs translation) - moved hard coded string into teleport_strings.xml (name="completed_from") --HG-- branch : product-engine
2010-03-02CID-435Tofu Linden
Checker: MISSING_BREAK Function: friendship_offer_callback(const LLSD &, const LLSD &) File: /indra/newview/llviewermessage.cpp not-a-bug
2010-02-19EXT-5101 “No feedback provided when accepting a friend request”,Alexei Arabadji
suppresed toasting when logging accept/decline --HG-- branch : product-engine
2010-02-19fixed EXT-5101 “No feedback provided when accepting a friend request”,Alexei Arabadji
added logging of friendship offer accept/decline; --HG-- branch : product-engine
2010-02-18fixed major EXT-5493 “llInstantMessage sends message to "nearby chat" window,Alexei Arabadji
but not to toasts in viewer”, made llInstantMessage logged into nearby chat window and nearby chat toast; --HG-- branch : product-engine
2010-02-10CID-408Tofu Linden
Checker: UNUSED_VALUE Function: LLOfferInfo::inventory_task_offer_callback(const LLSD &, const LLSD &) File: /indra/newview/llviewermessage.cpp dead code.
2010-02-10CID-420Tofu Linden
Checker: NULL_RETURNS Function: open_inventory_offer(const std::vector<LLUUID, std::allocator<LLUUID>> &, const std::basic_string<char, std::char_traits<char>, std::allocator<char>>&) File: /indra/newview/llviewermessage.cpp
2010-02-09fix for major EXT-5099 Blocked IM text comes from "Second Life" in nearby chatYchebotarev ProductEngine
--HG-- branch : product-engine
2010-02-08Fixed critical bug EXT-4970 - Inventory offers by scripted objects are ↵Dmitry Zaporozhan
discarded when offered objects got the same name. Had to do minor refactoring of LLScripFloaterManager in order to fix this issue. --HG-- branch : product-engine
2010-02-08Fixed major bug (EXT-5017) Landmark Info panel opens immediately afterSergei Litovchuk
retrieving data about landmarking location. --HG-- branch : product-engine
2010-02-06Update the rest of the LLEventTimer users to #include lleventtimer.h. I think.Tofu Linden
2010-02-03Fixed major bug EXT-4876 (Switch from slurl.com to maps.secondlife.com)Eugene Mutavchi
--HG-- branch : product-engine
2010-02-03Merge from default branchVadim Savchuk
--HG-- branch : product-engine
2010-02-03Fixed normal bug EXT-4766 - System notifications in nearby chat has default ↵Dmitry Zaporozhan
avatar icon and behave like sent from object --HG-- branch : product-engine
2010-02-02Automated merge with ssh://hg.lindenlab.com/viewer/viewer-2-0/Lynx Linden
2010-02-02DEV-32540: Lots of object IM and SLurl improvementsLynx Linden
- Don't let object names that are URLs override links to display the remote object inspector - Don't hyperlink the object name in the remote object inspector - Made the <nolink>...</nolink> regex more robust and made it support non-URLs between the tags, so that we don't get random <nolink> tags when trying to disable URLs in user-typed text. - Improved the llurlentry unit test and added some more test cases. - Hooked up another LLViewerMessage code path to objectim SLapps to pass down the owner and slurl information. - Made a few LLUrlEntryBase methods be const methods, because they are - Fixed a bug in the remote object inspector where it would never show the teleport URL.
2010-02-02Working on (EXT-4347) Moving object contents to inventory opens files, ↵Sergei Litovchuk
changes menu. - Removing LLPanelPlaces dependency from open_inventory_offer handler. - Added landmark offer handling to Places panel. --HG-- branch : product-engine
2010-02-01EXT-4613: No longer get to throttle for quite folders (COF, trash, outfits, etc)Eric M. Tulla (BigPapi)
-Reviewed by nyx
2010-01-29fixed bug EXT-4122 [BSI] Notification about \"maximum number of groups\" ↵Denis Serdjuk
returns redundant information The hardcoded and unlocalized dataserver response has been removed from the message of notification. --HG-- branch : product-engine
2010-01-29Mere from default branchVadim Savchuk
--HG-- branch : product-engine
2010-01-29Automated merge with https://hg.aws.productengine.com/secondlife/viewer-2-0/Mike Antipov
--HG-- branch : product-engine
2010-01-28EXT-4693: Pass through owner ID to remote object inspector.Lynx Linden
Plumbing to pass the owner ID for a chatting object down into the LLChatHistory::appendMessage() method where we create the objectim SLapp that will bring up the remote object inspector. Pheww. For object notifications that are displayed as text chat, we
2010-01-28Automated merge with ssh://hg.lindenlab.com/viewer/viewer-2-0/Lynx Linden
2010-01-28EXT-4693: First steps at using remote inspector.Lynx Linden
Now Object IMs that get sent to your local chat window will have secondlife:///app/objectim SLapps, which will open the remote object inspector for that object, not the avatar inspector. However, we don't have all the information needed for the remote object inspector, so I'm going to have to investigate extending the inspector to request the missing information from the server.
2010-01-27CID-255Tofu Linden
Checker: UNINIT Function: process_improved_im(LLMessageSystem *, void **) File: /indra/newview/llviewermessage.cpp
2010-01-27CID-196Tofu Linden
Checker: RESOURCE_LEAK Function: process_improved_im(LLMessageSystem *, void **) File: /indra/newview/llviewermessage.cpp
2010-01-27CID-196Tofu Linden
Checker: RESOURCE_LEAK Function: process_improved_im(LLMessageSystem *, void **) File: /indra/newview/llviewermessage.cpp partial fix. either coverity doesn't grok that the remaining case gets freed way down the line by the callbacks, or.. it really doesnt.
2010-01-27Fixed normal bug (EXT-4700) Creating a landmark brings up the LandmarkSergei Litovchuk
sidepanel info twice. - Disabled "Close" and "Back" buttons to prevent closing "Create Landmark" panel until created landmark is loaded. --HG-- branch : product-engine
2010-01-27Work on major bug EXT-3985 ([BSI] Landmarks created in Viewer 2.0 show up ↵Mike Antipov
with 1@ in Viewer 1.23.x) -- Implemented storage to save favorite landmarks order in local file. -- Previously implemented solution to store sort index in Landmark's name replaced with using the storage. For now all landmarks are shown as is (with sort LM prefix if it exists). -- Some deprecated methods are marked to be removed later -- Reverted fixes for: EXT-4306, EXT-1237, EXT-1615 as not necessary, these bugs should be verified again. --HG-- branch : product-engine
2010-01-26implemented EXT-4588 “Redirect messages that went to the Communicate ↵Alexei Arabadji
floater”; --HG-- branch : product-engine
2010-01-26Update for low bug EXT-4306 - Landmark name is shown with prefix in the ↵Dmitry Zaporozhan
group notice attachment. --HG-- branch : product-engine
2010-01-22Fixed low bug EXT-4306 - Landmark name is shown with prefix in the group ↵Dmitry Zaporozhan
notice attachment. --HG-- branch : product-engine
2010-01-21Fixed major bug EXT-4130 ([BSI] "Only friends and groups can call or IM me" ↵Vadim Savchuk
needs better label OR is buggy). Viewer now handles incoming inventory offers disregarding the setting. --HG-- branch : product-engine
2010-01-20Reducing include dependence from the "llspeakers.h" through "llimview.h" ↵Mike Antipov
(following by the 7d600b529ee8 commit) --HG-- branch : product-engine
2010-01-20fixed Windows line endMike Antipov
--HG-- branch : product-engine
2010-01-20Update for normal bug EXT-3749 - Clicking landmark attachment on Group ↵Dmitry Zaporozhan
notices doesn't open side panel. --HG-- branch : product-engine
2010-01-19Update for normal bug EXT-3749 - Clicking landmark attachment on Group ↵Dmitry Zaporozhan
notices doesn't open side panel. --HG-- branch : product-engine
2010-01-20more on removing LLFloaterChatYchebotarev ProductEngine
there was some places with messages that (as I think) should not go to nearby chat. but still probably should go somewhere... code is commented and messages are marked with: //TODO* CHAT: how to show this? --HG-- branch : product-engine
2010-01-19mergeYchebotarev ProductEngine
--HG-- branch : product-engine
2010-01-19fix link error...Ychebotarev ProductEngine
--HG-- branch : product-engine
2010-01-19a bit more to removing LLFloaterChat - add some system notificationsYchebotarev ProductEngine
--HG-- branch : product-engine
2010-01-18Fixed major bug EXT-4331 ( Inventory sent by Blocked Residents appears after ↵Vadim Savchuk
relog). In case of inventory offer from a blocked resident we didn't fetch the item being offered, hence it could not be discarded by the appropriate observer. --HG-- branch : product-engine
2010-01-18fixed EXT-4367 [BSI] Ability to display object IMs in nearby chatIgor Borovkov
--HG-- branch : product-engine
2010-01-18work on EXT-4322 Remove the Communicate floaterYchebotarev ProductEngine
leave some LLFloaterChat usages commented for later review... --HG-- branch : product-engine
2010-01-15mergerichard
2010-01-15EXT-4160 Gesture floater spam when creating new accountDenis Serdjuk
Cause: There is a global observer ( LLOpenTaskOffer ) which observes creation of new inventory items and open appropriated preview UI for them. Looks like simulator () sends a message for all active gestures, when user is logged in first time. Solution: Displaying of the preview gesture floater has been removed from global scope. Also I have added new observer to handle opening gestures as attachment from group notice to avoid regression problems. --HG-- branch : product-engine
2010-01-14Teleport offers should be recorded to IM history only after they were sent ↵Vadim Savchuk
(EXT-4315). --HG-- branch : product-engine
2010-01-14Automated merge with ssh://angela@hg.lindenlab.com/james/gooeyangela
2010-01-14EXT-3795 First run messages still display (click & drag on map, Build tools ↵angela
open, movement controlled, etc)
2010-01-12Automated merge with https://hg.aws.productengine.com/secondlife/viewer-2-0/Alexei Arabadji
--HG-- branch : product-engine