summaryrefslogtreecommitdiff
path: root/indra/media_plugins
AgeCommit message (Collapse)Author
2015-10-19MAINT-5711 FIX profiles and marketplace are asking for a login each sessioncallum_linden
2015-10-09CMake fixes for mac build.rider
2015-10-09MAINT-5715, MAINT-5717, MAINT-5718: Replace the the volume catcher that was ↵Rider Linden
removed with the QT viewer. Addresses panning and fading issues, teleport and viewer mute controls.
2015-10-06MAINT-5703 fix - add observer to media plugin so MEDIA_LOCATION_CHANGED ↵callum_linden
events get propagated throughout system
2015-10-02MAINT-5687: Remove old webkit from the make files and the repo. Ensure that ↵Rider Linden
it is no longer meaningfully referenced.
2015-10-01Fix OS X missing scope qualifierscallum_linden
2015-09-30Update CEF media plugin to reflect changes in LLCEFLibcallum_linden
2015-09-26Point to new third party llcef package and fix typo in interfacecallum_linden
2015-09-16tmp chckin - still needs latest llceflib to buildcallum_linden
2015-09-10Pull in LLCefLib with inverted output switched on and change viewer to ↵callum_linden
uninvert things
2015-09-03point to new version of llceflib with fixed support for secondlife:// URLscallum_linden
2015-09-03support for external links and location_changed messagescallum_linden
2015-09-02Add support for copy/cut/paste into and out of browsercallum_linden
(Note - feature in LLQtWebKit (canPaste, canCut etc.) not present so right click menu always enables options
2015-09-01Remove debugging crudcallum_linden
2015-09-01get update llceflib with cookie/cache code and implement cache/cookie ↵callum_linden
folders in viewer
2015-07-27Bring in lastest version of LLCEFLIb & set user agent string before browser ↵callum_linden
instance created
2015-07-24Include support for http auth. also improve mouse handling with drag selectcallum_linden
2015-07-17Changes to implement enable/disable cookies, javascript, pluginscallum_linden
2015-07-16Point to LLCEFLib with updated 2357 version and support for setting language ↵callum_linden
for embedded browser
2015-07-15Still making small changes to try to fix OS X keyboardscallum
2015-07-15New keyboard code for windows that uses system messages directly and works ↵callum_linden
ok. Points to new LLCEFLib
2015-07-10Initial support for keyboard (in progress) but includes many viewer changes ↵callum_linden
to plumb in Key Up events
2015-07-02plugin and llceflib code for improved mouse supportcallum_linden
2015-07-022015 and we still care about line endings.. sighcallum_linden
2015-06-30Point to new version of LLCefLib with support for second life URLs, version ↵callum_linden
string, navigation commands
2015-06-22I can't believe I really added these lines - pretend you didn't see themcallum_linden
2015-06-08Fixed for OS X version - in progressCallum Prentice
2015-06-04Add CEF into OS X buildCallum Prentice
2015-03-28add support for keyboard (rudimentary & broken), mouse wheel and open links ↵callum_linden
in same page
2015-03-26point to new cef tpl with right headers, update cmaake and viewer_manifest ↵callum_linden
logic to copy files to right place
2015-03-25Make VS2013 look inside include/cef folder for headerscallum_linden
2015-03-24Add new media plugin (currently renders squares as example) in preparation ↵callum_linden
for new CEF code
2015-03-24Refer to new QuickTime third party package with fixes for VS2013 & re-add ↵callum_linden
QuickTime media plugin
2014-12-10Match up our usage of MS APIs with function prototypes in the new version of ↵callum_linden
the API
2014-10-17Update to build on Xcode 6.0: Use of unary operator might be an errorcallum_linden
2014-08-18merge changes for 3.7.14-releaseOz Linden
2014-06-03All: Committing to llqtwebkit2 and the future. Updating all libraries.Monty Brandenberg
Updating SDL to 290561, c-ares to 290399, Boost to 290566, colladadom to 290576, curl to 290567, fontconfig to 290569, freetype to 290557, google-mock to 290574, libpng to 290558, libxml2 to 290562, llqtwebkit to 290578, openssl to 290560, PCRE to 290406, zlib to 290556. Document compiling and linking in new 00-COMPILE-LINK-RUN.txt in indra/cmake. It is the README for the building process based on things learned during this library project. Switch building process back to style used for new llqtwebkit2 repo. This builds shared libraries for Qt4 products on all platforms using current build machines and TC task templates. All platforms are building. All have comparable FPS rates. Builds are getting quieter. Forward, comrades!
2014-05-28All: Update library SDL to 290309, c-ares to 290089, boost to 290191,Monty Brandenberg
colladadom to 290229, curl to 290186, fontconfig to 290258, freetype to 290255, google-mock/gmock/gtest to 290199, libpng to 290081, libxml2 to 290157, llqtwebkit to 290262/250147 (to be fixed shortly), openssl to 290083, pcre to 290150, zlib to 290080. The freetype2 headers are now normalized to what they would normally be on a unix-type system. Libxml2 and pcre are available on all platforms. Libraries generally move in the direction of static archives rather than shared libraries (e.g. openssl). The llqtwebkit side is a step back from the more ambitious goal. What will be used (290262) will be a simple rebuild of the existing 4.7.1 library with updated package dependencies. The bigger work will be in the future.
2014-05-22Merge. Pull in viewer-release after release of 3.7.8Monty Brandenberg
2014-05-12STORM-2030 Rapidly clicking the refresh button in selected floaters may ↵Jonathan Yap
result in duplicate entries
2014-04-11Mac: Update llqtwebkit build, build and package dylib Qt4 pieces.Monty Brandenberg
Part of the switchover to dynamic Qt4. This mostly completes the Mac side. Webkit is functional on Mac, plugins work. The two test programs, llfbconnectest and llplugintest, need a little more work to run without manual fixup ('.' on PATH and maybe a symlink to libz.1.dylib and they run and function on Mac). Also need to address libz.dylib vs libz.a. Currently resolving against dylib which is not what I want.
2014-03-24merge with releaseRichard Linden
2014-03-10MAINT-3703 Suspected thread race crasher in fmodex libraryMonty Brandenberg
Two problems found in DLL involving threads. First, DllMain was reinitializing a critical section for all entry reasons (process attach, detach and thread attach, detach). Should only be done on process attach. Second, static container object was being modified and accessed without serialization. Added some double-check locking to the initialization path to reduce the total number of serialization calls made while making the code thread safe.
2013-11-02initialize critical section onceRichard Linden
2013-09-09merge with viewer-releaseRichard Linden
2013-08-09second phase summer cleaningRichard Linden
replace llinfos, lldebugs, etc with new LL_INFOS(), LL_DEBUGS(), etc.
2013-06-20merge with releaseRichard Linden
2013-06-19Merge with viewer-release.Geenz
2013-06-05merge with viewer-releaseRichard Linden
2013-06-05Unwind cruft from hunting for 2707 they won't end up in vwr-dev-matGraham Madarasz