-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease_log.html
executable file
·2171 lines (1855 loc) · 111 KB
/
release_log.html
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
<div class="slider-revolution-update-list">
<h3 class="version-number">Version 5.4.8 StarPath (20th June 2018)</h3>
<div class="change"><strong style="font-weight:700">CHANGES</strong></div>
<ul>
<li>Updated Google Fonts List</li>
<li>YouTube videos now loaded from youtube-nocookie.com</li>
<li>Changed database checks to lower the query count</li>
<li>Changed line endings of two svg files from CR to CRLF</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed YouTube BG video not loading sometimes in the latest Chrome</li>
<li>Fixed incorrect Vimeo Layer position on slide change</li>
<li>Fixed WooCommerce Slider incorrectly adding all In Stock products of all categories if choosen</li>
<li>Fixed WPML Slider, incorrectly using wrong language Slides in some configurations</li>
</ul>
<h3 class="version-number">Version 5.4.7.4 StarPath (23rd May 2018)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Added suggested privacy policy content for WP 4.9.6</li>
<li>Added options for GDPR
<ul>
<li>Added Global Setting to download Google Fonts instead of including them</li>
<li>Added Global Setting to stop the inclusion of Google Fonts completely</li>
</ul>
</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed PHP count() warning messages occuring on latest PHP builds</li>
<li>Fixed a small Visual Composer page builder issue</li>
</ul>
<h3 class="version-number">Version 5.4.7.3 StarPath (26th April 2018)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed Video Playback Issues with Chrome Browser</li>
<li>Fixed and adapted to new Instagram requirements</li>
</ul>
<h3 class="version-number">Version 5.4.7.2 StarPath (17th March 2018)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed a Bug where a change of Slide Length in Slide General Settings negative influences Default Transition Time</li>
<li>Added ";" to themepunch.tools.min.js file to avoid issues by chaining files</li>
<li>Added ";" to Slider Initialisation to avoid issues by minimising files</li>
<li>Fixed ForceRewind Video option, which will now reset Video Position before the Layer shown to avoid Frame jumps</li>
<li>Fixed and adapted to new Instagram API result format</li>
</ul>
<div class="slider-revolution-update-list">
<h3 class="version-number">Version 5.4.7.1 StarPath (17th February 2018)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Further fixes for DOMContentLoaded issues where document height was not well calculated at start</li>
</ul>
<h3 class="version-number">Version 5.4.7 StarPath (1st February 2018)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed DOMContentLoaded issues and extended with fall back on Document Ready State to support Deferred</li>
<li>Fixed Instagram Author not displaying correctly</li>
</ul>
<h3 class="version-number">Version 5.4.6.6 StarPath (26th January 2018)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Removed create_function() to retrieve compatibility with latest PHP versions</li>
<li>Fixed Instagram Content/Title not displaying correctly</li>
</ul>
<h3 class="version-number">Version 5.4.6.5 StarPath (18th January 2018)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed Safari 11.0 HTML5 Audio File Playback on frontend</li>
<li>Fixed Twitter Content Text not displaying</li>
</ul>
<h3 class="version-number">Version 5.4.6.4 StarPath (29th November 2017)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Added ability to display Static Layers behind Slide content</li>
<li>Added CSS pointer-events option for Slide Layers</li>
</ul>
<div class="change"><strong style="font-weight:700">CHANGES</strong></div>
<ul>
<li>Now fetching higher quality YouTube Video Poster</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed remaining Vimeo Video API Issues</li>
<li>Fixed Color Picker Widget Display Issue</li>
<li>Fixed HTML5 Audio issue for Safari 11</li>
<li>Fixed revapi.revstart() issue</li>
<li>Fixed Twitter Image issue with tweets over 168 characters</li>
</ul>
<h3 class="version-number">Version 5.4.6.3.1 StarPath (15th November 2017)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>HotFix Instagram API issue</li>
</ul>
<h3 class="version-number">Version 5.4.6.3 StarPath (10th November 2017)</h3>
<div class="change"><strong style="font-weight:700">CHANGES</strong></div>
<ul>
<li>Added "playsinline" support for Safari 11 video</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed Instagram API issue</li>
<li>Fixed Vimeo autoplay issue</li>
<li>Fixed muted YouTube playing brief sound issue</li>
</ul>
<div class="slider-revolution-update-list">
<h3 class="version-number">Version 5.4.6.2 StarPath (13th October 2017)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Added action to prepare the plugin for upcoming AddOns</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed text typos</li>
</ul>
<h3 class="version-number">Version 5.4.6.1 StarPath (07th October 2017)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed TGM and general activation issues</li>
<li>Fixed captions installation issue</li>
<li>Fixed HTML5 Video autoplay for Safari 11</li>
</ul>
<h3 class="version-number">Version 5.4.6 StarPath (15th August 2017)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Added autoplay functionality for HTML5 videos on mobile</li>
<li>Added loadbalancing functionality for further stability of premium features</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>CSS Issue in Backend where RevSlider Toolbar would overlap the WP Login/Logout popup in some cases</li>
</ul>
<h3 class="version-number">Version 5.4.5.2 StarPath (5th August 2017)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Added compatibility for Weather and 360 Degree AddOn</li>
</ul>
<h3 class="version-number">Version 5.4.5.1 StarPath (10th June 2017)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed Color Picker PHP bug caused in old PHP versions</li>
</ul>
<h3 class="version-number">Version 5.4.5 StarPath (23rd May 2017)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Set Parallax BG and Layers Speed/Delay Globally independent. 15 Levels Depth still available ! </li>
<li>Added Color Animation Attributes like Background and Font Color for Shape and Text Layers</li>
<li>Added Brightness Filter Attribute for Idle, Hover, Start and End Animation frames to provide new Effects on Layers</li>
<li>Added Grayscale, Brightness, Blur Slide Transitions in different Combinations</li>
</ul>
<div class="change"><strong style="font-weight:700">CHANGES</strong></div>
<ul>
<li>Updated Google Fonts list</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed HTML Export gradiants not working properly</li>
<li>Fixed YouTube and Vimeo Video Rewind issue on reenter specific slides.</li>
<Li>Fixed Toggle FullScreen Mode where YouTube and Vimeo Videos were not Play any more</Li>
<li>Ken Burn Slide Effect Issues at first Slide Change has been fixed</li>
<li>First Covered BG Video in some Templates and Themes were caclualted on the wrong Height Base. Issue is fixed due a double call on setSize at preparing the Video</li>
<li>Safari Scroll, 3D and Blur Effects with missing layers Bug has been fixed by adding a preserve-3d transform style on Parallax Wrap level to the current layers</li>
<li>Image Filters on Ken Burn Animated BG Elements are working now fine. FireFox is still a bit Laggy if CSS Filters are enabled on Ken Burn Elements</li>
<li>Fixed Responsive Levels not working properly in certain constellations</li>
<li>Fixed Background Default Volume Settings in Backend</li>
<li>Fixed Rotation issues on Slide Main Image transitions (like Box Slot Animation Rotated)</li>
<Li>Updaed Colorpicker JS to fix some issues with Progress Bar.</Li>
<li>Fixed HTML5 volume not beeing written</li>
</ul>
<h3 class="version-number">Version 5.4.3.2 StarPath (9th May 2017)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Added action revslider_preview_slider_footer to be used by new AddOn Before/After</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Changed Google Fonts | to %7C for HTML/CSS Validation</li>
<li>Fixed several typos</li>
</ul>
<h3 class="version-number">Version 5.4.3.1 StarPath (25th April 2017)</h3>
<div class="change"><strong style="font-weight:700">CHANGES</strong></div>
<ul>
<li>Typo in API descriptions removed</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed Slider/Slide Preview not working properly in 5.4.3</li>
<li>Fixed Export to HTML missing some JavaScript in 5.4.3</li>
<li>Added further WooCommerce 3.0+ compatibility with Out of Stock and Featured management</li>
</ul>
<h3 class="version-number">Version 5.4.3 StarPath (21th April 2017)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Introducing jQuery.fn.getRSVersion() and jQuery.fn.getRSVersion(true) functions to get Core and all Loded Module Version numbers.</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Added WooCommerce compatibility for 3.0+</li>
<li>Fixed Several Typos</li>
<li>Fixed Instagram bug, where Slides would not show if maximum entries are higher than what was fetched</li>
<li>Fixed Deep Linking in Carousel Slider</li>
<li>Fixed Issue where YouTube Video Background in Pause / End Mode shows the Default YouTube Cover image instead of the Predefined poster Image</li>
<li>Fixed Wrong Navigation Direction / Thumbnail Images on Arrow Navigation in some kind of Cases</li>
<li>Fixed Disable on Mobile not working if Slider was added through a Widget</li>
</ul>
<h3 class="version-number">Version 5.4.2 StarPath (08th April 2017)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>InLine Play of HTML5 Videos on Android and on iOS are supported</li>
<li>New Content Source "Current Post/Page"</li>
<li>New Author Information Metas for Post Sliders</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed FadeFromRight Animation</li>
<li>Fixed RevKill() Bugs and updated Focus/Blur features which will only triggered once. Blur Focus Listener will also called once per DOM instead of per Slider</li>
<li>Fixed Columns Margin calculation. Columns now can be perfectly spaced with the 4 level margin and padding attributes</li>
<li>Fixed Column BG Animation and Position Calculations.</li>
<li>Fixed Facebook API Issue</li>
</ul>
<h3 class="version-number">Version 5.4.1 StarPath (28th February 2017)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed Colorpicker Issues where wrong old Color values broke the Convert process and negative influenced the Slide Editor</li>
<li>Fixed Scroll Below bugs</li>
<li>Fixed Notices of undefined variables that can occur after updating</li>
</ul>
<h3 class="version-number">Version 5.4 StarPath (22nd February 2017)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Added Blur Effect on Ken Burn Animation. Start and End Value can be defined</li>
<li>Added Letter Spacing on Multiple Levels</li>
<li>Introducing new Layer animations: Block Animation (left,right,top,bottom)</li>
<li>Introducing a new Color Picker which allows to pick Alpha Values and Gradient Colors as well</li>
<li>Communication with ThemePunch servers now only via SSL</li>
<li>Added a feature to allow autoplay HTML5 Videos on Android Devices also</li>
<li>Added SEO follow/nofollow option to simple link actions</li>
<li>Added Split Animation Direction like forwards, backwards, middle to edge, edge to middle, random</li>
<li>Random Split Transitions will calculate on demand Random values per Splitted element</li>
<li>Added Split Animation Cycles to create Animation patterns on Splitted elements</li>
<li>Introducing new AddOn "Slicey"</li>
<li>Introducing new AddOn "FilmStrip"</li>
<li>Introducing new AddOn "Adjacent Posts"</li>
<li>Introducing new AddOn "Login Page Slider"</li>
<li>Introducing new AddOn "404 Page"</li>
<li>Introducing new AddOn "Post Featured Slider"</li>
</ul>
<div class="change"><strong style="font-weight:700">CHANGES</strong></div>
<ul>
<li>Added a new Option to enable/disable Desktop Swipe functions. This will allow you to enable Swipe on Mobile Devices, and still make Content Selectable on Desktop Systems</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed an Issue where Template Slides could not be added due the Slide Editor due some License Code issues</li>
<li>Fixed some GUI Issues</li>
<li>Slider Embed Option was not available on New WP Pages. TinyMCE Issues has been solved</li>
<li>Fixed Bug with Slider Alias will not save</li>
<li>Issues with background image url in export files has been fixed</li>
<li>Extended Max. Slide Time to Unlimited</li>
<li>Fixed Slide Timeline Bar Visual Effect on Slide Length change event</li>
<li>Bug fixed where "Split Out Animation" breaks none "Split In Animation" on Layers</li>
<li>Fixed bugs with SVG Stroke Animation / Coloring on Simple Idle, and on Idle/Hover status</li>
<li>Group Embeded Layer Timing issues has been fixed. Out / In Animation Time points were wrong calculated in some kind of cases</li>
</ul>
<h3 class="version-number">Version 5.3.1.6 StarPath (5th January 2017)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Introducing placeholders to gallery sliders (already available for post/stream sources)</li>
<li>Added Ease and Speed to Scroll Below Action to make individual Scroll Effects</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Slide Link was not linking to the correct Slides in some cases.</li>
<li>Slide Link was not visible at start</li>
<li>Fixed Bug in "Add New" Page/Post, Slider Selector overview in Visual Composer not working properly</li>
<li>Fixed no "Add RevSlider" icon in WP Editor for new posts/pages</li>
<li>Fixed CSS Navigation bug where under certain circumstances CSS ID's were wrongy added</li>
<li>Fixed bug where custom navigation settings might not get correctly stripslashed()</li>
<li>Fixed for $add_static is not defined</li>
</ul>
<h3 class="version-number">Version 5.3.1.5 StarPath (10th December 2016)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Added option to delete User Slide Templates</li>
</ul>
<div class="change"><strong style="font-weight:700">CHANGES</strong></div>
<ul>
<li>Layout of Sticky Layers Settings has been changed</li>
<li>Removed unneeded CSS Lines and minified the CSS Export of settings.css</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed an issue where static element Position Calculation was broken in some kind of cases</li>
<li>Fixed an issue where inline styled Content lost its FontWeight, Line Height and Font Size in some kind of cases</li>
<li>Fixed an incomatability with our Blank Fullwidth Template and WordPress 4.7</li>
<li>Fixed a Rendering issue with Row Oversizing in case Image element added into Columns</li>
<li>Fixed "Child Elements Responsive" to stay at "off" after Slide Editor reload</li>
<li>ID of Wrapper Elements added via Option was not available on Frontend</li>
<li>Fixed date selector for Visible From/To z-index issue</li>
<li>Fixed Layer Action issues where multiple Actions on same Layer was not recognised on FrontEnd</li>
<li>Fixed Border issues on Buttons</li>
<li>Loading of Video Elements in Rows driven by Actions was not Showing up in some kind of rare cases</li>
</ul>
<h3 class="version-number">Version 5.3.1.1 StarPath (8th December 2016)</h3>
<div class="change"><strong style="font-weight:700">CHANGES</strong></div>
<ul>
<li>Merged Google Font loading into less calls</li>
<li>Removed unneeded CSS Lines and minified the CSS Export of settings.css</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Hidden "Max Width" field is available in Auto Mode again</li>
<li>Fixed notice in output.class.php for certain Sliders</li>
<li>Fixed a strange Effect on Scroll where Stick Style Menu was not clearly docked on the top, but was flickering before docking</li>
</ul>
<h3 class="version-number">Version 5.3.1 StarPath (1st December 2016)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Added option to show layers on all Slides in Carousel mode</li>
<li>Added option to use YouTube video cover for YouTube video background on slides</li>
<li>Added box-shadow:none css default settings on a tags within the Layers to avoid Wordpress Basic Theme borders</li>
<li>New Option added to fade Out Hero Content optional when Parallax Scroll activated, like Slider BG, Layer, Static Layer, Parallax Layer</li>
<li>Added an option to set the Group Sizes by %. Content of Groups can be set also % based</li>
<li>Added new Option for Easing and Speed of Carousel Slides</li>
<li>Added an option which allows to show Carousel first in Viewport.</li>
<li>Added option for layers to add an tabindex.</li>
</ul>
<div class="change"><strong style="font-weight:700">CHANGES</strong></div>
<ul>
<li>Added Version Checking for Loaded Modules and some function to handle Cache issues</li>
<li>Redesigned the Import Process of Slider and Slide Templates</li>
<li>Carousel Slides will always fade in first without a Start Slide effect which was annoying in some kind of situations</li>
<li>Carousel Slider will act on Swipe even due Clickable elements</li>
<li>Extended Idle/Hover Style Editor in Slide Editor mode for quicker work processes</li>
<li>jQuery and Slider CSS Editor also available due Slide Editor mode to simplfy the Slide building processes</li>
<li>Static/Global Styles are now obsolete</li>
<li>Font Awesome Library Updated to 4.7.0</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed Image Filter issues related to Slide Changes</li>
<li>Fixed Slide Transitions where Transion should happen based on the Slide Direction</li>
<li>Flickering issue by Static Layers with Action fixed</li>
<li>Fixed an issue where Quick and Long LAyer Actions made Layers unavailable</li>
<li>Fixed Order issues on Row Duplication</li>
<li>RTL Backend Issues with the new Objet Library has been fixed</li>
<li>Fixed missing Styles after Hovering Layers in Firefox</li>
<li>Toggled Content without Action was not swapping its Toggled Status. Issue is fixed now</li>
<li>Fixed Grid Based Static Layer Positions in Carousel Sliders</li>
<li>Fixed Issue where adding New Layer due Context menu was broken</li>
<li>Fixed Backend Margin calculation issue on Backend. Frontend and Backend was behaving differently. Now Frontend view covers backend view</li>
<li>Fixed Split Animation not beeing written in some cases for the out animation</li>
<li>Fixed Export to HTML issue with background images creating HTML an error</li>
<li>Fixed Global CSS not opening</li>
<li>Fixed rare Slider Import bug</li>
<li>Fixed border-width not saving correctly in Style Templates</li>
<li>Fixed warning in not existing pages caused by Slider Revolution</li>
<li>Fixed the Row / Column / InnerLayer Timing in Backend and in Frontend</li>
<li>Split Animation did not change the Timeline Behaviours directly. This has been fixed now</li>
<li>Hover on SVG Elements was not coloring well the Idle or Hover status has been fixed</li>
<li>Fixed installation warning that could occur in certain installations</li>
<li>Fixed layer video cover not showing in Slide Editor for imported Slider</li>
<li>Fixed Slider Pack import sometimes having wrong orders in created Draft Page</li>
<li>Layers other than text no longer have "Open Sans" as font-family as default</li>
<li>Replace Image URL's now properly working with Static Layers</li>
<li>Fixed a problem where Sliders with Full Slide link in Carousel and in some special mode had issues with the Full Slide Link layer</li>
<li>Static Layer issues with Invisible Slides where Static Layers were not disappearing on Unvisible Slides on demenad</li>
<li>Fixed WhiteBoard's multiple "Hand" issue</li>
<li>Fixed Hover / Idle issues where quick focus/blur events would not remove the Hover animation effects from the layers</li>
</ul>
<h3 class="version-number">Version 5.3.0.2 StarPath (26th October 2016)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed Syntax and Logical Issues like Removing a Slide from Slider based on the Feedback of Sébastien Ledan (http://dotevo.com)! Thank you for the great Feedbacks and Suggestions</li>
<li>Fixed Slider disappearing in IE11 if Parallax Mode is activated. Double parameter definition in Animation Engine has been fixed</li>
<li>Fixed an issue where all extension modules should be loaded at once. Folder Name in Path has been renamed from extension to extensions</li>
<li>Fixed PHP7 issue: "Fatal error: Uncaught Error: [] operator not supported for strings"</li>
<li>Fixed preview issue where the Slide Editor was not working properly after opening and closing the preview</li>
<li>Fixed preview in Slide Editor, to show the current changes made without saving the Slide</li>
<li>Fixed an issue where cross referencing Static Layers were disappeared</li>
<li>Disappearing elements on Drag & Drop in Slide Editor has been fixed</li>
</ul>
<h3 class="version-number">Version 5.3.0.1 StarPath (22nd October 2016)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed an issue where in Viewpoint Scrolled Slides did not start straight but with a small delay</li>
<li>Fixed Restarted Static Layers which are animating on each Slide if Start time was smaller than 100ms</li>
<li>Fixed Warning: Illegal string offset 'width' in [...] object-library.class.php on line 994</li>
<li>Fixed Global Settings getting reset in certain cases. Which ultimately causes for some customers blank Sliders as the JavaScript files are no longer loaded in the footer</li>
<li>Fixed bug where actions in Static Layers could be lost after saving</li>
</ul>
<h3 class="version-number">Version 5.3.0 StarPath (21st October 2016)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>New Brasilian/Portuguese translation added! Special thanks to Diego Fernandes</li>
<li>Introducing Rows and Columns as Layer Groups</li>
<li>Added Layer Groups for logical and physical grouping of Layers.</li>
<li>Animations are now allowed in multiple levels for Groups, Rows, Columns and wrapped Layers</li>
<li>Added Margin for relative Layers (Columns, Rows, Layers in Columns)</li>
<li>Rows can be sorted within Top, Middle and Bottom Containers</li>
<li>Added Post ID {{id}} into the Meta List</li>
<li>Added Layer Background Images for Text, Column, Row, Group and Shape</li>
<li>Added Instagram Image Filtering for Slide Backgrounds</li>
<li>Slides will receive an Auto Height with Rows and Columns</li>
<li>Introducing Right Click Content Menu on Layers and BG in Slide Editor for quick Edit mode and shortcuts</li>
<li>Introducing the Object Library with dozens of new Images, BG Images and Objects</li>
<li>Added Font Icons to Object Library for quicker icon selection within a Text Layer</li>
<li>Copy/Paste Layer styles easily from one Layer to the other</li>
<li>Selecting more than one Layer, to move them together, now available</li>
<li>Introducing logical grouping of Layers</li>
<li>Added CSS Blend Modes for Text Layer to get some exclusive effects on backgrounds. (Will not work with older IE Browser)</li>
<li>Easy Editing and Movement of Groups and Layers in Groups</li>
<li>Added CTRL / CMD + Click function to enable multiple selections</li>
<li>Added device based level for Spacings like Paddings, Margins, Text-Aligns which can be set now individual based on Responsive Level</li>
<li>Added Ken Burns Live Editor</li>
<li>Added option to include all Slider Revolution JavaScript libraries on page load</li>
<li>Added new option on Slider Import, to be able to create blank pages with the Slider inside</li>
</ul>
<div class="change"><strong style="font-weight:700">CHANGES</strong></div>
<ul>
<li>Improved loading speed at Slider Overview</li>
<li>Changed Timeline Interface for better and easier Time Settings</li>
<li>Add-On Deactivation Button more visual</li>
<li>Changed Button Hover feature to allow Hover during the Layer Animation already. Direct feedback from Button to customer</li>
<li>Changed the Layer Animation Core. Introducing Timeline feature which will allow build multiple frames within one Layer Animation</li>
<li>Improved the Timeline functionality</li>
<li>Fixed Template and Object Library Loading methods to improve the Loading speed of Background Edit Modes</li>
<li>Further WPML improvements</li>
<li>Removed deprecated function, removed with PHP 7</li>
<li>Padding, Margin and Text Align are now saved for all devices on saving a style</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Improved Google Font loading by removing duplicated inclusions</li>
<li>Fixed Slot Animation Issues where Slot Amount was ignored in Fade Slots Tranitions</li>
<li>Fixed issue where Layer On Complete Event was triggered twice on Slide Changes. This had negative influence i.e. on Add Ons like White Board</li>
<li>Fixed SVG Resizing issues in the Slide Editor after changing SVG Source of an Object Layer</li>
<li>Fixed Dotted Overlays issues on Slides</li>
<li>Fixed CTRL+S (CMD+S) Quick save functions</li>
<li>Fixed Image Size and Aspect Ratio issues in Slide Editor</li>
<li>Fixed a bug where FullScreen Slider Offset Container parameter was not working with the Carousel Slider Layout</li>
<li>Fixed Slide Direction Animation on HOrizontal and Vertical direction when slide change has been triggered by Mouse Scroll</li>
<li>Fixed Ken Burns Issues where Horizontal and Vertical Start Offsets were not implemented well</li>
<li>YouTube Playback on Mobile Phones lost Focus and lost Video after Slide Change in some rare situations has been fixed</li>
<li>Fixed a YouTube Bug which was not allow to trigger YouTube Videos via Layer Action on Mobiles</li>
<li>Fixed Blurry Buttons in YouTube Videos on Mobile Phones</li>
<li>Issue where Pendulum Easing was ignored in frontend fixed</li>
<li>Parallax effet on Background Media was not working without Existing Layer in Slide has been fixed</li>
<li>Facebook Timeline Images did not show under certain circumstances before. Now they do.
</ul>
<h3 class="version-number">Version 5.2.6 StarPath (24th June 2016)</h3>
<div class="change"><strong style="font-weight:700">CHANGES</strong></div>
<ul>
<li>Deactivating a purchase code will now remove it from the purchase code field</li>
<li>Changed activation message if purchase code is already registered</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed issue with latest WooCommerce update</li>
<li>Removed the SVG copy failure notice</li>
</ul>
<h3 class="version-number">Version 5.2.5.4 StarPath (14th June 2016)</h3>
<div class="change"><strong style="font-weight:700">CHANGES</strong></div>
<ul>
<li>Instagram API Changes (only username search allowed by Instagram, no hashtag search)</li>
<li>Moved SVG's into the uploads folder</li>
</ul>
<h3 class="version-number">Version 5.2.5.3 StarPath (1st June 2016)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Added option to modify z-index for layers, can be set in the hover styles</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed update issue where files could not be copied</li>
</ul>
<h3 class="version-number">Version 5.2.5.2 StarPath (24th May 2016)</h3>
<div class="change"><strong style="font-weight:700">CHANGES</strong></div>
<ul>
<li>Improved user experience with activation, update and templates messages</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed issue with BuddyPress in combination with Visual Composer</li>
</ul>
<h3 class="version-number">Version 5.2.5.1 StarPath (4th May 2016)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Added IgnoreHeightChange for Android Phones as Fall Back which will avoid the small Jump on Mobile Phones if Location Bar is removed/resized on scroll</li>
<li>Added Dark/Light BG for Layer Style Selector, which helps to pick the right Style on demand</li>
</ul>
<div class="change"><strong style="font-weight:700">CHANGES</strong></div>
<ul>
<li>Changed data that are stored in the WordPress options table to reduce pageload</li>
<li>Changed Vimeo Frogaloop Script Loading Origin from HTTP:// to HTTPS://</li>
<li>Add-On Installation Problem Handling optimized</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed Action Delay Issues</li>
<li>Eliminated Loading issues, where Static Layer Load time was over 5s or Slider was simple not starting due high loading times</li>
</ul>
<h3 class="version-number">Version 5.2.5 StarPath (16th April 2016)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Added option to set the ID for the Slider which will also set dynamical added container ID's based on the preseted ID</li>
<li>Delay option added to the Jump To Slide Layer Action</li>
<li>Template Slider Packs now available</li>
</ul>
<div class="change"><strong style="font-weight:700">CHANGES</strong></div>
<ul>
<li>Toggle Content on Click event has been extended. Toggle Content without Actions and also on all actions can be added.</li>
<li>Added further improvements for the Slider Template Library download routine.</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed minHeight settings where entered suffix broke the Slider output.</li>
<li>Fixed duplication of ID on layers in frontend, caused by duplicating layers in Slide Editor</li>
</ul>
<h3 class="version-number">Version 5.2.4.1 StarPath (08th April 2016)</h3>
<div class="change"><strong style="font-weight:700">CHANGES</strong></div>
<ul>
<li>Changed HTML5 example URLs as the old ones are no longer available</li>
<li>Reminder on LayerAction added as solid warning in case Vimeo Video Controls are set to hidden</li>
<li>Calculation of Wave Loop Effect changed to respect the real X/Y Offsets</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Vimeo Arguments no longer reset on a Vimeo Layer</li>
<li>Fixed a Bug where 2nd Time Focused Slider with previously played Video started again even if it was not visible currently</li>
<li>Fixed an issue with Hungarian Translation. Hungarian Translation is at 50% currently</li>
<li>Issue with HTML5 Video Next Slide at End on Mobile was skipping a slide after 2nd loop has been fixed.</li>
<li>Force Rewind available now for YouTube and Vimeo also on Mobile again</li>
<li>Shortocde Management on pages was not closing the Modal window in some cases. Added a Workaround which checks the last state of the Window in case the default GUI would not be able to close the window</li>
<li>Fixed the Start Angle Calculation of Wave Loop Effect</li>
<li>Keyboard Navigation could not be disabled if all other Navigation was disabled</li>
</ul>
<h3 class="version-number">Version 5.2.4 StarPath (01st April 2016)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>French Translation added</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Static Layer Container was written even if no Static Layers were exist. This blocked 3D Parallax Slides from Hovering/Clicking on Elements</li>
<li>Fixed an issue where layers were disappearing in Google Chrome and other browsers after revisiting the slide</li>
<li>Fixed an issue with IE11 not beeing able to handle audio layer in Slide Editor</li>
<li>Fixed a bug where duplicated layers could loose their hover settings</li>
<li>Fixed a bug with SVG Objects, where styling was only attached if the SVG Object was loading from cache</li>
</ul>
<h3 class="version-number">Version 5.2.3.5 StarPath (18th March 2016)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed output of 1 before the slider in rare cases</li>
<li>Fixed issue where layers would only show on hover</li>
</ul>
<h3 class="version-number">Version 5.2.3 StarPath (17th March 2016)</h3>
<div class="change"><strong style="font-weight:700">Changes</strong></div>
<ul>
<li>Improved google font loading by removing not needed multiple fonts</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed conflicts that could occur in combinations with different third party plugins</li>
<li>Fixed a Viusal Composer conflict</li>
<li>Fixed Next Slide At End Bug, Loop, and Loop but Keep Slide Progress Bug for Video Backgrounds</li>
</ul>
<h3 class="version-number">Version 5.2.2 StarPath (11th March 2016)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed an issue in Slide Editor where Options were not any more selectable. This is also a Fix for all iussues with "Can not read lenght of Null" Faliure</li>
<li>Fixed Layer Timing issue where Layer could not start any more at 0ms</li>
<li>Fixed Start Value issues in Slide Editor where some Value changed from "0" to a predefined Default value</li>
<li>Fixed an Issue where Layers disappearing after a long time period.</li>
<li>Fixed Slider / Layer Grid Based Align options for Navigation Elements</li>
<li>Fixed calculation errors of navigation elements</li>
<li>Fixed an issue where slidelinks on carousel slides was not working properly</li>
<li>Fixed Static Layer container perspective on 3D Parallax Animations. Static Layers and Layers will have now the same View Perspective. To achieve this, Static Layers will always overlay simple Layers in 3D Parallax Mode</li>
<li>Scrolling by Scroll Bar will also trigger Parallax and Start Slider functions now</li>
<li>Fixed issues that could occur with older Visual Composer versions</li>
<li>Fixed a few template store issues where notices and warning occured</li>
</ul>
<h3 class="version-number">Version 5.2.1 StarPath (4th March 2016)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed an Issue for PHP 5.2 or older where the Plugin was not loading on Backend any more</li>
</ul>
<h3 class="version-number">Version 5.2.0 StarPath (3th March 2016)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Added Navigation Position Aligned By option to allow Navigation element positioned within the Layer Grid also</li>
<li>Added individual RTL Option to Arrows, Bullets, Tabs and Tumbnails to change the Slider direction and the order of elements</li>
<li>Added New Layer Type: Object with SVG Icon Library included (over 500+ SVG Icons)</li>
<li>Added New Layer Type: Audio Layer</li>
<li>Added Text-Transform Style Option (Uppercase, LowerCase, Capitalize)</li>
<li>Added Force Inherit Style Changes on Font Size, Font Weight, Font Color and Line Height in Break Point Based Sliders, to inherit changes for other Device Sizes during changes</li>
<li>Added PlaceHolders and Presets for Navigation Elements to allow Easy Styling on Navigation elements per Slider</li>
<li>Added Options to change Navigation Element Styling per Slide (i.e. use Light Navigation on Dark Slides and Dark navigation on Light Slides)</li>
<li>Live Preview of Custom Changes on Navigation Elements</li>
<li>Added title Attribute to the background images for Slides</li>
<li>Added option to redownload Slider Templates.</li>
<li>Added Bulk TimeLine Functions to arrange Layer timings based on predefined batches</li>
<li>Added Undo & Redo Steps to the Slide Editor</li>
<li>Version 5.2. is Introducing the Possibilities of using Addons.</li>
<li>Added Vimeo "No Controls" option to hide the Control Panel of Vime Videos on request</li>
<li>Added "Pause on Slide" option to stop the Auto Play Progress on certain slides</li>
<li>Added an option to Wait for revapi.revstart() Method to start the Slider. This allows to start the Slider on request</li>
<li>Added an global option to trigger database creation</li>
<li>Added Static Layers Overflow hidden/visible option</li>
<li>Added option for Post and Stream Sliders to strip fetched content by words/chars</li>
<li>Added Cache timing option for Social Streams</li>
<li>Added Global Mute for All Media Action to mute the whole Slider</li>
<li>Added Invisible Slide option to make Slides only Availblae due Actions and API Functions</li>
</ul>
<div class="change"><strong style="font-weight:700">Changes</strong></div>
<ul>
<li>Calculation of HTML5 Videos on IE Edge has been changed to respoect the Cover mode in all responsive mode also</li>
<li>HTML5 Video leaves automaticaly FullScreen Mode when it reach the end of the Video and Next Slide at End selected</li>
<li>HTML5 Video does not show Cover image if Pause Mode is selected and Video is on FullScreen Mode</li>
<li>Improvement of the GUI in Slide Editor</li>
<li>Removed .htaccess file</li>
<li>Updated Vimeo API</li>
<li>Images, Videos and Audios will get Line height 0px to avoid position distortions on small elements</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed Parallax Effect if slider is higher than screen height to avoid an odd jump effect</li>
<li>Fix for limiting the excerpt length in WooCommerce</li>
<li>Fix for border-radius not working on hover state in certain cases</li>
<li>Fix for Sharp Right option not saving properly on layers</li>
<li>Fix for Cover Mode not beeing applied to all devices for image layers in certain cases</li>
<li>Fixed a minor jQuery bug in Slider Settings on Hover over different options</li>
<li>Fix for Mouse Scroll Option. The values on/off were interchanged</li>
<li>Fixed a bug which would not allow to go to next slide If Show Only Poster on Mobile was selected on HTML5 Videos</li>
<li>Slotholder and BG Video got own z-index to fix some layer / video covering issues in Carousel mode</li>
<li>Fixed an issue where SlideLink on RTL environment was not available</li>
<li>Fixed an issue where export did not work if a newver version of WPML is active</li>
<li>Fixed Replace URL's in Slider Settings, to check also for actions, videos and more</li>
<li>Removed loading of jQuery UI libraries if not needed while Visual Composer is installed</li>
<li>Fixed Scroll Bugs in Layer Timeline Window</li>
<li>Fixed Timeline Calculation Issues on Backend</li>
<li>Fixed Warning Issue by leaving the Slider</li>
<li>Fixed KenBurns issues on RTL Environment</li>
<li>Fixed Bug with Static Layers if Static Layer was set to only show on Slider Hover</li>
<li>Fixed Video Background Loop And Keep Slider Progress Function</li>
<li>Fixed Shape Resize Issue, where Shape Height lost its last valuse</li>
<li>Fixed Sorting Order WP Gallery Images when using revslider shortcode wrap</li>
<li>Fixed YouTube API Issues, (Mute, Loop, Auto Start, Next Slide Bugs due the latest YT Api)</li>
</ul>
<h3 class="version-number">Version 5.1.61 StarPath (28th January 2016)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed import bug for animations</li>
<li>Fixed output bug for cover images where in some cases it was only beeing applied to Desktop mode</li>
</ul>
<h3 class="version-number">Version 5.1.6 StarPath (5th January 2016)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Added MouseWheel Scroll option "carousel" to allow infinite MouseWheel scroll on Sliders in both direction. If enabled, slider will not allow page to scroll during wheel functions on Slider Container</li>
</ul>
<div class="change"><strong style="font-weight:700">Changes</strong></div>
<ul>
<li>Upgraded FontAwesome Library to latest version 4.5.0</li>
<li>Leaving Slide Editor will now ask to confirm leaving, to prevent data loss if Slide was not saved</li>
<li>The video type can now be switched on an existing Video Layer</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Out of ViewPort Preloading and Prestarting was calculating the values wrongly. Issue is fixed in this release</li>
<li>Min amount of Used Fingers for Touch/Scroll/Link was set to 50 as default, which broke any kind of Touch function on Mobiles in version 5.1.5. Issue is fixed now</li>
</ul>
<h3 class="version-number">Version 5.1.5 StarPath (16th December 2015)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Added "Layer Selectable" option as Default and Layer based, to enable Layer selection on Frontend for visitors (to copy paste text content from Layers)</li>
<li>Added a new Method "revremoveslide(slideindex)" to remove a slide from the Slider on demand</li>
<li>Added a new option to each Slide "Hide after Loop" which will remove / Hide 1 Slide from the Slider after x amount of loop of that certain slide</li>
</ul>
<div class="change"><strong style="font-weight:700">Changes</strong></div>
<ul>
<li>Strengthened Security Posture</li>
<li>Removed some inline css written on videos/images</li>
<li>Restricted access to certain features if the user does not have administrator privileges. Can be enabled again by adding: add_filter('revslider_restrict_role', '__return_false');</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed a bug where the background image would be exported (if there was one selected at a time) even if transparent or solid color was selected</li>
<li>Fixed PanZoom/KenBurns Disabling on Mobile function</li>
<li>Fixed z-index position for From/Till Calendar in Slide Editor</li>
<li>Fixed Swipe Treshold and Fingers Options which were ignored in earlier version</li>
<li>Fixed and issue with Static Layer Parallax handling</li>
<li>Fixed Specific Posts not sorting properly</li>
<li>Improved Custom Animation save speed in backend</li>
</ul>
<h3 class="version-number">Version 5.1.4 StarPath (28th November 2015)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Facebook Album now available at the Facebook Source Type</li>
<li>Instagram Stream can now also be fetched through hashtags</li>
<li>Added option to import layers from any existing Slide into the current Slide at the "Add Layer" selector</li>
<li>Added Video Toggle Action</li>
<li>Added Mute, UnMute, Toggle Mute Action</li>
<li>Added Toggle Functions for HTML Layers. Toggled Layers can have two states if any Toggle Action is activated</li>
</ul>
<div class="change"><strong style="font-weight:700">Changes</strong></div>
<ul>
<li>Specific Posts buttons "Add Popular Posts" and "Add Recent Posts" now append the IDs instead of replacing the current list</li>
<li>Video will play muted/unmuted based on the last state of the Mute Button at Slide Load</li>
<li>Changed YouTube default argument ref=0 to rel=0</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed Delete / Backspace issues in CSS Editor textarea</li>
<li>Fixed animation opacity divided by 100</li>
<li>Fixed Fullcover / FullWidth sizing issues of Videos in Backend on differnet Layer Grid sizes</li>
<li>Fixed Video issues, where Play/Stop video button was not triggering HTML5, YouTube and Vimeo videos correctly</li>
<li>Fixed HTML5 Video Actions</li>
<li>Fixed video actions where video Start at was set</li>
<li>Fixed video "start at" and "end at" not resetting in Slide Editor after adding multiple videos</li>
<li>Fixed Google Fonts not beeing loaded in frontend from Static Layers in some cases</li>
<li>Fixed a bug where navigation does not replace meta placeholders if the meta data is empty</li>
<li>Fixed a bug where Layers of one Slider was animated in the wrong timeline if other Slider changed the slide. Some crosscall issue between independent sliders</li>
<li>Fixed an issue where Videos after Next Slide At End was not rewinded withouth the Force Rewind feature</li>
<li>Fixed Parallax Flickering in Safari and Google Chrome</li>
</ul>
<h3 class="version-number">Version 5.1.3 StarPath (17th November 2015)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed type:text; that was added in CSS</li>
<li>Fixed a JavaScript loading issue in backend</li>
<li>Fixed a typo failure in slide-main-options.php file which caused some jQuery issue in Slider Settings</li>
</ul>
<h3 class="version-number">Version 5.1.2 StarPath (14th November 2015)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Added a key listener which will allow to close Fullscreen mode with ESC once it has been triggered by FullScreen Action</li>
<li>Added Keyboard listener to Slide Editor to save the Slider on CTRL+S / CMD+S</li>
<li>Added Keyboard listener to Slide Editor to delte Layers on Backspace / Delete Key</li>
<li>Added two new Premium Sliders</li>
</ul>
<div class="change"><strong style="font-weight:700">Changes</strong></div>
<ul>
<li>Removed the need of Username / API key to activate the plugin</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Message "cover image needs to be set for videos" now appearing only if there is really no cover image set</li>
<li>Fixed HTML5 Start/End Time issues, and HTML5 Seekbar, Play Button issues</li>
<li>Fixed a strange bug in Safari, where end of the Video the Slider skipped one following slide</li>
<li>Fixed an issue if focus changed from one layer to an other, the wrong Aniamtion Speed was "shown" in the Animation speed Fields</li>
<li>Fixed an issue where the slider could not be loaded on localhosts</li>
<li>Fixed an issue where duplicated elements in Editor got the wrong zIndex position</li>
<li>Fixed an issue where Deleted layers still have been selected and some fields still keep their values</li>
</ul>
<h3 class="version-number">Version 5.1.1 StarPath (12th November 2015)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>WooCommerce is now officially available!</li>
<li>Added own Slider Module for Visual Composer called Slider Revolution 5</li>
<li>Added Quick Slider builder</li>
<li>Post Based Sliders can now choose between Categories & Tags, Related, Popular, Recent and Next / Previous</li>
<li>Specific Post Based Sliders can now add Popular and Recent Posts</li>
<li>Custom build navigations will now be added to the exports and will be also imported at the import process</li>
<li>New Cursors for Layers: zoom-in & zoom-out</li>
</ul>
<div class="change"><strong style="font-weight:700">Changes</strong></div>
<ul>
<li>Made some changes to the GUI</li>
<li>Changed Success Messages to disappear faster now</li>
<li>Changed Error Messages to disappear now automatically</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed a very rare bug where a slide may change it's selected background image</li>
<li>Fixed "number of comments" option not working properly for Post Based Slider</li>
<li>Fixed hover color not working</li>
<li>Fixed multiple bugs for certain servers that could not import Sliders</li>
<li>Fixed a bug where the toolbar was missing after adding a video layer</li>
<li>Fixed some CSS Issues</li>
<li>Fixed Box Slots where Amount of Slots could not be changed</li>
<li>Fixed a bug where Resize Function was not working after Editing Video Layer</li>
<li>Fixed layer Source Type bug, not fetching the desired Source Type</li>
<li>Fixed a bug where an image was printed as array()</li>
<li>Fixed HTML5 Crop Issues for IE11 and Edge Browsers</li>
<li>Fixed a bug where Swipe was not available on elements with links</li>
<li>Fixed a bug where Parallax elements jumped on half scrolled position</li>
</ul>
<h3 class="version-number">Version 5.1 StarPath (19th October 2015)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>WooCommerce is now available!</li>
<li>Set thumbnail now also as admin Slide Preview image for easier selection in the Slider List / Slides List </li>
<li>Added Fullscreen Toggle, Go Fullscreen and Exit Fullscreen actions, to allow Slider Revolution to open in Fullscreen from any layout mode</li>
<li>Added visibility levels to allow hide/show layers via the Visibility Tab also if no Custom Grid Sizes has been set</li>
<li>Added new Tooltip for z-index Sorting of Elements</li>
<li>Added new Tooltip for Layer End Animation Toggler</li>
<li>Added new Google Font Handling - Using any Google Font on layers will auto manage loading of the font</li>
<li>Added filter revslider_meta_generator to remove the Meta Generator</li>
<li>Added Tabs to the Metis Navigation</li>
<li>Added 3D Parallax Feature</li>
<li>Added new Transitions</li>
</ul>
<div class="change"><strong style="font-weight:700">Changes</strong></div>
<ul>
<li>Available options for current selected Layer Types are highlighted better in Slide Editor</li>
<li>New visualisation of Custom Layer Grid Sizes and Presets to make the function more transparent</li>
<li>Added some CSS changes to avoid Theme overwrites</li>
<li>Using Toggle/Play/Stop Slider will restart Progress of Slider, even if it is stopped due Stop At Slide options</li>
<li>Creating a new Slider will now redirect to the Slide Editor</li>
<li>Removed the requirement of the ZipArchive extension for import/export</li>
<li>Renamed action to Play/Pause/Stop Slider for more transparencity</li>
<li>Added confirmation box for layer deletion</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed a bug with Focus Listener where the Option had no real effect on the Blur/Focus events.</li>
<li>Fixed PHP Warnings in case no static-layers.css existing on some Update processes</li>
<li>Fixed some PHP Warning in WP Backend</li>
<li>Fixed Google Fonts / Fonts Drop Down issues</li>
<li>Fixed Arguments not saving for Main Background Videos</li>
<li>Fixed WPML bug in combinations with jump to slide actions</li>
<li>Fixed bug where font-style italic was not written properly for some layers</li>
<li>Fixed Fullwidth/Fullscreen Visual Bug in Slide Editor</li>
<li>Fixed Shape Loop Animation issue</li>
<li>Fixed Text Layer Size issue when layer is added after a Shape element</li>
<li>Fixed Facebook likes count not working properly in certain cases</li>
<li>Fixed notice issue in update.class.php</li>
<li>Fixed revscroll() API Method</li>
<li>Fixed revkill() Method where Removing Slider from the Stage was broken in some situation (i.e. if Looping Elements or navigation elements were present)</li>
<li>Fixed a bug where importing a Slider may not change the custom JavaScript revapi to the new Slider ID</li>
</ul>
<h3 class="version-number">Version 5.0.9 StarPath (21th September 2015)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>Added Enable/Disable FullScreen Video Button for YouTube and HTML5 Videos. Option is available due the Video Settings Panel only in Layer Video Mode.</li>
<li>Added % based Border Radius Fields to Element Styling also</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed Poster View only on Mobile and Disable Video on Mobile features</li>
<li>Fixed Stop on Hover function. It will keep the Slider paused also if Next slide has been called</li>
<li>Fixed Full Slider Link Issues where next,previous,slide index and Scroll Under Links were not working well</li>
<li>Importing Templates with bigger file size will request a bigger TimeOut to avoid Import failures or will give a clear feedback for further Debugging</li>
</ul>
<h3 class="version-number">Version 5.0.8.5 StarPath (15th September 2015)</h3>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed Static Layers Position calculation issues.</li>
<li>Fixed Typo Failure in the Navigation Styling</li>
<li>Added a Workaround for YouTube Video API's with broken Origin attributes. (i.e. http://www.domain.com vs. http://domain.com)</li>
<li>Fixed YouTube Cover Video Loop issue</li>
<li>Fixed an issue where Disable Force FullWidth reseted to "off" after reloading the Slider Settings</li>
<li>Fixed Next Slide on Focus in FireFox where Slider skipped 1 Slide after Focusing Browser Tab again</li>
<li>Fixed Update Slider and Install Template from Server issues in some cases</li>
</ul>
<h3 class="version-number">Version 5.0.8 StarPath (11th September 2015)</h3>
<div class="newfeature"><strong style="font-weight:700">NEW FEATURES</strong></div>
<ul>
<li>FaceBook API 2.4 support</li>
<li>Added Disable Force FullWidth for FullScreen Slider, to be able to set FullScreen Slider floated horizontal</li>
</ul>
<div class="change"><strong style="font-weight:700">CHANGES</strong></div>
<ul>
<li>Changing Slide Main image change the Thumbnails straight to make the identification of Slides in Small view easier.</li>
<li>Added a new 5 sec Rule which will skip Lazy Loading and Overall Loading processes in case no Answers comes from Server, and process the Slider further</li>
<li>Added a new Warning in case SSL Certificate is old or not any more active</li>
</ul>
<div class="bugfix"><strong style="font-weight:700">BUGFIXES</strong></div>
<ul>
<li>Fixed a bug where Static Images with Links in lazy Load mode was not showing up correctly</li>
<li>Fixed a bug where Layers were flashing or not visible at all in "Show Layer on Slider Hover" mode</li>
<li>Fixed an OutPut bug within css parser where in some situation an error was reported in Console log with Undefined Index</li>
<li>Fixed a Bug where Layers text coud not be edited any more if Splitted Layer animation was selected</li>
<li>Fixed Rounded Background issues on layers in FireFox and IE in some situation</li>
<li>Put the Auto Complete Window of Font Selection in the Front to Overlay the Button Font Selector</li>
<li>Fixed Some Visual issue in Static Layer Slide Selector</li>
<li>Fixed FaceBook Stream Issues due Api Changes.</li>
<li>Fixed a bug where Video Poster Images from HTTPS Pages could not be loaded well</li>
<li>Fixed a missing closing Tag in HTML5 Video elements which broke IE11</li>
<li>Fixed an issue where Mobile Sliders stucked when Video "autoplay" was enabled</li>
<li>Fixed Static Layer Position problems if Outer Left Navigation was enabled</li>
</ul>
<h3 class="version-number">Version 5.0.7 StarPath (5th September 2015)</h3>