diff --git a/indra/newview/Info-Inertia.plist b/indra/newview/Info-Inertia.plist deleted file mode 100644 index 78ea01e01..000000000 --- a/indra/newview/Info-Inertia.plist +++ /dev/null @@ -1,39 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - Inertia - CFBundleIconFile - inertia.icns - CFBundleIdentifier - com.inertia.indra.viewer - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - Inertia - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleURLTypes - - - CFBundleURLName - Second Life URL - CFBundleURLSchemes - - secondlife - - LSIsAppleDefaultForScheme - - - - CFBundleVersion - 1.0.0.0 - CSResourcesFileMapped - - - diff --git a/indra/newview/app_settings/client_definitions.xml b/indra/newview/app_settings/client_definitions.xml index a7ff12c22..f50258ed4 100644 --- a/indra/newview/app_settings/client_definitions.xml +++ b/indra/newview/app_settings/client_definitions.xml @@ -98,6 +98,20 @@ name Day Oh proxy + 28b4da3f-5f9b-f44e-1387-6a115ab482c5 + + color + + 0.64314000000000004 + 0.89803999999999995 + 0.99607999999999997 + 1 + + multiple + 1 + name + Diamond + 072343d0-1ce9-0952-4106-5312af4a789a color @@ -406,20 +420,6 @@ name NeilLife - e6f9c019-8783-dc3e-b265-41f1510333fc - - color - - 2 - 2 - 0 - 1 - - multiple - 0 - name - NeilLife - f5a48821-9a98-d09e-8d6a-50cc08ba9a47 color @@ -448,6 +448,34 @@ name NeilLife + e6f9c019-8783-dc3e-b265-41f1510333fc + + color + + 2 + 2 + 0 + 1 + + multiple + 0 + name + Onyx + + ed63fbd0-589e-fe1d-a3d0-16905efaa96b + + color + + 1 + 0 + 0 + 1 + + multiple + 2 + name + Phoenix + f3fd74a6-fee7-4b2f-93ae-ddcb5991da04 color diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index 047b09f15..a49e5a8f1 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -2,6 +2,17 @@ + AscentShowLookAt + + Comment + Avatar position modifier (X) + Persist + 1 + Type + Boolean + Value + 0 + AscentAvatarXModifier Comment @@ -35,17 +46,17 @@ Value 0.0 - AscentShowFriendsTag - - Comment - Show friends client tags as (Friend), and colorize them specially. - Persist - 1 - Type - Boolean - Value - 1 - + AscentShowFriendsTag + + Comment + Show friends client tags as (Friend), and colorize them specially. + Persist + 1 + Type + Boolean + Value + 1 + AscentBuildAlwaysEnabled Comment @@ -379,11 +390,11 @@ InventorySortOrder Comment - Specifies sort key for inventory items (+0 = name, +1 = date, +2 = folders always by name, +4 = system folders to top) + Specifies sort key for inventory items (+0 = name, +1 = date, +2 = folders always by name, +4 = system folders to top) Type - U32 + U32 Value - 3 + 3 AO.Enabled @@ -647,6 +658,17 @@ Value 0 + AscentUploadFolder + + Comment + Active folder for the Uploader + Persist + 1 + Type + String + Value + None + AscentUseCustomTag Comment @@ -13073,7 +13095,7 @@ Type String Value - Second Life Release + Ascent Viewer Release VertexShaderEnable diff --git a/indra/newview/ascentprefssys.cpp b/indra/newview/ascentprefssys.cpp index c16af50a9..632939f26 100644 --- a/indra/newview/ascentprefssys.cpp +++ b/indra/newview/ascentprefssys.cpp @@ -137,7 +137,9 @@ void LLPrefsAscentSysImpl::onCommitCheckBox(LLUICtrl* ctrl, void* user_data) } else if (ctrl->getName() == "show_look_at_check") { - LLHUDEffectLookAt::sDebugLookAt = self->childGetValue("show_look_at_check").asBoolean(); + BOOL lookAt = self->childGetValue("show_look_at_check").asBoolean(); + LLHUDEffectLookAt::sDebugLookAt = lookAt; + gSavedSettings.setBOOL("AscentShowLookAt", lookAt); } } diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 96c17b686..3b9034f75 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -74,7 +74,7 @@ #include "llweb.h" #include "llsecondlifeurls.h" - + #include #if LL_WINDOWS @@ -133,6 +133,7 @@ #include "llworld.h" #include "llhudeffecttrail.h" +#include "llhudeffectlookat.h" #include "llvectorperfoptions.h" #include "llurlsimstring.h" #include "llwatchdog.h" @@ -666,6 +667,7 @@ bool LLAppViewer::init() gSavedSettings.setS32("NumSessions", mNumSessions); gSavedSettings.setString("HelpLastVisitedURL",gSavedSettings.getString("HelpHomeURL")); + LLHUDEffectLookAt::sDebugLookAt = gSavedSettings.getBOOL("AscentShowLookAt"); if (gSavedSettings.getBOOL("VerboseLogs")) { diff --git a/indra/newview/llhudeffectlookat.cpp b/indra/newview/llhudeffectlookat.cpp index c8460cf60..1dbbe8922 100644 --- a/indra/newview/llhudeffectlookat.cpp +++ b/indra/newview/llhudeffectlookat.cpp @@ -55,7 +55,7 @@ // -BOOL LLHUDEffectLookAt::sDebugLookAt = TRUE; +BOOL LLHUDEffectLookAt::sDebugLookAt = FALSE; // packet layout const S32 SOURCE_AVATAR = 0; diff --git a/indra/newview/skins/default/xui/en-us/panel_friends.xml b/indra/newview/skins/default/xui/en-us/panel_friends.xml index ec2beffbd..6f494fd82 100644 --- a/indra/newview/skins/default/xui/en-us/panel_friends.xml +++ b/indra/newview/skins/default/xui/en-us/panel_friends.xml @@ -3,76 +3,79 @@ Multiple friends... - - Contact Group: - - - Contact Search: - - - + + Contact Group: + + + Contact Search: + + + + follows="left|top|bottom|right" left="10" multi_select="true" name="friend_list" + right="-100" search_column="1" top="-61" + tool_tip="Hold shift or control while clicking to select multiple friends"> + tool_tip="Online status" width="20" /> + tool_tip="Friend can see when you're online" width="20" /> + tool_tip="Friend can locate you on the map" width="20" /> + tool_tip="Friend can edit, delete or take objects" width="20" /> + tool_tip="You can see when they are online (only updates on login)" width="20" /> + tool_tip="You can locate them on the map" width="20" /> + tool_tip="You can edit this friend's objects" width="20" /> -