Skip to content
Closed
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
6588871
First commit - experimental Voice (and then other) moderation tool
callumlinden Sep 26, 2025
001d82e
Get select NONE working. Capture selected items and display logging …
callumlinden Sep 26, 2025
9799197
The elements are deleted in trimList() afterall - no leak!
callumlinden Sep 26, 2025
31ba081
Hook up right click on an avatar - or their name tag - different code…
callumlinden Sep 30, 2025
73e3b88
Merge branch 'develop' of https://github.com/secondlife/viewer into c…
callumlinden Sep 30, 2025
a4200e1
Good reason for macOS builds - finds errors that windows does not
callumlinden Sep 30, 2025
f7d8339
Introduce the concept of 'recent loudness' after standup this morning…
callumlinden Sep 30, 2025
0877168
Hook up the mute/unmute actions to a simple implementation that uses …
callumlinden Oct 1, 2025
04c8ef4
Merge branch 'develop' of https://github.com/secondlife/viewer into c…
callumlinden Oct 1, 2025
f7e29c1
Fix a single trailing space in a comment - thanks PCR
callumlinden Oct 1, 2025
6f0f0c7
Expand moderation floater a bit (was a little cramped) and show Agent…
callumlinden Oct 2, 2025
c2015e3
Polish various parts of the UI
callumlinden Oct 2, 2025
9a3ad74
Tiny polish
callumlinden Oct 2, 2025
00a6060
Merge branch 'develop' of https://github.com/secondlife/viewer into c…
callumlinden Oct 6, 2025
aaf4a2e
Remove testing users
callumlinden Oct 6, 2025
4e2b67a
In-progress checkin for safety
callumlinden Oct 23, 2025
5558578
Merge branch 'develop' of https://github.com/secondlife/viewer into c…
callumlinden Oct 23, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion indra/llmessage/llcachename.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,10 @@ bool LLCacheName::getFullName(const LLUUID& id, std::string& fullname)
return res;
}


bool LLCacheName::getFirstLastName(const LLUUID& id, std::string& first, std::string& last)
{
return impl.getName(id, first, last, mCacheName);
}

bool LLCacheName::getGroupName(const LLUUID& id, std::string& group)
{
Expand Down
3 changes: 3 additions & 0 deletions indra/llmessage/llcachename.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ class LLCacheName
// Returns true if available.
bool getFullName(const LLUUID& id, std::string& full_name);

// Returns first name, last name
bool getFirstLastName(const LLUUID& id, std::string& first, std::string& last);

// Reverse lookup of UUID from name
bool getUUID(const std::string& first, const std::string& last, LLUUID& id);
bool getUUID(const std::string& fullname, LLUUID& id);
Expand Down
2 changes: 2 additions & 0 deletions indra/newview/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ set(viewer_SOURCE_FILES
llfloatermediasettings.cpp
llfloatermemleak.cpp
llfloatermodelpreview.cpp
llfloatermoderation.cpp
llfloatermodeluploadbase.cpp
llfloatermyscripts.cpp
llfloatermyenvironment.cpp
Expand Down Expand Up @@ -936,6 +937,7 @@ set(viewer_HEADER_FILES
llfloatermediasettings.h
llfloatermemleak.h
llfloatermodelpreview.h
llfloatermoderation.h
llfloatermodeluploadbase.h
llfloatermyscripts.h
llfloatermyenvironment.h
Expand Down
19 changes: 17 additions & 2 deletions indra/newview/app_settings/message.xml
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,19 @@
<key>trusted-sender</key>
<boolean>false</boolean>
</map>
<!-- Server to client -->

<key>SpatialVoiceModerationRequest</key>
<map>
<key>flavor</key>
<string>llsd</string>
<key>trusted-sender</key>
<boolean>false</boolean>
</map>




<!-- Server to client -->
<key>RequiredVoiceVersion</key>
<map>
<key>flavor</key>
Expand Down Expand Up @@ -698,7 +710,10 @@

<key>VoiceSignalingRequest</key>
<boolean>false</boolean>


<key>SpatialVoiceModerationRequest</key>
<boolean>false</boolean>

<key>RemoteParcelRequest</key>
<boolean>false</boolean>

Expand Down
Loading