Skip to content

Commit 036b84a

Browse files
authored
Miscellaneous Housekeeping (#409)
- Some fixes to `changes.txt`. - Update automated build configs. - Clean up whitespace in `parser_strings.cpp`. - Update `revision.txt`.
1 parent 37b99bd commit 036b84a

File tree

5 files changed

+301
-40
lines changed

5 files changed

+301
-40
lines changed

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@ env:
55

66
branches:
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

1018
language: cpp
1119

appveyor.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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.
1417
skip_tags: true

changes.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
119124
Fixed or Mitigated Bugs
120125
-----------------------
121126

0 commit comments

Comments
 (0)