Skip to content

Commit 776851d

Browse files
committed
Copy dist to docs so github can serve it as a page.
1 parent 985e3c3 commit 776851d

File tree

6 files changed

+122
-1
lines changed

6 files changed

+122
-1
lines changed

docs/dist/assimpjs.js

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/dist/assimpjs.wasm

3.98 MB
Binary file not shown.

docs/dist/license.assimp.txt

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
Open Asset Import Library (assimp)
2+
3+
Copyright (c) 2006-2021, assimp team
4+
All rights reserved.
5+
6+
Redistribution and use of this software in source and binary forms,
7+
with or without modification, are permitted provided that the
8+
following conditions are met:
9+
10+
* Redistributions of source code must retain the above
11+
copyright notice, this list of conditions and the
12+
following disclaimer.
13+
14+
* Redistributions in binary form must reproduce the above
15+
copyright notice, this list of conditions and the
16+
following disclaimer in the documentation and/or other
17+
materials provided with the distribution.
18+
19+
* Neither the name of the assimp team, nor the names of its
20+
contributors may be used to endorse or promote products
21+
derived from this software without specific prior
22+
written permission of the assimp team.
23+
24+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
28+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
30+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35+
36+
37+
38+
******************************************************************************
39+
40+
AN EXCEPTION applies to all files in the ./test/models-nonbsd folder.
41+
These are 3d models for testing purposes, from various free sources
42+
on the internet. They are - unless otherwise stated - copyright of
43+
their respective creators, which may impose additional requirements
44+
on the use of their work. For any of these models, see
45+
<model-name>.source.txt for more legal information. Contact us if you
46+
are a copyright holder and believe that we credited you inproperly or
47+
if you don't want your files to appear in the repository.
48+
49+
50+
******************************************************************************
51+
52+
Poly2Tri Copyright (c) 2009-2010, Poly2Tri Contributors
53+
http://code.google.com/p/poly2tri/
54+
55+
All rights reserved.
56+
Redistribution and use in source and binary forms, with or without modification,
57+
are permitted provided that the following conditions are met:
58+
59+
* Redistributions of source code must retain the above copyright notice,
60+
this list of conditions and the following disclaimer.
61+
* Redistributions in binary form must reproduce the above copyright notice,
62+
this list of conditions and the following disclaimer in the documentation
63+
and/or other materials provided with the distribution.
64+
* Neither the name of Poly2Tri nor the names of its contributors may be
65+
used to endorse or promote products derived from this software without specific
66+
prior written permission.
67+
68+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
69+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
70+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
71+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
72+
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
73+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
74+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
75+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
76+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
77+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
78+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

docs/dist/license.assimpjs.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Viktor Kovacs
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="viewport" content="width=device-width, user-scalable=no">
77

88
<title>AssimpJS Demo</title>
9-
<script type="text/javascript" src="../dist/assimpjs.js"></script>
9+
<script type="text/javascript" src="dist/assimpjs.js"></script>
1010

1111
<link rel="stylesheet" type="text/css" href="json-formatter/json-formatter.css">
1212
<script type="text/javascript" src="json-formatter/json-formatter.umd.js"></script>

tools/build_wasm_win_dist.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ copy build_wasm\Release\assimpjs.js dist\assimpjs.js || goto :error
1111
copy build_wasm\Release\assimpjs.wasm dist\assimpjs.wasm || goto :error
1212
copy assimp\LICENSE dist\license.assimp.txt || goto :error
1313
copy LICENSE.md dist\license.assimpjs.txt || goto :error
14+
xcopy dist\*.* docs\dist\*.* /K /D /H /Y
1415

1516
popd
1617
echo Distribution Succeeded.

0 commit comments

Comments
 (0)