Skip to content

Commit 28424a2

Browse files
committed
Update to 2020.1.0f1, Add new configuration and update readme
1 parent ea597b0 commit 28424a2

File tree

9 files changed

+369
-32
lines changed

9 files changed

+369
-32
lines changed

Configuration/.htaccess

-6
This file was deleted.

Configuration/2019/.htaccess

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# From https://github.com/JohannesDeml/UnityWebGL-LoadingTest
2+
# Unity WebGL Configuration for Unity 2019 and older
3+
# Supports Brotli, Gzip and no Compression
4+
5+
Header set Content-Security-Policy "worker-src 'self' blob:;"
6+
7+
<IfModule mod_mime.c>
8+
# The following lines are required for builds without decompression fallback, compressed with gzip
9+
RemoveType .gz
10+
AddEncoding gzip .gz
11+
AddType application/octet-stream .data.gz
12+
AddType application/wasm .wasm.gz
13+
AddType application/javascript .js.gz
14+
AddType application/octet-stream .symbols.json.gz
15+
16+
# The following lines are required for builds without decompression fallback, compressed with brotli
17+
RemoveType .br
18+
RemoveLanguage .br
19+
AddEncoding br .br
20+
AddType application/octet-stream .data.br
21+
AddType application/wasm .wasm.br
22+
AddType application/javascript .js.br
23+
AddType application/octet-stream .symbols.json.br
24+
25+
AddEncoding br .unityweb
26+
AddType application/wasm .wasm
27+
AddEncoding br .wasm
28+
AddOutputFilterByType DEFLATE application/wasm
29+
</IfModule>

Configuration/2020/.htaccess

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# From https://github.com/JohannesDeml/UnityWebGL-LoadingTest
2+
# Unity WebGL Configuration for Unity 2020+
3+
# Supports Brotli and no Compression
4+
5+
Header set Content-Security-Policy "worker-src 'self' blob:;"
6+
7+
<IfModule mod_mime.c>
8+
# No compression
9+
AddType application/wasm .wasm
10+
AddOutputFilterByType DEFLATE application/wasm
11+
12+
# brotli support
13+
<Files *.js.br>
14+
AddType "text/javascript" .br
15+
AddEncoding br .br
16+
</Files>
17+
18+
<Files *.wasm.br>
19+
AddType "application/wasm" .br
20+
AddEncoding br .br
21+
</Files>
22+
23+
<Files *.data.br>
24+
AddType "application/octet-stream" data.br
25+
AddEncoding br .br
26+
</Files>
27+
</IfModule>

Logs/Packages-Update.log

+11
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,14 @@ The following packages were updated:
4444
com.unity.ide.rider from version 1.1.4 to 1.2.1
4545
com.unity.test-framework from version 1.1.11 to 1.1.13
4646
com.unity.textmeshpro from version 2.0.1 to 3.0.0-preview.1
47+
48+
=== Mon Aug 10 10:00:10 2020
49+
50+
Packages were changed.
51+
Update Mode: updateDependencies
52+
53+
The following packages were updated:
54+
com.unity.collab-proxy from version 1.3.7 to 1.3.8
55+
com.unity.ide.visualstudio from version 2.0.0 to 2.0.2
56+
com.unity.ide.vscode from version 1.1.4 to 1.2.1
57+
com.unity.test-framework from version 1.1.13 to 1.1.14

Packages/manifest.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"dependencies": {
3-
"com.unity.collab-proxy": "1.3.7",
3+
"com.unity.collab-proxy": "1.3.8",
44
"com.unity.ide.rider": "1.2.1",
5-
"com.unity.ide.visualstudio": "2.0.0",
6-
"com.unity.ide.vscode": "1.1.4",
7-
"com.unity.test-framework": "1.1.13",
8-
"com.unity.textmeshpro": "3.0.0-preview.1",
5+
"com.unity.ide.visualstudio": "2.0.2",
6+
"com.unity.ide.vscode": "1.2.1",
7+
"com.unity.test-framework": "1.1.14",
8+
"com.unity.textmeshpro": "3.0.1",
99
"com.unity.ugui": "1.0.0",
1010
"com.unity.modules.androidjni": "1.0.0",
1111
"com.unity.modules.animation": "1.0.0",

Packages/packages-lock.json

+286
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,286 @@
1+
{
2+
"dependencies": {
3+
"com.unity.collab-proxy": {
4+
"version": "1.3.8",
5+
"depth": 0,
6+
"source": "registry",
7+
"dependencies": {},
8+
"url": "https://packages.unity.com"
9+
},
10+
"com.unity.ext.nunit": {
11+
"version": "1.0.0",
12+
"depth": 1,
13+
"source": "registry",
14+
"dependencies": {},
15+
"url": "https://packages.unity.com"
16+
},
17+
"com.unity.ide.rider": {
18+
"version": "1.2.1",
19+
"depth": 0,
20+
"source": "registry",
21+
"dependencies": {
22+
"com.unity.test-framework": "1.1.1"
23+
},
24+
"url": "https://packages.unity.com"
25+
},
26+
"com.unity.ide.visualstudio": {
27+
"version": "2.0.2",
28+
"depth": 0,
29+
"source": "registry",
30+
"dependencies": {},
31+
"url": "https://packages.unity.com"
32+
},
33+
"com.unity.ide.vscode": {
34+
"version": "1.2.1",
35+
"depth": 0,
36+
"source": "registry",
37+
"dependencies": {},
38+
"url": "https://packages.unity.com"
39+
},
40+
"com.unity.test-framework": {
41+
"version": "1.1.14",
42+
"depth": 0,
43+
"source": "registry",
44+
"dependencies": {
45+
"com.unity.ext.nunit": "1.0.0",
46+
"com.unity.modules.imgui": "1.0.0",
47+
"com.unity.modules.jsonserialize": "1.0.0"
48+
},
49+
"url": "https://packages.unity.com"
50+
},
51+
"com.unity.textmeshpro": {
52+
"version": "3.0.1",
53+
"depth": 0,
54+
"source": "registry",
55+
"dependencies": {
56+
"com.unity.ugui": "1.0.0"
57+
},
58+
"url": "https://packages.unity.com"
59+
},
60+
"com.unity.ugui": {
61+
"version": "1.0.0",
62+
"depth": 0,
63+
"source": "builtin",
64+
"dependencies": {
65+
"com.unity.modules.ui": "1.0.0"
66+
}
67+
},
68+
"com.unity.modules.androidjni": {
69+
"version": "1.0.0",
70+
"depth": 0,
71+
"source": "builtin",
72+
"dependencies": {}
73+
},
74+
"com.unity.modules.animation": {
75+
"version": "1.0.0",
76+
"depth": 0,
77+
"source": "builtin",
78+
"dependencies": {}
79+
},
80+
"com.unity.modules.assetbundle": {
81+
"version": "1.0.0",
82+
"depth": 0,
83+
"source": "builtin",
84+
"dependencies": {}
85+
},
86+
"com.unity.modules.audio": {
87+
"version": "1.0.0",
88+
"depth": 0,
89+
"source": "builtin",
90+
"dependencies": {}
91+
},
92+
"com.unity.modules.director": {
93+
"version": "1.0.0",
94+
"depth": 0,
95+
"source": "builtin",
96+
"dependencies": {
97+
"com.unity.modules.audio": "1.0.0",
98+
"com.unity.modules.animation": "1.0.0"
99+
}
100+
},
101+
"com.unity.modules.imageconversion": {
102+
"version": "1.0.0",
103+
"depth": 0,
104+
"source": "builtin",
105+
"dependencies": {}
106+
},
107+
"com.unity.modules.imgui": {
108+
"version": "1.0.0",
109+
"depth": 0,
110+
"source": "builtin",
111+
"dependencies": {}
112+
},
113+
"com.unity.modules.jsonserialize": {
114+
"version": "1.0.0",
115+
"depth": 0,
116+
"source": "builtin",
117+
"dependencies": {}
118+
},
119+
"com.unity.modules.particlesystem": {
120+
"version": "1.0.0",
121+
"depth": 0,
122+
"source": "builtin",
123+
"dependencies": {}
124+
},
125+
"com.unity.modules.physics": {
126+
"version": "1.0.0",
127+
"depth": 0,
128+
"source": "builtin",
129+
"dependencies": {}
130+
},
131+
"com.unity.modules.physics2d": {
132+
"version": "1.0.0",
133+
"depth": 1,
134+
"source": "builtin",
135+
"dependencies": {}
136+
},
137+
"com.unity.modules.screencapture": {
138+
"version": "1.0.0",
139+
"depth": 0,
140+
"source": "builtin",
141+
"dependencies": {
142+
"com.unity.modules.imageconversion": "1.0.0"
143+
}
144+
},
145+
"com.unity.modules.subsystems": {
146+
"version": "1.0.0",
147+
"depth": 1,
148+
"source": "builtin",
149+
"dependencies": {
150+
"com.unity.modules.jsonserialize": "1.0.0"
151+
}
152+
},
153+
"com.unity.modules.tilemap": {
154+
"version": "1.0.0",
155+
"depth": 0,
156+
"source": "builtin",
157+
"dependencies": {
158+
"com.unity.modules.physics2d": "1.0.0"
159+
}
160+
},
161+
"com.unity.modules.ui": {
162+
"version": "1.0.0",
163+
"depth": 0,
164+
"source": "builtin",
165+
"dependencies": {}
166+
},
167+
"com.unity.modules.uielements": {
168+
"version": "1.0.0",
169+
"depth": 0,
170+
"source": "builtin",
171+
"dependencies": {
172+
"com.unity.modules.ui": "1.0.0",
173+
"com.unity.modules.imgui": "1.0.0",
174+
"com.unity.modules.jsonserialize": "1.0.0",
175+
"com.unity.modules.uielementsnative": "1.0.0"
176+
}
177+
},
178+
"com.unity.modules.uielementsnative": {
179+
"version": "1.0.0",
180+
"depth": 1,
181+
"source": "builtin",
182+
"dependencies": {
183+
"com.unity.modules.ui": "1.0.0",
184+
"com.unity.modules.imgui": "1.0.0",
185+
"com.unity.modules.jsonserialize": "1.0.0"
186+
}
187+
},
188+
"com.unity.modules.umbra": {
189+
"version": "1.0.0",
190+
"depth": 0,
191+
"source": "builtin",
192+
"dependencies": {}
193+
},
194+
"com.unity.modules.unityanalytics": {
195+
"version": "1.0.0",
196+
"depth": 0,
197+
"source": "builtin",
198+
"dependencies": {
199+
"com.unity.modules.unitywebrequest": "1.0.0",
200+
"com.unity.modules.jsonserialize": "1.0.0"
201+
}
202+
},
203+
"com.unity.modules.unitywebrequest": {
204+
"version": "1.0.0",
205+
"depth": 0,
206+
"source": "builtin",
207+
"dependencies": {}
208+
},
209+
"com.unity.modules.unitywebrequestassetbundle": {
210+
"version": "1.0.0",
211+
"depth": 0,
212+
"source": "builtin",
213+
"dependencies": {
214+
"com.unity.modules.assetbundle": "1.0.0",
215+
"com.unity.modules.unitywebrequest": "1.0.0"
216+
}
217+
},
218+
"com.unity.modules.unitywebrequestaudio": {
219+
"version": "1.0.0",
220+
"depth": 0,
221+
"source": "builtin",
222+
"dependencies": {
223+
"com.unity.modules.unitywebrequest": "1.0.0",
224+
"com.unity.modules.audio": "1.0.0"
225+
}
226+
},
227+
"com.unity.modules.unitywebrequesttexture": {
228+
"version": "1.0.0",
229+
"depth": 0,
230+
"source": "builtin",
231+
"dependencies": {
232+
"com.unity.modules.unitywebrequest": "1.0.0",
233+
"com.unity.modules.imageconversion": "1.0.0"
234+
}
235+
},
236+
"com.unity.modules.unitywebrequestwww": {
237+
"version": "1.0.0",
238+
"depth": 0,
239+
"source": "builtin",
240+
"dependencies": {
241+
"com.unity.modules.unitywebrequest": "1.0.0",
242+
"com.unity.modules.unitywebrequestassetbundle": "1.0.0",
243+
"com.unity.modules.unitywebrequestaudio": "1.0.0",
244+
"com.unity.modules.audio": "1.0.0",
245+
"com.unity.modules.assetbundle": "1.0.0",
246+
"com.unity.modules.imageconversion": "1.0.0"
247+
}
248+
},
249+
"com.unity.modules.video": {
250+
"version": "1.0.0",
251+
"depth": 0,
252+
"source": "builtin",
253+
"dependencies": {
254+
"com.unity.modules.audio": "1.0.0",
255+
"com.unity.modules.ui": "1.0.0",
256+
"com.unity.modules.unitywebrequest": "1.0.0"
257+
}
258+
},
259+
"com.unity.modules.vr": {
260+
"version": "1.0.0",
261+
"depth": 0,
262+
"source": "builtin",
263+
"dependencies": {
264+
"com.unity.modules.jsonserialize": "1.0.0",
265+
"com.unity.modules.physics": "1.0.0",
266+
"com.unity.modules.xr": "1.0.0"
267+
}
268+
},
269+
"com.unity.modules.wind": {
270+
"version": "1.0.0",
271+
"depth": 0,
272+
"source": "builtin",
273+
"dependencies": {}
274+
},
275+
"com.unity.modules.xr": {
276+
"version": "1.0.0",
277+
"depth": 0,
278+
"source": "builtin",
279+
"dependencies": {
280+
"com.unity.modules.physics": "1.0.0",
281+
"com.unity.modules.jsonserialize": "1.0.0",
282+
"com.unity.modules.subsystems": "1.0.0"
283+
}
284+
}
285+
}
286+
}

0 commit comments

Comments
 (0)