diff --git a/indra/llwindow/llkeyboardwin32.cpp b/indra/llwindow/llkeyboardwin32.cpp index 448345eeebc84097b07230a1d06d9e4e745f9b74..6c7662f5a96cbd90628022295cef88ee97dd72de 100644 --- a/indra/llwindow/llkeyboardwin32.cpp +++ b/indra/llwindow/llkeyboardwin32.cpp @@ -168,10 +168,7 @@ MASK LLKeyboardWin32::updateModifiers() // Scan the modifier keys as of the last Windows key message // (keydown encoded in high order bit of short) - //setModifierKeyLevel( KEY_SHIFT, GetKeyState(VK_SHIFT) & 0x8000 ); - //setModifierKeyLevel( KEY_CONTROL, GetKeyState(VK_CONTROL) & 0x8000 ); - //setModifierKeyLevel( KEY_ALT, GetKeyState(VK_MENU) & 0x8000 ); - //setModifierKeyLevel( KEY_CAPSLOCK, GetKeyState(VK_CAPITAL) & 0x0001); // Low order bit carries the toggle state. + mKeyLevel[KEY_CAPSLOCK] = (GetKeyState(VK_CAPITAL) & 0x0001) != 0; // Low order bit carries the toggle state. // Get mask for keyboard events MASK mask = currentMask(FALSE); return mask; diff --git a/indra/newview/linux_tools/wrapper.sh b/indra/newview/linux_tools/wrapper.sh index 3fd59eb87c9b305148858e7a8c78d5ff8b0962f2..cdc36a83754cf1258da8d6c1a087b733e6e9f192 100755 --- a/indra/newview/linux_tools/wrapper.sh +++ b/indra/newview/linux_tools/wrapper.sh @@ -39,7 +39,7 @@ export SDL_VIDEO_X11_DGAMOUSE=0 RUN_PATH=`dirname "$0" || echo .` cd "${RUN_PATH}" -LD_LIBRARY_PATH="`pwd`"/lib:"`pwd`"/app_settings/mozilla:"${LD_LIBRARY_PATH}" bin/do-not-directly-run-secondlife-bin `cat gridargs.dat` $@ | cat +LD_LIBRARY_PATH="`pwd`"/lib:"`pwd`"/app_settings/mozilla-runtime-linux-i686:"${LD_LIBRARY_PATH}" bin/do-not-directly-run-secondlife-bin `cat gridargs.dat` $@ | cat echo echo '*********************************************************' diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 421e836f93e275130d9dd6c88dc50f33d216a298..e6c6576ae18b328b8ae4c950336e87e1ebf594a6 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -488,6 +488,10 @@ BOOL idle_startup() #else profileBaseDir += "mozilla"; #endif + #elif LL_LINUX + std::string profileBaseDir( gDirUtilp->getExpandedFilename( LL_PATH_APP_SETTINGS, "" ) ); + profileBaseDir += gDirUtilp->getDirDelimiter(); + profileBaseDir += "mozilla-runtime-linux-i686"; #else std::string profileBaseDir( gDirUtilp->getExpandedFilename( LL_PATH_APP_SETTINGS, "" ) ); profileBaseDir += gDirUtilp->getDirDelimiter(); diff --git a/indra/newview/llxmlrpctransaction.cpp b/indra/newview/llxmlrpctransaction.cpp index cc8f955bc6c74001d3e9497f6d58f4f0c5a00d9f..c00a202f9184e83a2a551ce758506c7f5fd521a7 100644 --- a/indra/newview/llxmlrpctransaction.cpp +++ b/indra/newview/llxmlrpctransaction.cpp @@ -408,9 +408,9 @@ void LLXMLRPCTransaction::Impl::setStatus(Status status, mStatusMessage = "Despite our best efforts, something unexpected has gone wrong. \n" " \n" - "Please check www.secondlife.com/status and the Second Life \n" - "Announcements forum to see if there is a known problem with \n" - "the service."; + "Please check www.secondlife.com/status \n" + "to see if there is a known problem with the service."; + mStatusURI = "http://secondlife.com/status/"; /* mStatusMessage = diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 4108298dfde7334bf68beadea46882a3e8833610..250b9bc7dfe6c8ddc07012c98186a38374031779 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -109,9 +109,6 @@ S32 gTrivialAccepts = 0; BOOL gRenderForSelect = FALSE; -BOOL gUsePickAlpha = TRUE; -F32 gPickAlphaThreshold = 0.2f; - //glsl parameter tables const char* LLPipeline::sReservedAttribs[] = { diff --git a/indra/newview/pipeline.h b/indra/newview/pipeline.h index af772fd60df30589de1ffa3187d324cce71b2bfe..c744a29beca7b082b94f40a428a2678110136a2c 100644 --- a/indra/newview/pipeline.h +++ b/indra/newview/pipeline.h @@ -651,7 +651,5 @@ void render_bbox(const LLVector3 &min, const LLVector3 &max); extern LLPipeline gPipeline; extern BOOL gRenderForSelect; -extern F32 gPickAlphaThreshold; -extern BOOL gUsePickAlpha; #endif diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index baa023cd4eee9952c82987617053d5e0467cf372..301ab310d936125b904f5a469587caa18d961232 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -388,7 +388,7 @@ def construct(self): # recurse self.end_prefix("res-sdl") - self.path("app_settings/mozilla-runtime-linux-i686", "app_settings/mozilla") + self.path("app_settings/mozilla-runtime-linux-i686") if self.prefix("../../libraries/i686-linux/lib_release_client", "lib"): self.path("libkdu_v42R.so")