diff options
-rw-r--r-- | ChangeLog.txt | 8 | ||||
-rw-r--r-- | linden/indra/llvfs/lldir.cpp | 16 |
2 files changed, 16 insertions, 8 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt index 5c4e8d5..fe7f0c6 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt | |||
@@ -1,3 +1,11 @@ | |||
1 | 2009-09-25 Jacek Antonelli <jacek.antonelli@gmail.com> | ||
2 | |||
3 | * Reverted "grid-firstname_lastname" user directories. | ||
4 | Back to "firstname_lastname", like it was without grid manager. | ||
5 | |||
6 | modified: linden/indra/llvfs/lldir.cpp | ||
7 | |||
8 | |||
1 | 2009-09-23 Jacek Antonelli <jacek.antonelli@gmail.com> | 9 | 2009-09-23 Jacek Antonelli <jacek.antonelli@gmail.com> |
2 | 10 | ||
3 | * Moved "Show HUD Attachments" back to View, restored shortcut. | 11 | * Moved "Show HUD Attachments" back to View, restored shortcut. |
diff --git a/linden/indra/llvfs/lldir.cpp b/linden/indra/llvfs/lldir.cpp index c9af311..eb705dd 100644 --- a/linden/indra/llvfs/lldir.cpp +++ b/linden/indra/llvfs/lldir.cpp | |||
@@ -527,16 +527,16 @@ void LLDir::setLindenUserDir(const std::string &grid, const std::string &first, | |||
527 | { | 527 | { |
528 | // some platforms have case-sensitive filesystems, so be | 528 | // some platforms have case-sensitive filesystems, so be |
529 | // utterly consistent with our firstname/lastname case. | 529 | // utterly consistent with our firstname/lastname case. |
530 | std::string gridlower(grid); | 530 | // std::string gridlower(grid); |
531 | LLStringUtil::toLower(gridlower); | 531 | // LLStringUtil::toLower(gridlower); |
532 | std::string firstlower(first); | 532 | std::string firstlower(first); |
533 | LLStringUtil::toLower(firstlower); | 533 | LLStringUtil::toLower(firstlower); |
534 | std::string lastlower(last); | 534 | std::string lastlower(last); |
535 | LLStringUtil::toLower(lastlower); | 535 | LLStringUtil::toLower(lastlower); |
536 | mLindenUserDir = getOSUserAppDir(); | 536 | mLindenUserDir = getOSUserAppDir(); |
537 | mLindenUserDir += mDirDelimiter; | 537 | mLindenUserDir += mDirDelimiter; |
538 | mLindenUserDir += gridlower; | 538 | // mLindenUserDir += gridlower; |
539 | mLindenUserDir += "-"; | 539 | // mLindenUserDir += "-"; |
540 | mLindenUserDir += firstlower; | 540 | mLindenUserDir += firstlower; |
541 | mLindenUserDir += "_"; | 541 | mLindenUserDir += "_"; |
542 | mLindenUserDir += lastlower; | 542 | mLindenUserDir += lastlower; |
@@ -568,16 +568,16 @@ void LLDir::setPerAccountChatLogsDir(const std::string &grid, const std::string | |||
568 | { | 568 | { |
569 | // some platforms have case-sensitive filesystems, so be | 569 | // some platforms have case-sensitive filesystems, so be |
570 | // utterly consistent with our firstname/lastname case. | 570 | // utterly consistent with our firstname/lastname case. |
571 | std::string gridlower(grid); | 571 | // std::string gridlower(grid); |
572 | LLStringUtil::toLower(gridlower); | 572 | // LLStringUtil::toLower(gridlower); |
573 | std::string firstlower(first); | 573 | std::string firstlower(first); |
574 | LLStringUtil::toLower(firstlower); | 574 | LLStringUtil::toLower(firstlower); |
575 | std::string lastlower(last); | 575 | std::string lastlower(last); |
576 | LLStringUtil::toLower(lastlower); | 576 | LLStringUtil::toLower(lastlower); |
577 | mPerAccountChatLogsDir = getChatLogsDir(); | 577 | mPerAccountChatLogsDir = getChatLogsDir(); |
578 | mPerAccountChatLogsDir += mDirDelimiter; | 578 | mPerAccountChatLogsDir += mDirDelimiter; |
579 | mPerAccountChatLogsDir += gridlower; | 579 | // mPerAccountChatLogsDir += gridlower; |
580 | mPerAccountChatLogsDir += "-"; | 580 | // mPerAccountChatLogsDir += "-"; |
581 | mPerAccountChatLogsDir += firstlower; | 581 | mPerAccountChatLogsDir += firstlower; |
582 | mPerAccountChatLogsDir += "_"; | 582 | mPerAccountChatLogsDir += "_"; |
583 | mPerAccountChatLogsDir += lastlower; | 583 | mPerAccountChatLogsDir += lastlower; |