aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Imprudence style gstreamer plugin (remove llgst, syms and such)Armin Weatherwax2010-09-234-56/+30
| | |
| * | fix platform specific mime_type xml loadingArmin Weatherwax2010-09-232-15/+10
| | | | | | | | | | | | | | | note: mime_type<_nonwindowsplatform>.xml directs SLPlugin to the actual implementation. For using gstreamer on mac + win the file has to be changed (try the linux one :) )
| * | fix some mime type issuesArmin Weatherwax2010-09-233-39/+132
| | |
| * | fix "about land" (actually llpanellandmedia) crashesArmin Weatherwax2010-09-232-189/+132
| | |
| * | port of LL renderpipeline/Kirstens S19 pipeline for bridging to Viewer 2 ↵Armin Weatherwax2010-09-23187-1902/+11372
| | | | | | | | | | | | texture system
| * | Robin Cornelius: fixes for building plugins on Linux 64bitArmin Weatherwax2010-09-231-0/+2
| | |
| * | update llplugin to latest version of SG2, pull latest webkitArmin Weatherwax2010-09-232-2/+3
| | |
| * | make it compile and run.Armin Weatherwax2010-09-232-52/+0
| | | | | | | | | | | | TODO: llpanellandmedia.cpp and llviewermedia.cpp need a proper fix
| * | port llprimitive from SG2.0Armin Weatherwax2010-09-231-1/+1
| | |
| * | port SG2.0 Mediaplugs (webkit supports flash now)Armin Weatherwax2010-09-231-2/+35
| | |
| * | remove deprecated filesArmin Weatherwax2010-09-233-1394/+0
| | |
| * | Fixed 'there is no media type for text/html' errorsMcCabe Maxsted2010-09-232-0/+469
| | |
| * | Fixed floatervicelicense not compiling with the new media changesMcCabe Maxsted2010-09-235-27/+24
| | |
| * | Fixed llvewermedia version info (and kept it disabled unless there's a good ↵McCabe Maxsted2010-09-231-5/+8
| | | | | | | | | | | | reason for enabling it)
| * | Removed some bad merge entries from newview/CMakeLists.txtMcCabe Maxsted2010-09-231-2/+0
| | |
| * | Added missing plugins notificationsMcCabe Maxsted2010-09-231-0/+18
| | |
| * | Fixed newview\CMakeLists.txt not parsing on WindowsMcCabe Maxsted2010-09-231-5/+4
| | |
| * | First LL update of plugins, mainly documentationArmin Weatherwax2010-09-231-2/+5
| | |
| * | lost in merge: 1 debug setting, some member variables from llpanellandmediaArmin Weatherwax2010-09-233-20/+38
| | | | | | | | | | | | todo: review llpanellandmedia; port flotervoicelicense
| * | llmediaplugins first stepArmin Weatherwax2010-09-23128-1918/+9444
| | |
* | | Fix tab/space issues in viewer_manifest.pyRobin Cornelius2010-10-091-11/+11
| | |
* | | Add a fall back to find NSIS on win64Robin Cornelius2010-10-091-2/+6
| |/ |/|
* | Changed version to Experimental 2010.10.09McCabe Maxsted2010-10-091-1/+1
| |
* | Removed the base SL version from the About Imprudence floater.Jacek Antonelli2010-10-081-3/+1
| | | | | | | | | | It's not really relevant or accurate anymore, because Imprudence is assembled from so many different sources and versions.
* | Allow build under Mac OS X 10.6 SDK by removing deprecated things.Mimika Oh2010-10-082-11/+11
| | | | | | | | | | | | Incorporated Snowglobe changesets: http://svn.secondlife.com/trac/linden/changeset/2823 http://svn.secondlife.com/trac/linden/changeset/2757
* | Possible fix for an infinite loop in LLTextureCache.Jacek Antonelli2010-10-081-5/+8
| | | | | | | | Backported a few changes from pre-LGPL Viewer 2.
* | Tiny layout tweaks to accomodate different font widths.Jacek Antonelli2010-10-082-3/+3
| |
* | Use integer font sizes to avoid blurriness on some systems.Jacek Antonelli2010-10-081-5/+5
| |
* | Merge remote branch 'aleric/weekly' into weeklyMcCabe Maxsted2010-10-081-14/+16
|\ \
| * | RED-429: Link against prebuilt libraries / always use gtk-related system ↵Aleric Inglewood2010-10-081-14/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libs (linux) This patch fixes the problem that there were no 'developer' symlinks for the prebuilt packages (which is not needed for runtim), causing the casual user that tries to compile the viewer on linux (without using --standalone) to link against their system libs (while using the header files of the prebuilt versions), often causing linker errors. It also fixes the fact that a few libraries were completely missing, most notably the dbusglib package only had header files and not a library at all! libgio and libpangocairo where missing from the link command line so that the wrong libraries were picked up, if any at all. Finally, the last GTK related prebuilt libraries have simply been removed from the packaging: linux has those installed (or else the users will know how to install them as soon as they see that the viewer complains about a missing library). This is much more stable, as all those libraries more or less form a whole. Or rather, the libraries that use glib, as especially that one gives a problem at the moment since the latest glib has new g_malloc_n functions that don't exist in the prebuilt glib. Note the difference between a USER compiling her own viewer, and the imprudence team compiling a release: When the imprudence team compiles a release we need to create a portable binary that runs on many versions of linux. In order to achieve that we link against "old" library versions, so that the viewer still works on old operating systems, and (hopefull) also on newer systems, since libraries with the same SONAME are backwards compatible. With g_malloc_n as example: our viewer binary doesn't use that function, so a user that links with their own glib will never have a problem, whether or not his library provides this function. On the other hand, when a user gets the sources and compiles his own viewer he wants to use the LATEST library versions: his own operating system ones. The best way to achieve this is to configure with --standalone, but that currently demands that ALL libraries are installed on her system, including a few very-hard-to-get libraries. If she therefore chooses to configure without --standalone, she suddenly gets all the old library versions, forcing her to at least link against those at compile time (in order to minimize the risk of version incompatibilities). A better solution for the do-it-yourself user would be to have a --semi-standalone configuration that only uses the hard-to-get prebuilt libs and further uses as much the operating system libraries as possible. For most of the hard-to-get libraries this is no problem since they all only depend on libc and similar stable ABI libs.
* | | Merge remote branch 'elektra/weekly' into weeklyMcCabe Maxsted2010-10-084-23/+45
|\ \ \
| * | | Implemented friends tags highlighting, including preferences->general ↵elektrahesse2010-10-084-23/+45
| | | | | | | | | | | | | | | | checkbox to enable/disable the feature. The font on the tags is rendered in bold when the option is active.
| * | | Fixed TOS loading and renamed corretly LLIamHere classes in TOS and Voice ↵elektrahesse2010-10-072-15/+17
| | | | | | | | | | | | | | | | TOS respectively to LLIamHereTOS and LLIamHereVoice to avoid collisions.
* | | | Merge remote branch 'thickbrick/weekly' into weeklyMcCabe Maxsted2010-10-083-8/+6
|\ \ \ \
| * | | | Fix bug #612: Option to highlight misspeld words doesn't persist between ↵thickbrick2010-10-082-6/+3
| | | | | | | | | | | | | | | | | | | | sessions.
| * | | | Merge branch 'weekly' of git://github.com/imprudence/imprudence into weeklythickbrick2010-10-073-16/+18
| |\ \ \ \ | | | |/ / | | |/| |
| * | | | Fix RED-603: Errors when loading local imagesthickbrick2010-10-051-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | Avoid bad offsets that would cause failure with this warning: "doRead: Error reading file from local cache"
* | | | | Revert "Allow export of megaprims from SL by people who've given us ↵McCabe Maxsted2010-10-081-28/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | permission" until we can come to a firm decision on this. This reverts commit dfeb8fe3f4110f7e571ababf35401ea6a5fd41d5.
* | | | | Merge branch 'weekly-next' into weeklyMcCabe Maxsted2010-10-089-20/+91
|\ \ \ \ \ | |_|/ / / |/| | / / | | |/ / | |/| |
| * | | Merge remote branch 'elektra/weekly' into weeklyMcCabe Maxsted2010-10-032-11/+24
| |\ \ \
| | * | | Patch to enable building on any parcel if the agent has create powers in the ↵elektrahesse2010-10-032-11/+24
| | | | | | | | | | | | | | | | | | | | land group. If the land is deeded the object is created with the agent active group, else it's set to the land group by default. Also enables the build button when it should.
| * | | | Reduced the minimum size of the minimapMcCabe Maxsted2010-10-031-1/+1
| | | | |
| * | | | Reduced the max width and height for the snapshot window to hopefully lower ↵McCabe Maxsted2010-10-031-2/+2
| | | | | | | | | | | | | | | | | | | | the crash rate a little
| * | | | Allow export of megaprims from SL by people who've given us permissionMcCabe Maxsted2010-10-031-3/+28
| | |/ / | |/| |
| * | | Fixed #157: Group lists get merged after logging into multiple gridsMcCabe Maxsted2010-10-021-0/+3
| | | |
| * | | Preview temporary textures on upload (by Henri Beauchamp from the Cool ↵McCabe Maxsted2010-10-021-1/+4
| | | | | | | | | | | | | | | | Viewer). TODO: add 'temporary' to the window title for temp textures
| * | | Fixed RezWithLandGroup not working when shift-dragging prims (from Henri ↵McCabe Maxsted2010-10-021-1/+28
| | | | | | | | | | | | | | | | Beauchamp and the Cool Viewer)
| * | | Removed persist for HighResSnapshot setting as it causes crash loops when ↵McCabe Maxsted2010-10-021-1/+1
| |/ / | | | | | | | | | enabled and opening the snapshot window with bad settings
* | | Changed version to Experimental 2010.10.06-hotfixMcCabe Maxsted2010-10-061-1/+1
| | |
* | | Fixed TOS loading and renamed corretly LLIamHere classes in TOS and Voice ↵elektrahesse2010-10-062-15/+17
|/ / | | | | | | TOS respectively to LLIamHereTOS and LLIamHereVoice to avoid collisions.