-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrss.xml
2179 lines (2179 loc) · 164 KB
/
rss.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>This Week in Blender Development</title>
<atom:link href="https://thisweekinblenderdev.github.io/rss.xml" rel="self" type="application/rss+xml" />
<link>https://thisweekinblenderdev.github.io/</link>
<description></description>
<lastBuildDate>Sat, 14 Apr 2018 19:57:20 GMT</lastBuildDate>
<generator>sphinxcontrib-newsfeed</generator>
<item>
<title>2018-04-14: Weekly News</title>
<link>https://thisweekinblenderdev.github.io/2018-04-14.html</link>
<description><div class="compound">
<p class="compound-middle">Hello and welcome to another issue of <em>This Week in Blender Development</em>!
<a class="reference external" href="https://www.blender.org/">Blender</a> is the free and opensource 3D creation
suite for the next generation of artist. Follow the development on Twitter
<a class="reference external" href="https://twitter.com/BlenderDev">&#64;BlenderDev</a>.</p>
<p class="compound-middle"><em>This Week in Blender Development</em> is openly developed on
<a class="reference external" href="https://github.com/ThisWeekInBlenderDev">Github</a>
so please report any recommendations, bugs, or PRs for this website there.</p>
<p class="compound-middle">If you have idea for some great feature that you think should be part of Blender
try making a post on <a class="reference external" href="https://blender.community/c/rightclickselect/">https://blender.community/c/rightclickselect/</a></p>
<div class="tip compound-middle admonition">
<p class="first admonition-title">Tip</p>
<p class="last">Remember, you can test any changes done in <cite>master</cite> or <cite>blender2.8</cite>
by going to the <a class="reference external" href="https://builder.blender.org/download/">developmental builds download page</a></p>
</div>
<div class="compound-middle section" id="changes-to-blender">
<h1>Changes to Blender<a class="headerlink" href="#changes-to-blender" title="Permalink to this headline">¶</a></h1>
<div class="note admonition">
<p class="first admonition-title">Note</p>
<p class="last">Due to the code quest much of this week was spent planning and doing smaller internal changes.</p>
</div>
<p class="rubric">blender2.8</p>
<ul class="simple">
<li>BGL: Expose OpenGL API for FrameBuffers and RenderBuffers
<a class="reference external" href="http://developer.blender.org/rBb107e77e46c17693a07c31cf1a678b3a3d914672">rBb107e77e</a></li>
</ul>
</div>
<div class="compound-middle section" id="new-patches">
<h1>New Patches<a class="headerlink" href="#new-patches" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>None</li>
</ul>
</div>
<div class="compound-middle section" id="other-projects">
<h1>Other Projects<a class="headerlink" href="#other-projects" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>2.8: Code-Quest (Topics we plan to cover)
<a class="reference external" href="http://developer.blender.org/T54387">T54387</a></li>
<li><a class="reference external" href="https://devtalk.blender.org/">devtalk.blender.org</a>. – Devtalk is a new forum
website to help new developers get into Blender development</li>
<li><a class="reference external" href="http://developer.blender.org/T54592">Workbench render engine: (T54592)</a></li>
</ul>
</div>
<div class="compound-last section" id="documentation">
<h1>Documentation<a class="headerlink" href="#documentation" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li><a class="reference external" href="https://code.blender.org/2018/04/code-quest-kick-off/">Code Quest Kick-off</a></li>
</ul>
</div>
</div>
</description>
<guid>https://thisweekinblenderdev.github.io/2018-04-14.html</guid>
<pubDate>Sat, 14 Apr 2018 00:00:00 GMT</pubDate>
</item>
<item>
<title>2018-04-07: Weekly News</title>
<link>https://thisweekinblenderdev.github.io/2018-04-07.html</link>
<description><div class="compound">
<p class="compound-middle">Hello and welcome to another issue of <em>This Week in Blender Development</em>!
<a class="reference external" href="https://www.blender.org/">Blender</a> is the free and opensource 3D creation
suite for the next generation of artist. Follow the development on Twitter
<a class="reference external" href="https://twitter.com/BlenderDev">&#64;BlenderDev</a>.</p>
<p class="compound-middle"><em>This Week in Blender Development</em> is openly developed on
<a class="reference external" href="https://github.com/ThisWeekInBlenderDev">Github</a>
so please report any recommendations, bugs, or PRs for this website there.</p>
<p class="compound-middle">If you have idea for some great feature that you think should be part of Blender
try making a post on <a class="reference external" href="https://blender.community/c/rightclickselect/">https://blender.community/c/rightclickselect/</a></p>
<div class="tip compound-middle admonition">
<p class="first admonition-title">Tip</p>
<p class="last">Remember, you can test any changes done in <cite>master</cite> or <cite>blender2.8</cite>
by going to the <a class="reference external" href="https://builder.blender.org/download/">developmental builds download page</a></p>
</div>
<div class="compound-middle section" id="changes-to-blender">
<h1>Changes to Blender<a class="headerlink" href="#changes-to-blender" title="Permalink to this headline">¶</a></h1>
<p class="rubric">master</p>
<ul class="simple">
<li>PyAPI: Add PyC_Tuple_Pack_F64 utility
<a class="reference external" href="http://developer.blender.org/rB31f2a6755db5bf9439e51701eddcadfca773459a">rB31f2a675</a></li>
<li>New utility to fix broken utf8 strings in old .blend files.
<a class="reference external" href="http://developer.blender.org/rB96f565b380a8552e91151b9879746a1992283a35">rB96f565b3</a></li>
<li>Write the scene render frame range to image/video files
<a class="reference external" href="http://developer.blender.org/rB6c3110a66122f33a3c4df3066c42374660dad067">rB6c3110a6</a></li>
<li>Added support for the WEBM/VP9 video codec
<a class="reference external" href="http://developer.blender.org/rB7e39d151d850590fbabc9870bc5134d9421c5c2c">rB7e39d151</a></li>
<li>Use the newer version of the bullet 6dof spring constraint for rigidbody.
<a class="reference external" href="http://developer.blender.org/rB26a283deae7a3b78a197d4bcf4bfd288c598aedc">rB26a283de</a></li>
</ul>
<p class="rubric">blender2.8</p>
<ul class="simple">
<li>Collections: Move to Collection: Popup for naming new collection
<a class="reference external" href="http://developer.blender.org/rB0faa065ed4aaa87e53bb574d950ebf8ac0cfd4a3">rB0faa065e</a></li>
<li>Workspaces: Remove workspace object mode
<a class="reference external" href="http://developer.blender.org/rB1c24c04e6023f2d2a328dfcdc9f86cd381d029a3">rB1c24c04e</a></li>
</ul>
<p class="rubric">greasepencil-object</p>
<ul class="simple">
<li>Add Lock to Focal Plane to Blur VFX
<a class="reference external" href="http://developer.blender.org/rBe32c22d3a47da2e690f2b0616cbeed130db4c460">rBe32c22d3</a></li>
<li>New Line Primitive
<a class="reference external" href="http://developer.blender.org/rB23c5eee284261368c4cb7875ec9ce2ca81a4a3e4">rB23c5eee2</a></li>
</ul>
</div>
<div class="compound-middle section" id="new-patches">
<h1>New Patches<a class="headerlink" href="#new-patches" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>Python ImBuf API
<a class="reference external" href="http://developer.blender.org/D3122">D3122</a></li>
<li>Add an option to do keyframe insertion in a cycle-aware fashion.
<a class="reference external" href="http://developer.blender.org/D3140">D3140</a></li>
</ul>
</div>
<div class="compound-middle section" id="other-projects">
<h1>Other Projects<a class="headerlink" href="#other-projects" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>2.8: Code-Quest (Topics we plan to cover)
<a class="reference external" href="http://developer.blender.org/T54387">T54387</a></li>
<li><a class="reference external" href="https://devtalk.blender.org/">devtalk.blender.org</a>. – Devtalk is a new forum
website to help new developers get into Blender development</li>
</ul>
</div>
<div class="compound-last section" id="documentation">
<h1>Documentation<a class="headerlink" href="#documentation" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li><a class="reference external" href="https://code.blender.org/2018/03/code-quest-status-update/">Code Quest Status Update</a></li>
</ul>
</div>
</div>
</description>
<guid>https://thisweekinblenderdev.github.io/2018-04-07.html</guid>
<pubDate>Sat, 07 Apr 2018 00:00:00 GMT</pubDate>
</item>
<item>
<title>2018-03-31: Weekly News</title>
<link>https://thisweekinblenderdev.github.io/2018-03-31.html</link>
<description><div class="compound">
<p class="compound-middle">Hello and welcome to another issue of <em>This Week in Blender Development</em>!
<a class="reference external" href="https://www.blender.org/">Blender</a> is the free and opensource 3D creation
suite for the next generation of artist. Follow the development on Twitter
<a class="reference external" href="https://twitter.com/BlenderDev">&#64;BlenderDev</a>.</p>
<p class="compound-middle"><em>This Week in Blender Development</em> is openly developed on
<a class="reference external" href="https://github.com/ThisWeekInBlenderDev">Github</a>
so please report any recommendations, bugs, or PRs for this website there.</p>
<p class="compound-middle">If you have idea for some great feature that you think should be part of Blender
try making a post on <a class="reference external" href="https://blender.community/c/rightclickselect/">https://blender.community/c/rightclickselect/</a></p>
<div class="tip compound-middle admonition">
<p class="first admonition-title">Tip</p>
<p class="last">Remember, you can test any changes done in <cite>master</cite> or <cite>blender2.8</cite>
by going to the <a class="reference external" href="https://builder.blender.org/download/">developmental builds download page</a></p>
</div>
<div class="compound-middle section" id="changes-to-blender">
<h1>Changes to Blender<a class="headerlink" href="#changes-to-blender" title="Permalink to this headline">¶</a></h1>
<p class="rubric">master</p>
<ul class="simple">
<li>Cycles: take into account diffuse roughness for roughness baking
<a class="reference external" href="http://developer.blender.org/rBe3f1d980982b1c0da7853a960cbd3e9a3f434376">rBe3f1d980</a></li>
<li>UI: Edit mode move edge data tool into a menu
<a class="reference external" href="http://developer.blender.org/rB354dfdac8824baffa46080f3552ae255451b2d40">rB354dfdac</a></li>
<li>New C logging system
<a class="reference external" href="http://developer.blender.org/rB891c1cfc9a355171215821fc91b694273503f139">rB891c1cfc</a></li>
<li>Undo: unified undo system w/ linear history
<a class="reference external" href="http://developer.blender.org/rB651b8fb14eb6ee5cbfa98bffe80a966a0753b14e">rB651b8fb1</a></li>
</ul>
<p class="rubric">blender2.8</p>
<ul class="simple">
<li>Collections: New <em>Move to Collection</em> operator
<a class="reference external" href="http://developer.blender.org/rBf167226b793e5dd39816f0b250771177d088dc54">rBf167226b</a></li>
<li>Collections: Move to Collection: Add option to add to a new collection.
<a class="reference external" href="http://developer.blender.org/rB6456d59b6beaf6131366b87aacfb3ee47e42211d">rB6456d59b</a></li>
<li>Collections: Add support for <em>Select Group</em>
<a class="reference external" href="http://developer.blender.org/rB534916258d619554106f5e8fd6bb62558e8980bc">rB53491625</a></li>
</ul>
</div>
<div class="compound-middle section" id="new-patches">
<h1>New Patches<a class="headerlink" href="#new-patches" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>UI: use new confirm quit dialog on all platforms.
<a class="reference external" href="http://developer.blender.org/D3118">D3118</a></li>
</ul>
</div>
<div class="compound-middle section" id="other-projects">
<h1>Other Projects<a class="headerlink" href="#other-projects" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>2.8: Code-Quest (Topics we plan to cover)
<a class="reference external" href="http://developer.blender.org/T54387">T54387</a></li>
<li><a class="reference external" href="https://devtalk.blender.org/">devtalk.blender.org</a>. – Devtalk is a new forum
website to help new developers get into Blender development</li>
</ul>
</div>
<div class="compound-last section" id="documentation">
<h1>Documentation<a class="headerlink" href="#documentation" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li><a class="reference external" href="https://code.blender.org/2018/03/code-quest-status-update/">Code Quest Status Update</a></li>
</ul>
</div>
</div>
</description>
<guid>https://thisweekinblenderdev.github.io/2018-03-31.html</guid>
<pubDate>Sat, 31 Mar 2018 00:00:00 GMT</pubDate>
</item>
<item>
<title>2018-03-24: Weekly News</title>
<link>https://thisweekinblenderdev.github.io/2018-03-24.html</link>
<description><div class="compound">
<p class="compound-middle">Hello and welcome to another issue of <em>This Week in Blender Development</em>!
<a class="reference external" href="https://www.blender.org/">Blender</a> is the free and opensource 3D creation
suite for the next generation of artist. Follow the development on Twitter
<a class="reference external" href="https://twitter.com/BlenderDev">&#64;BlenderDev</a>.</p>
<p class="compound-middle"><em>This Week in Blender Development</em> is openly developed on
<a class="reference external" href="https://github.com/ThisWeekInBlenderDev">Github</a>
so please report any recommendations, bugs, or PRs for this website there.</p>
<p class="compound-middle">If you have idea for some great feature that you think should be part of Blender
try making a post on <a class="reference external" href="https://blender.community/c/rightclickselect/">https://blender.community/c/rightclickselect/</a></p>
<div class="tip compound-middle admonition">
<p class="first admonition-title">Tip</p>
<p class="last">Remember, you can test any changes done in <cite>master</cite> or <cite>blender2.8</cite>
by going to the <a class="reference external" href="https://builder.blender.org/download/">developmental builds download page</a></p>
</div>
<div class="compound-middle section" id="changes-to-blender">
<h1>Changes to Blender<a class="headerlink" href="#changes-to-blender" title="Permalink to this headline">¶</a></h1>
<p class="rubric">master</p>
<ul class="simple">
<li>UI: Optional prompt to quit for non win32 systems
<a class="reference external" href="http://developer.blender.org/rB5ba5254ec1ebba6c1e89b663592d716b92e13165">rB5ba5254e</a></li>
<li>UI: 4-column layout for the editor-type selector menu
<a class="reference external" href="http://developer.blender.org/rB60712d12eb89fe85204f9a0dbc86e361b8ad6c58">rB60712d12</a></li>
</ul>
</div>
<div class="compound-middle section" id="new-patches">
<h1>New Patches<a class="headerlink" href="#new-patches" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>Add Ctrl+Click Extrude function for Surfaces
<a class="reference external" href="http://developer.blender.org/D3110">D3110</a></li>
<li>Move STL import/export to C++ (great speedup)
<a class="reference external" href="http://developer.blender.org/D3114">D3114</a></li>
</ul>
</div>
<div class="compound-middle section" id="other-projects">
<h1>Other Projects<a class="headerlink" href="#other-projects" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>Blender Interactive Mode Outline
<a class="reference external" href="http://developer.blender.org/T54389">T54389</a></li>
<li>2.8: Code-Quest (Topics we plan to cover)
<a class="reference external" href="http://developer.blender.org/T54387">T54387</a></li>
<li><a class="reference external" href="https://devtalk.blender.org/">devtalk.blender.org</a>. – Devtalk is a new forum
website to help new developers get into Blender development</li>
</ul>
</div>
<div class="compound-last section" id="documentation">
<h1>Documentation<a class="headerlink" href="#documentation" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>None</li>
</ul>
</div>
</div>
</description>
<guid>https://thisweekinblenderdev.github.io/2018-03-24.html</guid>
<pubDate>Sat, 17 Mar 2018 00:00:00 GMT</pubDate>
</item>
<item>
<title>2018-03-17: Weekly News</title>
<link>https://thisweekinblenderdev.github.io/2018-03-17.html</link>
<description><div class="compound">
<p class="compound-middle">Hello and welcome to another issue of <em>This Week in Blender Development</em>!
<a class="reference external" href="https://www.blender.org/">Blender</a> is the free and opensource 3D creation
suite for the next generation of artist. Follow the development on Twitter
<a class="reference external" href="https://twitter.com/BlenderDev">&#64;BlenderDev</a>.</p>
<p class="compound-middle"><em>This Week in Blender Development</em> is openly developed on
<a class="reference external" href="https://github.com/ThisWeekInBlenderDev">Github</a>
so please report any recommendations, bugs, or PRs for this website there.</p>
<p class="compound-middle">If you have idea for some great feature that you think should be part of Blender
try making a post on <a class="reference external" href="https://blender.community/c/rightclickselect/">https://blender.community/c/rightclickselect/</a></p>
<div class="tip compound-middle admonition">
<p class="first admonition-title">Tip</p>
<p class="last">Remember, you can test any changes done in <cite>master</cite> or <cite>blender2.8</cite>
by going to the <a class="reference external" href="https://builder.blender.org/download/">developmental builds download page</a></p>
</div>
<div class="compound-middle section" id="changes-to-blender">
<h1>Changes to Blender<a class="headerlink" href="#changes-to-blender" title="Permalink to this headline">¶</a></h1>
<p class="rubric">master</p>
<ul class="simple">
<li>GHOST: Support Unity taskbar progress API
<a class="reference external" href="http://developer.blender.org/rB41149ca134ff1ffe1029e3eebf1c6b3e95ef4422">rB41149ca1</a></li>
</ul>
<p class="rubric">blender2.8</p>
<ul class="simple">
<li>UV/Image Editor: Optimize UV Drawing
<a class="reference external" href="http://developer.blender.org/rBcca1e1b707c2d34244d3da87efcd78775c4eb048">rBcca1e1b7</a></li>
<li>Clay: Refactor: Port clay to a deferred pipeline
<a class="reference external" href="http://developer.blender.org/rBb4209b138f6bda863009568bf8dc19eb5cf8361c">rBb4209b13</a></li>
<li>Eevee: Render: Allow cancel during probe update
<a class="reference external" href="http://developer.blender.org/rB266cdf955ebe01a66e6ccb791d3943323bcbb94d">rB266cdf95</a></li>
</ul>
</div>
<div class="compound-middle section" id="new-patches">
<h1>New Patches<a class="headerlink" href="#new-patches" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>Proof of concept multi-object edit-mode
<a class="reference external" href="http://developer.blender.org/D3101">D3101</a></li>
<li>Denoising Baking Results
<a class="reference external" href="http://developer.blender.org/D3099">D3099</a></li>
</ul>
</div>
<div class="compound-middle section" id="other-projects">
<h1>Other Projects<a class="headerlink" href="#other-projects" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>None</li>
</ul>
</div>
<div class="compound-last section" id="documentation">
<h1>Documentation<a class="headerlink" href="#documentation" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>None</li>
</ul>
</div>
</div>
</description>
<guid>https://thisweekinblenderdev.github.io/2018-03-17.html</guid>
<pubDate>Sat, 17 Mar 2018 00:00:00 GMT</pubDate>
</item>
<item>
<title>2018-03-10: Weekly News</title>
<link>https://thisweekinblenderdev.github.io/2018-03-10.html</link>
<description><div class="compound">
<p class="compound-middle">Hello and welcome to another issue of <em>This Week in Blender Development</em>!
<a class="reference external" href="https://www.blender.org/">Blender</a> is the free and opensource 3D creation
suite for the next generation of artist. Follow the development on Twitter
<a class="reference external" href="https://twitter.com/BlenderDev">&#64;BlenderDev</a>.</p>
<p class="compound-middle"><em>This Week in Blender Development</em> is openly developed on
<a class="reference external" href="https://github.com/ThisWeekInBlenderDev">Github</a>
so please report any recommendations, bugs, or PRs for this website there.</p>
<p class="compound-middle">If you have idea for some great feature that you think should be part of Blender
try making a post on <a class="reference external" href="https://blender.community/c/rightclickselect/">https://blender.community/c/rightclickselect/</a></p>
<div class="tip compound-middle admonition">
<p class="first admonition-title">Tip</p>
<p class="last">Remember, you can test any changes done in <cite>master</cite> or <cite>blender2.8</cite>
by going to the <a class="reference external" href="https://builder.blender.org/download/">developmental builds download page</a></p>
</div>
<div class="compound-middle section" id="changes-to-blender">
<h1>Changes to Blender<a class="headerlink" href="#changes-to-blender" title="Permalink to this headline">¶</a></h1>
<p class="rubric">master</p>
<ul class="simple">
<li>Cycles: add roughness baking support, using squared roughness convention
<a class="reference external" href="http://developer.blender.org/rB23ccf5767fea1d7f1b50405334249b1a7a69d5c9">rB23ccf576</a></li>
<li>Cycles: switch to squared roughness convention for all nodes
<a class="reference external" href="http://developer.blender.org/rB7613ffc944ebc133f1f906ea737ab55718434cc4">rB7613ffc9</a></li>
<li>Cycles: support arbitrary number of motion blur steps for cameras
<a class="reference external" href="http://developer.blender.org/rB78c2063685cb6e0d0bcb895cf4eb70686455d596">rB78c20636</a>
<a class="reference external" href="http://developer.blender.org/rBdb333d9ea4881d9f48e3cc4b1ec59b4dafb27cc0">rBdb333d9e</a></li>
<li><a class="reference external" href="http://developer.blender.org/T54233">T54233</a>: NLA “Push Down” discards Blend Mode, Extrapolation, and Influence
<a class="reference external" href="http://developer.blender.org/rB7e2100e49914e5d32973b3d28134340e0404f1bf">rB7e2100e4</a></li>
</ul>
<p class="rubric">blender2.8</p>
<ul class="simple">
<li>Eevee: Planar Reflection: Add refraction support for reflected objects
<a class="reference external" href="http://developer.blender.org/rB92c2e2f38655b282b04d96204b9942ff1e505590">rB92c2e2f3</a></li>
<li>Eevee: Probes: Add culling for planar probes
<a class="reference external" href="http://developer.blender.org/rB13b99b7bbba02374849d296e685238d64ff289db">rB13b99b7b</a></li>
<li>Eevee: Render: Add progress
<a class="reference external" href="http://developer.blender.org/rB872df463f62d55911a2a732775a8de434c281b2d">rB872df463</a></li>
<li>Draw Manager: Simplify the algorithm that extract the BoundingSphere of a Frustum
<a class="reference external" href="http://developer.blender.org/rB267e816b9a603026d951f8e8e318ceaed04ca944">rB267e816b</a></li>
<li>DRW: Shader Deferred compilation: Use a wmJob for threading
<a class="reference external" href="http://developer.blender.org/rB94fadd00d889254ea59ca97c85a32ca76b9e95ca">rB94fadd00</a></li>
<li>DRW: Deferred compilation initial implementation
<a class="reference external" href="http://developer.blender.org/rB3a209c285754a08339c654d075b5d273fa264c08">rB3a209c28</a></li>
<li>Eevee: Optimize shadows drawing
<a class="reference external" href="http://developer.blender.org/rBdd611dd0b87a36ffafb04177ec923e3b6d76bf71">rBdd611dd0</a></li>
</ul>
</div>
<div class="compound-middle section" id="new-patches">
<h1>New Patches<a class="headerlink" href="#new-patches" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>Eevee: Optimize shadows drawing
<a class="reference external" href="http://developer.blender.org/D3095">D3095</a></li>
<li>Optional parameters for <code class="docutils literal notranslate"><span class="pre">play_rendered_anim</span></code> operator
<a class="reference external" href="http://developer.blender.org/D3097">D3097</a></li>
<li>Fix <a class="reference external" href="http://developer.blender.org/T53971">T53971</a> Render Result showing the wrong renderlayer in image editor
<a class="reference external" href="http://developer.blender.org/D3098">D3098</a></li>
</ul>
</div>
<div class="compound-middle section" id="other-projects">
<h1>Other Projects<a class="headerlink" href="#other-projects" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>Multi-object edit mode support (design overview)
<a class="reference external" href="http://developer.blender.org/T54242">T54242</a></li>
<li>2.79b release, proposed fixes
<a class="reference external" href="http://developer.blender.org/T54255">T54255</a></li>
<li>Python API for Blender’s internal image functions
<a class="reference external" href="http://developer.blender.org/T54272">T54272</a></li>
</ul>
</div>
<div class="compound-last section" id="documentation">
<h1>Documentation<a class="headerlink" href="#documentation" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>None</li>
</ul>
</div>
</div>
</description>
<guid>https://thisweekinblenderdev.github.io/2018-03-10.html</guid>
<pubDate>Sat, 10 Mar 2018 00:00:00 GMT</pubDate>
</item>
<item>
<title>2018-03-03: Weekly News</title>
<link>https://thisweekinblenderdev.github.io/2018-03-03.html</link>
<description><div class="compound">
<p class="compound-middle">Hello and welcome to another issue of <em>This Week in Blender Development</em>!
<a class="reference external" href="https://www.blender.org/">Blender</a> is the free and opensource 3D creation
suite for the next generation of artist. Follow the development on Twitter
<a class="reference external" href="https://twitter.com/BlenderDev">&#64;BlenderDev</a>.</p>
<p class="compound-middle"><em>This Week in Blender Development</em> is openly developed on
<a class="reference external" href="https://github.com/ThisWeekInBlenderDev">Github</a>
so please report any recommendations, bugs, or PRs for this website there.</p>
<p class="compound-middle">If you have idea for some great feature that you think should be part of Blender
try making a post on <a class="reference external" href="https://blender.community/c/rightclickselect/">https://blender.community/c/rightclickselect/</a></p>
<div class="tip compound-middle admonition">
<p class="first admonition-title">Tip</p>
<p class="last">Remember, you can test any changes done in <cite>master</cite> or <cite>blender2.8</cite>
by going to the <a class="reference external" href="https://builder.blender.org/download/">developmental builds download page</a></p>
</div>
<div class="compound-middle section" id="changes-to-blender">
<h1>Changes to Blender<a class="headerlink" href="#changes-to-blender" title="Permalink to this headline">¶</a></h1>
<p class="rubric">master</p>
<ul class="simple">
<li>Cycles volume: fast empty space optimization (up to 2x speedup)
<a class="reference external" href="http://developer.blender.org/rB7377d411b47d50cd943cd33e3e55c0409bb79f91">rB7377d411</a></li>
<li>Collada: Adding support for Matrix Transformation export
<a class="reference external" href="http://developer.blender.org/rBa024da55af09fb75e3b72489a8696878909bf676">rBa024da55</a></li>
<li>Smoke: expose empty space clipping property to the UI
<a class="reference external" href="http://developer.blender.org/rB4403ca80bda690c0ac44e4a6db0cddf4b2428006">rB4403ca80</a></li>
<li>Cycles: add Principled Volume shader.
<a class="reference external" href="http://developer.blender.org/rB0aec2dcd3ae0ed382ffe7b3311a4e30fc88398e4">rB0aec2dcd</a></li>
<li>Cycles: Speedup rendering of dense volumes (30% speedup)
<a class="reference external" href="http://developer.blender.org/rB5d5c6bb5efee9bd03004845f9b1eee9d43883525">rB5d5c6bb5</a></li>
<li>Animation: When scaling keyframes, merge (by-averaging) selected keys that end up on the same frame
<a class="reference external" href="http://developer.blender.org/rBac717928ad027b3a048e6aba7e4f64e4a617d8cc">rBac717928</a></li>
</ul>
<p class="rubric">blender2.8</p>
<ul class="simple">
<li>WorkSpace: show/hide opt-out support for add-ons
<a class="reference external" href="http://developer.blender.org/rB61c8ed40f5df897da212b55dadeee252c8d3997b">rB61c8ed40</a></li>
<li>WorkSpace: UI filtering for add-ons
<a class="reference external" href="http://developer.blender.org/rBd937d06c02f62c11385c1c1f58d963fec03365d9">rBd937d06c</a></li>
<li>Cycles: add back point density texture support
<a class="reference external" href="http://developer.blender.org/rB000002e42df54b00009fe1d2341d27d8cc418925">rB000002e4</a></li>
<li>EEVEE: Compositing and rendering of multi-layers support
<a class="reference external" href="http://developer.blender.org/rB06420c5fe8fda54c543f26f9d95d2c6fcf5161cd">rB06420c5f</a></li>
<li>Viewport: Speed up many unique objects (up to 3x speedup)
<a class="reference external" href="http://developer.blender.org/rB241c90c92d8dfc4f98daad71fb75390793777a86">rB241c90c9</a></li>
<li>Eevee: add Principled Volume shader
<a class="reference external" href="http://developer.blender.org/rB38ccd1fe33e61a6d609273dd87d3a4c69d62f368">rB38ccd1fe</a></li>
<li>WorkSpace: object-mode switching support
<a class="reference external" href="http://developer.blender.org/rB4ab002bca36ace4d2b4b21efce622a682b99b844">rB4ab002bc</a></li>
<li>Viewport: Small speedup.
<a class="reference external" href="http://developer.blender.org/rBc5eba46d7f4ddfcdf372a3f4968e4d170ee0a002">rBc5eba46d</a></li>
</ul>
<p class="rubric">greasepencil-object</p>
<ul class="simple">
<li>New Eraser brush
<a class="reference external" href="http://developer.blender.org/rB32c4bc3417a247609ef8875c03c0b7153e224878">rB32c4bc34</a></li>
<li>New Draw mode “Boxes”
<a class="reference external" href="http://developer.blender.org/rB5a37f69467ac06d2d1bb78553b9901c984d17422">rB5a37f694</a></li>
<li>Interpolate mouse movement for fast drawing
<a class="reference external" href="http://developer.blender.org/rBa636f3fbd148daa6aa05a0b276faa260738b446f">rBa636f3fb</a></li>
<li>Add UV rotation option to Smooth and Noise modifiers
<a class="reference external" href="http://developer.blender.org/rB803f80c673fd8c4794e354e7693113f476bb0553">rB803f80c6</a></li>
<li>Apply Smooth and Random sculpt to UV rotation
<a class="reference external" href="http://developer.blender.org/rB71f0e59b2e348c7376b5ec9e92c783c7def3b0ec">rB71f0e59b</a></li>
<li>New UI parameter to define UV rotation randomness
<a class="reference external" href="http://developer.blender.org/rB11910fdb505b97732b0aa96c56a2eef617f1b986">rB11910fdb</a></li>
<li>New point fields for UV data
<a class="reference external" href="http://developer.blender.org/rBf0419a4a2a4237e5a5a807c918923a49dbb0f890">rBf0419a4a</a></li>
</ul>
<p class="rubric">fracture_modifier</p>
<ul class="simple">
<li>Add vertex group to influence metaball radii
<a class="reference external" href="http://developer.blender.org/rBc381b3fadc3788492adb7786d8f4031ffba8ee71">rBc381b3fa</a></li>
<li>Optionally restore old activation behavior with broken constraints
<a class="reference external" href="http://developer.blender.org/rBfb8acd8b33310919c38cb1e208fdbdb9dc655d27">rBfb8acd8b</a></li>
</ul>
</div>
<div class="compound-middle section" id="new-patches">
<h1>New Patches<a class="headerlink" href="#new-patches" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>Freestyle: work in progress patch to show possible integration
<a class="reference external" href="http://developer.blender.org/D3086">D3086</a></li>
<li>First steps for a User-Preferences/Settings redesign
<a class="reference external" href="http://developer.blender.org/D3088">D3088</a></li>
<li>Array modifier: Do not merge vertex groups with different names
<a class="reference external" href="http://developer.blender.org/D3092">D3092</a></li>
<li>Cycles: add anisotropy to random walk subsurface scattering.
<a class="reference external" href="http://developer.blender.org/D3094">D3094</a></li>
</ul>
</div>
<div class="compound-middle section" id="other-projects">
<h1>Other Projects<a class="headerlink" href="#other-projects" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>None</li>
</ul>
</div>
<div class="compound-last section" id="documentation">
<h1>Documentation<a class="headerlink" href="#documentation" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li><a class="reference external" href="https://code.blender.org/2018/03/eevee-f-a-q/">EEVEE FAQ</a></li>
</ul>
</div>
</div>
</description>
<guid>https://thisweekinblenderdev.github.io/2018-03-03.html</guid>
<pubDate>Sat, 03 Mar 2018 00:00:00 GMT</pubDate>
</item>
<item>
<title>2018-02-17: Weekly News</title>
<link>https://thisweekinblenderdev.github.io/2018-02-17.html</link>
<description><div class="compound">
<p class="compound-middle">Hello and welcome to another issue of <em>This Week in Blender Development</em>!
<a class="reference external" href="https://www.blender.org/">Blender</a> is the free and opensource 3D creation
suite for the next generation of artist. Follow the development on Twitter
<a class="reference external" href="https://twitter.com/BlenderDev">&#64;BlenderDev</a>.</p>
<p class="compound-middle"><em>This Week in Blender Development</em> is openly developed on
<a class="reference external" href="https://github.com/ThisWeekInBlenderDev">Github</a>
so please report any recommendations, bugs, or PRs for this website there.</p>
<p class="compound-middle">If you have idea for some great feature that you think should be part of Blender
try making a post on <a class="reference external" href="https://blender.community/c/rightclickselect/">https://blender.community/c/rightclickselect/</a></p>
<div class="tip compound-middle admonition">
<p class="first admonition-title">Tip</p>
<p class="last">Remember, you can test any changes done in <cite>master</cite> or <cite>blender2.8</cite>
by going to the <a class="reference external" href="https://builder.blender.org/download/">developmental builds download page</a></p>
</div>
<div class="compound-middle section" id="changes-to-blender">
<h1>Changes to Blender<a class="headerlink" href="#changes-to-blender" title="Permalink to this headline">¶</a></h1>
<p class="rubric">master</p>
<ul class="simple">
<li>Cycles: Remove Fermi support
<a class="reference external" href="http://developer.blender.org/rB2eaf90b305fc6fb37f775f288c3d5cd34cc66c81">rB2eaf90b3</a></li>
<li>Simple hair children: Make twist affected by texture
<a class="reference external" href="http://developer.blender.org/rB6d4022f61980ba46efd391dcfe96dd88a8db8deb">rB6d4022f6</a></li>
<li>Simple hair children: Make twist affected by vertex group
<a class="reference external" href="http://developer.blender.org/rB67cec97387965009dfaa57f7f4c8ab948e048e70">rB67cec973</a></li>
<li>Simple hair children: Initial implementation of twist control
<a class="reference external" href="http://developer.blender.org/rBffde74a878882618ab4d4179ba8dd9b98aab15e2">rBffde74a8</a></li>
<li>Cycles: Implement index output for hair node
<a class="reference external" href="http://developer.blender.org/rB37f65e9dc4bcfa5225a114feabac753e342bb201">rB37f65e9d</a></li>
<li>Nodes: Display image name if any in the Cycles Image and Environment Texture node title
<a class="reference external" href="http://developer.blender.org/rBd640ce40aa9e472613cac22ecbc7655db9c27201">rBd640ce40</a></li>
</ul>
<p class="rubric">fracture_modifier</p>
<ul class="simple">
<li>Brickify fracture support
<a class="reference external" href="http://developer.blender.org/rB97a677e78861dba623b49fb72ef4e46e665d057f">rB97a677e7</a></li>
<li>External constraints support
<a class="reference external" href="http://developer.blender.org/rB4eb44b86100be814ed2a21699435cf76cc5e1600">rB4eb44b86</a></li>
</ul>
</div>
<div class="compound-middle section" id="new-patches">
<h1>New Patches<a class="headerlink" href="#new-patches" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>None</li>
</ul>
</div>
<div class="compound-middle section" id="other-projects">
<h1>Other Projects<a class="headerlink" href="#other-projects" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>None</li>
</ul>
</div>
<div class="compound-last section" id="documentation">
<h1>Documentation<a class="headerlink" href="#documentation" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>None</li>
</ul>
</div>
</div>
</description>
<guid>https://thisweekinblenderdev.github.io/2018-02-17.html</guid>
<pubDate>Sat, 17 Feb 2018 00:00:00 GMT</pubDate>
</item>
<item>
<title>2018-02-10: Weekly News</title>
<link>https://thisweekinblenderdev.github.io/2018-02-10.html</link>
<description><div class="compound">
<p class="compound-middle">Hello and welcome to another issue of <em>This Week in Blender Development</em>!
<a class="reference external" href="https://www.blender.org/">Blender</a> is the free and opensource 3D creation
suite for the next generation of artist. Follow the development on Twitter
<a class="reference external" href="https://twitter.com/BlenderDev">&#64;BlenderDev</a>.</p>
<p class="compound-middle"><em>This Week in Blender Development</em> is openly developed on
<a class="reference external" href="https://github.com/ThisWeekInBlenderDev">Github</a>
so please report any recommendations, bugs, or PRs for this website there.</p>
<p class="compound-middle">If you have idea for some great feature that you think should be part of Blender
try making a post on <a class="reference external" href="https://blender.community/c/rightclickselect/">https://blender.community/c/rightclickselect/</a></p>
<div class="tip compound-middle admonition">
<p class="first admonition-title">Tip</p>
<p class="last">Remember, you can test any changes done in <cite>master</cite> or <cite>blender2.8</cite>
by going to the <a class="reference external" href="https://builder.blender.org/download/">developmental builds download page</a></p>
</div>
<div class="compound-middle section" id="changes-to-blender">
<h1>Changes to Blender<a class="headerlink" href="#changes-to-blender" title="Permalink to this headline">¶</a></h1>
<p class="rubric">master</p>
<ul class="simple">
<li>Cycles: add random walk subsurface scattering to Principled BSDF
<a class="reference external" href="http://developer.blender.org/rBa6968e87f1338081f30725f8f2ca3460e280fea2">rBa6968e87</a></li>
<li>Cycles: random walk subsurface scattering
<a class="reference external" href="http://developer.blender.org/rB0df9b2c71517a98760a5e577f434d9d86e4e1910">rB0df9b2c7</a></li>
<li>Mesh: Remove Carve boolean
<a class="reference external" href="http://developer.blender.org/rBe0597baed57fa7a9dfaf6dff6d0fa120784d21ea">rBe0597bae</a></li>
<li>Dopesheet: Synchronize selection on bones when selecting everything
<a class="reference external" href="http://developer.blender.org/rB5f2b4002f49b08f68b1e37b267eceb0b340af713">rB5f2b4002</a></li>
</ul>
<p class="rubric">blender2.8</p>
<ul class="simple">
<li>Outliner: Add object(s) to new collection
<a class="reference external" href="http://developer.blender.org/rB77b61b554ca10353b408645e3316e06c8d240388">rB77b61b55</a></li>
<li>Outliner: Operator to delete outliner selected elements from collection
<a class="reference external" href="http://developer.blender.org/rB9631c1ac1a8ef2e491310778853b912595e6f3ee">rB9631c1ac</a></li>
<li>Eevee: Pixel Filter: Add parameter &amp; rescale final LUT
<a class="reference external" href="http://developer.blender.org/rB23d2f708f312b73186aff4a42e952480413e7096">rB23d2f708</a></li>
</ul>
</div>
<div class="compound-middle section" id="new-patches">
<h1>New Patches<a class="headerlink" href="#new-patches" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>Snap to second while scrubbing the frame in the timeline
<a class="reference external" href="http://developer.blender.org/D3056">D3056</a></li>
<li>Cycles volume : fast empty space optimization by generating a tight mesh around the volume.
<a class="reference external" href="http://developer.blender.org/D3038">D3038</a></li>
</ul>
</div>
<div class="compound-middle section" id="other-projects">
<h1>Other Projects<a class="headerlink" href="#other-projects" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>None</li>
</ul>
</div>
<div class="compound-last section" id="documentation">
<h1>Documentation<a class="headerlink" href="#documentation" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>None</li>
</ul>
</div>
</div>
</description>
<guid>https://thisweekinblenderdev.github.io/2018-02-10.html</guid>
<pubDate>Sat, 10 Feb 2018 00:00:00 GMT</pubDate>
</item>
<item>
<title>2018-02-03: Weekly News</title>
<link>https://thisweekinblenderdev.github.io/2018-02-03.html</link>
<description><div class="compound">
<p class="compound-middle">Hello and welcome to another issue of <em>This Week in Blender Development</em>!
<a class="reference external" href="https://www.blender.org/">Blender</a> is the free and opensource 3D creation
suite for the next generation of artist. Follow the development on Twitter
<a class="reference external" href="https://twitter.com/BlenderDev">&#64;BlenderDev</a>.</p>
<p class="compound-middle"><em>This Week in Blender Development</em> is openly developed on
<a class="reference external" href="https://github.com/ThisWeekInBlenderDev">Github</a>
so please report any recommendations, bugs, or PRs for this website there.</p>
<p class="compound-middle">If you have idea for some great feature that you think should be part of Blender
try making a post on <a class="reference external" href="https://blender.community/c/rightclickselect/">https://blender.community/c/rightclickselect/</a></p>
<div class="tip compound-middle admonition">
<p class="first admonition-title">Tip</p>
<p class="last">Remember, you can test any changes done in <cite>master</cite> or <cite>blender2.8</cite>
by going to the <a class="reference external" href="https://builder.blender.org/download/">developmental builds download page</a></p>
</div>
<div class="compound-middle section" id="changes-to-blender">
<h1>Changes to Blender<a class="headerlink" href="#changes-to-blender" title="Permalink to this headline">¶</a></h1>
<p class="rubric">master</p>
<ul class="simple">
<li>Cycles: add Vector Displacement node and extend Displacement node
<a class="reference external" href="http://developer.blender.org/rBf9ea097a872290d20cd94504adb3172165cb770d">rBf9ea097a</a></li>
<li>Apply Pose as Rest Pose: Bendy Bone support
<a class="reference external" href="http://developer.blender.org/rB5dd5286995e4a924c1a04df812050bf15b980ac2">rB5dd52869</a></li>
<li>Cycles: rename displacement methods, default to displace
<a class="reference external" href="http://developer.blender.org/rBda4c3f30d984b361d7c00b103ec329d5263779ff">rBda4c3f30</a></li>
<li>Cycles: add Displacement node.
<a class="reference external" href="http://developer.blender.org/rB4a5ee1a5a2adc8032cf710357081d3a1e3fcad95">rB4a5ee1a5</a></li>
</ul>
<p class="rubric">blender2.8</p>
<ul class="simple">
<li>Eevee: Render: Add ambient occlusion pass support
<a class="reference external" href="http://developer.blender.org/rB36b259fa889afebce390f98862ea243e617aa989">rB36b259fa</a></li>
<li>Collections: Operator to duplicate a collection
<a class="reference external" href="http://developer.blender.org/rBc7c070c2ece0f41772cbcfe3445f3e0be684dd1d">rBc7c070c2</a></li>
<li>Collections: Operator to select collection objects
<a class="reference external" href="http://developer.blender.org/rBa4d2b102f313b8d427e6ff6066f38cc3a2394628">rBa4d2b102</a></li>
<li>Eevee: Render: Add support for multiview
<a class="reference external" href="http://developer.blender.org/rB00f1bc168505bcffe150f5f75db79778bdead51e">rB00f1bc16</a></li>
<li>Eevee: Add mist pass support
<a class="reference external" href="http://developer.blender.org/rBe52c5bcdb56886a10a8aa432c240f2f74dc7c0a5">rBe52c5bcd</a></li>
<li>Eevee: Render: Add Transparent Background option
<a class="reference external" href="http://developer.blender.org/rBab5f86a04e1cbc7105ae50836abb74524516e976">rBab5f86a0</a></li>
<li>Eevee: Render: Add Subsurface Pass support
<a class="reference external" href="http://developer.blender.org/rB253b412acefc6abe9c221a4886e153739c4f50f4">rB253b412a</a></li>
<li>Eevee: Render: Add Normal pass output
<a class="reference external" href="http://developer.blender.org/rB55a238edd605812c3cd33b1bf1275dff85771b5e">rB55a238ed</a></li>
<li>Eevee: Add Z pass render result
<a class="reference external" href="http://developer.blender.org/rB376d42304b716da2f9bda8b55c539d39ac416281">rB376d4230</a></li>
<li>Eevee: Add new “render samples” properties
<a class="reference external" href="http://developer.blender.org/rB8cce33913162b44bfbfca523f30d546bf956fd52">rB8cce3391</a></li>
<li>Eevee: Add support for TAA/SuperSampling for final render
<a class="reference external" href="http://developer.blender.org/rBf107af351988ab93aeccad33b1d09b536844c05c">rBf107af35</a></li>
<li>Eevee: Probes: Add support for intensity tweak
<a class="reference external" href="http://developer.blender.org/rB777e1d358a3af5bb774d13ec0f03c233593f68e7">rB777e1d35</a></li>
</ul>
<p class="rubric">greasepencil-object</p>
<ul class="simple">
<li>New Split operator
<a class="reference external" href="http://developer.blender.org/rBd7a366930409ab59c69c645ceded358af15fc8aa">rBd7a36693</a></li>
<li>New option to separate Points
<a class="reference external" href="http://developer.blender.org/rB27e3b782e4af6ceed448c045cd6804d888070f8f">rB27e3b782</a></li>
<li>New Separate operator
<a class="reference external" href="http://developer.blender.org/rBe5989702ee047a1d228e9de3334e28cbff615605">rBe5989702</a></li>
<li>New Lazy Mouse option
<a class="reference external" href="http://developer.blender.org/rBe44fa493107d69741f9c76d5b643c03478067597">rBe44fa493</a></li>
<li>Add option to reproject fill on Surface
<a class="reference external" href="http://developer.blender.org/rBfa4c1ad525c86b8df40b7a33b552c6d4999b85a3">rBfa4c1ad5</a></li>
</ul>
<p class="rubric">fracture_modifier</p>
<ul class="simple">
<li>Add a limit / search radius for animated mesh binding
<a class="reference external" href="http://developer.blender.org/rBd68f53a3f3f48a040d74aaf90bda3f6e63d6b9e5">rBd68f53a3</a></li>
</ul>
</div>
<div class="compound-middle section" id="new-patches">
<h1>New Patches<a class="headerlink" href="#new-patches" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>Initial move of Object.mode to workspace
<a class="reference external" href="http://developer.blender.org/D3037">D3037</a></li>
<li>Asset Engine
<a class="reference external" href="http://developer.blender.org/D3035">D3035</a></li>
<li>Cycles: add Principled Volume shader
<a class="reference external" href="http://developer.blender.org/D3033">D3033</a></li>
</ul>
</div>
<div class="compound-middle section" id="other-projects">
<h1>Other Projects<a class="headerlink" href="#other-projects" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>Blender 2.8: Icons
<a class="reference external" href="http://developer.blender.org/T53840">T53840</a></li>
</ul>
</div>
<div class="compound-last section" id="documentation">
<h1>Documentation<a class="headerlink" href="#documentation" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>None</li>
</ul>
</div>
</div>
</description>
<guid>https://thisweekinblenderdev.github.io/2018-02-03.html</guid>
<pubDate>Sat, 03 Feb 2018 00:00:00 GMT</pubDate>
</item>
<item>
<title>2018-01-20: Weekly News</title>
<link>https://thisweekinblenderdev.github.io/2018-01-20.html</link>
<description><div class="compound">
<p class="compound-middle">Hello and welcome to another issue of <em>This Week in Blender Development</em>!
<a class="reference external" href="https://www.blender.org/">Blender</a> is the free and opensource 3D creation
suite for the next generation of artist. Follow the development on Twitter
<a class="reference external" href="https://twitter.com/BlenderDev">&#64;BlenderDev</a>.</p>
<p class="compound-middle"><em>This Week in Blender Development</em> is openly developed on
<a class="reference external" href="https://github.com/ThisWeekInBlenderDev">Github</a>
so please report any recommendations, bugs, or PRs for this website there.</p>
<p class="compound-middle">If you have idea for some great feature that you think should be part of Blender
try making a post on <a class="reference external" href="https://blender.community/c/rightclickselect/">https://blender.community/c/rightclickselect/</a></p>
<div class="tip compound-middle admonition">
<p class="first admonition-title">Tip</p>
<p class="last">Remember, you can test any changes done in <cite>master</cite> or <cite>blender2.8</cite>
by going to the <a class="reference external" href="https://builder.blender.org/download/">developmental builds download page</a></p>
</div>
<div class="compound-middle section" id="changes-to-blender">
<h1>Changes to Blender<a class="headerlink" href="#changes-to-blender" title="Permalink to this headline">¶</a></h1>
<p class="rubric">master</p>
<ul class="simple">
<li>Loop Cut: Allow mouse placement w/ numeric input
<a class="reference external" href="http://developer.blender.org/rB235f578a0d21191cf4914652e8cfc5608fc1e218">rB235f578a</a></li>
<li>Add “Delete Invalid Drivers” operator
<a class="reference external" href="http://developer.blender.org/rBc38ebf93e356a97b3013b075e1d98268df891809">rBc38ebf93</a></li>
<li>Sculpting: Add an option to hide mask in viewport
<a class="reference external" href="http://developer.blender.org/rB4d8b78b0a9b760bba2f715a7421b3fdd5e076ccf">rB4d8b78b0</a></li>
</ul>
<p class="rubric">blender2.8</p>
<ul class="simple">
<li>Outliner: Get rid of Search Menu
<a class="reference external" href="http://developer.blender.org/rB51bcf7bd5f3f21e0ff38b04965cc8413c339b3cf">rB51bcf7bd</a></li>
<li>Outliner: Remove User Preferences
<a class="reference external" href="http://developer.blender.org/rBefe1af3d11a930b539718cc566049f07316427ff">rBefe1af3d</a></li>
<li>Outliner Filtering System
<a class="reference external" href="http://developer.blender.org/rB37913cf5326a732cb94c28f96c1deb8f3965c846">rB37913cf5</a></li>
<li>Eevee: Implement Sun area lighting
<a class="reference external" href="http://developer.blender.org/rB03e432bcdbd61ccea2d74065203af199b46b2e83">rB03e432bc</a></li>
<li>Outliner: Alphabetical sorting
<a class="reference external" href="http://developer.blender.org/rB60eb897fa5f8d3683211d5416178b99231ef9166">rB60eb897f</a></li>
<li>Outliner: Rename “Active View Layer” &gt; “View Layer”
<a class="reference external" href="http://developer.blender.org/rB74f872df3a0d45cba58540f240101ce4724f11d0">rB74f872df</a></li>
<li>Outliner: View Layer: add option to add a new collection to the current view layer
<a class="reference external" href="http://developer.blender.org/rB33ddd926b769fca68bc485312ca9def847847b87">rB33ddd926</a></li>
<li>Eevee: AO: Removes samples and denoise options
<a class="reference external" href="http://developer.blender.org/rB9fd28c776938fe420782a6339e9da7c619724dae">rB9fd28c77</a></li>
<li>Eevee: SSR: Remove ray count
<a class="reference external" href="http://developer.blender.org/rB3cb2b2956b140b840ba8a481ad15df1b567d9c07">rB3cb2b295</a></li>
<li>Deps Graph: Get rid of legacy extra recalc flags
<a class="reference external" href="http://developer.blender.org/rBbf9460e3cf7a26fd939ec0e80f86bb3cebf7a71e">rBbf9460e3</a></li>
</ul>
<p class="rubric">greasepencil-object</p>
<ul class="simple">
<li>Remove simplify render options
<a class="reference external" href="http://developer.blender.org/rBb0c08068e867ea15ca50739ee7258a7cff8b583e">rBb0c08068</a></li>
<li>New operator to clean boundary strokes
<a class="reference external" href="http://developer.blender.org/rBd1f89c93628489c9e8ae9fbd25405ec75fb9701a">rBd1f89c93</a></li>
</ul>
<p class="rubric">fracture_modifier</p>
<ul class="simple">
<li>UI: move animated mesh settings to new panel
<a class="reference external" href="http://developer.blender.org/rB80671518ebc0d832ecefb2205fe143d06432e98b">rB80671518</a></li>
</ul>
</div>
<div class="compound-middle section" id="new-patches">
<h1>New Patches<a class="headerlink" href="#new-patches" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>Sample based compositor
<a class="reference external" href="http://developer.blender.org/D3003">D3003</a></li>
<li>Update image library dependencies to latest versions, fixing vulnerabilities
<a class="reference external" href="http://developer.blender.org/D3005">D3005</a></li>
</ul>
</div>
<div class="compound-middle section" id="other-projects">
<h1>Other Projects<a class="headerlink" href="#other-projects" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>Blender 2.8: Icons
<a class="reference external" href="http://developer.blender.org/T53840">T53840</a></li>
<li>Blender 2.8: Collections Icons
<a class="reference external" href="http://developer.blender.org/T53844">T53844</a></li>
</ul>
</div>
<div class="compound-last section" id="documentation">
<h1>Documentation<a class="headerlink" href="#documentation" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>None</li>
</ul>
</div>
</div>
</description>
<guid>https://thisweekinblenderdev.github.io/2018-01-20.html</guid>
<pubDate>Sat, 20 Jan 2018 00:00:00 GMT</pubDate>
</item>
<item>
<title>2018-01-13: Weekly News</title>
<link>https://thisweekinblenderdev.github.io/2018-01-13.html</link>
<description><div class="compound">
<p class="compound-middle">Hello and welcome to another issue of <em>This Week in Blender Development</em>!
<a class="reference external" href="https://www.blender.org/">Blender</a> is the free and opensource 3D creation
suite for the next generation of artist. Follow the development on Twitter
<a class="reference external" href="https://twitter.com/BlenderDev">&#64;BlenderDev</a>.</p>
<p class="compound-middle"><em>This Week in Blender Development</em> is openly developed on
<a class="reference external" href="https://github.com/ThisWeekInBlenderDev">Github</a>
so please report any recommendations, bugs, or PRs for this website there.</p>
<p class="compound-middle">If you have idea for some great feature that you think should be part of Blender
try making a post on <a class="reference external" href="https://blender.community/c/rightclickselect/">https://blender.community/c/rightclickselect/</a></p>
<div class="tip compound-middle admonition">
<p class="first admonition-title">Tip</p>
<p class="last">Remember, you can test any changes done in <cite>master</cite> or <cite>blender2.8</cite>
by going to the <a class="reference external" href="https://builder.blender.org/download/">developmental builds download page</a></p>
</div>
<div class="compound-middle section" id="changes-to-blender">
<h1>Changes to Blender<a class="headerlink" href="#changes-to-blender" title="Permalink to this headline">¶</a></h1>
<p class="rubric">master</p>
<ul class="simple">
<li>Cycles: adaptive subdivision support for panoramic cameras
<a class="reference external" href="http://developer.blender.org/rB5bd9b12dc47d6fcfb21025101b41802bb5b2edc0">rB5bd9b12d</a></li>
<li>User Prefs: app-template option to hide the cursor
<a class="reference external" href="http://developer.blender.org/rB93d30d62e6e46b0eb852c86053d9529495050c5d">rB93d30d62</a></li>
<li>User Prefs: add new flag for app-template options
<a class="reference external" href="http://developer.blender.org/rBff4c9d69ee4bf1764b6f4effa487e29e6c4ab985">rBff4c9d69</a></li>
<li>Cycles: option to make background visible through glass transparent
<a class="reference external" href="http://developer.blender.org/rB322f0223d04ac36ecc72cd01c371234da6de643c">rB322f0223</a></li>
<li>Cycles: add offscreen dicing scale and dicing camera
<a class="reference external" href="http://developer.blender.org/rBcce280dd6767bb4588a301f2b966d1b959b01f6b">rBcce280dd</a></li>
<li>Modifiers: Speed up Multires 8.7ms –&gt; 2.7ms
<a class="reference external" href="http://developer.blender.org/rB6695e390c627adbe664e499f699d66966b854007">rB6695e390</a></li>
<li>Modifiers: Speed up Multires 4.5ms –&gt; 1.4ms
<a class="reference external" href="http://developer.blender.org/rB90cd856ac34011496031eeae5a5e3a5bf2da1107">rB90cd856a</a></li>
<li>Modifiers: Speedup Subsurf 40% speedup
<a class="reference external" href="http://developer.blender.org/rBc276fef4132557118a3bcba38220e02bf4f9f1b4">rBc276fef4</a></li>
<li>UI: option not to show screen splitting widgets
<a class="reference external" href="http://developer.blender.org/rB717090f40e1aa12be26522df350d01a50d7b6316">rB717090f4</a></li>
<li>Cycles: support animated object scale in motion blur
<a class="reference external" href="http://developer.blender.org/rB25b794a39d8cff87b6df2338d020e8d4ba90eeef">rB25b794a3</a></li>
<li>Modifiers: Add deform axis for Simple Deform
<a class="reference external" href="http://developer.blender.org/rB6554207841a452cc58857232837740746a1e8b80">rB65542078</a></li>
<li>Nodes: Display image name if any in the Image and Texture Image node title
<a class="reference external" href="http://developer.blender.org/rB87607254d6d3f9ca5ebbc696a4066bf0c8fbbed4">rB87607254</a></li>
</ul>
<p class="rubric">blender2.8</p>
<ul class="simple">
<li>Eevee: Lamps: Optimize lamps CPU/Memory usage
<a class="reference external" href="http://developer.blender.org/rB0142264508925ddc02a67d5f65759ca24bafa387">rB01422645</a></li>
<li>Curve/Surface Display: UV support
<a class="reference external" href="http://developer.blender.org/rB3c6e19b30b4f2c9cf4809dfcd50097d3aeda3998">rB3c6e19b3</a></li>
<li>Curve Edit Mode: Use curve handle theme colors
<a class="reference external" href="http://developer.blender.org/rB375d27f230e41e4bcb53183082739c580f74c709">rB375d27f2</a></li>
</ul>
<p class="rubric">greasepencil-object</p>
<ul class="simple">
<li>Add Ctrl keymap while fill for free drawing
<a class="reference external" href="http://developer.blender.org/rBcefa6ca48232fd5d7e2374cc0cb886636df84d26">rBcefa6ca4</a></li>
<li>New Weight Smooth operator
<a class="reference external" href="http://developer.blender.org/rB807c7b7819b794c1554a3f8f4284b6d39e084e2e">rB807c7b78</a></li>
<li>Include Thickness of new Fill Stroke
<a class="reference external" href="http://developer.blender.org/rB40229d2ab9056eac29c579f21fe5f5bb25509e5e">rB40229d2a</a></li>
<li>New Weight Invert operator
<a class="reference external" href="http://developer.blender.org/rB0562da81669790363da629e9a92faa25ddff1e06">rB0562da81</a></li>
</ul>
<p class="rubric">fracture_modifier</p>
<ul class="simple">
<li>Experimental bind of animated vertices (other object) to shards
<a class="reference external" href="http://developer.blender.org/rB2a41da1d915215ea5e0a080caf9813872bf57e8d">rB2a41da1d</a></li>
</ul>
</div>
<div class="compound-middle section" id="new-patches">
<h1>New Patches<a class="headerlink" href="#new-patches" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>Outliner filter system – objects
<a class="reference external" href="http://developer.blender.org/D2992">D2992</a></li>
<li>Support canceling color-ramp editing with the Escape key
<a class="reference external" href="http://developer.blender.org/D2997">D2997</a></li>
</ul>
</div>
<div class="compound-middle section" id="other-projects">
<h1>Other Projects<a class="headerlink" href="#other-projects" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>None</li>
</ul>
</div>
<div class="compound-last section" id="documentation">
<h1>Documentation<a class="headerlink" href="#documentation" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>Youtube: <a class="reference external" href="https://www.youtube.com/watch?v=9Vz8UTLD0Q8">Outliner Filter: Blender 2.8 Development</a></li>
</ul>
</div>
</div>
</description>
<guid>https://thisweekinblenderdev.github.io/2018-01-13.html</guid>
<pubDate>Sat, 13 Jan 2018 00:00:00 GMT</pubDate>
</item>
<item>
<title>2018-01-06: Weekly News</title>
<link>https://thisweekinblenderdev.github.io/2018-01-06.html</link>
<description><div class="compound">
<p class="compound-first">Again, sorry for missing last weeks report but due to the
holidays last week has been included in this report.
Next week will be back to normal.</p>
<p class="compound-middle">Hello and welcome to another issue of <em>This Week in Blender Development</em>!
<a class="reference external" href="https://www.blender.org/">Blender</a> is the free and opensource 3D creation
suite for the next generation of artist. Follow the development on Twitter
<a class="reference external" href="https://twitter.com/BlenderDev">&#64;BlenderDev</a>.</p>
<p class="compound-middle"><em>This Week in Blender Development</em> is openly developed on
<a class="reference external" href="https://github.com/ThisWeekInBlenderDev">Github</a>
so please report any recommendations, bugs, or PRs for this website there.</p>
<p class="compound-middle">If you have idea for some great feature that you think should be part of Blender
try making a post on <a class="reference external" href="https://blender.community/c/rightclickselect/">https://blender.community/c/rightclickselect/</a></p>
<div class="tip compound-middle admonition">
<p class="first admonition-title">Tip</p>
<p class="last">Remember, you can test any changes done in <cite>master</cite> or <cite>blender2.8</cite>
by going to the <a class="reference external" href="https://builder.blender.org/download/">developmental builds download page</a></p>
</div>
<div class="compound-middle section" id="changes-to-blender">
<h1>Changes to Blender<a class="headerlink" href="#changes-to-blender" title="Permalink to this headline">¶</a></h1>
<p class="rubric">master</p>
<ul class="simple">
<li>Cycles: CUDA support for rendering scenes that don’t fit on GPU
<a class="reference external" href="http://developer.blender.org/rBc621832d3d358cd7648d60c16e1685050c4f6778">rBc621832d</a></li>
</ul>
<p class="rubric">blender2.8</p>
<ul class="simple">
<li>Outliner: Support multiple-objects drag’n’drop into collections
<a class="reference external" href="http://developer.blender.org/rBfb4cd136a7cf94f2fda2d3a2c8fb01d73eb878cb">rBfb4cd136</a></li>
<li>Outliner/Collections: Add remove selected objects operator
<a class="reference external" href="http://developer.blender.org/rB10f0635d326e561dfea2675cdd5465ca3b861f24">rB10f0635d</a></li>
<li>Outliner/Collections: Add selected objects operator
<a class="reference external" href="http://developer.blender.org/rBeaf559d52aa56faf4f1d76781ac4fc75ca31119e">rBeaf559d5</a></li>
<li>Outliner: Right mouse menu for collections editing
<a class="reference external" href="http://developer.blender.org/rBd9b4d6ee5a4cb231070a0bcb5ac1e7b8c9c7f2f7">rBd9b4d6ee</a></li>
<li>Outliner: Master Collection is always expanded
<a class="reference external" href="http://developer.blender.org/rBa9fe94245b9727858f9175c302196a7c722f9181">rBa9fe9424</a></li>
</ul>
<p class="rubric">greasepencil-object</p>
<ul class="simple">
<li>Add new simplify fixed operator
<a class="reference external" href="http://developer.blender.org/rBabdce7f6acbce17f338f837a2ecf360b4801949b">rBabdce7f6</a></li>