File tree Expand file tree Collapse file tree 5 files changed +301
-40
lines changed Expand file tree Collapse file tree 5 files changed +301
-40
lines changed Original file line number Diff line number Diff line change 55
66branches :
77 except :
8+ # We're not using tags to trigger deployment, so there's no need to re-build tagged commits.
9+ # All our tags start with a version number, including a leading `v`.
810 - /^v[0-9]/
11+ # Branches starting with "housekeeping" are intended for small changes that do not affect
12+ # the software per se (e.g. fixing typos in documentation or comments); no activity desired.
13+ - /^housekeeping/
14+ # Branches ending with "-stable" are used only to point to other branches,
15+ # which should already have been test-built at this point; no activity needed.
16+ - /-stable$/
917
1018language : cpp
1119
Original file line number Diff line number Diff line change @@ -6,9 +6,12 @@ branches:
66 # Special branch "coverity_scan" is used only to trigger Coverity Scan;
77 # no AppVeyor activity needed.
88 - coverity_scan
9+ # Branches starting with "housekeeping" are intended for small changes that do not affect
10+ # the software per se (e.g. fixing typos in documentation or comments); no activity desired.
11+ - /^housekeeping/
912 # Branches ending with "-stable" are used only to point to other branches,
1013 # which should already have been test-built at this point; no activity needed.
11- - /.* -stable/
14+ - /-stable$ /
1215
1316# We're not using tags to trigger deployment, so there's no need to re-build tagged commits.
1417skip_tags : true
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ New Features
9090 details.
9191 - Anti-aliasing now supports a new mode 3, which can actually serve as a
9292 generic oversampling mechanism not only suited to perform edge
93- anti-aliasing, but also to successtully suppress moire patterns as well as
93+ anti-aliasing, but also to successfully suppress moire patterns as well as
9494 reduce image noise from stochastic mechanisms (e.g. jittered area lights,
9595 subsurface light transport or micronormals). The mathematical background
9696 and parameterization is similar to that of adaptive focal blur.
@@ -116,6 +116,11 @@ Performance Improvements
116116 `#if(false) ... #end`), especially for blocks containing few directives
117117 (stuff that begins with `#`).
118118
119+ Miscellaneous Improvements
120+ --------------------------
121+
122+ - String literals are no longer limited to 256 characters.
123+
119124Fixed or Mitigated Bugs
120125-----------------------
121126
You can’t perform that action at this time.
0 commit comments