diff options
-rw-r--r-- | RELEASE_NOTES.txt | 28 | ||||
-rw-r--r-- | linden/indra/newview/primbackup.cpp | 11 |
2 files changed, 37 insertions, 2 deletions
diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt index df0ac63..7b91e4f 100644 --- a/RELEASE_NOTES.txt +++ b/RELEASE_NOTES.txt | |||
@@ -4,6 +4,30 @@ | |||
4 | 4 | ||
5 | 5 | ||
6 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- | 6 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- |
7 | =- 1.2.2 -= | ||
8 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- | ||
9 | |||
10 | Imprudence 1.2.2 is a small maintenance release to attempt to make | ||
11 | the viewer compliant with the new Second Life Terms of Service and | ||
12 | the Policy on Third Party Viewers. | ||
13 | |||
14 | Please see the Imprudence 1.2.0 Release Notes for information about | ||
15 | the changes in Imprudence 1.2. | ||
16 | |||
17 | |||
18 | CHANGES | ||
19 | |||
20 | * The object export feature no longer downloads textures from | ||
21 | Second Life. Other grids are not affected. | ||
22 | |||
23 | * The viewer now sends the correct version number when loading | ||
24 | login splash page. It now sends the Imprudence version, instead | ||
25 | of the version of Second Life it was based on. | ||
26 | |||
27 | |||
28 | |||
29 | |||
30 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- | ||
7 | =- 1.3.0 BETA 2 -= | 31 | =- 1.3.0 BETA 2 -= |
8 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- | 32 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- |
9 | 33 | ||
@@ -31,8 +55,8 @@ | |||
31 | etc. | 55 | etc. |
32 | 56 | ||
33 | * SpeedRez. After teleporting, the viewer will temporarily | 57 | * SpeedRez. After teleporting, the viewer will temporarily |
34 | decrease the draw distance to encourage nearby objects and | 58 | decrease the draw distance to encourage nearby objects and |
35 | textures to rez first. Thanks for the patch, Henri Beauchamp! | 59 | textures to rez first. Thanks for the patch, Henri Beauchamp! |
36 | 60 | ||
37 | - You can disable this feature by setting the SpeedRez debug | 61 | - You can disable this feature by setting the SpeedRez debug |
38 | setting to FALSE, or adjust the timing by editing the | 62 | setting to FALSE, or adjust the timing by editing the |
diff --git a/linden/indra/newview/primbackup.cpp b/linden/indra/newview/primbackup.cpp index 3ab5ee1..5b704f1 100644 --- a/linden/indra/newview/primbackup.cpp +++ b/linden/indra/newview/primbackup.cpp | |||
@@ -54,6 +54,8 @@ | |||
54 | #include "llappviewer.h" | 54 | #include "llappviewer.h" |
55 | #include "lltransactiontypes.h" | 55 | #include "lltransactiontypes.h" |
56 | 56 | ||
57 | #include "hippoGridManager.h" | ||
58 | |||
57 | #include "primbackup.h" | 59 | #include "primbackup.h" |
58 | 60 | ||
59 | #include "llviewerobjectlist.h" | 61 | #include "llviewerobjectlist.h" |
@@ -414,6 +416,15 @@ void primbackup::exportworker(void *userdata) | |||
414 | } | 416 | } |
415 | 417 | ||
416 | case EXPORT_TEXTURES: { | 418 | case EXPORT_TEXTURES: { |
419 | // Exporting object textures (or other content) from Second Life | ||
420 | // without checking creator is a violation of the Second Life | ||
421 | // Policy on Third-Party Viewers and Terms of Service. | ||
422 | if(gHippoGridManager->getConnectedGrid()->isSecondLife()) | ||
423 | { | ||
424 | primbackup::getInstance()->export_state=EXPORT_DONE; | ||
425 | return; | ||
426 | } | ||
427 | |||
417 | if(primbackup::getInstance()->m_nexttextureready==false) | 428 | if(primbackup::getInstance()->m_nexttextureready==false) |
418 | return; | 429 | return; |
419 | 430 | ||