Commit Graph

40429 Commits (bd008a170898e69beeb8bc0481b4bfd94de86c55)

Author SHA1 Message Date
ruslantproductengine 964afabae6 SL-1221 Web page displays incorrectly
- Fixed
2019-04-26 21:31:11 +03:00
AndreyL ProductEngine 5e5c5ca09c Merged SL-10400 and SL-10401 2019-04-26 21:02:00 +03:00
Nat Goodspeed 0d596aa4de Automated merge with file:///Users/nat/linden/viewer-gridselect 2019-04-26 11:17:53 -04:00
Brad Payne (Vir Linden) a44f03573d SL-10400 - more on group limits from SimulatorFeatures 2019-04-26 14:23:57 +01:00
Brad Payne (Vir Linden) 06009e9b53 SL-10400 - get group limits from SimulatorFeatures 2019-04-25 22:02:47 +01:00
Nat Goodspeed 70aa89f708 SL-11049: Notice explicit --grid command-line switch and honor it.
LLPanelLogin's constructor checks both LLGridManager::getGrid() and
LLStartUp::getStartSLURL(). But by the time we get there, we've blurred the
distinction between explicit command-line arguments and defaults left over
from a previous run. Of course, if the grid implied by getStartSLURL() is the
same as the getGrid(), the distinction is irrelevant.

But if they differ, up until now, getStartSLURL() has always "won" -- even
when getGrid() was set by an explicit --grid switch whereas getStartSLURL()
was only left over from a previous run.

Notice that case and try to avoid overriding the explicitly-specified grid
with the grid from the default SLURL.
2019-04-25 15:48:20 -04:00
Nat Goodspeed a2d4122de4 Reorder logic in LLAppViewer::initConfiguration(); remove dup code.
There were two nearly-identical copies of a stanza that calls
sendURLToOtherInstance(). Remove one.

It's possible that the reason no one noticed the duplication was because the
two copies were 70 lines apart. Move setSkinFolder(), setUseSpellCheck() and
setSecondaryDictionaries() stanzas to consolidate SLURL-handling code more
closely. Also move logic for NextLoginLocation and CmdLineLoginLocation.

Remove a couple unnecessary std::ostringstream instances. Streaming a single
string literal to std::ostringstream and retrieving its str() is the same as simply
converting the literal to std::string, only slower.

OSMessageBox() accepts const std::string&. Given that you have a std::string
in hand, passing its c_str() to OSMessageBox() is not only unnecessary but
wasteful: it requires silently converting the const char* back to a different
std::string instance.

Calling a class method from another method of the same class does not require
ClassName:: qualification. Calling a singleton subclass method from another
non-static method of the same subclass does not require going through
ClassName::instance() or sInstance or whatever.
2019-04-25 15:40:44 -04:00
Nat Goodspeed 468fbd6b51 Return CGPoint and CGSize by value, not const ref to temporary. 2019-04-25 15:11:55 -04:00
Nat Goodspeed 778bfc932f Remove a couple unused iterators per Xcode 10.2.1. 2019-04-25 15:10:19 -04:00
ruslantproductengine 20ca495012 SL-10811 - [Render][OSX] Google’s search results page is not fully displayed in the Media Browser if HiDPI is enabled.
SL-10813 - [Render][OSX] HiDPI browser has black bars on the sides.
Fixed.
2019-04-24 18:20:34 +03:00
Andrey Lihatskiy 85b431d513 Merged in default (pull request #839)
SL-10994 Removed Facebook In-world Sharing

Approved-by: Andrey Kleshchev
2019-04-24 12:01:25 +00:00
maxim_productengine 79dbdc99b3 SL-11013 FIXED The Ban Duration ‘Temporary’ radio button and text are badly pressed when hovering them 2019-04-24 12:25:37 +03:00
AndreyL ProductEngine ba90f3a8e4 SL-10994 Removed Facebook In-world Sharing
SL-11024 Fixed Twitter connect failure
2019-04-24 02:24:42 +03:00
andreykproductengine 8a79174b0a SL-11022 Proxy port number is limited to 12K instead of 65K 2019-04-23 21:56:27 +03:00
maxim_productengine 3839444abe SL-11002 FIXED 'Created by me' and 'Created by others' checkboxes are not reset using 'Reset Filters' 2019-04-23 18:10:48 +03:00
Brad Payne (Vir Linden) d1f5e87ad0 via viewer-neko - don't crash test viewer due to missing version checker 2019-04-23 15:31:25 +01:00
Brad Payne (Vir Linden) 099e58f75b SL-10401 - get agent attachment limit from SimulatorFeatures if available 2019-04-23 15:13:38 +01:00
andreykproductengine 89cfffa15f SL-10936 Mark updater as unpinnable and make viewer pinnable 2019-04-23 16:11:36 +03:00
AndreyL ProductEngine b78b5da79a Merged in lindenlab/viewer-bear 2019-04-26 21:11:16 +03:00
maxim_productengine e5339156ca SL-10989 Disable text label when you don't have appropriate permissions. 2019-04-25 14:32:02 +03:00
andreykproductengine c23b6f1461 SL-8012 Remove Mesh Filter Option on Inventory 2019-04-22 19:39:21 +03:00
ruslantproductengine f3f75acb23 SL-10952 - Look at performance impact of selection outline changes
SL-10973 - [Love Me Render] Mesh Child Prims in Linkset are now Yellow instead of Blue -

Fixed
2019-04-22 16:32:15 +03:00
andreykproductengine cc464be2a7 SL-10828 [Dev tools] Scroll for fast timer 2019-04-22 16:05:06 +03:00
maxim_productengine eea440b454 SL-10989 Toggle checkbox when clicking 'Avatars on other parcels can see and chat...' label 2019-04-19 16:07:41 +03:00
maxim_productengine 02e1e6de8d SL-10990 Add tool-tips for 'Build', 'Object Entry' and 'Run scripts' checkboxes in the 'About Land' floater 2019-04-19 12:13:08 +03:00
AndreyL ProductEngine 6c078137d1 SL-10993 Fixed wrong Korean font in chat on Windows 10 2019-04-19 02:55:45 +03:00
Brad Kittenbrink a516c0fdde Removed unnecessary disconnection of listener in postAndSuspendSetup 2019-04-18 15:44:45 -07:00
Brad Kittenbrink 295ed138d4 Improved aggregate init syntax for DefaultPoolSizes map. 2019-04-18 15:27:40 -07:00
Anchor 6a250e9bc7 [DRTVWR-476] - update openjpeg 2019-04-18 13:24:14 -07:00
Anchor 0295311e75 [DRTVWR-476] - fix openjpeg include 2019-04-18 11:59:14 -07:00
Anchor b9067d9c6b [DRTVWR-476] - fix openjpeg dll path 2019-04-18 11:33:23 -07:00
Anchor 03fae6d7b8 Merge 2019-04-18 11:03:20 -07:00
Anchor 4a095782b6 Merge from viewer-fiber 2019-04-18 10:57:14 -07:00
andreykproductengine 36be78e54f SL-2797 SOCKS5 not working reliably 2019-04-17 18:24:42 +03:00
AndreyL ProductEngine 459601625d Merged in lindenlab/viewer-release 2019-04-17 16:45:28 +03:00
AndreyL ProductEngine 59457cfcfe Merged in lindenlab/viewer-release (EAM) 2019-04-17 16:26:45 +03:00
Nat Goodspeed 81dbd3663b increment viewer version to 6.2.1 2019-04-17 09:17:16 -04:00
Nat Goodspeed 9d2a181ae8 Added tag 6.2.0-release for changeset 82a89165e592 2019-04-17 09:17:15 -04:00
Ankur Ahlawat 890607a7aa [DRTVWR-476] - update colladodom 2019-04-17 07:38:31 +00:00
Ankur Ahlawat d4a40ae66b [DRTVWR-476] - updated googlemock 2019-04-17 06:31:50 +00:00
Ankur Ahlawat a365f75696 [DRTVWR-476] - update boost 2019-04-17 06:29:25 +00:00
Anchor 6684e96b98 [DRTVWR-476] - fix msvc version 2019-04-16 19:34:06 -07:00
Ankur Ahlawat 58954c3ff0 [DRTVWR-476] - update googlemock 2019-04-16 23:37:46 +00:00
Ankur Ahlawat f13a82adfd [DRTVWR-476] - updated libpng 2019-04-16 23:16:44 +00:00
Ankur Ahlawat ea796ec43c [DRTVWR-476] - update autobuild curl package 2019-04-16 22:55:21 +00:00
Anchor 0ca29b04c3 [DRTVWR-476] - update autobuild packages 2019-04-16 15:04:56 -07:00
andreykproductengine 29f0a7808f SL-10930 LLStringUtil pointlessly scan the string 2019-04-16 21:58:22 +03:00
maxim_productengine 68307a81bc SL-10963 FIXED The 'Copy failed' notification doesn't appear after hitting 'Ctrl+D' combination 2019-04-17 17:32:31 +03:00
AndreyL ProductEngine 7845055165 Merged in lindenlab/viewer-bear 2019-04-17 16:28:20 +03:00
AndreyL ProductEngine db6d4a3cb4 SL-10888 Fixed OSX mouse issues in HiDPI mode 2019-04-15 20:26:13 +03:00