forked from POV-Ray/povray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
revision.txt
7001 lines (4321 loc) · 235 KB
/
revision.txt
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
#----------------------------------------------------------------------------
# Note: To view an original flyspray bug report (FS#xxx), replace the leading
# FS# of the bug ID with the URL http://bugs.povray.org/.
# For example, to read FS#270, visit http://bugs.povray.org/270.
# To view a referenced newsgroup posting (<[email protected]>), prefix
# the message ID with the URL http://news.povray.org/.
# For example, to read <[email protected]>, visit:
# http://news.povray.org/<[email protected]>.
# The '<' and '>' are optional (if using a shell you may want to omit them).
#----------------------------------------------------------------------------
---------------------------------
Changes between 3.7.RC7 and 3.7.0
---------------------------------
Change 6048 on 2013/09/14 by jholsenback@linux-c2bm
picking up a last minute change
Change 6047 on 2013/09/14 by jgrimbert@smpdirect
fix of formula to restore backward compatibility of heightfield on
red+green non-indexed color image (not only backward compatible, but also
correct formula to cover the full range as intended and documented) Added
also comment to explain why the indexed-image code should NOT be fixed:
despite providing more range, index*257 would break the backward
compatibility, so index*256 should remains (for historical reasons only)
Change 6037 on 2013/09/01 by jholsenback@linux-c2bm
updates to changes/revision files
Change 6036 on 2013/09/01 by jholsenback@linux-c2bm
cleanup... updates and deletes
Change 6035 on 2013/09/01 by jholsenback@linux-c2bm
delete outdated files
Change 6034 on 2013/09/01 by jholsenback@linux-c2bm
several more changes to unix man page
Change 6028 on 2013/08/29 by jholsenback@linux-c2bm
follow up to change #6027
Change 6027 on 2013/08/29 by jholsenback@linux-c2bm
updates to unix man page
Change 6026 on 2013/08/27 by chrisc@x8
add warranty disclaimer to console output
Change 6025 on 2013/08/27 by chrisc@x8
remove outdated support header files for borland, mingw and watcom
compilers. if support is needed for any of the above, it would be better to
start a fresh header as the old ones have not been used since 3.6
Change 6024 on 2013/08/27 by chrisc@x8
correct typo in rename
Change 6023 on 2013/08/27 by chrisc@x8
remove old 4BPP toolbar icons as 16-color mode support isn't really
relevant anymore
Change 6022 on 2013/08/27 by chrisc@x8
rename a few files whose names were upper-case
Change 6018 on 2013/08/27 by chrisc@x8
move SubmitMinidump to internal area
Change 6013 on 2013/08/24 by chrisc@x8
another tweak to the about box
Change 6012 on 2013/08/24 by chrisc@x8
update about bitmap to remove explicit URL's and add support to about
window code to make some areas act as hyperlinks
Change 6011 on 2013/08/24 by chrisc@x8
fix issue with editor selection due to off-by-one line numbers. make use of
SetCaretPos consistent
Change 6008 on 2013/08/20 by clipka@xcli-pc-7
fix for FS#304
Change 6007 on 2013/08/18 by clipka@xcli-pc-7
fix cpuinfo stub for unofficial builds
Change 6005 on 2013/08/18 by chrisc@x8
move about.psd from bitmaps/source to smp/internal/windows
Change 6004 on 2013/08/18 by chrisc@x8
move #undef back inside official code block
Change 6002 on 2013/08/18 by chrisc@x8
added some files left out of previous submissions
Change 5997 on 2013/08/18 by thorsten@host26
adds Mac xcode project and support files, still some compile errors due to
misconfigured paths etc. Big issues resolved though.
Change 5996 on 2013/08/18 by clipka@cli-pc-7
minor indentation cleanup of various sample scene files
Change 5994 on 2013/08/18 by chrisc@x8
swathe of windows changes for 3.7 AGPL3 release. Most visible is removal of
the splash window and updating of the about dialog. 'Tip of the day'
feature removed. Licensing clarified for pvbitmap.cpp/.h. pvlegal.h updated
to reflect AGPL3. readme.html/.txt updated. Import libraries added for
povcmax so as to allow cmedit to link without it. Several functions only
used in official builds moved to new file 'official.h'. Many other changes
related to official vs unofficial builds.
Change 5993 on 2013/08/18 by chrisc@x8
move Intel CPU info code to legacy license area; add stub for
unofficial builds
Change 5992 on 2013/08/18 by chrisc@x8
add BSD-style license header to chi2.cpp as discussed with author
Change 5991 on 2013/08/18 by chrisc@x8
remove some distribution license-related files that are no longer required
Change 5990 on 2013/08/18 by chrisc@x8
update a few unix files to reflect AGPL
Change 5984 on 2013/08/11 by thorsten@xhost26
first version of Mac display code for a preview window created by the
terminal application
Change 5983 on 2013/08/11 by thorsten@xhost26
clean up Mac tree
Change 5982 on 2013/08/09 by chrisc@x8
tweak console project, remove unused codemax project
Change 5981 on 2013/08/09 by chrisc@x8
remove outdated makefiles
Change 5979 on 2013/08/09 by chrisc@x8
remove vs8 and vs9 solutions
Change 5978 on 2013/08/07 by chrisc@x8
integrate flohmuller branch to trunk
Change 5977 on 2013/08/07 by chrisc@x8
tweaks related to console build (windows version)
Change 5962 on 2013/07/28 by chrisc@x8
remove all dependence on codemax header files
Change 5961 on 2013/07/28 by chrisc@x8
move codemax source to //depot/povray/smp/legacy-license/codemax/...
Change 5960 on 2013/07/27 by chrisc@x8
move cmedit source to //depot/povray/smp/windows/cmedit
Change 5958 on 2013/07/27 by chrisc@x8
integrate flohmuller branch to trunk
Change 5946 on 2013/07/22 by clipka@cli-pc-7
fix filetype of prebuild.sh (unix specific)
Change 5940 on 2013/07/21 by chrisc@x8
first pass at explicitly assigning licences to individual source files in
the distribution tree. Notes: fish13 has been deleted, and the Insert Menu
and Templates sub-trees have not been updated
Change 5936 on 2013/07/20 by jholsenback@linux-c2bm
corrections to a malformed regex used to fill a script variable
Change 5922 on 2013/07/18 by clipka@cli-pc-7
trivial file header fix
Change 5915 on 2013/07/14 by chrisc@x8
change headers to reflect AGPL; remove beta-test boilerplate
Change 5911 on 2013/06/23 by jgrimbert@smpdirect
fixed typo in warp allocation: spherical warp would have been reported
as cylindrical warp in case of leak or failure to allocate
Change 5908 on 2013/06/13 by jgrimbert@smpdirect
corrected a segmentation fault that can occur when starting povray from
within blender (unix specific)
Change 5907 on 2013/06/09 by jgrimbert@smpdirect
addressing FS#294 splines are not thread safe
Change 5906 on 2013/05/13 by chrisc@x8
integrate flohmuller branch to trunk
Change 5901 on 2013/04/21 by chrisc@x8
integrate flohmuller branch to trunk
Change 5899 on 2013/04/18 by chrisc@x8
integrate flohmuller branch to trunk
Change 5897 on 2013/04/17 by jholsenback@linux-c2bm
updates to changes/revision files
Change 5896 on 2013/04/17 by chrisc@x8
integrate flohmuller branch to trunk
Change 5890 on 2013/04/13 by jholsenback@linux-c2bm
follow up to change #5889 corrected typo
Change 5889 on 2013/04/13 by jholsenback@linux-c2bm
rename a distribution template file that had spaces in it's filename
Change 5884 on 2013/04/06 by clipka@cli-pc-7
completed rollback of change #5876
Change 5883 on 2013/04/03 by jholsenback@linux-c2bm
addressing FS#262 linux sources being compiled twice
Change 5882 on 2013/04/02 by clipka@cli-pc-7
partical rollback of change #5876 (radiosity)
Change 5880 on 2013/03/31 by jholsenback@linux-c2bm
follow up to change #5859 (consistency)
Change 5878 on 2013/03/30 by clipka@cli-pc-7
follow up to change #5877 (minor comment update)
Change 5877 on 2013/03/30 by thorsten@thorsten-pc-2012
moves some code to frontend, where it is needed
Change 5876 on 2013/03/30 by thorsten@thorsten-pc-2012
adds back experimental warning for radiosity and adds experimental warning
for gamma handling
Change 5867 on 2013/03/16 by clipka@cli-pc-7
cleaned up our jpeg code to use the proper constants for the jpeglib's
custom "boolean" type (we erroneously passed standard C++ bool constants
instead, which could lead to compile errors on some systems)
Change 5859 on 2013/03/10 by jholsenback@linux-c2bm
activate one message de-activate another
Change 5858 on 2013/03/10 by jholsenback@linux-c2bm
suppress what appears to be a duplicate version related message
Change 5857 on 2013/03/08 by jholsenback@linux-c2bm
bump unix VERSION to 3.7.0
Change 5856 on 2013/03/08 by jholsenback@linux-c2bm
bump VERSION to 3.7.0
Change 5854 on 2013/03/08 by jholsenback@linux-c2bm
rollback change #5843
Change 5853 on 2013/03/08 by jholsenback@linux-c2bm
rollback change #5842
Change 5852 on 2013/03/08 by jholsenback@linux-c2bm
rollback change #5841
Change 5851 on 2013/03/08 by clipka@cli-pc-7
fixes for CID#967299 - CID#967301 resource leak
Change 5850 on 2013/03/08 by clipka@cli-pc-7
fix for CID#967298 resource leak
Change 5849 on 2013/03/08 by jholsenback@linux-c2bm
rollback change #5840
Change 5848 on 2013/03/08 by clipka@cli-pc-7
fixes for CID#967302 and CID#967303 resource leak
Change 5846 on 2013/03/08 by clipka@cli-pc-7
fixes FS#274 light source fading doesn't work properly with
area_illumination and subsurface scattering
Change 5843 on 2013/03/06 by jholsenback@linux-c2bm
addressing CID's# 967358-967362 Uninitialized variables
Change 5842 on 2013/03/06 by jholsenback@linux-c2bm
addressing CID's# 967337-967345 Uninitialized scalar variables
Change 5841 on 2013/03/06 by jholsenback@linux-c2bm
addressing CID's# 967333-967336 Uninitialized scalar variables
Change 5840 on 2013/03/06 by jholsenback@linux-c2bm
addressing CID# 967350 Uninitialized pointer read
Change 5820 on 2013/03/01 by clipka@cli-pc-7
minor fix to radiosity statistics (octree samples/node)
Change 5819 on 2013/02/25 by clipka@cli-pc-7
minor but effective changes to octree code for improved performance
in radiosity-heavy scenes
Change 5816 on 2013/02/23 by jholsenback@linux-c2bm
addressing CID #967264 non array delete used on array "str"
Change 5815 on 2013/02/23 by clipka@cli-pc-7
fix for FS#271 (old behaviour is retained for pre-3.7 scenes)
Change 5814 on 2013/02/21 by clipka@cli-pc-7
fixes a potential illegal memory access when reading a broken .pot
(16-bit greyscale GIF) file, detected as Coverity issue CID #967365
should also solve CID #967363 and #967364 along the way
Change 5812 on 2013/02/17 by chrisc@x8
update source code readme.html
Change 5808 on 2013/02/17 by chrisc@x8
fix unquoted path in shell extension registration and add registry key
backups for uninstall
Change 5807 on 2013/02/14 by chrisc@x8
minor setup tweak (windows version)
Change 5806 on 2013/02/14 by chrisc@x8
update about box image (windows version)
Change 5805 on 2013/02/14 by chrisc@x8
update keywords used for context-sensitive help (windows version)
Change 5804 on 2013/02/14 by chrisc@x8
change copyright date to 2013
Change 5802 on 2013/02/12 by chrisc@x8
update windows help file
Change 5801 on 2013/02/11 by chrisc@x8
integrate flohmuller branch to trunk
Change 5796 on 2013/02/10 by jholsenback@linux-c2bm
updates to changes/revision files
-----------------------------------
Changes between 3.7.RC6 and 3.7.RC7
-----------------------------------
Change 5795 on 2013/02/10 by chrisc@x8
add Append_File INI option (same as +GP)
Change 5792 on 2013/02/09 by chrisc@x8
follow up to #5786: write banner to stream each time we open for append,
unless the stream is debug. without this it's often difficult to determine
where a new render starts. we don't do this for the debug stream as we
presume the user wants to format it as they see fit
Change 5791 on 2013/02/09 by chrisc@x8
add Jerome Grimbert to contributing developer list
Change 5789 on 2013/02/07 by chrisc@x8
update to insert menu from Friedrich Lohmueller
Change 5788 on 2013/02/06 by clipka@cli-pc-7
addendum to change #5786
Change 5787 on 2013/02/06 by clipka@cli-pc-7
fixed a portability issue of change #5784
Change 5786 on 2013/02/06 by thorsten@thorsten-pc-2012
add +GP option, which allows users to append streamed console to
existing console stream output file(s). Further, this option is now
forced-on internally for the second frame of an animation,so output streams
are appended. This has the side effect that the command-line option can
be used to append all animation output to an existing file as well
Change 5784 on 2013/02/04 by clipka@cli-pc-7
some minor code sanitizing
Change 5783 on 2013/02/04 by clipka@cli-pc-7
added even more const modifiers to the code
Change 5782 on 2013/02/03 by clipka@cli-pc-7
upgraded zlib to version 1.2.7 windows VS
Change 5778 on 2013/02/02 by clipka@cli-pc-7
addendum to change #5777
Change 5777 on 2013/02/02 by clipka@cli-pc-7
upgraded libpng and libjpeg to versions 1.5.14 and 9 respectively in
windows VS
Change 5774 on 2013/02/02 by jholsenback@linux-c2bm
conditionally filter indexentry tags from the unx and mac doc-sets, leaving
them in the windows docs, as they are required to produce searchable
index in chm file
Change 5773 on 2013/02/01 by chrisc@x8
fix a few minor UI issues
Change 5772 on 2013/02/01 by jholsenback@linux-c2bm
update changes/revision file for RC7
Change 5771 on 2013/02/01 by clipka@cli-pc-7
fix for FS#270: render abort-continue (+C) sometimes skips blocks
Change 5770 on 2013/01/30 by clipka@cli-pc-7
added plenty of const modifiers to the code; kicked out a few unused
parameters and one piece of unused code
Change 5769 on 2013/01/30 by clipka@cli-pc-7
a few signedness fixes in image handling code
Change 5768 on 2013/01/29 by clipka@cli-pc-7
updated copyright information for some 3rd party libraries
Change 5767 on 2013/01/29 by jholsenback@linux-c2bm
bump version to RC7 so unix build packages get branded properly
Change 5766 on 2013/01/29 by jholsenback@linux-c2bm
updated changes/revision files
Change 5764 on 2013/01/29 by clipka@cli-pc-7
a few whitespace fixes in revision.txt
Change 5763 on 2013/01/28 by chrisc@x8
fix a long-standing bug where pressing 'pause' during a parse or render
could sometimes put the frontend/backend sync into an unrecoverable state.
the root cause was the fact that even if a call to the backend's pause
method succeeds (e.g. the backend state correctly transitions to
SceneData::Scene_Paused in the case of the parser), it is still possible
for the task thread to move to Scene_Ready if the parser doesn't
call Task::Cooperate() before finishing. the frontend code has until now
assumed that if a call to e.g. RenderFrontend::PauseParser() succeeded,
the parser would stay paused until told to resume or stop.
Change 5762 on 2013/01/28 by chrisc@x8
add the proportion of the image in X and Y directions to the pixel offset
displayed when the mouse hovers over the render window. e.g. if the mouse
is at X=25 Y=50 of a 200x200 pixel render, the window title will
show "25,50 [0.125,0.250]". this is to make it easier to work out
row/column values for entering into the command-line for partial renders.
Change 5761 on 2013/01/28 by chrisc@x8
add new option to prevent the system from sleeping whilst a render is in
progress. by default this is selected.
Change 5760 on 2013/01/28 by chrisc@x8
add an entry to the default tools menu to browse the sample scenes folder.
Change 5758 on 2013/01/28 by chrisc@x8
add standard declares to the user keywords file.
Change 5757 on 2013/01/28 by chrisc@x8
make the shortcuts placed on the desktop shorter, as windows usually hides
the end of them.
Change 5755 on 2013/01/27 by chrisc@x8
Fix for FS#150: Windows file association problems
Fix for FS#224: Keyword Completion does not work for several names
Various fixes/improvements to the way Windows INSTALL works and how the
documents path is auto-detected if not specified
Change 5754 on 2013/01/27 by chrisc@x8
Fix for FS#153: Error determining I/O permissions when using .ini file
Change 5753 on 2013/01/27 by chrisc@x8
Fix for FS#232: illegal map_type usage reporting. Additionally parser also
now issues an error for invalid interpolate values as well
Change 5751 on 2013/01/27 by chrisc@x8
Bump benchmark version to 2.01. This is to avoid comparison with the 2.00
used in various prior betas (primarily due to changes in the renderer
rather than the benchmark itself)
Change 5750 on 2013/01/27 by clipka@cli-pc-7
Replaced access declarations (already deprecated in C++98,
dropped in C++11) with using declarations
Change 5748 on 2013/01/25 by chrisc@x8
Adds a few more options to the editor tab right-click menu as suggested in FS#135
Change 5747 on 2013/01/24 by chrisc@x8
Fix for FS#109: Debug_File no longer appends frame-by-frame debug data
Change 5746 on 2013/01/22 by clipka@cli-pc-7
Fix for FS#267: Bug in "sor" primitive leads to random black
artifacts in radiosity scenes
Change 5745 on 2013/01/21 by clipka@cli-pc-7
Minor changes to address issues uncovered by static code analysis
Change 5743 on 2013/01/20 by clipka@cli-pc-7
Fix for FS#266: command line options in ini files don't accept quoted
strings as parameters and other flaws found by means of static code
analysis, plus minor code changes to aid in static code analysis
Change 5742 on 2013/01/19 by clipka@cli-pc-7
Addressing CID#967224: Coverity static software analysis
Change 5741 on 2013/01/19 by clipka@cli-pc-7
Addressing CID#967248: Coverity static software analysis
Change 5740 on 2013/01/19 by clipka@cli-pc-7
Addressing CID#967249: Coverity static software analysis
Change 5739 on 2013/01/19 by clipka@cli-pc-7
Addressing CID#967420: Coverity static software analysis
Change 5738 on 2013/01/11 by clipka@cli-pc-7
Partial fix for FS#265 supress clang compilation warnings
Change 5732 on 2012/12/15 by clipka@cli-pc-7
Follow-up: hotfix for #5731
Change 5731 on 2012/12/15 by clipka@cli-pc-7
Fixed a bug in file-backed image container found by code review
Change 5730 on 2012/12/15 by clipka@cli-pc-7
Housekeeping: indentations and comments
Change 5727 on 2012/11/12 by clipka@cli-pc-7
As a follow-up to change #5719: added new source files to VS10 project
Change 5726 on 2012/11/12 by clipka@cli-pc-7
Update to change #5710, to avoid hard-coding the value for boost::TIME_UTC
aka boost::TIME_UTC_. Also renamed _TIME_UTC_ to POV_TIME_UTC for more
robustness against any future naming conflicts.
Change 5725 on 2012/11/08 by clipka@cli-pc-7
Unknown command line options didn't always produce an error;
Also a fix for a minor flaw in string handling of INI settings
Change 5724 on 2012/11/01 by jgrimbert@smpdirect
Fix for FS#257 (cannot find input file when resuming animation render)
Change 5718 on 2012/09/17 by clipka@cli-pc-7
Fix a bug introduced with change #5665
Change 5716 on 2012/09/04 by chrisc@x8
Assign .pov file association to POVWIN when installing.
Change 5715 on 2012/09/04 by chrisc@x8
Fix for FS#238 (error during #read causes file to be kept open).
Change 5714 on 2012/09/04 by chrisc@x8
Improve cloning of v3.6 INI and provide better defaults.
Change 5713 on 2012/09/03 by chrisc@x8
Fix to handle filenames with a comma in them (crash report 419).
Change 5712 on 2012/09/02 by chrisc@x8
Tweak the Windows setup file.
Change 5711 on 2012/09/02 by chrisc@x8
Bump version to RC7.
Change 5710 on 2012/09/02 by chrisc@x8
Fixed an issue caused by boost's change of TIME_UTC to TIME_UTC_.
Change 5708 on 2012/08/18 by jgrimbert@smpdirect
Fix to get rid of the following compile warning on Linux variants:
shape/poly.cpp:188:3: warning: this decimal constant is unsigned only in
ISO C90 [enabled by default]
Change 5703 on 2012/08/05 by chrisc@x8
Fix for benchmark thread vs CPU count.
Change 5699 on 2012/07/17 by clipka@cli-pc-7
Fix for FS#249 (UTF-8 files with BOM not being accepted)
Change 5696 on 2012/07/10 by clipka@cli-pc-7
Housekeeping (whitespace and comments)
Change 5695 on 2012/07/10 by clipka@cli-pc-7
Fixed radiosity issues with "diffuse albedo" syntax
Change 5694 on 2012/07/10 by clipka@cli-pc-7
Fix whitespace in screen.inc
Change 5689 on 2012/07/02 by thorsten@thorsten-pc-2012
Adds back crand support.
Change 5688 on 2012/06/28 by jholsenback@linux-c2bm
Addressing FS#247 set no_radiosity in Screen_Object()
Change 5687 on 2012/06/27 by jgrimbert@smpdirect
Allow GD flag to work correctly (Fix FS#234): a typo.
Change 5685 on 2012/06/25 by clipka@cli-pc-7
Follow up to #5678
Change 5684 on 2012/06/25 by clipka@cli-pc-7
Update to #5678: workaround for fmod() apparently not conforming to C++
standard on some linux machines.
Change 5678 on 2012/06/21 by clipka@cli-pc-7
Fix for FS#233 Picture index out of range. - Fatal error in renderer:
Uncategorized error.
----------------------------------------
Changes between 3.7.beta.RC5 and 3.7.RC6
----------------------------------------
Change 5674 on 2012/06/18 by jholsenback@linux-c2bm
Pick up last minute changes before release of RC6
Change 5673 on 2012/06/18 by clipka@cli-pc-7
Follow up fix for #5672 to address compile problems on linux platform.
Change 5672 on 2012/06/18 by clipka@cli-pc-7
Fixed some numeric overflow issues in image handling; also fixed some
other questionable code found along the way.
Change 5667 on 2012/06/16 by jholsenback@linux-c2bm
Resync revsions/changes files.
Change 5665 on 2012/06/15 by chrisc@x8
Potential fixes for a number of crash reports related to the editor,
particularly drag & drop actions, and a fix for the XP64 installer.
Change 5663 on 2012/06/11 by clipka@cli-pc-7
A minor fix for radiosity adc_bail_out handling.
Change 5662 on 2012/06/11 by clipka@cli-pc-7
More comments changes and whitespace cleanup, plus some trivial code cleanup.
Change 5661 on 2012/06/11 by clipka@cli-pc-7
A few comments changes and whitespace cleanup.
Change 5659 on 2012/06/10 by clipka@cli-pc-7
A follow up to change #5649 corrected a formatting issue with radiosity
statistics reporting.
Change 5653 on 2012/05/23 by jholsenback@linux-c2bm
Fix for potential endless loop in CH2RGB macro
Change 5651 on 2012/05/22 by jholsenback@linux-c2bm
Resync revsions/changes files.
Change 5650 on 2012/05/20 by chrisc@x8
Fix merge issue from change #5387 which re-introduced a bug fixed earlier
on (most recent crash report #385, dump file #343).
Change 5649 on 2012/05/20 by chrisc@x8
Fix divide-by-zero in stats code when radiosity query count is 0
(crash report #384, dump file #342)
Change 5648 on 2012/05/16 by clipka@cli-pc-7
Additional fix associated with #5624 (colored transparent background)
Change 5636 on 2012/05/02 by jholsenback@linux-c2bm
Resync revsions/changes files.
Change 5635 on 2012/05/02 by jholsenback@linux-c2bm
Bump revision to RC6.
Change 5632 on 2012/03/21 by clipka@cli-pc-7
Fix for FS#241: Photons not working correctly.
Change 5625 on 2012/03/10 by clipka@cli-pc-7
Cleaned up various C-style casts:
- fixed some fishy ones
- removed some superfluous ones
- replaced with reinterpret_cast some that were accidently casting away
const qualifiers.
- replaced with const_cast some that were deliberately casting away
volatile qualifiers.
- replaced with reinterpret_cast all others I spotted in the same files.
- fixed some const qualifiers in function signatures.
Change 5624 on 2012/03/08 by clipka@cli-pc-7
Fixed problems with colored transparent backgrounds.
Change 5623 on 2012/03/07 by chrisc@x8
Updated setup script, plus a few improvements.
Change 5622 on 2012/03/07 by chrisc@x8
Fixed the Windows help file searchable index. Note this is based on the
snapshot of the wiki documentation set taken for RC4.
Change 5621 on 2012/03/03 by clipka@cli-pc-7
Fixes to VS10 (windows version) build process
- fixed ALL tiff project targets to build tiff config headers
- fixed Debug/x64 target to build OpenEXR to Float
Change 5620 on 2012/02/28 by chrisc@x8
Insert menu (windows version) update from Friedrich Lohmller.
----------------------------------------
Changes between 3.7.beta.RC4 and 3.7.RC5
----------------------------------------
Change 5618 on 2012/02/23 by jholsenback@linux-c2bm
Bump to RC5 in the "correct" place
Change 5617 on 2012/02/23 by jholsenback@linux-c2bm
Resync changes/revision.txt files
Change 5616 on 2012/02/23 by jholsenback@linux-c2bm
Bump unix version to RC5
Change 5615 on 2012/02/23 by jholsenback@linux-c2bm
Fix for FS#239 improper uid/gid handling incorrectly branded some files
during non elevated privilege builds.
Change 5614 on 2012/02/23 by clipka@cli-pc-7
Fix for crashdump #357 (triggered by non-closed SSLT-enabled
mesh inside CSG)
Change 5612 on 2012/02/21 by chrisc@x8
Make dump submitter a bit more robust.
Change 5610 on 2012/02/21 by clipka@cli-pc-7
Fix for FS#12 (facets pattern in normal map)
Change 5607 on 2012/02/05 by chrisc@x8
More installer work, should be more or less done now.
----------------------------------------
Changes between 3.7.beta.RC3 and 3.7.RC4
----------------------------------------
Change 5606 on 2012/02/04 by chrisc@x8
Fix to FMA4 detection. AMD optimizations re-enabled.
Change 5604 on 2012/01/28 by jgrimbert@smpdirect
Fix for FS#235 UNIX segmentation fault: when using the animation loop
and large images are displayed.
Change 5603 on 2012/01/03 by chrisc@x8
Updated the windows help file.
Change 5601 on 2011/12/28 by chrisc@x8
Changed message displayed on crash.
Change 5600 on 2011/12/27 by chrisc@x8
Initial version (windows) of NSIS-based installer.
Change 5597 on 2011/12/24 by chrisc@x8
Added AMD optimizations for noise. Note that these are currently disabled.
Change 5596 on 2011/12/24 by chrisc@x8
Updated the crashdump submitter.
Change 5593 on 2011/12/20 by chrisc@x8
Add support for documents path to be anywhere, rather than requiring it to
be in a standard location.
Change 5590 on 2011/12/19 by chrisc@x8
Changed the windows crash reporting tool dump generation logic to always
generate both full and mini dumps.
Change 5589 on 2011/12/15 by jholsenback_aries_1
Removed obsolete comments (Library Path limitation)
Change 5588 on 2011/12/08 by clipka@cli-pc-7
Added "Console" and "Console-SSE2" configurations to VS10 solution and
some projects, and updated config & console code, to get Windows console
project back working (needs to be back-ported to VS8 and VS9; no debug
configuration yet); extensive testing required; expect shellout to be
still dysfunctional.
Change 5587 on 2011/12/08 by clipka@cli-pc-7
Updates to VS10 console project (still doesn't build at present though)
Change 5582 on 2011/12/05 by clipka@cli-pc-7
Added Penrose P1 (N=6) and P2 (N=2) tilings as 25 and 26; changed the
existing P3 tiling pattern number to 27
Change 5575 on 2011/12/03 by clipka@cli-pc-7
Overhauled identifiers & comments in new patterns' code; Added a new
"tiling" pattern: 25 type (N=2) produces a Penrose P3 tile
Change 5573 on 2011/12/02 by clipka@cli-pc-7
Added support for tuning brightness of image-mapped sky spheres. See FS#9
Change 5572 on 2011/12/02 by clipka@cli-pc-7
area_illumination now also respects fade_power and fade_distance. See FS#46
Change 5569 on 2011/12/01 by clipka@cli-pc-7
major overhaul of iridescence feature
Change 5529/5528/5527 on 2011/11/22 by clipka@cli-pc-7
added new "albedo" keyword, that can be used right after
"diffuse", "phong" or "specular
Change 5518 on 2011/11/13 by chrisc@x8
fix for the windows editor crash that was reported in crashdump#111
Change 5514 on 2011/11/13 by jgrimbert@smpdirect
fix for FS#216: comment out the Radiosity= directive in raddem.ini
that directive became obsolete in 3.7
Change 5512 on 2011/11/12 by clipka@cli-pc-7
fix for FS#225: translating a light source fails to translate
the looks_like textures
Change 5511 on 2011/11/11 by clipka@cli-pc-7
update of VS 2010 solution & projects: windows build can now statically link