Skip to content

Commit 1e3b586

Browse files
committed
Merge branch 'release/v3.7.1'
2 parents b0084be + 5ca45b2 commit 1e3b586

File tree

202 files changed

+24543
-20897
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

202 files changed

+24543
-20897
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,4 +242,4 @@ $RECYCLE.BIN/
242242
/tools/windows/htmlhelp/input
243243
/tools/windows/htmlhelp/output
244244
/tools/windows/htmlhelp/debug.txt
245-
/tools/windows/htmlhelp/flielist.txt
245+
/tools/windows/htmlhelp/filelist.txt

README.md

+5-5

appveyor.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,19 @@ environment:
1919
platform: x64
2020
bin_dir: bin64
2121
artifact_suffix: -Win64
22-
PlatformToolset: v140
2322
- configuration: Release-SSE2
2423
platform: Win32
2524
bin_dir: bin32
2625
artifact_suffix: -Win32-sse2
27-
PlatformToolset: v140
2826
- configuration: Release
2927
platform: Win32
3028
bin_dir: bin32
3129
artifact_suffix: -Win32
32-
PlatformToolset: v140
3330

3431
before_build:
35-
- ps: |
36-
$env:devenv = $env:VS140COMNTOOLS + '\..\IDE\devenv'
37-
& $env:devenv windows\vs10\povray.sln /upgrade
3832

3933
build:
40-
project: windows/vs10/povray.sln
34+
project: windows/vs2015/povray.sln
4135
parallel: true
4236
verbosity: minimal
4337

changes.txt

+99-6
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,98 @@ Changes between 3.7.1-TBD and 3.7.1
3838
TBD
3939

4040

41-
Changes between 3.7.1-beta.2 and 3.7.1-TBD
42-
==========================================
41+
Changes between 3.7.1-beta.5 and 3.7.1-TBD
42+
=============================================
43+
44+
Fixed or Mitigated Bugs
45+
-----------------------
46+
47+
Reported via GitHub:
48+
49+
- #260 ("Pavement pattern broken")
4350

44-
The focus of this version has been on fixing bugs.
51+
Miscellaneous:
52+
53+
- Minor updates to the documentation.
54+
55+
56+
Changes between 3.7.1-beta.4 and 3.7.1-beta.5
57+
=============================================
58+
59+
The focus of this version has been on improving the Visual Studio 2015-based
60+
Windows build process, as well as reclaiming some performance lost earlier
61+
during the development of 3.7.1.
62+
63+
Fixed or Mitigated Bugs
64+
-----------------------
65+
66+
Reported via GitHub:
67+
68+
- #226 ("Fix use of stat in unix/configure.ac")
69+
- #257 ("Text in Windows "Open with" file menu")
70+
71+
Miscellaneous:
72+
73+
- Restored performance of user-defined functions (e.g. in isosurfaces) as
74+
well as patterns with special turbulence handling (agate, marble, wood,
75+
spiral1, spiral2).
76+
77+
Other Noteworthy
78+
----------------
79+
80+
- To avoid overly stringent software requirements for building custom
81+
Windows binaries, the VS2015 project files are now set up to generate
82+
non-XP-compatible binaries by default; XP-compatible binaries can still
83+
be generated through a more complex alternative build process.
84+
85+
86+
Changes between 3.7.1-beta.3 and 3.7.1-beta.4
87+
=============================================
88+
89+
The focus of this version has been on fixing bugs, as well getting
90+
working XP-comatible binaries out of Visual Studio 2015.
91+
92+
Fixed or Mitigated Bugs
93+
-----------------------
94+
95+
Reported via GitHub:
96+
97+
- #241 ("Windows Build Instructions Misleading")
98+
99+
Reported via the Newsgroups:
100+
101+
102+
(2017-02-19, povray.beta-test, "beta.3 and ./ and ../ weirdness")
103+
Paths starting with "../../" not handled properly in POV-Ray for Windows
104+
105+
106+
(2017-02-22, povray.beta-test, "ior.inc fails in 3.7.1 beta 3")
107+
Parse Error when including "ior.inc".
108+
109+
110+
(2017-02-20, povray.beta-test, "Re: POV-Ray v3.7.1-beta.3 Released")
111+
SSE2 support not properly detected on Windows XP
112+
113+
114+
(2017-02-22, povray.beta-test, "Wrong error message building Windows console version")
115+
Wrong file location specified for `syspovconfig.h`.
116+
117+
Miscellaneous:
118+
119+
- Fixed two demo scenes (`incdemo/sort.pov` and `textures/normals/normmap.pov`).
120+
121+
Other Noteworthy
122+
----------------
123+
124+
- Migrated to Visual Studio 2015 as the designated official build tool.
125+
As of this beta, Visual Studio 2010 is no longer supported.
126+
127+
128+
Changes between 3.7.1-beta.2 and 3.7.1-beta.3
129+
=============================================
130+
131+
The focus of this version has been on fixing bugs, as well as adding
132+
hardware-specific performance optiomizations.
45133

46134
Fixed or Mitigated Bugs
47135
-----------------------
@@ -63,18 +151,23 @@ Reported via the Newsgroups:
63151
(2017-01-27, povray.beta-test, "utf8")
64152
Crash when using `charset utf8`.
65153

154+
155+
(2017-02-16, povray.beta-test, "Windows beta.2-QA09T.msvc10.win64 does not accept "./" as a path")
156+
Special directory name `.` not handled properly in POV-Ray for Windows.
157+
66158
Miscellaneous:
67159

68160
- Optional fields in macro parameters or tuple assignments now accept
69161
uninitialized directory entries.
70162
- Some minor fixes to the Windows inbuilt help.
163+
- Increased thread stack size on Linux machines.
71164

72165
Other Noteworthy
73166
----------------
74167

75-
New Sample Scenes:
76-
77-
- A new sample scene has been added to demonstrate the `aoi` pattern.
168+
- Added a new sample scene to demonstrate the `aoi` pattern.
169+
- Added Intel optimizations for noise (courtesy of Intel; requires
170+
AVX2/FMA3-capable CPU).
78171

79172

80173
Changes between 3.7.1-beta.1 and 3.7.1-beta.2

distribution/include/ior.inc

+6-6
Original file line numberDiff line numberDiff line change
@@ -81,27 +81,27 @@
8181
// from refractive index n (nD) and nominal dispersion disp (nG-nB)
8282
#macro IorData_n_disp (n, optional disp)
8383
#local iorResult = n;
84-
#ifdef(local(disp))
84+
#ifdef(local.disp)
8585
#local dispResult = 1+disp/(n-disp/2);
8686
#end
87-
( iorResult , local(dispResult) )
87+
( iorResult , local.dispResult )
8888
#end
8989

9090
// from typical refractive index range n1 to n2 (nD) and typical nominal dispersion disp1 to disp2 (nG-nB)
9191
#macro IorData_n_disp_Range (n1, optional n2, optional disp1, optional disp2)
92-
#ifdef(local(n2))
92+
#ifdef(local.n2)
9393
#local n = Average(n1,n2);
9494
#else
9595
#local n = n1;
9696
#end
97-
#ifdef(local(disp1))
98-
#ifdef(local(disp2))
97+
#ifdef(local.disp1)
98+
#ifdef(local.disp2)
9999
#local disp = Average(disp1,disp2);
100100
#else
101101
#local disp = disp1;
102102
#end
103103
#end
104-
IorData_n_disp(n, local(disp))
104+
IorData_n_disp(n, local.disp)
105105
#end
106106

107107
// from refractive indices at Fraunhofer lines G, D and B
Binary file not shown.

distribution/scenes/incdemo/sort.pov

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
global_settings {assumed_gamma 1.0}
1515

1616
camera { orthographic
17-
location -z*10
17+
location -z*10
1818
look_at 0
1919
}
2020
#default { finish { phong 1 phong_size 5 } }
@@ -77,18 +77,18 @@ Sort_Array(Numbers)
7777
#end
7878

7979
text{
80-
//ttf "timrom.ttf", "Colors before sorting:", .1, 0
81-
ttf "arial.ttf", "Colors before sorting:", .1, 0
80+
ttf "timrom.ttf", "Colors before sorting:", .1, 0
81+
//ttf "arial.ttf", "Colors before sorting:", .1, 0
8282
pigment { rgb 1 }
8383
scale .8
8484
translate <-6, 3.9>
8585
}
8686

8787
CreateBoxes(1)
8888

89-
text{
90-
// ttf "timrom.ttf", "Colors after sorting (by brightness):", .1, 0
91-
ttf "arial.ttf", "Colors after sorting (by brightness):", .1, 0
89+
text{
90+
ttf "timrom.ttf", "Colors after sorting (by brightness):", .1, 0
91+
//ttf "arial.ttf", "Colors after sorting (by brightness):", .1, 0
9292
pigment { rgb 1 }
9393
scale .8
9494
translate <-6, -1.1>

distribution/scenes/textures/normals/normmap.pov

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ global_settings { assumed_gamma 1.0 }
2727

2828
#default {
2929
pigment { White }
30-
normal { bump_size 1.5 }
30+
normal { bumps bump_size 1.5 }
3131
finish { phong 0.8 phong_size 200 }
3232
}
3333

19.3 KB
24.5 KB
15.1 KB
44.6 KB
28.2 KB
21.8 KB
11.8 KB
13.9 KB
33.7 KB
8.23 KB
38.2 KB
35.1 KB
21 KB
23.6 KB
6.7 KB
24.2 KB
6.99 KB
25.1 KB

doc/html/images/5/51/RefImgLemon.png

51.5 KB
38.9 KB
15.3 KB
15.2 KB
33.9 KB
17.1 KB
6.17 KB
14.7 KB
19.3 KB
19.3 KB
13.9 KB
34.4 KB
26.5 KB

doc/html/images/7/72/RefImgOvus3D.png

409 Bytes
49.2 KB
10.1 KB
21.7 KB
41.8 KB
25 KB
34.9 KB
55.3 KB
6.47 KB
40.6 KB
24.5 KB
25.1 KB
21.8 KB
14.6 KB
21.2 KB
19.2 KB
27.8 KB
23 KB
39.8 KB
9.83 KB
13.8 KB
18.5 KB
51.2 KB
19.9 KB
21.8 KB
37.6 KB
22.8 KB
7.54 KB
12.8 KB

doc/html/index.html

+5-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<table class="HeaderFooter" width="100%">
4646
<tr>
4747
<td colspan=5 align="left" class="HeaderFooter">
48-
POV-Ray for Unix <strong class="HeaderFooter">version 3.7</strong>
48+
POV-Ray for Unix <strong class="HeaderFooter">version 3.7.1</strong>
4949
</td>
5050
</tr>
5151
<tr >
@@ -62,6 +62,9 @@
6262
</tr>
6363
</table>
6464

65+
<!--BEGIN DO NOT alter or move--->
66+
<!--END DO NOT alter or move--->
67+
6568
<table class="centered" width="700px" cellpadding="0" cellspacing="10">
6669
<tr>
6770
<td><img class="center" width="576px" src="images/3/34/DocImgPovlogotext.jpg"></td>
@@ -70,7 +73,7 @@
7073
</tr>
7174
</table>
7275
<h2>Introduction</h2>
73-
<p>Welcome to the POV-Ray for Unix version 3.7 documentation.</p>
76+
<p>Welcome to the POV-Ray for Unix version 3.7.1 documentation.</p>
7477
<p>This content is divided into three major sections. A <a href="u1_1.html#u1_1">platform</a> specific section, a <a href="t2_1.html#t2_1">tutorial</a> section, and a <a href="r3_1.html#r3_1">reference</a> section. New to POV-Ray? You'd most likely want to begin with the tutorial section. Need to locate something quickly? The list of <a href="r3_3.html#r3_3_1_2">identifiers and keywords</a> is a good place to start. See the <a href="t2_1.html#t2_1_4_1">changes and new features</a> summary for what's new with this release. </p>
7578
<p>Enjoy!</p>
7679

doc/html/povray37.css

+14
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,20 @@ td p.Explain {
486486
margin-top: 7pt;
487487
}
488488

489+
font.New {
490+
color: #3300cc;
491+
font-weight: bold;
492+
font-style: oblique;
493+
font-size: 1.05em;
494+
}
495+
496+
font.Change {
497+
color: #cc0033;
498+
font-weight: bold;
499+
font-style: oblique;
500+
font-size: 1.05em;
501+
}
502+
489503
/* remove the following statement to restore the specified left margin on the note and related messages */
490504
.Note, .Hint, .Warning, .BeAware {
491505
margin-left: 0pt;

0 commit comments

Comments
 (0)