summaryrefslogtreecommitdiff
path: root/indra/llcommon
AgeCommit message (Collapse)Author
2010-08-20Merge from dessie/viewer-releaseLeyla Farazha
2010-08-16VWR-20670 (SNOW-506) FIXED Protection on LLInstanceTracker base in ↵Aimee Linden
LLEventTimer needs to be public for gcc >4.1
2010-08-13fixed fast timer average frame time rollover errorRichard Nelson
2010-08-13Automated merge with ssh://hg.lindenlab.com/dessie/viewer-publicMonroe Linden
2010-08-13Change license from GPL to LGPL (version 2.1)Oz Linden
2010-08-12Pulled "dessie/viewer-release" into "dessie/viewer-public".Christian Goetze (CG)
2010-08-12Pulled "dessie/viewer-release" into "dessie/viewer-public".Christian Goetze (CG)
2010-08-12Pulled "viewer-hotfix" into "viewer-release".Christian Goetze (CG)
2010-08-12Pulled "viewer-hotfix" into "viewer-release".Christian Goetze (CG)
2010-08-11Changed channel info back to Second Life DeveloperDessie Linden
2010-08-11Changed channel info back to Second Life DeveloperDessie Linden
2010-08-11Updated viewer patch number & channelDessie Linden
2010-08-11Updated viewer patch number & channelDessie Linden
2010-08-09Automated merge with ssh://hg.lindenlab.com/dessie/viewer-publicMonroe Linden
2010-08-07merge from viewer-releaseTofu Linden
2010-08-07merge from viewer-releaseTofu Linden
2010-08-06Automated merge with ssh://hg.lindenlab.com/q/viewer-releaseXiaohong Bao
2010-08-06EXT-8447: FIXED: crash at ↵Xiaohong Bao
LLTextureCache::writeEntryToHeaderImmediately(int,LLTextureCache::Entry &,bool) [secondlife-bin lltexturecache.cpp]
2010-08-06EXT-8447: FIXED: crash at ↵Xiaohong Bao
LLTextureCache::writeEntryToHeaderImmediately(int,LLTextureCache::Entry &,bool) [secondlife-bin lltexturecache.cpp]
2010-08-06merge from viewer-releaseTofu Linden
2010-08-06merge from viewer-releaseTofu Linden
2010-08-05EXT-8309 FIXED Incorrect French date format in place profile and status bar.Vadim Savchuk
Changes: - Added support for formatting day of the month without leading zero ("sday"). - Changed date format in place profile (landmark info) and in the top status bar according to bug reporter's request. Technical details: Actually implementation of strftime() in Linux and Windows supports stripping the leading zero (with "%-d" and "%#d" respectively). But that's not supported in MacOSX, so I had to reimplement it. Reviewed by Sergey Litovchuk at https://codereview.productengine.com/secondlife/r/842/
2010-08-05EXT-8309 FIXED Incorrect French date format in place profile and status bar.Vadim Savchuk
Changes: - Added support for formatting day of the month without leading zero ("sday"). - Changed date format in place profile (landmark info) and in the top status bar according to bug reporter's request. Technical details: Actually implementation of strftime() in Linux and Windows supports stripping the leading zero (with "%-d" and "%#d" respectively). But that's not supported in MacOSX, so I had to reimplement it. Reviewed by Sergey Litovchuk at https://codereview.productengine.com/secondlife/r/842/ --HG-- branch : product-engine
2010-08-05Merge from default branchVadim Savchuk
--HG-- branch : product-engine
2010-08-05(hairy) merge from viewer-releaseTofu Linden
2010-08-05(hairy) merge from viewer-releaseTofu Linden
2010-08-05merge from PE's viewer-releaseTofu Linden
2010-08-04deprecated ADD_SORTED due to n^2 behavior, set the sort order on the scroll ↵Richard Nelson
list instead
2010-08-04Merge with dessie/viewer-releaseLeyla Farazha
2010-08-04Propagate version bump to 2.1.1Christian Goetze (CG)
2010-08-04Propagate version bump to 2.1.1Christian Goetze (CG)
2010-08-04EXT-8524 FIXED Non-ASCII character corruption in date.Vadim Savchuk
Convert formatted date from system charset to UTF-8 on Windows (other OSes don't require this). See http://jira.secondlife.com/browse/EXT-8318 for more details. Reviewed by Sergey Litovchuk at https://codereview.productengine.com/secondlife/r/834/
2010-08-04EXT-8524 FIXED Non-ASCII character corruption in date.Vadim Savchuk
Convert formatted date from system charset to UTF-8 on Windows (other OSes don't require this). See http://jira.secondlife.com/browse/EXT-8318 for more details. Reviewed by Sergey Litovchuk at https://codereview.productengine.com/secondlife/r/834/ --HG-- branch : product-engine
2010-08-03Update version to 2.1.1Kent Quirk
2010-08-02Redo the same merge as in changeset "2026f824953f", but this time with ↵Christian Goetze (CG)
feeeeling.
2010-07-30Merge with dessie/viewer-releaseLeyla Farazha
2010-07-30Merge from q/viewer-release to dessie/viewer-release for 2.1.1 beta 1Kent Quirk
2010-07-27Backed out changeset: 58571b4e704bRichard Linden
2010-07-27Merge from dessie/viewer-releaseLeyla Farazha
2010-07-26EXT-8318 FIX IMPROVED converted EOLsMike Antipov
--HG-- branch : product-engine
2010-07-26EXT-8318 FIX IMPROVED Code is refactored - avoid using of a separate call of ↵Mike Antipov
the MultiByteToWideChar to get length of output string. Assumprion is: wide char buffer requires not more than input string length plus one for a null terminator. Reviewed by Richard Nelson at https://codereview.productengine.com/secondlife/r/775/ --HG-- branch : product-engine
2010-07-23EXT-8318 ADDITIONAL FIXED avoid an extra copy of std::stringMike Antipov
Reviewed by Richard Nelson at https://codereview.productengine.com/secondlife/r/775/ --HG-- branch : product-engine
2010-07-23EXT-8318 ADDITIONAL FIXED ensure that thousands separator is in utf8 format ↵Mike Antipov
(on Windows) before converting it to LLWString. Problem on Windows: ================== LLPanelMainInventory::updateItemcountText() formats number using viewer locale. non-break space is detected as unknown symbols while converting utf8str_to_wstring when formatted text is set to LLTextBox. FIX: === Added converting of string to multi-byte string and then to utf8 string while formatting on Windows. created opposite to "ll_convert_wide_to_string" function "ll_convert_string_to_wide" and helper function to call both of them. It is used now to convert result of formatted string while formatting integer number in locale. Fix affects Windows only. Reviewed by Richard Nelson at https://codereview.productengine.com/secondlife/r/775/ --HG-- branch : product-engine
2010-07-26dos2unixTofu Linden
2010-07-26(hairy) merge from viewer-releaseTofu Linden
2010-07-26dos2unixTofu Linden
2010-07-26(hairy) merge from viewer-releaseTofu Linden
2010-07-20mergeRichard Nelson
2010-07-20mergeRichard Nelson
2010-07-19Merge with dessie/viewer-releaseLeyla Farazha