Shyotl
51cbb8d6bd
Catch up with LL regarding viewer stat recording.
2013-02-14 17:45:10 -06:00
Shyotl
2f5ab6f8e8
Once more, with feeling. (currency transaction messages)
2013-02-13 16:31:16 -06:00
Shyotl
8ec5915b7c
Removed some logic in llfloateravatarlist that shouldn't have been there.
2013-02-12 20:49:39 -06:00
Shyotl
a31ba15dbc
Updated LLFloaterBuyContents
2013-02-12 20:49:17 -06:00
Shyotl
f147a734b1
LLStat dead code removal
2013-02-12 20:47:55 -06:00
Shyotl
6725c17f01
LLSys merge and cleanup.
2013-02-12 15:10:15 -06:00
Shyotl
24efffc68a
LLInitParam merge.
2013-02-12 15:08:11 -06:00
Shyotl
c92c68dee2
A few more preview-related changes.
2013-02-12 15:07:07 -06:00
Shyotl
1eb142535c
Merge in changes to avoid a few potential problems with LLUUID when accessed from multiple threads.
2013-02-12 15:02:17 -06:00
Shyotl
b901e57c55
Start culling of llmemtype (for now just #ifdef'd to nothingness.
2013-02-12 15:00:50 -06:00
Shyotl
0742610674
Updated gObjectPreviewProgram shader (simple lighting)
2013-02-12 14:59:02 -06:00
Shyotl
655c9348de
Minor adjsutment to llcontrolgroup. Demote non-critical failure from llerrs to llwarns.
2013-02-12 14:53:56 -06:00
Shyotl
0a8147a9da
Merged some alignment adjustments from sunshine-external
2013-02-12 14:52:53 -06:00
Shyotl
5180fbfc23
Clean up llfloaterurlentry
2013-02-12 14:50:29 -06:00
Shyotl
0759f2dae8
Actually use the namecache callback results when displaying currency transaction notifications.
2013-02-12 14:47:59 -06:00
Shyotl
c799f9f7eb
Avoid sculpt discard-level 5 spam.
2013-02-12 14:46:31 -06:00
Siana Gearz
dc3f91b121
Merge branch 'master' of git://github.com/Lirusaito/SingularityViewer
2013-02-03 22:27:53 +01:00
Siana Gearz
064601ae5e
Merge branch 'master' of git://github.com/AlericInglewood/SingularityViewer
2013-02-03 22:18:44 +01:00
Siana Gearz
2b036c7334
Split out HTTP texture bandwidth
2013-02-03 22:18:34 +01:00
Siana Gearz
6a774e4685
This should fix voice decline crash
2013-02-03 21:56:13 +01:00
Aleric Inglewood
83fb898852
Bug fix: Wake up curl thread at exit of viewer.
2013-02-03 17:24:26 +01:00
Siana Gearz
57d43786ab
Merge branch 'sunshine' of https://github.com/Shyotl/SingularityViewer
2013-02-02 02:22:46 +01:00
Shyotl
1069d5dec4
Draw trees before sky. Z-cull may be beneficial. Also, was incorrectly setting alphawrite off for deferred wlsky pass.
2013-02-01 17:16:01 -06:00
Aleric Inglewood
d055494706
Libcwd compile fixes
...
include linden_common.h first (is already included through the used
headers).
2013-02-01 21:26:08 +01:00
Lirusaito
0a6bebf9db
Added ShowSimChannel debug setting to display sim channel information in the status bar.
2013-01-31 22:22:40 -05:00
Lirusaito
5b2e1a0aae
Remove remaining dead LCD code(, also fix typo in a comment)
2013-01-31 21:32:29 -05:00
Lirusaito
46ddc9b6be
Skins Request: Nano Green and Nano Purple
2013-01-31 21:18:50 -05:00
Latif Khalifa
5cbe633117
Fixed compile under older GCCs by Siana Gearz
2013-02-01 00:18:01 +01:00
Latif Khalifa
719ea47a35
Merge remote-tracking branch 'lirusato/Canon'
2013-01-31 17:21:08 +01:00
Latif Khalifa
70eeddabba
Merge remote-tracking branch 'shyotl/sunshine'
2013-01-31 17:20:58 +01:00
Lirusaito
d756225684
Minimal change to fix folder->Add Items, purgeCategory wasn't supposed to be called in this case.
2013-01-31 02:41:17 -05:00
Shyotl
26de17f2de
Avoid occasional DoF-related crash upon region disconnection.
2013-01-30 22:04:57 -06:00
Shyotl
be0d751334
Cleanup, further hardening of namecache callbacks, and update to avatar picker.
2013-01-30 22:04:04 -06:00
Latif Khalifa
4b0bac34dd
Added the ability to have the voice enabled in multiple viewer instances
2013-01-31 01:26:39 +01:00
Lirusaito
bf8bd9cb1a
Further notifications.xml touchup.
2013-01-30 19:16:56 -05:00
Lirusaito
e009b8f4b4
Added simple codeless floaters for My Outfits and Favorites folders, entries are in World menu.
2013-01-30 14:11:22 -05:00
Lirusaito
47cbaeed23
XML-Driven floater feature (and documentation)
...
Changes:
Adds LLUICtrlFactory::getBuiltFloater() to return LLFloater* when a floater has been built.
In llviewermenu.cpp's LLShowFloater::handleEvent():
Return early if the floater_name is empty,
otherwise if no anticipated floater is found, build one,
unless one of the same name is already built, then bring it to focus.
Documentation:
In order to add simple codeless floaters, a general understanding of our XMLs is necessary...
A simple codeless floater can be a few things, perhaps not limited to: media browsers, settings controls, and holders for inventory_panels.
So how do you make them conform to the codeless standard?
For the purpose of these examples, my floater file will always be floater_name.xml
Let's start with a shortened xml menu entry:
<menu_item_call label="Name!" name="name">
<on_click function="ShowFloater" userdata="floater_name.xml"/>
</menu_item_call>
Alright, that wasn't so hard, just remember the key in this is ShowFloater is the function and userdata is the filename.
The next part is the actual floater, which isn't so different from making a complex floater..
There are two ways to do this, depending upon desired behavior:
The first behavior is to have only one of the floater open at a time, the following short xml exemplifies this:
<floater name="floater_name.xml" title="Name!"/>
Having a floater with this behavior will cause the menu entry to bring it into focus.
The other behavior is to allow more than one of the floater open at a time:
<floater name="name" title="Name!"/>
In this case, the menu entry will spawn a new version of the floater with every click, regardless of previous ones existing.
Granted, these short <floater/>'s probably aren't but examples and will not likely stand alone.
2013-01-30 14:07:59 -05:00
Latif Khalifa
4e29b6752e
Fixed packaging of the mac build
2013-01-30 14:17:16 +01:00
Latif Khalifa
046735f043
Merge remote-tracking branch 'upstream/exp'
2013-01-30 05:49:45 +01:00
Latif Khalifa
a9b05fd029
Merge remote-tracking branch 'lirusato/master'
2013-01-30 05:48:45 +01:00
Latif Khalifa
5c8e436401
Fix windows build: warnings management
2013-01-30 05:45:00 +01:00
Latif Khalifa
4d805da6ac
Package glod and colladadom dlls
2013-01-30 05:43:17 +01:00
Latif Khalifa
085800f6e0
Tell the compiler we are using colladadom dll, and not a static lib. Use our current boost libs
2013-01-30 05:27:10 +01:00
Latif Khalifa
1934fc9bd4
Temporarily disable HACD file save functions (not used) to avoid strange linking issue on windows
2013-01-30 05:25:05 +01:00
Latif Khalifa
8c1848b487
Silence secure CRT warnings when building HACD
2013-01-30 05:14:48 +01:00
Latif Khalifa
8edb10fb88
Merge remote-tracking branch 'aleric/meshupload' into meshupload
2013-01-30 05:12:04 +01:00
Aleric Inglewood
8aecc49456
Add missing notifications.
2013-01-30 03:58:42 +01:00
Latif Khalifa
b8919c21d8
Merge remote-tracking branch 'aleric/meshupload' into meshupload
2013-01-30 03:46:45 +01:00
Aleric Inglewood
9203b24eb9
Remove AIStateMachineThreadBase* argument from AIThreadImpl constructor.
...
Also removes the use of 'this' to initialize base classes, which led to
a compiler warning on vs2010.
2013-01-30 03:44:02 +01:00
Latif Khalifa
8584e6da4c
Merge branch 'master' into meshupload
...
Conflicts:
indra/llcommon/llhash.h
indra/newview/CMakeLists.txt
indra/newview/llfloatermodelpreview.cpp
indra/newview/llfloatermodelpreview.h
indra/newview/llpanelprofile.h
2013-01-30 00:36:31 +01:00