forked from x3dom/x3dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
4421 lines (2292 loc) · 104 KB
/
CHANGELOG
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
2011-11-24 annakasia79 <[email protected]>
* : triangulation concave polygons performance optimization
* : triangulation concave polygons
2011-11-23 annakasia79 <[email protected]>
* : triangulation concave polygons new indexes
* : triangulation concave polygons
2011-11-22 Andreas Aderhold <[email protected]>
* : Added a lot of documentation to teh build.py file. Not what what it does,
but what it actually should be doing. Use this a guide whenever messing with
the Build system.
2011-11-22 Timo Sturm <[email protected]>
* : - little fix
* : - fix Texture <img> loading
* : - fix ImageTexture USE bug again
2011-11-22 Andreas Aderhold <[email protected]>
* : Regenerated CHANGELOG; Fixes to the components doc
2011-11-21 Andreas Aderhold <[email protected]>
* : Added more info to component docs
* : Whoops got that backwards
* : First draft of components docs
* : More on components
* : More documentation for components
* : Typos
* : Typos
* : Typos
2011-11-16 Timo Sturm <[email protected]>
* : - change Texture priority assignment
2011-11-15 Andreas Aderhold <[email protected]>
* : Started with components example. noop yet
* : docs
* : More documentation on components
* : Geospatial test using components system
* : Added documentation link feature to tests. When the global variable
X3DOM_DOCS_LINK points to an URL of the documentation the top nav bar shows
that link to related documentation chapter.
* : Whoops
* : Added X3DOM_SECURITY_OFF switch to prevent execution of insecure code
(component loading)
* : More work on components documentation
* : Time Sensor loop=false fix from
https://sourceforge.net/projects/x3dom/forums/forum/957286/topic/4566541
2011-11-14 timmjd <[email protected]>
* : aplha version of multitouch for ipad
2011-11-11 Yvonne Jung <[email protected]>
* : extended setRotCenter such that view moves there
2011-11-10 annakasia79 <[email protected]>
* : triangulation of concave polygons
2011-11-08 Andreas Aderhold <[email protected]>
* : Preliminary docs for component loading
2011-11-07 Andreas Aderhold <[email protected]>
* : Typo in docs
* : Added Katarzyna to AUTHORS file
* : Added note on OS X Lion rubber band scrolling
2011-11-03 annakasia79 <[email protected]>
* : identifyPointDirection
2011-11-01 tsturm <[email protected]>
* : Workaround for IE's lack of xhr.overrideMimeType.
2011-11-01 Andreas Aderhold <[email protected]>
* : Create a x3dom.bak file on make saving last version
* : Workaround for linked list bug falling into endless loop
2011-10-31 tsturm <[email protected]>
* : - generate all flash cubmap mipmaps to fix Flash Player 11 cubemap bug -
some flash code optimation
2011-10-27 tsturm <[email protected]>
* : - fix ImageGeometry Color-Texture
2011-10-27 Katarzyna Wilkosinska <[email protected]>
* : Tests for Triangulation by Ear Clipping for MultiIndex
* : Triangulation by Ear Clipping for MultiIndex
2011-10-25 annakasia79 <[email protected]>
* : Namespace x3dom for DoublyLinkedList and clean up
* : Ear Clipping Triangulation
* : Ear Clipping Triangulation
2011-10-24 tsturm <[email protected]>
* : - fix ImageLoadManager Multi-Texture bug
2011-10-24 Andreas Aderhold <[email protected]>
* : Updated includes of tests
* : Added the linked list file to update includes script
2011-10-22 Yvonne <[email protected]>
* : documentation
* : documentation
2011-10-21 tsturm <[email protected]>
* : - fix ImageTexture USE bug
2011-10-21 Yvonne Jung <[email protected]>
* : fix in height calc
2011-10-20 Yvonne Jung <[email protected]>
* : elevation grid
* : elevation grid
2011-10-20 tsturm <[email protected]>
* : - add getShaderInfoLog() for shader debugging
2011-10-20 annakasia79 <[email protected]>
* : DoublyLinkedList and optimize Ear Clipping Triangulation
2011-10-19 tsturm <[email protected]>
* : - allow Flash crossDomain access
* : - add Flash multi prim-type support
2011-10-18 tsturm <[email protected]>
* : - re-add activeDownloads
* : - fix skyColor/zFar bug
2011-10-16 tsturm <[email protected]>
* : - add caps - make ImageLoadManager global - some fixes
2011-10-15 annakasia79 <[email protected]>
* : test
* : Fixed Git URL in docs
2011-10-15 annakasia79 <[email protected]>
* : test
2011-10-14 timmjd <[email protected]>
* : more debug
* : some debug output for the build
2011-10-14 Yvonne <[email protected]>
* : Mit falschen Pfaden konnte das nicht gehen -- naechstens bitte erst mal
testen vorm Kaputtmachen\!
* : bunch of fixes
2011-10-13 Katarzyna Wilkosinska <[email protected]>
* : Triangulation of concave polygons (single index)
2011-10-13 tsturm <[email protected]>
* : - fix ImageGeometry multi-PrimType bug
2011-10-13 Katarzyna Wilkosinska <[email protected]>
* : Triangulation of concave polygon
2011-10-13 tsturm <[email protected]>
* : there was already a "var i" in the scope above - Part II
2011-10-13 timmjd <[email protected]>
* : there was already a "var i" in the scope above
2011-10-12 timmjd <[email protected]>
* : register transform event on transform nodes, related to issue #32
2011-10-11 Yvonne Jung <[email protected]>
* : terrain check
2011-10-11 Timo Sturm <[email protected]>
* : - add ImageGeometry multi-PrimType support
2011-10-10 tsturm <[email protected]>
* : - add struct Material for ComposedShader
2011-10-10 Yvonne Jung <[email protected]>
* : cleanups
2011-10-09 Yvonne <[email protected]>
* : some game mode bricolages, no terrain following yet
2011-10-07 Yvonne Jung <[email protected]>
* : fix
2011-10-05 Yvonne Jung <[email protected]>
* : added mode to disable blending
2011-10-05 Katarzyna Wilkosinska <[email protected]>
* : IndexedFaceSet fieldChange
2011-10-05 timmjd <[email protected]>
* : hope to fix make on linux
2011-10-05 Katarzyna Wilkosinska <[email protected]>
* : indexedFaceSet fieldChange
2011-10-05 timmjd <[email protected]>
* : don't know how to make make :)
* : typo
* : tab instead of spaces
* : add missing path
2011-10-02 Yvonne <[email protected]>
* : fixed broken sky colors
2011-09-30 tsturm <[email protected]>
* : - add viewMatrix for ComposedShader
2011-09-30 Yvonne Jung <[email protected]>
* : added field update stuff, removed second texCoord3d def
2011-09-30 tsturm <[email protected]>
* : - increase maximum image downloads to 32 - set ImageGeometry texture
priority higher
* : - small ImageLoadManager fix
2011-09-29 Katarzyna Wilkosinska <[email protected]>
* : fieldChange and subdivision for Cylinder
* : fieldChange and subdivision for Cone
* : fieldChange and subdivision for Torus
* : bug fix needFullReInit
* : fieldChange function for Plane and Sphere
2011-09-29 Timm Drevensek <[email protected]>
* : typo
2011-09-28 timmjd <[email protected]>
* : missed
* : * new version of googles closure compiler * cleanup of packer python
script * some cleanups in code to get closure compiler work again
* : should allow the usage of GeoCoordinate inside IndexedLineSet
2011-09-28 Yvonne <[email protected]>
* : added missing check in gfx
2011-09-27 Andreas Aderhold <[email protected]>
* : Refactored the <param> element behavior to be more consistent. Parameters
are now initialized onload and passed the the X3DDocument.
* : Naive hack to build: x3dom.js x3dom.min.js x3dom-core.js
x3dom-core.min.js
* : Removing some old stuff from entry point
* : Added support for setting components in <param> element; Prepared Main.js
to use DOM to parse param elements instead of using a Node which is
initialized too late for pre-init settings.
2011-09-26 Andreas Aderhold <[email protected]>
* : Removed an instance of Array.forEach in X3DDocument.js (performance)
* : Regenerated ChangeLog
* : Added what could be componetized to satisfy p.c.
* : Doc fixes
* : Remove cruft
* : Added ability to load Components dynamically at runtime. Added functional
test and documentation patch. Converted geoPrimitives2D to HTML5.
* : Rename of README so markup works
2011-09-26 Yvonne <[email protected]>
* : fix
2011-09-23 Yvonne <[email protected]>
* : shader stuff
2011-09-23 timmjd <[email protected]>
* : todo
2011-09-23 Yvonne <[email protected]>
* : added basics to get started with volRen
2011-09-23 timmjd <[email protected]>
* : might be a litle fix
2011-09-22 tsturm <[email protected]>
* : - fix "Vertex shader sampler count exceeds" - picking Bug
* : - fix "Vertex shader sampler count exceeds" - picking bug
2011-09-22 timmjd <[email protected]>
* : typos
2011-09-22 Katarzyna Wilkosinska <[email protected]>
* : example for 2d primitives
2011-09-22 tsturm <[email protected]>
* : - activate new ImageLoader with CORS support - change "scale to power of
two" default value from "false" to "true"
2011-09-22 Katarzyna Wilkosinska <[email protected]>
* : implementation of Disk2D
2011-09-21 Katarzyna Wilkosinska <[email protected]>
* : implementation of ArcClose2D
* : implementation of TriangleSet2D
2011-09-20 Andreas Aderhold <[email protected]>
* : Added image loader to global Makefile and updated test headers
2011-09-20 tsturm <[email protected]>
* : - small ImageLoadManager fix
2011-09-19 Andreas Aderhold <[email protected]>
* : Added doc page of projects using X3DOM.
* : Added warning that not all nodes are fully implemented
* : Update NodeTypeTree dump and updated documentation to include a link to
it
2011-09-18 tsturm <[email protected]>
* : - little Bug fix
2011-09-17 tsturm <[email protected]>
* : - fix dynamic ComposedShader update
2011-09-15 Katarzyna Wilkosinska <[email protected]>
* : TriangleSet2D
* : implementation of Polypoint2D
* : implementation of Polypoint2D
* : implementation of Rectangle2D, Circle2D, Arc2D
2011-09-15 Andreas Aderhold <[email protected]>
* : Moved content from the WIKI to the documentation and README. Preperation
for WIKI removal.
2011-09-13 tsturm <[email protected]>
* : - Add ImageLoadManager.js (Priority-Queue for image loading)
2011-09-08 Katarzyna Wilkosinska <[email protected]>
* : starting at 2d primitivs
2011-09-08 Yvonne Jung <[email protected]>
* : inital check-in
2011-09-07 timmjd <[email protected]>
* : remove empty node docs
2011-08-31 Yvonne Jung <[email protected]>
* : impl. sound field change
2011-08-29 Andreas Aderhold <[email protected]>
* : Simplification
* : Housekeeping
* : Gardening
* : Setting version/release in docs to 1.3dev
* : Added links to pdf and epub versions
* : Added links to pdf and epub versions
* : Added links to pdf and epub versions
* : Added links to pdf and epub versions
* : Using default theme for readthedocs.org
* : Removed the show source link for docs.
* : Added internals section to doc for X3DOM hackers
* : Added internals section to doc for X3DOM hackers
* : Getting rid of NaturalDocs dependency. The API documentation is now
maintained with the developer documentation. There is currently no need to
generate private API docs.
* : Added API methods
* : Fix in internal references
* : Removed tutorials/ directory. The Tutorials have been moved to the
official documentation.
* : Added FAQ section to docs
* : Started compatibility matrix chapter.
2011-08-23 Andreas Aderhold <[email protected]>
* : Political correctness
* : Moved Developers guide one level up
* : Added Coform tutorial
* : Added Flash Mashup tutorial
2011-08-23 Yvonne Jung <[email protected]>
* : acc. test
* : acc. test
* : acc. test
2011-08-23 Andreas Aderhold <[email protected]>
* : Added WOW Export tutorial
* : Added Maya Tutorial
* : Added 3ds max eport tutorial
* : Fixed DL link for horse file
* : Added Blender export tutorial
* : Added the data conversion tutorial
* : Image sounds and movie formats tutorial added to docs
* : Slight restructuruing of docs to seperate concerns and make the PDF look
more consistent ;)
2011-08-22 Andreas Aderhold <[email protected]>
* : Converted Styling Tutorial to doc system
2011-08-22 Yvonne Jung <[email protected]>
* : impl. Plane geo
2011-08-22 Andreas Aderhold <[email protected]>
* : Converted and updated getting strated tutorial to documentation system
2011-08-19 Yvonne Jung <[email protected]>
* : fix
2011-08-18 tsturm <[email protected]>
* : - Add colorTexture - Add primType TRIANGLE_STRIP
2011-08-16 Andreas Aderhold <[email protected]>
* : Added link to tutorials on website until we have a basic getting started
tutorial
* : Doc fix
* : Added missing semicolons in API doc exmaples
* : Remove execute bit, damn cygwin ;)
* : More info about cross origin policy added
2011-08-16 timmjd <[email protected]>
* : Geospatial test
2011-08-16 Andreas Aderhold <[email protected]>
* : Tweak to css of docs
* : Better display of dev note in docs
* : Typos
* : Make dev notice of docs less distracting
* : Added 'under development' notice to documentation
* : Work on CORS section
2011-08-15 Andreas Aderhold <[email protected]>
* : Fix for float problem with tables
* : Float fix for NPT test
2011-08-15 Yvonne Jung <[email protected]>
* : impl. TextureProperties (at least the most important fields)
2011-08-15 Andreas Aderhold <[email protected]>
* : Simpler structure for documentation. Layout fixes.
* : API docs started
2011-08-15 Yvonne Jung <[email protected]>
* : test
2011-08-15 Andreas Aderhold <[email protected]>
* : Typo
* : Added camera navigation section and fixed layout
* : Updated TODO list
* : Fixes to getting started chapter
* : Started 'Getting started' section of guide
2011-08-10 Andreas Aderhold <[email protected]>
* : Moved unit tests main page to test/unit/
2011-08-09 Andreas Aderhold <[email protected]>
* : Unit test thingy
* : Added tests
* : Started building unit testsuite
* : Added API method to get backend implementation name
2011-08-08 Yvonne <[email protected]>
* : quickfix of quickfix
2011-08-08 unknown <[email protected]>
* : color attrib update fix
2011-08-05 Yvonne Jung <[email protected]>
* : lookat with other dist
* : fix
2011-08-04 Yvonne Jung <[email protected]>
* : hit event object now contains attribute 'hitObject' that refers to hit
shape
2011-08-04 tsturm <[email protected]>
* : - some fixes 2.0
2011-08-03 tsturm <[email protected]>
* : - some fixes
* : - Fix texture filter
* : - Fix showLog
* : - Add picking for indexed IG
* : - Add indexed IG
2011-08-03 Yvonne Jung <[email protected]>
* : look around mode
2011-08-02 Yvonne Jung <[email protected]>
* : fix
2011-08-02 Timo Sturm <[email protected]>
* : - Add IG primType-Field('TRIANGLES', 'POINTS')
2011-08-02 Yvonne Jung <[email protected]>
* : added time dependence
2011-08-02 Andreas Aderhold <[email protected]>
* : Update to docs adding showProgress attribute
* : Ploished progress indicator. Prepared for the 'bar' mode.
2011-08-02 Yvonne Jung <[email protected]>
* : fix
2011-08-02 Andreas Aderhold <[email protected]>
* : Fix showLog type error
* : Cleanup
2011-08-02 Timo Sturm <[email protected]>
* : - Fix IG Double-TexCoord Precision Bug
2011-08-02 Andreas Aderhold <[email protected]>
* : Added loading indicator
2011-08-02 Yvonne Jung <[email protected]>
* : added onerror
2011-08-02 Andreas Aderhold <[email protected]>
* : Committing unfinished work on binary/compresst transport (exploration
that should investiage and implement different approaches like gzip, EXI,
etc.). Project has been scrubbed.
* : Removing redundant file
2011-08-01 tsturm <[email protected]>
* : - Fix IG State Display - Add IG Double-TexCoord Precision
2011-07-30 tsturm <[email protected]>
* : - Finish IG Multi-Textures
2011-07-29 Timo Sturm <[email protected]>
* : - Start IG Multi-Textures
2011-07-29 tsturm <[email protected]>
* : - Add IG Picking
2011-07-28 timmjd <[email protected]>
* : normal generation for GeoElevationGrid
2011-07-27 Andreas Aderhold <[email protected]>
* : Doc formatting fixes
* : Added note to doc how to enable allow-file-access thingy with chrome
2011-07-26 Andreas Aderhold <[email protected]>
* : Fix line endings
* : Adding exploration for evaluating possibilities with compressed formats
* : Typo
* : Move zip stuff to seperate module
* : Added deflate/inflate implementations
* : Documentation format tweaks
2011-07-26 Timo Sturm <[email protected]>
* : - Fix Min/Max problem
2011-07-26 Andreas Aderhold <[email protected]>
* : Started with testcaseses for dealing with compressed inline nodes
* : Using webserver of Python stdlib
2011-07-25 Andreas Aderhold <[email protected]>
* : Do not show author metadata in generated docs
* : Changed Makefile deploy target to make guide as well
* : Changed Makefile deploy target to reflect git stuff
* : Fix missing comma in version template
* : Fixed Popen parameters for version tag generation
2011-07-25 timmjd <[email protected]>
* : versioning string changed svn > git
2011-07-22 timmjd <[email protected]>
* : new build.py in root create dir (dist/x3dom.js) if not exist
2011-07-21 Timo Sturm <[email protected]>
* : - Another GeometryImage Update
2011-07-21 timmjd <[email protected]>
* : GeoElevationGrid * texturecoords * missing geoGridOrigin offset
* : minor fixes
2011-07-21 Timo Sturm <[email protected]>
* : - Change GeometryImage Interface
2011-07-21 tsturm <[email protected]>
* : - GPU GeometryImage implementation v3.1
2011-07-20 tsturm <[email protected]>
* : - GPU GeometryImage implementation v3.0
2011-07-20 timmjd <[email protected]>
* : bugfixes
2011-07-20 Timo Sturm <[email protected]>
* : - GPU GeometryImage implementation v2.0
2011-07-20 timmjd <[email protected]>
* : some changes in geo
* : some geo codes
2011-07-20 tsturm <[email protected]>
* : - Start GPU-based GeometryImage implementation
2011-07-19 Andreas Aderhold <[email protected]>
* : Added documentation and ideas for dealing with large models
2011-07-19 timmjd <[email protected]>
* : typo
2011-07-18 tsturm <[email protected]>
* : - Add Flash GeometryImage implementation
2011-07-05 aha <[email protected]>
* : Improved wording of TS section.
* : Added more doucmentaion, including release notes and licenses
* : Fixed line endings
* : Added troubleshooting text to guide
2011-07-01 Yvonne Jung <[email protected]>
* : removed obsolete comments
2011-07-01 Yvonne Jung <[email protected]>
* : fixed typo
2011-06-28 aha <[email protected]>
* : Added troubleshooting section to users guide
* : Added copyright and license notice to source files
* : Fixed spacing in template
* : Wording
* : Added source header template
2011-06-27 Andreas Aderhold <[email protected]>
* : Added links to GPU blacklists to docs
2011-06-25 Johannes Behr <[email protected]>
* : tmp file removed
* : additional authors added
2011-06-21 Andreas Aderhold <[email protected]>
* : Fixes to guide
* : Added Installation chapter in documentation
2011-06-20 Andreas Aderhold <[email protected]>
* : Updated ChangeLog generation task to use git instead of svn
2011-06-20 thyrell <thyrell@3fb95f9c-b211-4acc-b2b6-5f5c22209b5a>
* : Prep 1.2
* : Added 1.2 version
2011-06-16 thyrell <thyrell@3fb95f9c-b211-4acc-b2b6-5f5c22209b5a>
* : Regenerated ChangeLog
2011-06-14 akustikkoppler <akustikkoppler@3fb95f9c-b211-4acc-b2b6-5f5c22209b5a>
* : - Little Fix
* : - Fix Webfont-Canvas Bug - Add unique Light ID's - Prepare Flash for
LightPrePass Rendering
2011-06-14 thyrell <thyrell@3fb95f9c-b211-4acc-b2b6-5f5c22209b5a>
* : Started to work on TimeSensor stuff
2011-06-09 timmjd <timmjd@3fb95f9c-b211-4acc-b2b6-5f5c22209b5a>
* : Geo: uses geoOrigin to transform geoCoordinate
2011-06-08 akustikkoppler <akustikkoppler@3fb95f9c-b211-4acc-b2b6-5f5c22209b5a>
* :
* : - Change debug IE Hack
2011-06-06 akustikkoppler <akustikkoppler@3fb95f9c-b211-4acc-b2b6-5f5c22209b5a>
* : - Re-Add IE-Body-Hack. Flash doesn't work without!
2011-06-06 thyrell <thyrell@3fb95f9c-b211-4acc-b2b6-5f5c22209b5a>
* : Doc system updates
2011-06-06 tobold <tobold@3fb95f9c-b211-4acc-b2b6-5f5c22209b5a>
* : Removed IE hack for logdiv. IE has document.body.
* : Modified code to hide X3D tree once embedded in a plugin.
* : Added new behavior for IE plugin.
2011-06-06 thyrell <thyrell@3fb95f9c-b211-4acc-b2b6-5f5c22209b5a>
* : Added target to make HTML version of guide book from top level makefile
(requires Python and Sphinx package)
* : Added tables of supported api params
* : File rename
2011-06-01 akustikkoppler <akustikkoppler@3fb95f9c-b211-4acc-b2b6-5f5c22209b5a>
* :
2011-06-01 timmjd <timmjd@3fb95f9c-b211-4acc-b2b6-5f5c22209b5a>
* : inital geo transformation code
2011-06-01 akustikkoppler <akustikkoppler@3fb95f9c-b211-4acc-b2b6-5f5c22209b5a>
* :
* :
* :
2011-05-31 thyrell <thyrell@3fb95f9c-b211-4acc-b2b6-5f5c22209b5a>
* : Work on the guide
* : Ignoring doc build
* : Whoops
* : Adding Sphinx Documentation System scaffolding
* : More work on UML
2011-05-30 thyrell <thyrell@3fb95f9c-b211-4acc-b2b6-5f5c22209b5a>
* : Added showStat option to <param> overrideing the X3D element attribute
* : Added showLog param to <param> element.