Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
5048cc3f
Commit
5048cc3f
authored
2 years ago
by
Kitty Barnett
Browse files
Options
Downloads
Plain Diff
Merge branch 'viewer/build' into viewer/build
parents
8f2df3e0
11c51a31
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
autobuild.xml
+4
-4
4 additions, 4 deletions
autobuild.xml
indra/newview/llfloater360capture.cpp
+4
-1
4 additions, 1 deletion
indra/newview/llfloater360capture.cpp
with
8 additions
and
5 deletions
autobuild.xml
+
4
−
4
View file @
5048cc3f
...
...
@@ -344,9 +344,9 @@
<key>
archive
</key>
<map>
<key>
hash
</key>
<string>
5d0729b835d63b7fe69acdc6b7c60188
</string>
<string>
e78ecf919eee01567556787c3a358d15
</string>
<key>
url
</key>
<string>
https://
viewer.catznip.com/downloads/packages
/colladadom-2.3.55
9710
-windows-55
9710
.tar.bz2
</string>
<string>
https://
automated-builds-secondlife-com.s3.amazonaws.com/ct2/78637/744269
/colladadom-2.3.55
7064
-windows-55
7064
.tar.bz2
</string>
</map>
<key>
name
</key>
<string>
windows
</string>
...
...
@@ -356,9 +356,9 @@
<key>
archive
</key>
<map>
<key>
hash
</key>
<string>
985e3081e41c76b6176d39e44d7fb4b
8
</string>
<string>
7e63a212c8909a25236138422fe0129
8
</string>
<key>
url
</key>
<string>
https://
viewer.catznip.com/downloads/packages
/colladadom-2.3.55
9710
-windows64-55
9710
.tar.bz2
</string>
<string>
https://
automated-builds-secondlife-com.s3.amazonaws.com/ct2/78636/744273
/colladadom-2.3.55
7064
-windows64-55
7064
.tar.bz2
</string>
</map>
<key>
name
</key>
<string>
windows64
</string>
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llfloater360capture.cpp
+
4
−
1
View file @
5048cc3f
...
...
@@ -889,7 +889,10 @@ const std::string LLFloater360Capture::generate_proposed_filename()
// this looks complex but it's straightforward - removes all non-alpha chars from a string
// which in this case is the SL region name - we use it as a proposed filename but the user is free to change
std
::
string
region_name
=
region
->
getName
();
std
::
replace_if
(
region_name
.
begin
(),
region_name
.
end
(),
std
::
not1
(
std
::
ptr_fun
(
isalnum
)),
'_'
);
// [SL:KB] - Patch: Viewer-Build | Checked: Catznip-6.6
std
::
replace_if
(
region_name
.
begin
(),
region_name
.
end
(),
[](
unsigned
char
ch
)
{
return
!
isalnum
(
ch
);
},
'_'
);
// [/SL:KB]
// std::replace_if(region_name.begin(), region_name.end(), std::not1(std::ptr_fun(isalnum)), '_');
if
(
region_name
.
length
()
>
0
)
{
filename
<<
region_name
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment