summaryrefslogtreecommitdiff
path: root/indra/newview/skins/default
AgeCommit message (Collapse)Author
36 hourspanel_preferences_graphics.xml adjustment II2025.05secretfoxtail
Remove redundant IndirectMaxNonImposters slider.
37 hourspanel_preferences_graphics1.xml adjustmentsecretfoxtail
Move preset buttons out of the way of exposure slider.
3 daysMerge tag 'Second_Life_Release#11cd9b9-2025.05' into 2025.05Erik Kundiman
4 daysMerge branch 'develop' into marchcat/05-developAndrey Lihatskiy
4 daysMerge branch 'release/2025.05' into marchcat/05-developAndrey Lihatskiy
4 days#3898 Make default inventory size a bit widerAndrey Kleshchev
to fit favorites tab
4 daysForce snapshot update when opening a snapshot panel and the resolution is ↵Ansariel
"Current Window" to determine correct image size and upload cost
4 daysRemove incorrectly calculated upload fee from snapshot options button based ↵Ansariel
on previously selected snapshot type and not necessarily snapshot to inventory
4 daysFix upload cost calculation for snapshots to inventory based on encoded ↵Ansariel
image size and display upload cost to user
6 daysMerge branch 'develop' into marchcat/05-developAndrey Lihatskiy
6 daysMerge branch 'main' into marchcat/maint-c-restoreAndrey Lihatskiy
# Conflicts: # indra/llcommon/lldate.h # indra/newview/llappviewer.cpp # indra/newview/llinventorybridge.cpp # indra/newview/llmaterialeditor.cpp # indra/newview/llviewerparceloverlay.cpp # indra/newview/llvoavatar.cpp
7 daysMerge pull request #3911 from secondlife/mainJonathan "Geenz" Goodman
Merge 2025.03 release into develop.
11 days#3373 Rename "My Favorites" system folder to "Favorites Bar"Maxim Nikolenko
11 days#3354 adjust controls positions to avoid overlappingMaxim Nikolenko
# Conflicts: # indra/newview/skins/default/xui/en/floater_preferences_graphics_advanced.xml
11 days#3367 Move Maximum # of animated avatars slider in GraphicsAndrey Lihatskiy
12 daysMerge commit '9e24b30' into marchcat/maint-c/restoreAndrey Lihatskiy
# Conflicts: # indra/llmath/v2math.cpp # indra/llmath/v2math.h # indra/llmath/v3math.h # indra/llmath/v4math.h # indra/llui/llfolderviewitem.cpp # indra/llui/llfolderviewitem.h # indra/llui/llfolderviewmodel.h # indra/llui/llmodaldialog.cpp # indra/llui/lltexteditor.cpp # indra/llui/lltexteditor.h # indra/llwindow/llwindowwin32.cpp # indra/newview/llagent.cpp # indra/newview/llagentcamera.h # indra/newview/llavatarrenderinfoaccountant.cpp # indra/newview/llconversationmodel.h # indra/newview/llfloaterinventorysettings.cpp # indra/newview/llfloaternamedesc.cpp # indra/newview/llfloaternamedesc.h # indra/newview/llfloaterobjectweights.cpp # indra/newview/llfloaterobjectweights.h # indra/newview/llfolderviewmodelinventory.h # indra/newview/llinspecttexture.cpp # indra/newview/llinventorybridge.cpp # indra/newview/llinventorybridge.h # indra/newview/llinventoryfunctions.cpp # indra/newview/llinventorygallery.h # indra/newview/llinventorygallerymenu.cpp # indra/newview/llinventorymodel.cpp # indra/newview/llinventorypanel.cpp # indra/newview/llinventorypanel.h # indra/newview/llmaterialeditor.cpp # indra/newview/lloutfitgallery.cpp # indra/newview/lloutfitgallery.h # indra/newview/lloutfitslist.cpp # indra/newview/lloutfitslist.h # indra/newview/llpanelgroupcreate.cpp # indra/newview/llpanelgroupgeneral.cpp # indra/newview/llpanelobjectinventory.cpp # indra/newview/llpaneloutfitsinventory.h # indra/newview/llpanelprofile.cpp # indra/newview/llpanelwearing.cpp # indra/newview/llreflectionmap.cpp # indra/newview/llselectmgr.cpp # indra/newview/llsidepanelappearance.cpp # indra/newview/llsidepaneliteminfo.cpp # indra/newview/llteleporthistorystorage.cpp # indra/newview/lltexturectrl.cpp # indra/newview/lltexturectrl.h # indra/newview/lltexturefetch.cpp # indra/newview/lltexturefetch.h # indra/newview/llviewerassetupload.cpp # indra/newview/llviewercamera.cpp # indra/newview/llviewercamera.h # indra/newview/llviewermenufile.cpp # indra/newview/llviewerobject.h # indra/newview/llviewertexture.cpp # indra/newview/llviewerwindow.cpp # indra/newview/llvoavatar.cpp # indra/newview/llvoavatar.h # indra/newview/llvoavatarself.cpp # indra/newview/llvovolume.cpp # indra/newview/llvovolume.h # indra/newview/tests/llviewerassetstats_test.cpp
13 daysMerge tag 'Second_Life_Release#632a8648-2025.03' into 2025.03Erik Kundiman
2025-04-07#3627 std::bad_alloc when loading a modelAndrey Kleshchev
2025-04-02Merge branch 'fix/xui-parsing-fixes' of ↵William Weaver
https://github.com/williamweaver/viewer into fix/xui-parsing-fixes
2025-04-02Fix(XUI): Resolve parsing warnings for Fixed Environment editor widgetsWilliam Weaver
Problem: Opening the Fixed Environment floater generated three distinct XUI parsing warnings in the logs: - Failed to parse parameter "decimal_digits." in xy_vector.xml - Failed to parse parameter "user_resize." in xy_vector.xml - Failed to parse parameter "logarithmic." in panel_settings_sky_clouds.xml Cause: These attributes were either not recognized/utilized by the underlying C++ widget implementations ('decimal_digits', 'user_resize' in LLXYVector) or were using an incorrect value ('logarithmic="1"' instead of a boolean 'true'/'false' in LLSliderCtrl). Solution: This commit addresses these three warnings: - Removed the extraneous 'decimal_digits' and 'user_resize' attributes from the definition of the 'xyvector' widget in xy_vector.xml. - Corrected the 'logarithmic' attribute value from "1" to "true" for the 'cloud_scroll_xy' slider in panel_settings_sky_clouds.xml. Result: Eliminates these specific parsing warnings from the logs when the Fixed Environment floater is opened. Testing: - Launch viewer. - Open World -> Environment Editor -> My Environments. - Select a sky setting and click Edit (or create a New one). - Observe the logs upon the Fixed Environment floater opening. - Verify the absence of the 'decimal_digits', 'user_resize' (from xy_vector.xml), and 'logarithmic' (from panel_settings_sky_clouds.xml) parsing warnings.
2025-04-02Fix(XUI): Remove unrecognized user_resize attribute from sun_moon_trackballWilliam Weaver
Problem: A warning "Failed to parse parameter 'user_resize.'" appeared in the logs during UI loading, originating from sun_moon_trackball.xml. Cause: The 'user_resize' attribute is not a recognized or utilized parameter for the 'sun_moon_trackball' widget type, as defined in the corresponding C++ (LLVirtualTrackball). Solution: Removed the extraneous 'user_resize="false"' line from the sun_moon_trackball.xml widget definition. Result: Eliminates the parsing warning from the logs upon viewer startup or UI reload. Testing: - Launch viewer. - Check logs for the absence of the "Failed to parse parameter 'user_resize.'" warning.
2025-03-30Shadow options in the graphics advanced panelmobserveur
New optimisation and resolution shadow options
2025-03-29Merge tag 'Second_Life_Release#8eff224c-2025.03' into 2025.03Erik Kundiman
2025-03-25Merge remote-tracking branch 'remotes/origin/develop' into rider/bot_tattleRider Linden
Fix conflicts
2025-03-24Readd probe count setting (#3793)Jonathan "Geenz" Goodman
* Readd max probe count. Disable dynamic probe allocation by default (for now).
2025-03-22Merge branch 'main' into 2025.03Erik Kundiman
2025-03-22Merge tag 'Second_Life_Release#0ec9bfaa-2025.03' into 2025.03Erik Kundiman
2025-03-21tab_container.xml adjustmentsecretfoxtail
Slightly increase tab height.
2025-03-21Dynamic Probe Allocation (#3787)Jonathan "Geenz" Goodman
* #3788 Support dynamic probe allocation. * #3738 Mitigate probe flashing * #3735 Mitigate realtime probes flashing
2025-03-21Merge tag 'Second_Life_Release#895a6739-2025.03' into 2025.03Erik Kundiman
2025-03-21#3778 #3654 Split text and background selection colorsAndrey Kleshchev
2025-03-19Merge pull request #3769 from secondlife/marchcat/maint-b-cp-2Andrey Lihatskiy
Maint B leftover commits
2025-03-19Remove invalid text color parameter from panel_login_first.xmlnerodevo
Follow-up to previous commit 4a07fd3. This will resolve the warning showing up when loading the viewer for the first time.
2025-03-19#3685 add test floater for new slappsMaxim Nikolenko
2025-03-13#2711 Remove ALM text from About SL for JP and CNMaxim Nikolenko
2025-03-11Merge branch 'release/2025.03' into marchcat/2025.03-maint-bAndrey Lihatskiy
2025-03-11#3409 Make maximum probe count adjustable. (#3709)Jonathan "Geenz" Goodman
* #3409 Make probe count adjustable to better accomodate low VRAM scenarios
2025-03-11Merge branch 'marchcat/maint-b-cherrypicks' into marchcat/2025.03-maint-bAndrey Lihatskiy
2025-03-11secondlife/jira-archive-internal#70713 Combine recently and frequently usedAlexander Gavriliuk
2025-03-11viewer#1114 Expose max impostors setting in basic graphics preferencesAndrey Kleshchev
# Conflicts: # indra/newview/llfloaterpreferencesgraphicsadvanced.cpp
2025-03-11viewer#1061 Altitudes are invisible in region's environmentAndrey Kleshchev
2025-03-11viewer#970 Fixed param validation warningsAndrey Kleshchev
# Conflicts: # indra/newview/llfloateremojipicker.cpp # indra/newview/skins/default/xui/en/floater_fast_timers.xml
2025-03-11secondlife/viewer-issues#75: Remove "HTTP Textures" setting in Developer menuCosmic Linden
2025-03-06Merge pull request #3657 from secondlife/maxim/2025.03-develop-fixesJonathan "Geenz" Goodman
Cherry-picking develop fixes into 2025.03
2025-03-06#3654 Searchable disabled settings not readable when highlightedAndrey Kleshchev
2025-03-06Merge remote-tracking branch 'secondlife/release/2025.03' into 2025.03Erik Kundiman
2025-03-05#2711 Remove ALM text from About SLMaxim Nikolenko
2025-03-05#3314 update labels to match Render Quality settingMaxim Nikolenko
2025-03-03#3512 Add UX for marking water exclusion surfacesMaxim Nikolenko
2025-03-01Merge pull request #3634 from secondlife/release/2024.12-ForeverFPSJonathan "Geenz" Goodman
Update develop with ForeverFPS