forked from VixenLights/Vixen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRelease Notes.txt
More file actions
2580 lines (2137 loc) · 163 KB
/
Copy pathRelease Notes.txt
File metadata and controls
2580 lines (2137 loc) · 163 KB
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
Release Notes - Vixen 3
Release Notes - Vixen 3 - 3.12u2 Build
** 1 issues resolved in this release.
** Bugs
* [VIX-3723] - Stopping controllers in Display Setup does not stick when Display Setup is closed.
Release Notes - Vixen 3 - 3.12u1 Build
** 7 issues resolved in this release.
** Improvements
* [VIX-3702] - "Create Evenly Divided Marks" dialog not using new time entry control
* [VIX-3704] - Update the README on Github to point to the website for developer setup
** Bugs
* [VIX-3703] - New menu item, Settings → Keep Insert Mode Active, not showing
* [VIX-3707] - Mouse tilt wheel does not work in the left direction to scroll the timeline
* [VIX-3714] - Edit image maps dialog, Ok button does not work.
* [VIX-3715] - Hard crash after several effect clone operations
* [VIX-3718] - The Edit Time dialog option to set start and end times to beginning and end of sequence sets everything to all zeros.
Release Notes - Vixen 3 - 3.12u0 Build
** 72 issues resolved in this release.
** Bugs
* [VIX-885] - Detached Timeline keyboard shortcuts do not work correctly
* [VIX-2879] - Divide by zero error in the Dissolve effect.
* [VIX-3066] - GetContoller API function not working
* [VIX-3271] - Some media types crash Vixen when associating audio with sequence
* [VIX-3308] - Keyboard Shortcuts don't work if Preview Window has focus
* [VIX-3541] - Show selection feedback on mouse down when clicking buttons in preview configuration.
* [VIX-3582] - Effect initial length not consistent.
* [VIX-3608] - VixenApplication.cs - DrawVersionInfo contains resource leaks
* [VIX-3610] - Default DDP IP Causes Crash on Export
* [VIX-3611] - Long Video effect drifts out of sync when (1000 / Update Interval) is not an integer
* [VIX-3612] - Working directory is incorrect when launched from the installer summary screen.
* [VIX-3615] - Wipe - Movement - Horizontal not rendering the last last elementGroup
* [VIX-3618] - freetype6.dll contains a dependency on the 2013 VC++ runtime
* [VIX-3619] - Unpatch button missing on Display Setup when controller name is long
* [VIX-3623] - VixenPreviewModuleInstance.cs UseOpenGLRendering can crash Vixen
* [VIX-3628] - The target node handling of the Chase and Spin can be left in a bad state when dragging or cloning to a new element with different depths
* [VIX-3631] - Out of memory issue for effects on a complex Prop with many subgroups.
* [VIX-3636] - Preview not working
* [VIX-3639] - Reversing linked elements in the Link Element dialog in the preview for Starburst does not take effect until the Preview is reloaded.
* [VIX-3640] - Intelligent Fixture effect is not properly saving off RGB color selections
* [VIX-3644] - ElexolEtherIO Controller hard crashes when the Test button is clicked.
* [VIX-3648] - Prop model Vendor browser import fails on Vixen User prop import.
* [VIX-3649] - Bug with scheduler and days of week.
* [VIX-3651] - Deleting multi-selected props in "Preview Configuration" only deletes one prop
* [VIX-3652] - Broken COM reference in Broadcast Project
* [VIX-3653] - Mark Collection - Show Tail Marks icon doesn't select all lines
* [VIX-3657] - Editing a LipSync image map causes Vixen to crash
* [VIX-3660] - Missing module build dependencies in Vixen Solution file
* [VIX-3661] - Need to Hide VAO on Preview Shapes
* [VIX-3664] - Custom Prop Editor - Can't download vendor model "Error Downloading Model" "Unable to download... ensure you have a an active internet connection
* [VIX-3668] - BulkExportSummaryStage.Designer.cs - Yellow Warning Color needs to be restored
* [VIX-3684] - Mega/Mini Tree starting points change in new DEV version
* [VIX-3685] - Error Highlighting a prop from preview editor
* [VIX-3686] - Custom props in preview config screen - bug when altering "Bottom Right" Y position coordinate
* [VIX-3687] - Timed Sequence Editor - Undo/Redo buttons missing down arrows
* [VIX-3699] - Video effect error message boxes don't appear on top
** Improvements
* [VIX-956] - Improve Audio Device Handling
* [VIX-1104] - Spin Needs pulse overlap
* [VIX-2235] - Controller reordering in display setup
* [VIX-2283] - There's no way to see the name of the associated audio file in the sequence editor
* [VIX-2356] - Need to add items to controller list context menu
* [VIX-2444] - Lip Sync phrase needs timing mark at end of phrase
* [VIX-2604] - Make software version update available be a link to the download
* [VIX-2669] - Make add multiple effects window remember its previous settings.
* [VIX-2788] - Add degrees of rotation label/indicator while rotating a custom prop
* [VIX-3067] - Investigate optimizing OpenGL data being sent to the GPU
* [VIX-3117] - Custom props don't show light size setting
* [VIX-3312] - Add option to lock mark collections
* [VIX-3333] - Default "Add Elements" drop down to Single Element instead of arch
* [VIX-3504] - Update Main Vixen Form to tableLayoutPanel with Vixen title and version as text labels.
* [VIX-3538] - Consider adding a property to the Preview Shapes to lock their position so that can't be accidentally moved
* [VIX-3553] - Add Select Preview Elements Option
* [VIX-3609] - Add configuration information for installing Vixen in a Windows Sandbox for development testing.
* [VIX-3613] - Improve the naming structure for system and module backup files
* [VIX-3616] - Add/update the quick keys for the Alignment tool
* [VIX-3617] - Update ffmpeg for the Video Effect
* [VIX-3625] - Video Effect Cache Improvements
* [VIX-3646] - Bump MessagePack from 2.5.171 to 2.5.187 in /src/Vixen.Common/WpfPropertyGrid
* [VIX-3656] - Clean up local control mouse hover events and foreground / background colors that are now handled by the Theme logic.
* [VIX-3662] - Bump some of the libraries to the latest versions to keep in step.
* [VIX-3665] - Consider using Directory.Packages.props for common dependencies used in most projects
* [VIX-3667] - Create .editorconfig to manage coding styles in Visual Studio
* [VIX-3690] - Improve user experience when entering times
* [VIX-3700] - Update the release notes scripts to resolve JIRA API deprecation
** New Features
* [VIX-1163] - Preview Smart Object Rotation
* [VIX-2615] - Adjust joining Effects together so they stay together.
* [VIX-2883] - Preview Editor, after using an object tool, revert to the select tool
* [VIX-2940] - Adding rotation support to Arch in the preview. Currently that functionality does not exist (XY rotation similar to the one for the stars)
* [VIX-3124] - Create check box for End Stop in Text Effect
* [VIX-3269] - Add feature to bulk-move marks
* [VIX-3272] - Function for adding equally spaced marks in a collection
* [VIX-3566] - Create Brick Effect
Release Notes - Vixen 3 - 3.10u1 Build
** Improvement
* [VIX-2991] - window resize dont resize the inner field with the list of sequences
** Bug
* [VIX-3480] - Weave effect is not included in the formal builds
Release Notes - Vixen 3 - 3.10u0 Build
** Improvement
* [VIX-2859] - Add warning while delete element on Preview Configuration
* [VIX-3112] - Add icon to controller output count form
* [VIX-3367] - Libraries that do not support .NET Core, .NET 6, .NET 7
* [VIX-3371] - Migrate OpenTK to 4.7.5 which is .NET 6 compatible.
* [VIX-3372] - Migrate QuickFont, SharpFont to .NET 6 and OpenTK 4.7.5
* [VIX-3373] - Update C++ Projects to .NET 6.0 and Visual Studio 2022
* [VIX-3375] - Replace Orc Wizard Source Code in Vixen solution with nuget package
* [VIX-3377] - Code clean up in the Vixen Application project.
* [VIX-3378] - Replace FTD2XX_NET with nuget package
* [VIX-3380] - Create Basket Weave Pattern Effect
* [VIX-3398] - Change the order of drop downs on the Curtain Effect
* [VIX-3404] - Tree Effect missing tooltips
* [VIX-3408] - Rework the installer to work with the new solution layout and .NET 6.
* [VIX-3409] - The device effects do not have specific help links to the now existing content for them on the website.
* [VIX-3412] - Include style pages from DataGridTheme to resolve .NET 6 compatibility
* [VIX-3413] - Replace CSCore with NAudio for .NET 6 compatibility
* [VIX-3415] - LiquidFunWrapper emits many warnings at build time.
* [VIX-3416] - The Curve library uses Security attributes that are now deprecated in .NET Core.
* [VIX-3417] - Custom Prop Editor uses several constructs that are deprecated in the Catel libraries.
* [VIX-3418] - Vixen.Core export features re throw exceptions that can alter the stack trace.
* [VIX-3419] - Refactor the CICD actions on Github to work with the .NET 6 file structure and setup changes.
* [VIX-3420] - Configure solution to build x64 or x86 specific targets to comply with the target specific C++ dependencies.
* [VIX-3421] - Clean up variety of warning issues in the solution.
* [VIX-3422] - Refactor deprecated WebRequest used in the RDSController
* [VIX-3423] - Correct warnings for hidden members / methods in PreviewLightBaseShape
* [VIX-3424] - Fix Fody Warnings in FixtureWizard Project
* [VIX-3425] - Clean up async await warnings in the codebase
* [VIX-3426] - Resolve obsolete GL calls in the FixtureGraphics project.
* [VIX-3427] - Resolve nullable and null reference warnings in the code.
* [VIX-3429] - Bump all dependencies to current version
* [VIX-3432] - Resolve deprecated usages of BinaryFormatter serializer.
* [VIX-3443] - Remove 32 Bit Support
* [VIX-3445] - Add self-repair (self heal) to the Vixen Install
* [VIX-3472] - Enable an override to set the locations for a prop to a common value in the center of the prop.
** New Feature
* [VIX-3339] - Add multiple effects using timing mark durations as delimiters
* [VIX-3346] - xmodel that uses states instead of submodels
* [VIX-3470] - Add ability to insert / remove channels to a controller in the middle of the existing range.
** Bug
* [VIX-3366] - Scheduler configuration allows pause of 0 seconds
* [VIX-3376] - Resource Project lost the build action of 'Resource' on a lot of images
* [VIX-3381] - Display properties layout is broke in .NET 6 tree.
* [VIX-3382] - Process.Start to open a browser window with a url no longer works in .NET 6.
* [VIX-3383] - Icicles setup dialog has entry box out of place in .NET 6.
* [VIX-3384] - Math/Sizing Error in Bars Effect with Zig Zag Bars in location mode
* [VIX-3385] - Copy / Paste of Effects does not work in .NET 6.0
* [VIX-3401] - Toolbar Button Images missing from Morph Polygon Editor
* [VIX-3405] - Shapes Effect Tooltip and Misc Issues
* [VIX-3407] - Disable nullable to restore older behavior prior to .NET Core
* [VIX-3410] - Vixen.Application.csproj has left over reference to Orc.Wizard
* [VIX-3411] - Incorporate VIX-3350 in .NET 6.0 Feature Branch
* [VIX-3414] - Beats and Bars functionality is broken in .NET 6
* [VIX-3428] - Nullable refactoring broke effect rendering in the editor.
* [VIX-3430] - Add user agent header to outbound calls in the download service used to retrieve vendor models.
* [VIX-3431] - Model vendors may not have direct links to the model files which can cause a hard crash.
* [VIX-3433] - Installer license url links to not found page.
* [VIX-3435] - Intelligent Fixture Graphics cause the preview to throw exceptions
* [VIX-3437] - Crash when playback finish on Sequence Editor
* [VIX-3444] - Vixen Crash when maniplutating divide at cursor on Fixture effect
* [VIX-3446] - Weave Effect Missing from build and fixing curve sampling error
* [VIX-3447] - Replace Weave Effect Advanced Sizing Curves with Sliders
* [VIX-3448] - DMX Open has incorrect channel amount
* [VIX-3453] - Dragging start point on timeline beyond the left of the Zero mark causes playback failure.
* [VIX-3454] - Double Clicking a Phrase causes all open sequences to playback that time range not just the sequence that has focus.
* [VIX-3456] - ShockwaveData CreateInstanceForClone is not copying ScaledRadius flag
* [VIX-3459] - Bars with rotation change from existing sequence not rendering
* [VIX-3460] - Location X, Y can be set to the largest negative number
* [VIX-3461] - Vixen crashes after a sequence is played
* [VIX-3463] - Fix broken help links in Setup Previews
* [VIX-3465] - Vixen hanging when looping sequence
* [VIX-3466] - Intelligent Fixture Wizard Summary can show the wrong Color Support for non lighting fixtures
* [VIX-3467] - Intelligent Fixture Wizard - Edit Functions Page is slightly clipped on the right side
* [VIX-3468] - The Visual C++ redistributable is not properly detected during install.
* [VIX-3469] - Program crashes during lip synching.
Release Notes - Vixen 3 - 3.9u5 Build
** New Feature
* [VIX-942] - Moving Heads Control
* [VIX-3063] - Create DMX Moving Head Preview Graphics
* [VIX-3074] - Create an initial simple effect to make it easier to command simple Pan and Tilt movements.
* [VIX-3188] - Create Intelligent Fixture Zoom Effect
* [VIX-3189] - Create Intelligent Fixture Catch All Effect
* [VIX-3193] - Create Intelligent Fixture Frost Effect
* [VIX-3194] - Create Intelligent Fixture Spin Color Wheel Effect
* [VIX-3196] - Create Open Prism Filter
* [VIX-3199] - Create Intelligent Fixture Strobe Effect
* [VIX-3204] - Create Intelligent Fixture Gobo Effect
* [VIX-3205] - Create Intelligent Fixture Prism Effect
* [VIX-3212] - Add WPF and OpenGL Fixture Graphics
** Improvement
* [VIX-1875] - Filter output null vs 0
* [VIX-3076] - Remove Pixel Specific Properties and Methods from PreviewBaseShape.cs
* [VIX-3176] - Add Orc.Wizard to solution to support Intelligent Fixture Wizard
* [VIX-3179] - Create Fixture Property Editor
* [VIX-3180] - Create Intelligent Fixture Wizard
* [VIX-3181] - Create Intelligent Fixture Property
* [VIX-3186] - Add flags to the Wizard Item Templates interface to control parent behavior also add Cancel support
* [VIX-3195] - Update the Display Setup Graphical View to display the Name of the filter instead of the type name
* [VIX-3197] - Select Color(s) dialog only displays 9 discrete colors
* [VIX-3198] - Add Gobo Images to the Fixture Specification Manager
* [VIX-3200] - Update Fixture Specification to support spinning color wheels and gobo images
* [VIX-3202] - Add 'Intelligent Fixture' group in the Effects tree
* [VIX-3206] - Update Color Wheel Filter to better follow the dispatch pattern
* [VIX-3207] - Update Shutter filter to handle spinning color wheels and driving the color wheel directly
* [VIX-3210] - Consolidate duplicate IElementTemplate code between Preview and Display Setup
* [VIX-3214] - Consider adding checkbox to Fixture color wheel definition to exclude colors like UV and CTB from color property
* [VIX-3216] - Add XML schema version tag or property to fixture specification
* [VIX-3217] - DimmingCurve Output Filter needs to handle Tagged RangeValue representing intensity
* [VIX-3219] - Default new Fixture Channels to the None function
* [VIX-3221] - Add color to fixture function to use on timeline for fixture catch all effect
* [VIX-3222] - Add fixture animation to the pan and tilt detailed settings
* [VIX-3223] - Add Fixture Index Item validation to ensure each index name is unique
* [VIX-3225] - Add tooltips to the Fixture Property Editor
* [VIX-3226] - Remove Catel InfoBar from Fixture Property Editor views
* [VIX-3227] - Add logic to show/hide the profile meta-data in the Fixture Property Editor
* [VIX-3229] - Fixture Property Editor - Adjust column widths in Functions grid
* [VIX-3230] - DimmingFilter.csproj - Project reference missing sub-tags
* [VIX-3231] - Update Shutter Filter to support Fixture Strobe Effect
* [VIX-3232] - Move Tagged Filter Setup dialog to base class
* [VIX-3233] - Initialize FixtureSpecificationManager with Vixen profile path
* [VIX-3242] - Add Intelligent Fixture support for 16 bit color channels
* [VIX-3246] - Intelligent Fixture Wizard - Add the ability to clear out a gobo image
* [VIX-3249] - Add the ability to mount intelligent fixture upside down
* [VIX-3253] - Intelligent Fixture Editors add logic to move focus to the first editable field on the Add Plus button
* [VIX-3266] - Add Intelligent Fixture Legend Support for Color Wheel and Range functions
* [VIX-3281] - Intelligent Fixture Wizard - Users cannot easily fix incomplete functions after selecting one on the Edit Channel page
* [VIX-3282] - Intelligent Fixture Wizard and Editors - Do not show 'None' function on the Edit Functions grid
* [VIX-3283] - Intelligent Fixture - Display color wheel half steps as white
* [VIX-3291] - Intelligent Fixture Graphics - Add black disc to the end that contains the light beam when the beam is off
* [VIX-3295] - Update 'Paste As New' to copy properties associated with the source node(s)
* [VIX-3297] - Intelligent Fixture Preview can only create one fixture graphic at a time
* [VIX-3298] - Intelligent Fixture Preview - Provide better support for linking and unlinking the graphics from an element node
* [VIX-3299] - Fixture Effect - 'None' is showing up a function the user can pick and add to the effect
* [VIX-3302] - Intelligent Fixture Editors - Remove 'None' from the type drop down
* [VIX-3310] - Cleanup Intelligent Fixture Preview Descriptions
* [VIX-3318] - Add Enable/Disable logic to Intelligent Fixture Select Profile Wizard Page
* [VIX-3320] - Intelligent Fixture should color the beam green when the fixture is selected in the Preview Setup
* [VIX-3335] - Fixture Effect - Color Selection has a range curve for the Intensity but the label is just "Range"
* [VIX-3357] - Add support for color wheel half step in the Vixen Preview
* [VIX-3361] - Upgrade Newtonsoft JSON to rectify security vulnerability
* [VIX-3363] - Introduce better entropy into Candle Flicker effect
* [VIX-3368] - Add curve to adjust meteor effect tail taper
** Bug
* [VIX-3190] - Effect Editor does not support empty collections
* [VIX-3220] - Fixture Channel numbers do not compress when deleting channels
* [VIX-3224] - Fixture Profile Editor - Need to prevent adding new items when the current item is invalid
* [VIX-3228] - Fixture Property Editor - Color Wheel Grid contains binding copy/paste error
* [VIX-3234] - Fixture Effect - Missing XAML converter ColorToSolidColorBrush_ValueConverter
* [VIX-3236] - Fixture Effect is not saving the color associated with the functions
* [VIX-3237] - ColorWheelFilter discrete handler using FullColor vs Color
* [VIX-3238] - Deleting a Fixture Function through the wizard leaves Function blank on channel page and can cause a crash
* [VIX-3239] - Saving Intelligent Fixture is not updating in memory cache of fixtures
* [VIX-3240] - Add null check to CoarseFineByteBreakDownOutput
* [VIX-3241] - ColorWheelView.xaml has extra binding validation rule tags
* [VIX-3244] - Intelligent Fixture Group was associated with an element node
* [VIX-3245] - Possible to display two Intelligent Fixture Wizards simultaneously
* [VIX-3247] - Comment Cleanup
* [VIX-3248] - Possible Null Exception displaying Fixture Function Editor
* [VIX-3250] - Fixture Function Tag drop down is not consistently populating
* [VIX-3257] - Intelligent Fixture Editors - Deleting incomplete rows may crash
* [VIX-3258] - Intelligent Fixture Editors - Allow the user to create multiple incomplete rows
* [VIX-3259] - Intelligent Fixture Wizard - If an exception occurs Wizard is left in unknown zombie state
* [VIX-3260] - Intelligent Fixture Effects cause exception when pasting to another display element
* [VIX-3261] - Intelligent Fixture Preview - Is remembering what beam color was last displayed
* [VIX-3262] - Intelligent Fixture Preview is not properly clearing the legend
* [VIX-3263] - Intelligent Fixture Color Wheel Function not working properly with Fixture Effect and Preview
* [VIX-3267] - Intelligent Fixture Editors does not prevent the user from deleting the None Function
* [VIX-3280] - Update Intelligent Fixture Effects converters to handle when more than one effect instance is selected
* [VIX-3287] - Intelligent Fixture Wizard - Function Tag drop down is entirely empty for the None Function
* [VIX-3288] - Intelligent Fixture Preview - Add the ability to strobe when color wheel color is generated directly from Fixture Effect
* [VIX-3293] - Fixture Effect has some linq queries that prevent it from working at the group level
* [VIX-3296] - Intelligent Fixture Preview - Need to update color based on whether the graphic is connected to a node
* [VIX-3300] - Fixture Effect direct drive of the color wheel is not opening the shutter
* [VIX-3313] - Creating multiple Intelligent Fixtures results in a null reference
* [VIX-3314] - Display Setup and Vixen Preview does not refresh fixtures properly
* [VIX-3315] - Deleting an intelligent fixture node does not refresh the linked element associated with the fixture graphic
* [VIX-3317] - Add logic Fixture Specification Manager to handle duplicate fixture names
* [VIX-3321] - Intelligent Fixture Preview is not making the Intelligent Fixture drawing area a perfect square
* [VIX-3322] - Setup Preview is slow for large displays
* [VIX-3326] - Wave effect does not use the last string in a group.
* [VIX-3330] - Fixture Effect is not outputing color intents
* [VIX-3332] - Timeline Color is not getting initialized properly for user created fixture functions and could result in duplicate colors
* [VIX-3338] - Fixture Preview Not Dimming Correctly
* [VIX-3350] - Vixen Display Preview cutting off rightmost ~20% of display
* [VIX-3351] - Setup Preview Zoom broken
* [VIX-3354] - The Balls effect with encounter an error if it is placed on a Arch or similar that is only one string wide.
* [VIX-3358] - Add support for Ogg audio files to the new audio library.
* [VIX-3359] - Error When Migrating File
Release Notes - Vixen 3 - 3.9u4 Build
** Bug
* [VIX-3331] - SetLevel when applied to a group is not correctly creating an intent for the specific leaf node
* [VIX-3344] - VU Meter renders solid on if it starts at the beginning of a sequence.
** Improvement
* [VIX-3340] - Chroma Key should have an option to skip replacing when the replacement color is transparent or black.
Release Notes - Vixen 3 - 3.9u3 Build
** Bug
* [VIX-3316] - Deleting an element from the preview can lead to the preview shape being unlinked if the same element exists in other groups.
* [VIX-3327] - Chase effect does not switch behavior from Each / Element Group when copied to a group with only leaf elements.
** Improvement
* [VIX-3319] - The Audacity bar import should support duration and text now that Marks have that support.
Release Notes - Vixen 3 - 3.9u2 Build
** Bug
* [VIX-3289] - Display Setup and Vixen Preview does not refresh properly
* [VIX-3304] - Play/Pause button crashes Vixen
* [VIX-3309] - Remapping sequences using mapping config file
Release Notes - Vixen 3 - 3.9u1 Build
** Bug
* [VIX-3215] - WPF Context Menu's are all white
* [VIX-3254] - Vixen Crashes when trying to Export
* [VIX-3255] - Unable to load Gilbert prop models in the vendor browser.
* [VIX-3268] - New audio library crashes playback from scheduler
* [VIX-3270] - Audio glitch on resuming playback
* [VIX-3284] - Unable to drag and order layers in the layer manager.
* [VIX-3294] - ColorBreakdownFilter has a memory
** Improvement
* [VIX-3256] - Dev builds should contain the pdb debugging files.
Release Notes - Vixen 3 - 3.9u0 Build
** New Feature
* [VIX-988] - Remember Last Loaded Profile
* [VIX-3070] - Create Range Intent to support Moving Heads
* [VIX-3133] - Create DDP output controller
* [VIX-3135] - Add a browser for the Singing Faces Project
* [VIX-3139] - Add Universe export support to DDP module
* [VIX-3147] - Add Fixture Specification Manager to maintain fixture library
** Bug
* [VIX-2586] - Vixen crashes updating Launcher controller to Hide Windows
* [VIX-2962] - Vixen is shutting down every few hours.
* [VIX-3035] - Import Sequence Package Crash
* [VIX-3037] - Extra context menu divider on mark bar
* [VIX-3084] - Picture going up cut disappear before getting all the way to the top
* [VIX-3086] - Lip-sync effect minor bugs and supporting logic need code clean up.
* [VIX-3089] - Add icon to color picker form
* [VIX-3090] - Add icon to color breakdown form
* [VIX-3091] - Resize quick pick color choices on color picker form
* [VIX-3092] - Add icon to color configuration form.
* [VIX-3093] - Add icon to profiles form.
* [VIX-3094] - Add icon to profile name form.
* [VIX-3095] - Specify exact profile you are about to delete.
* [VIX-3098] - Editing Face Mapping colors can cause crash.
* [VIX-3099] - The FastPicture logic in the LipSync effect does not honor the default update interval.
* [VIX-3105] - Import of XModel can produce unexpected results when multiple ranges are specified in the model file.
* [VIX-3107] - Hard crash after importing custom prop and closing the preview with the prop selected.
* [VIX-3108] - XModel import does not properly handle ranges that are reversed.
* [VIX-3109] - Bars Effect rotation default issue
* [VIX-3113] - Bars effect rendering error
* [VIX-3122] - Dimming curve provide incorrect values when placed after the color breakdown filter.
* [VIX-3142] - Unhandled exception when adding new profile
* [VIX-3143] - Liquid effect ctrl copy crashes Vixen
* [VIX-3144] - VIX-3143 Wave Effect could crash Vixen when Ctrl dragging the effect
* [VIX-3151] - Paste as new in Display Setup can crash Vixen.
* [VIX-3164] - Remove extraneous info logging from the sequence grid class.
* [VIX-3172] - Cannot Upgrade tim file using build 1087
** Improvement
* [VIX-3082] - Create HighLowByteFilter to support moving heads with 16 bit control channels
* [VIX-3083] - Add RGBW color support
* [VIX-3100] - Allow Color Property to support more than 8 Discrete Colors
* [VIX-3119] - Message when no elements found when using find selected controllers
* [VIX-3129] - Add a simple function to set an effect to be the entire length of the sequence.
* [VIX-3130] - Ability to adjust all beat bars at the same time
* [VIX-3140] - Extend universe export support to support additional universe types
* [VIX-3148] - Remove redundant Module Type Id and Module Type Instance Id from ModuleStore file.
* [VIX-3155] - Separate the classes in ColorBrekdownModule.cs into separate cs files
* [VIX-3157] - Create Color Wheel Filter
* [VIX-3158] - Create Tagged Filter
* [VIX-3159] - Create Dimmer Filter
* [VIX-3160] - Create Shutter Filter
* [VIX-3163] - Remove version control feature.
* [VIX-3165] - Upgrade Catel to 5.12.10
* [VIX-3178] - Create Named8BitCommand to support Intelligent Fixtures
* [VIX-3182] - Update dependent libraries to the most recent versions.
Release Notes - Vixen 3 - 3.8u0 Build
** Improvement
* [VIX-2944] - Allow users to animate Morph effect shapes that enter and exit the display element
* [VIX-3033] - Add rotation to the Bars Effect
* [VIX-3045] - Add Gilbert Engineering to Vendor Browser
* [VIX-3053] - Add "Center Stop" to Picture Effect
* [VIX-3064] - Update OpenTK to the latest version (4.6.3)
* [VIX-3065] - Update core dependencies for the next release track.
** New Feature
* [VIX-2963] - Create Chevron Pixel Effect
** Bug
* [VIX-3051] - Bars Effect (Flat) Highlighting does not work with 3D when using Moves Left or Right
* [VIX-3052] - Morph Wipe is not lighting the top ring of pixels on one of my pixel trees
* [VIX-3071] - Vendor model browser can fail if item does not have an id.
* [VIX-3072] - Specialty sound devices can cause bad behavior.
* [VIX-3077] - Bars Effect is not initializing RotationAngle for existing sequences
* [VIX-3078] - Crash in Curve editor when inputting a period in the value text field.
Release Notes - Vixen 3 - 3.7u4 Build
** Bug
* [VIX-2937] - Sequence package import crashes on initial use.
* [VIX-2988] - Bug in export wizard
* [VIX-3019] - Floods disappear from preview
* [VIX-3026] - "Tree" effect operates 2X faster on FPP export compared to Preview
* [VIX-3031] - Updated from 3.6u2 to 3.7u3 and Vixen crashes on Windows 7 with Visual Styles disabled
* [VIX-3032] - Display item properties and button backgrounds do not update properly on some selection changes.
Release Notes - Vixen 3 - 3.7u3 Build
** Improvement
* [VIX-2878] - Add bounds checking for preview items to ensure they are visible.
* [VIX-3016] - No size fields for custom props
** Bug
* [VIX-3006] - Off-center effects
* [VIX-3012] - Morph polygons not saving
* [VIX-3017] - Crash while aligning effects
* [VIX-3018] - Row zoom draws effects in the wrong location.
Release Notes - Vixen 3 - 3.7u2 Build
** Improvement
* [VIX-2864] - Allow clicking the color in the discrete color picker
* [VIX-2878] - Add bounds checking for preview items to ensure they are visible.
* [VIX-2980] - Improve the drag performance of moving effects in the editor.
** Bug
* [VIX-2981] - Spin Effect fails to render when the fixed pulse time is invalid.
* [VIX-2982] - Copying the Morph effect by Ctrl Drag on an existing effect does not retain polygon settings.
* [VIX-2983] - Export won't open in FPP
* [VIX-2986] - Lipsync render visual in timeline may be blank at times.
* [VIX-2987] - The save/cancel routines in the Display / Preview Setup can conflict with rapid changes.
* [VIX-2989] - Vixen crashes when associating certain audio files.
* [VIX-2996] - Dimming filter interpolates command values incorrectly.
* [VIX-2997] - Attempting to Zoom rows in the editor when there are none can crash the application.
* [VIX-2998] - Rendering artifacts on the patching order screen
* [VIX-2999] - The Dummy Lighting controller fails to load with a thread contention issue.
* [VIX-3000] - Location property for one element resets to zeros when preview is edited
* [VIX-3006] - Off-center effects
* [VIX-3010] - Theme memory optimizations
* [VIX-3011] - Moving Custom Props at other than 100% zoom can be erratic.
Release Notes - Vixen 3 - 3.7u1 Build
** Bug
* [VIX-2969] - Wave Effect does not allow the user to change the Wave Type
* [VIX-2978] - Lipsync effects may not properly adjust back to the old Phoneme default.
** Improvement
* [VIX-2974] - Add End of Mark alignment indicators
Release Notes - Vixen 3 - 3.7u0 Build
** Improvement
* [VIX-989] - Improved Zig Zag Support
* [VIX-2275] - Double click on a controller name should open the configure form rather than unfold the channels
* [VIX-2750] - Add Progress Dialog while profile is loading
* [VIX-2786] - Add flip vertical and horizontal options to toolbar in custom prop editor
* [VIX-2787] - Add detents when rotating a selection while holding a modifier key in the Custom Prop and Preview editor.
* [VIX-2890] - Update all dependencies and prepare for moving to .NET Core.
* [VIX-2893] - Box2D contains warning/error when compiled under latest VS2019 Update
* [VIX-2895] - Update Snowflake effect to include a grid pattern
* [VIX-2896] - Make start of liquid effect movement deterministic
* [VIX-2904] - Move the effect pop-up info box in the editor
* [VIX-2916] - Migrate TeamCity workflows to GitHub Actions
* [VIX-2924] - Ability to set Export timing to the same as the Update Interval
* [VIX-2927] - Improve Face imports for analog props and provide better Lipsync effect defaults.
* [VIX-2929] - Improve the config and sequence file backup mechanism.
* [VIX-2943] - Modify Shockwave to use scaled radius curve.
* [VIX-2958] - Add ability to reverse a group of selected elements in the wire order tab of the Custom Prop Editor
** New Feature
* [VIX-2120] - Add polygon effect
* [VIX-2933] - Add a feature to duplicate a preview
** Bug
* [VIX-2601] - Crash when using pinwheel effect
* [VIX-2792] - Vixen 3.6 Set Level not working, on some elements
* [VIX-2851] - Setup Display - Undo refresh
* [VIX-2863] - Wave Effect - Improve Mark Support of Decaying Sine
* [VIX-2889] - Incorrect speed on effects
* [VIX-2899] - Bars Effect Bug (with workaround)
* [VIX-2900] - Shapes no longer working
* [VIX-2903] - Dev Build Crash; Preview has completely disappeared
* [VIX-2905] - Waveform effect missing from current dev builds.
* [VIX-2911] - Incorrect speed on Video effect after Update Interval is changed to 25ms
* [VIX-2917] - Particle Intensity on Liquid Effect will not Save
* [VIX-2920] - Fix unneeded fields exposed by recent Catel upgrade in Prop Editor
* [VIX-2922] - Reference to Liquid (Emitter) Effect in common code
* [VIX-2932] - Preview zoom gets stuck if you zoom to far in or out
* [VIX-2934] - Text effect introduces a small gap or blink after saving and reopening
* [VIX-2936] - Export Sequence Package not working
* [VIX-2941] - Make ExpandObjectObservableCollection Abstract
* [VIX-2942] - Preview Star does not detect Pixel or Standard properly when linked.
* [VIX-2952] - Custom prop selection in preview not working correctly.
* [VIX-2953] - Morph causing Vixen to freeze
* [VIX-2955] - Token replacement window title "naming" needs capatilized.
* [VIX-2957] - Custom prop editor has several minor bugs that can lead to a troublesome experience.
* [VIX-2959] - The wire order diagram menu in the display setup may not be enabled when it should be.
* [VIX-2960] - The profile Lock file may be empty an cause an error.
* [VIX-2961] - Scheduler can hang if sequences have not been migrated first.
Release Notes - Vixen 3 - 3.6u4 Release Build
** Bug
* [VIX-2845] - Math Error in Liquid SetupRender method
* [VIX-2866] - Location offsets are not properly applied to custom props
* [VIX-2867] - Adding element(s) to an existing group does not properly reflect their position in the tree.
* [VIX-2871] - certain effects do not work on certain elements
* [VIX-2872] - Crash when pasting non-vixen content into editor
* [VIX-2875] - Controllers may not start correctly when started from the web interface.
* [VIX-2877] - Cannot Export
* [VIX-2880] - Fatal error during sequence execution
** Improvement
* [VIX-2876] - Have the pixel effect frame interval match the default update interval.
Release Notes - Vixen 3 - 3.6u3 Release Build
** New Feature
* [VIX-2806] - Add Wave Effect
** Bug
* [VIX-2850] - When closing "Vixen Adminstration" with the sequencer open, it asks if you want to save, Yes, no or cancel, if you click cancel, everything closes.
* [VIX-2852] - Selection oddness in the element tree when adding items with the wizard.
* [VIX-2853] - Trying to link a smart object to existing elements in Preview invokes setup wizard when it should not.
* [VIX-2856] - Certain discreet colors not showing up on timeline
* [VIX-2857] - Legacy FPP 1.x export output folder validation is not working correctly.
* [VIX-2862] - Cancelling the effect mapping does not clear the old effects.
Release Notes - Vixen 3 - 3.6u2 Release Build
** Bug
* [VIX-2837] - Gradient toolbar does not automatically update new gradients
* [VIX-2838] - Find sources button from controller pane is not working.
* [VIX-2839] - Spin Effect in 3.6u1 Build 911 is not working, works fine in Build 899
* [VIX-2841] - The lasso selection does not handle overlapping elements on the same row correctly.
* [VIX-2842] - If the export wizard is cancelled it can still try to write the universe file which might fail and crash the application.
** Improvement
* [VIX-2840] - Speed up link elements tree when selecting nodes
Release Notes - Vixen 3 - 3.6u1 Release Build
** Improvement
* [VIX-391] - Opening sequences with unknown elements
* [VIX-2785] - Center move handle doesn't move while resizing.
* [VIX-2791] - Connect element creation wizards to Preview prop creation process.
* [VIX-2795] - Sync up the library references between the QMLibrary and the Liquid so they are consistent.
* [VIX-2805] - Optimize further the output section to improve capacity and reduce CPU usage.
* [VIX-2819] - Improve the render performance of the Preview Setup
* [VIX-2822] - Optimize the color conversions from HSV to RGB to improve performance.
* [VIX-2827] - Enhance the OpenDMX plugin to support choosing the device.
* [VIX-2832] - Improve the performance of the Element Tree in the Display Setup / Preview
* [VIX-2833] - Add element targeting options for the Chase and Spin effects.
** New Feature
* [VIX-679] - Import/Export of native V3 sequences
** Bug
* [VIX-837] - Movement of mutiple items glitchy in preview
* [VIX-2025] - .net installer prompts for reboot before vixen install is done.
* [VIX-2641] - Bars Effect 3D - Move Right & Horizontal Expand issue
* [VIX-2693] - Scheduler problems
* [VIX-2792] - Vixen 3.6 Set Level not working, on some elements
* [VIX-2793] - Entering non numeric data in the Curve Editor causes crash
* [VIX-2794] - Keyboard shortcuts for play sequence (F5) not working
* [VIX-2800] - Vixen crashing during effect color selection from gradient menu
* [VIX-2802] - FPP 2.6+ compression is not enabled.
* [VIX-2803] - New Install start-up error
* [VIX-2808] - Video does not render in preview
* [VIX-2810] - The levels deep function on the Twinkle does not render.
* [VIX-2811] - Ghost / Empty Toolbar items in the sequence editor.
* [VIX-2812] - Audio files are being missed in new Sequence import.
* [VIX-2813] - Bar effect 3D setting not rendering properly
* [VIX-2817] - Some message dialogs may popup in odd places.
* [VIX-2820] - Preview link elements slow and abnormal warning.
* [VIX-2821] - Open multiple sequence takes long time
* [VIX-2825] - Wipe on and off abnormal when brightness less than 100%
* [VIX-2826] - Native Sequence export does not include the old Nutcracker data files.
* [VIX-2828] - Universe setup should warn if the total channel count is out of sync with the controller count.
* [VIX-2829] - Cannot lasso / shift select multiple effects when the rows they are in are visible in multiple groups.
* [VIX-2831] - Custom Prop Editor drag drop elements can reverse order of dropped elements in some cases.
* [VIX-2834] - Mark Collection Editor field binding warning,
* [VIX-2835] - Multi String smart objects are not staying connected.
* [VIX-2836] - The delete mapping functionality is not working in the source tree of the profile mapper.
Release Notes - Vixen 3 - 3.6 Release Build
** New Feature
* [VIX-488] - Add option to Balls effect to enable random Balls movement.
* [VIX-784] - Wipe Movement Curve
* [VIX-2226] - Create New Toolbars for the Curve, Gradient and Color Libraries
* [VIX-2229] - Extend the grid cursor position line onto the audio track.
* [VIX-2234] - Add Web support for enable/disable controllers
* [VIX-2272] - Split effects
* [VIX-2373] - Add a Strobe effect
* [VIX-2394] - Playback Controls in Preview
* [VIX-2489] - Bring back "paste effects to mark
* [VIX-2542] - Adding a media toolbar to the display preview
* [VIX-2646] - Always on Top Preview - but only when playing
* [VIX-2679] - Freeze Butterfly effect
* [VIX-2683] - Add compression to FPP export format
* [VIX-2698] - "Egg Timer" Fill
* [VIX-2699] - Create toolbar for Alignment tools
* [VIX-2746] - Dev Build Wipe Effect Location
* [VIX-2766] - Add the ability to edit the element tree from the Preview.
* [VIX-2777] - Create a Vendor inventory / Model Browser
** Bug
* [VIX-750] - Objects in preview not aligned after using zoom in configure preview.
* [VIX-2014] - Preview Grid Element does fill bounding box
* [VIX-2213] - Color Copy with Only One Choice
* [VIX-2223] - Crash while configuring controller
* [VIX-2258] - Crash when toggling "View Timeline Window"
* [VIX-2269] - Taking a long time for simple operations in the Display Setup
* [VIX-2382] - LipSync Pixel Map Editor Title Cut Off
* [VIX-2447] - Import Type Selection Form Missing Vixen Icon
* [VIX-2565] - Lip Sync ~ System.NullReferenceException: Object reference not set to an instance of an object
* [VIX-2580] - Elements sometimes lose proper perception, but maintain proper relative location
* [VIX-2633] - Crash when exporting to FPP.
* [VIX-2636] - Show setup form has several bugs.
* [VIX-2638] - When trying to switch a gradient color from a color stop, full crash and shutdown
* [VIX-2640] - Text effect - iteration setting ignored with rotate option
* [VIX-2644] - The link elements form in the preview shape setup does not resize the columns correctly when items are linked.
* [VIX-2649] - Updating element settings causes crash
* [VIX-2650] - When cloning a Spin effect the enable minimum brightness setting does not transfer.
* [VIX-2654] - The FPP universe file export has a bug where it calculates the start channel incorrectly at every controller switch.
* [VIX-2657] - Pinwheel Offset position is limited to +-100 pixels, but it should be based off Buffer size.
* [VIX-2660] - Streaming ACN Controller crash on some edits when using multicast.
* [VIX-2661] - Using the tile wheel to pan left in the timeline does not work, but right does.
* [VIX-2668] - Countdown effect is not shown in the editor when using 32bit version of V ixen
* [VIX-2671] - Curve Editor X and Y value boxes no longer allow decimal values.
* [VIX-2672] - Extra mark line through wave form
* [VIX-2674] - The Picture effect looses one row at the top of all images.
* [VIX-2677] - Direction in Countdown effect when Location is selected is not working correctly.
* [VIX-2678] - The color module updating is inconsistent and does not always update.
* [VIX-2704] - Video with mega tree or grid not ok for other defaut duration (2.0s)
* [VIX-2713] - FPP Export 2.0 universe file nulls instead of empty field
* [VIX-2719] - Vixen Crashes or Exits without saving
* [VIX-2722] - Plasma effect has a speed range of 1 to 100 so can not be stopped.
* [VIX-2724] - Butterfly effect not working correctly under certain conditions.
* [VIX-2725] - Colorwash effect not working correctly over a long period of time.
* [VIX-2726] - Spirograph effect has a speed range of 1 to 100 so can not be stopped.
* [VIX-2727] - Dragging an effect from the Effects toolstrip through the a new Library toolstrip loses it's visual drag.
* [VIX-2729] - Drag Color to Toolstrip Color library not working and a couple of null issues.
* [VIX-2733] - Meteor speed still moves when speed and variation is set to 0.
* [VIX-2734] - Wipe On and Wipe off when using Burst In or Out in Wipe effect doesn't do anything.
* [VIX-2739] - Crash when import my custom prop
* [VIX-2741] - Exporting a universe file from the wizard crashes Vixen.
* [VIX-2744] - Chroma Key config issues when using multiple Chroma Key layers
* [VIX-2749] - Auto Save As Dialog gets hidden behind other windows
* [VIX-2751] - Serialization error in the prop editor module stemming from VIX-2655
* [VIX-2754] - Discrete custom props are not properly displayed in the OpenGL previewer.
* [VIX-2757] - Dependency libraries being copied to the root when they should not be.
* [VIX-2758] - Shapes Output path in Debug X86 config is incorrect and Shapes effect is not displayed in Sequencer.
* [VIX-2760] - Wipe migration from several versions ago can crash because the migration does not handle missing properties correctly.
* [VIX-2764] - Layer mixing is not working correctly
* [VIX-2767] - Update the remaining deprecated NLog methods.
* [VIX-2768] - Adding Marks with Fill to Gap option does not initially render correctly.
* [VIX-2769] - Wipe effect does not render properly
* [VIX-2771] - Time Editor Overlapping Effects no longer displayed
* [VIX-2774] - Export can leave outputs in a bad state when it finishes.
* [VIX-2776] - Clean up unused libraries and build dependencies.
* [VIX-2778] - App crashes when importing xModel from Xlights
* [VIX-2781] - Crash all vixen software with build 863
* [VIX-2783] - Imported models in the preview do not show in the element tree after import.
** Improvement
* [VIX-2273] - Effect default length change
* [VIX-2291] - Export Sequence Output Network File Option
* [VIX-2537] - Changing to Mark Collections in the Lip-sync should try to select a phoneme collection if one is available.
* [VIX-2589] - Add more directions to the wipe.
* [VIX-2634] - Allow FPP universe file generation when export includes non sACN controllers
* [VIX-2635] - Update FPP Export for FPP 2.x format
* [VIX-2647] - Scroll to newly added universe in SACN cofig screen
* [VIX-2651] - Seamless show transitioning
* [VIX-2655] - I am colorblind and can't use the Custom Prop Editor. Please change the color of the selected light in the Custom Prop Editor.
* [VIX-2662] - Add ability to copy/paste marks in the mark bar.
* [VIX-2676] - Improve Render speed of the Text, Countdown and Shapes effects.
* [VIX-2687] - Dissolve needs additional color options on the grouping.
* [VIX-2688] - Add a ? help icon to the header of the effect editor that links to the website documentation.
* [VIX-2689] - Child elements has effects indicator
* [VIX-2694] - Add X and Y Movement curves to the Meteor effect.
* [VIX-2695] - Add X and Y Movement curves to the Snowflake effect.
* [VIX-2696] - Add X and Y Movement curves and Height curve to the Border effect.
* [VIX-2701] - Create a default mixing filter for the layers to do simple mixing so you can stack multiple layer groups.
* [VIX-2703] - Make editor toolbars movable/customizable
* [VIX-2707] - Ordering Within Color/Gradient/Curve Libraries
* [VIX-2708] - Add Spinning Film Leader to Count Down Effect
* [VIX-2709] - Update dependent libraries to current versions
* [VIX-2714] - Add select all button to sequence selection page in bulk exporter.
* [VIX-2717] - Change the Effect Toolstrip so when labels are hidden it reduces the Toolstrip height.
* [VIX-2718] - Add configuration to the source to allow TortoiseGit to auto link the ticket number to the bug tracker.
* [VIX-2720] - Add Motion selection (Iterations/Speed) and Speed Curve to the ColorWash effect
* [VIX-2721] - Add Motion selection (Iterations/Position) and PositionCurve to the Curtain effect
* [VIX-2723] - Add Motion selection (Iterations/Speed) and SpeedCurve to the Spiral effect
* [VIX-2731] - Add Liquid Effect
* [VIX-2736] - Add Circle Burst to the Wipe effect.
* [VIX-2753] - Save timed sequence form capitalization
* [VIX-2759] - Performance optimizations in the core engine.
* [VIX-2761] - Upgrade to .Net Framework 4.7.2
* [VIX-2762] - Add Character Explode and Fall direction to Text Effect
* [VIX-2763] - Improve the performance of the Circles effect
* [VIX-2765] - Remove mark end indicator while moving when mark bars aren't shown
* [VIX-2772] - Pause Button
* [VIX-2782] - Change format of Liquid effect text
* [VIX-2784] - Switch to selection mode after importing custom prop
* [VIX-2789] - Add the ability to assign face mapping to props in the Custom Prop Editor
* [VIX-2790] - Create Element templates for Arch, Star, and Candy Cane to align with smart objects.
Release Notes - Vixen 3 - 3.5u4 Release Build
** Improvement
* [VIX-2177] - Text positioning
* [VIX-2500] - Workflow improvements - improve starting name and file location handling
* [VIX-2539] - Add ability to add positioning to images in matrix lipsync effect
* [VIX-2609] - Play LipSync phrase/word
* [VIX-2613] - Add a color change layer mixing filter
* [VIX-2614] - Meteors doesn't work properly for linear display
** Bug
* [VIX-2610] - The Random and Rainbow options only show red colors.
* [VIX-2611] - Gradient across items in Wipe effect not working correctly.
* [VIX-2612] - The Mask and Fill setup window does not properly initialize the current state of the requires mixing partner checkbox.
* [VIX-2616] - Vixen crashes on Papagayo import when file is incomplete
Release Notes - Vixen 3 - 3.5u3 Release Build
** New Feature
* [VIX-2225] - Save Sequence
* [VIX-2231] - Option to add and remove main toolbar buttons
* [VIX-2452] - Parametric intensity curves
* [VIX-2566] - Create a Dissolve effect
* [VIX-2602] - Add Vixen YouTube Channel to the help menus
** Improvement
* [VIX-2274] - Add Start/stop controllers to context menu
* [VIX-2549] - Add ability to reverse the order of a group of selected items in the patching order helper.
* [VIX-2556] - Add logic to utilize the face info in xModels to better map faces to groups.
* [VIX-2584] - Ignore punctuation in the new Lipsync labels when converting to Phonemes.
* [VIX-2592] - Create an option in the Dissolve effect to activate elements at marks
* [VIX-2598] - Add basic function to provide a wiring diagram for elements
* [VIX-2603] - Preview Net smart object does not display on initial load without opening preview setup in OpenGL preview.
* [VIX-2605] - Add Depth of Effect to the Dissolve Effect
* [VIX-2608] - Add Dissolve in both directions together in the Dissolve effect.
** Bug
* [VIX-2298] - Meteors Effect dissapears or become single color
* [VIX-2313] - Meteors Effect changing over time
* [VIX-2505] - Lipsync effect doesn't honor the string oriantation property.
* [VIX-2536] - Mark collection export crashes Vixen
* [VIX-2538] - Hard Crash when using word breakdown
* [VIX-2544] - On one of my computers the new Effects Toolbar ends up on the same row as the Main toolbar.
* [VIX-2545] - Creating element face mapping initially in the editor does not save correctly.
* [VIX-2546] - The output evaluators can throw an error in some rare circumstances when poor timing leaves them with null values
* [VIX-2547] - Remove some verbose debug logging from the release versions.
* [VIX-2552] - Profile editor allows paths with trailing spaces
* [VIX-2553] - Lipsync causing Vixen to crash
* [VIX-2554] - Copy/Paste of Text Effect doesn't preserve Orientation
* [VIX-2557] - The export wizard does not select the proper output folder for Falcon Sequences
* [VIX-2558] - Export wizard bugs
* [VIX-2562] - VIX-2452 created a invalid dependency on the E131 module.
* [VIX-2563] - Development 716 not saving changes
* [VIX-2564] - The display setup does not calculate element / patching info correctly on duplicate elements in the same group..
* [VIX-2567] - Effect Toolbar lables are massive on my new laptop.
* [VIX-2568] - 3 elements will not turn on unless re patched each startup
* [VIX-2569] - Row Labels not being drawn all teh way to the bottom
* [VIX-2570] - Font scaling in any effect that uses Font is incorrect.
* [VIX-2572] - Scaling issue with the Element Link Form in Preview Setup.
* [VIX-2574] - Scaling issue with the Effect Icons in the sequence editor
* [VIX-2575] - Scaling issue with the Scheduler Show setup
* [VIX-2576] - Scaling issues with the Vixen Release notes and Check Updates form
* [VIX-2577] - Scaling issue with the Icons within the Preview setup
* [VIX-2578] - Scaling issue with the Beats and Bars form in the Sequence editor
* [VIX-2579] - Typing a uri into the export output folder in the export wizard can cause a crash.
* [VIX-2582] - Lipsync orientation doesn't honour the element orientation when move the effect between elements.
* [VIX-2583] - Countdown effect set to 60 minutes starts at 0:00 instead of 60:00
* [VIX-2591] - Profile crashes upon opening
* [VIX-2594] - Vixen Crash when close the preview at Windows Task
* [VIX-2597] - The pattern and replace rename functions in the Custom Prop Editor don't properly check for duplicate names.
* [VIX-2600] - Preview setup properties pane incorrectly displays with Pixel Grid Properties title
* [VIX-2606] - The token replacement dialog for custom props does not become the active window.
* [VIX-2607] - Effects that use the standard Random generation do not render correctly or at all when there is a high number of random numbers required across each effect.
Release Notes - Vixen 3 - 3.5u3 Release Build
** New Feature
* [VIX-2225] - Save Sequence
* [VIX-2231] - Option to add and remove main toolbar buttons
* [VIX-2452] - Parametric intensity curves
* [VIX-2566] - Create a Dissolve effect
* [VIX-2602] - Add Vixen YouTube Channel to the help menus
** Improvement
* [VIX-2274] - Add Start/stop controllers to context menu
* [VIX-2549] - Add ability to reverse the order of a group of selected items in the patching order helper.
* [VIX-2556] - Add logic to utilize the face info in xModels to better map faces to groups.
* [VIX-2584] - Ignore punctuation in the new Lipsync labels when converting to Phonemes.
* [VIX-2592] - Create an option in the Dissolve effect to activate elements at marks
* [VIX-2598] - Add basic function to provide a wiring diagram for elements
* [VIX-2603] - Preview Net smart object does not display on initial load without opening preview setup in OpenGL preview.
* [VIX-2605] - Add Depth of Effect to the Dissolve Effect
** Bug
* [VIX-2298] - Meteors Effect dissapears or become single color
* [VIX-2313] - Meteors Effect changing over time
* [VIX-2505] - Lipsync effect doesn't honor the string oriantation property.
* [VIX-2536] - Mark collection export crashes Vixen
* [VIX-2538] - Hard Crash when using word breakdown
* [VIX-2544] - On one of my computers the new Effects Toolbar ends up on the same row as the Main toolbar.
* [VIX-2545] - Creating element face mapping initially in the editor does not save correctly.
* [VIX-2546] - The output evaluators can throw an error in some rare circumstances when poor timing leaves them with null values
* [VIX-2547] - Remove some verbose debug logging from the release versions.
* [VIX-2552] - Profile editor allows paths with trailing spaces
* [VIX-2553] - Lipsync causing Vixen to crash
* [VIX-2554] - Copy/Paste of Text Effect doesn't preserve Orientation
* [VIX-2557] - The export wizard does not select the proper output folder for Falcon Sequences
* [VIX-2558] - Export wizard bugs
* [VIX-2562] - VIX-2452 created a invalid dependency on the E131 module.
* [VIX-2563] - Development 716 not saving changes
* [VIX-2564] - The display setup does not calculate element / patching info correctly on duplicate elements in the same group..
* [VIX-2567] - Effect Toolbar lables are massive on my new laptop.
* [VIX-2568] - 3 elements will not turn on unless re patched each startup
* [VIX-2569] - Row Labels not being drawn all teh way to the bottom
* [VIX-2570] - Font scaling in any effect that uses Font is incorrect.
* [VIX-2572] - Scaling issue with the Element Link Form in Preview Setup.
* [VIX-2574] - Scaling issue with the Effect Icons in the sequence editor
* [VIX-2575] - Scaling issue with the Scheduler Show setup
* [VIX-2576] - Scaling issues with the Vixen Release notes and Check Updates form
* [VIX-2577] - Scaling issue with the Icons within the Preview setup
* [VIX-2578] - Scaling issue with the Beats and Bars form in the Sequence editor
* [VIX-2579] - Typing a uri into the export output folder in the export wizard can cause a crash.
* [VIX-2582] - Lipsync orientation doesn't honour the element orientation when move the effect between elements.
* [VIX-2583] - Countdown effect set to 60 minutes starts at 0:00 instead of 60:00
* [VIX-2591] - Profile crashes upon opening
* [VIX-2594] - Vixen Crash when close the preview at Windows Task
* [VIX-2597] - The pattern and replace rename functions in the Custom Prop Editor don't properly check for duplicate names.
* [VIX-2600] - Preview setup properties pane incorrectly displays with Pixel Grid Properties title
* [VIX-2606] - The token replacement dialog for custom props does not become the active window.
* [VIX-2607] - Effects that use the standard Random generation do not render correctly or at all when there is a high number of random numbers required across each effect.
Release Notes - Vixen 3 - 3.5u2 Release Build
** Bug
* [VIX-461] - Adding additional Strings to existing Mega Tree does not work correctly.
* [VIX-896] - Color property doesn't update editor when modifying discrete color set
* [VIX-1139] - When the editor is closed with a small size it fails to reopen.
* [VIX-2023] - Vixen closes down with invalid file characters in zip wizard
* [VIX-2383] - LipSync new map then cancel still creates a new map.
* [VIX-2384] - Sequence Update Message Box not Capitalized
* [VIX-2435] - Face mapping face setup form missing Vixen icon
* [VIX-2462] - When I click anywhere in the preview editing screen Vixen shuts down.
* [VIX-2497] - Color in the Text and Count down effect visual representation is incorrectly represented.
* [VIX-2501] - Incorrect patch point counts for imported Custom Prop
* [VIX-2502] - Rendering error or freeze on opening sequence
* [VIX-2503] - Video speed in the Video effect is slower then it should be and some video are off center.
* [VIX-2506] - Updated to Vixen 3.5.1 and could not open 3 sequences
* [VIX-2507] - Intensity overlay doesn't work if element is repeated in a group
* [VIX-2508] - Beat marks able to be given empty names
* [VIX-2515] - Custom Prop Editor Order View List does not update when lights are deleted from the Drawing Panel.
* [VIX-2517] - Drag Drop in the tree view of Custom Prop Editor will let you duplicate an element in the same group
* [VIX-2518] - Full crash when adding pixel grid to preview configuration screen without selecting a node.
* [VIX-2519] - The logic to detect if a window is on screen has some holes in it and can leave a user unable to see the window.
* [VIX-2524] - The lip sync effect does not properly honor discrete elements.
* [VIX-2526] - Editing element face mapping from within the sequence editor does not save the changes.
* [VIX-2531] - Singing faces elements missing on discrete colored elements
* [VIX-2534] - Zip profile wizard can crash if the target runs out of space.
* [VIX-2535] - Effects only flip colors when change in direction
** New Feature
* [VIX-2208] - Add Effect Toolstrip
* [VIX-2457] - Add 400% zoom back to preview configuration
** Improvement
* [VIX-2496] - Allow different colors for each word in Text Effect when Marks are used.
* [VIX-2498] - Add some new features to the Countdown effect.
* [VIX-2504] - Add the ability to generate the universe file for the Falcon Pi Player.
* [VIX-2511] - Add ability to insert a dimming curve after an element that is already patched.
* [VIX-2516] - Add ability to delete lights from the Order tab in the Custom Prop Editor
* [VIX-2525] - Add an option to the Mask and Fill Layer filter to require a mixing partner.
* [VIX-2528] - Compact the space the time line tree view takes up.
* [VIX-2530] - Phoneme Mark collections linking improvements.
Release Notes - Vixen 3 - 3.5u1 Release Build
** New Feature
* [VIX-2179] - Add Location Support to the Picture Effect
* [VIX-2478] - Add Location Support to the Video Effect
** Improvement
* [VIX-2450] - Performance and Memory improvements to Effects Part 2
* [VIX-2464] - Log the build/release version to the info logs on startup to aid in diagnostics.
* [VIX-2468] - Change the Text effect visual representation on the timeline to show the users text.
* [VIX-2473] - Have the installer prevent the user from choosing their Desktop or Windows folder for install paths.
* [VIX-2474] - Change the Coundown effect visual representation on the timeline to show countdown values.
* [VIX-2482] - Add grid orientation property for elements to influence effect orientation
* [VIX-2485] - Restore some of the performance lost in the fix for VIX-2461
* [VIX-2495] - Picture effect locations render performance improvement.
** Bug
* [VIX-2461] - Save Error/crash during export sequence
* [VIX-2466] - Lip-Sync effect is not properly ignoring case of the phonemes in Marks.
* [VIX-2467] - The token replacement message box in the preview does not center parent.
* [VIX-2469] - Vixen Crashing while ungrouping Custom Prop at preview editor
* [VIX-2475] - More than 20 items in show, rearranging doesn't work correctly
* [VIX-2476] - Scheduler does not automatically start when it is enabled and Vixen is started.
* [VIX-2477] - Lips-sync fill mark gaps adds overlapping rests where they should not be.
* [VIX-2480] - Shapes effect fails to render when size is reduced to a low number.
* [VIX-2481] - Picture effect stretch to grid was not added to the name and description descriptors
* [VIX-2484] - Miscellaneous issues with Marks
* [VIX-2487] - Beat bar detection causing crash
* [VIX-2488] - Minimizing the OpenGL preview causes the preview to stop working.
* [VIX-2492] - Video effect fails to render in 32 and 64 bit when not running from Visual Studio.
* [VIX-2494] - Shapes effect can get into a state where it fails to render.
Release Notes - Vixen 3 - 3.5 Release Build
** Bug
* [VIX-496] - Issue with Undo/Redo in Sequencer
* [VIX-928] - Pasting effects with no target crashes Vixen
* [VIX-1889] - In the Snowflake effect, the flakes disappear as soon as part of them touch the bottom of the element instead if transitioning through.
* [VIX-1928] - Alternating Effect. Flashing on change
* [VIX-1973] - Adding Pixel Star causes crash when using odd pixel counts
* [VIX-1984] - Oval Ellipse / Copy Paste issue
* [VIX-2199] - Grouping Error Button Options
* [VIX-2205] - When you have same element in multiple groups visible and paste will paste twice as many.
* [VIX-2233] - Add render overide for the Menu Seperator to the themetoolstriprender module
* [VIX-2236] - Meteors effect blanks all elements when dropped on single element.