-
Notifications
You must be signed in to change notification settings - Fork 20
/
changelog.txt
1637 lines (1342 loc) · 70.8 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
*** Changelog ***
= 22.3.2 =
* [Tabs] Fixed a bug where the tab panels of the source and destination tab blocks would not be displayed when duplicating a tab block.
= 22.3.1 =
* [Box] Add box link features.
* [Slider] Fixed a bug that caused content to protrude from some slides depending on the content.
* [Contents slider] Fixed a bug that caused content to protrude from some slides depending on the content.
* [Pickup slider] Fixed a bug that caused content to protrude from some slides depending on the content.
* [Recent posts] Fixed a bug that caused content to protrude from some slides depending on the content.
* [Taxonomy posts] Fixed a bug that caused content to protrude from some slides depending on the content.
* [RSS] Fixed a bug that caused content to protrude from some slides depending on the content.
* [Child pages] Fixed a bug that caused content to protrude from some slides depending on the content.
= 22.2.5 =
* [Slider] Fixed a bug that caused "Autoplay Speed in seconds" to be reset.
* [Contents slider] Fixed a bug that caused "Autoplay Speed in seconds" to be reset.
* [Pickup slider] Fixed a bug that caused "Autoplay Speed in seconds" to be reset.
* [Recent posts] Fixed a bug that caused "Autoplay Speed in seconds" to be reset.
* [Taxonomy posts] Fixed a bug that caused "Autoplay Speed in seconds" to be reset.
* [RSS] Fixed a bug that caused "Autoplay Speed in seconds" to be reset.
* [Child pages] Fixed a bug that caused "Autoplay Speed in seconds" to be reset.
= 22.2.4 =
* [Items:Banner] Fixed a bug that could cause the image aspect ratio setting to be reset.
= 22.2.3 =
* [Tabs] Fixed an issue where unnecessary space was sometimes created at the bottom of tab blocks depending on the content of the hidden block.
= 22.2.2 =
* WordPress 6.7 compatible.
= 22.2.1 =
* [Tabs] Changed the function to open any tab in the tab block on the current page with an anchor link so that links beginning with “http” will also work.
= 22.2.0 =
* [Tab panel] Add anchor setting.
* [Tabs] Added functionality to open tabs by specifying the ID of the tab as an anchor.
= 22.1.1 =
* [Contents slider] Fixed a bug that caused infinite rendering and broken blocks when patterned.
= 22.1.0 =
* Snow Monkey v27.1.0 or higher is required to use with the Snow Monkey theme.
* [Recent posts] Add new setting: Display modified date of each items.
* [Taxonomy posts] Add new setting: Display modified date of each items.
= 22.0.0 =
* Fixed a bug that could cause infinite rendering and errors during pattern insertion when using Snow Monkey Blocks blocks in a synchronized pattern.
* The automatic renaming process from the old child block name to the new child block name has been eliminated.
= 21.0.7 =
* [Hero header] Fixed a bug that caused images to be displayed on a higher level when used with themes other than Snow Monkey theme.
= 21.0.6 =
* Replace node-sass to node.
* [Flex] Fix gap value.
= 21.0.5 =
* [Recent posts] Max value of "Number of posts" changed from 12 to 50.
* [Taxonomy posts] Max value of "Number of posts" changed from 12 to 50.
* [RSS] Max value of "Number of posts" changed from 12 to 50.
= 21.0.4 =
* Translation omissions corrected.
= 21.0.3 =
* [Flex] Fixed a bug where gap settings were not reflected on the front.
= 21.0.1 =
* [Contents slider] Fixed a bug where the background colour of slides was not reflected.
= 21.0.0 =
* WordPress 6.6 compatible.
* [Testimonials] Add gap setting.
* [Tabs] Add color settings to chldren blocks.
* [Step] Add title font size and color settings to chldren blocks.
* [Section] Migration of padding settings to core functions.
* [Section (Break the grid)] Migration of padding settings to core functions.
* [Section (Side heading)] Migration of padding settings to core functions.
* [Section (Background image/video)] Migration of padding settings to core functions.
* [Rating box] Add color, padding and border settings. Add font size setting to children blocks.
* [Pricing table] Add color settings to children blocks.
* [Price menu] Add typography, padding, color and border settings. Add font size and padding settings to children blocks.
* [Panels] Migration of color settings to core functions.
* [Media text] Migration of gap settings to core functions.
* [Items:Standard] Add color settings.
* [Items:Block link] Add color settings.
* [Items:Free] Add color and padding settings.
* [Information] Add color settings to children blocks.
* [Hero header] Add color, typography and border settings.
* [FAQ] Add question color, question label color, answer label color and padding settings.
* [Evaluation star] Add font size setting.
* [Directory structure] Add typography, background, icon color, padding and border settings.
* [Counddown timer] Add font size setting.
* [Contents outline] Add color and border settings.
* [Child pages] Add gap setting.
* [Buttons] Add gap settings.
* [Button] Add padding setting.
* [Button box] Add padding setting.
* [Box] Migration of padding setting to core functions.
* [Alert] Add padding setting.
* [Accordion] Add title background, text color and body padding settings.
* `enqueue_block_editor_assets` to `enqueue_block_assets`.
= 20.5.5 =
* [Contents slider] Fixed a bug that caused the appearance to be different on the editor and at the front.
* [Slider] Fixed a bug that caused the appearance to be different on the editor and at the front.
* [Items] The "Gap" UI changed to the same as the core.
* [Panels] The "Gap" UI changed to the same as the core.
* [Recent posts] The "Gap" UI changed to the same as the core.
* [Taxonomy posts] The "Gap" UI changed to the same as the core.
* [RSS] The "Gap" UI changed to the same as the core.
* [Section] Fixed a bug that "Overlap divider on content" did not work when the level of delimitation is negative.
* [Section (Break the grid)] Fixed a bug that "Overlap divider on content" did not work when the level of delimitation is negative.
* [Section (Side heading)] Fixed a bug that "Overlap divider on content" did not work when the level of delimitation is negative.
* [Section (Background image/video)] Fixed a bug that "Overlap divider on content" did not work when the level of delimitation is negative.
* [Hero header] Add overlay feature.
* [Items:Banner] Change label name "Mask" to "Overlay".
* [Section (Break the grid)] Change label name "Mask" to "Overlay".
* [Section (Background image/video)] Change label name "Mask" to "Overlay".
= 20.5.4 =
* Fix PHP Deprecated on PHP 8.1.
= 20.5.3 =
* Update wpcs.
* [Custom field] Fix missing Dependencies.
= 20.5.2 =
* [Flex] Fixed a bug where CSS custom properties that were supposed to be added to child blocks were not being added at the front.
* [Grid] Fixed a bug where CSS custom properties that were supposed to be added to child blocks were not being added at the front.
= 20.5.1 =
- [Pickup slider] Fixed a bug where the order of content overlap was below the image and could not be seen.
= 20.5.0 =
- WordPress 6.5 support.
- Add support "Apply to all blocks inside".
- [Pickup slider] Adjust layout.
- [Pickup slider] Fixed a bug that pickup slider was not linked as a whole.
- [Section] Fixed a bug where padding settings were not reflected.
- [Section (Break the grid)] Fixed a bug where padding settings were not reflected.
- [Section (Side heading)] Fixed a bug where padding settings were not reflected.
- [Section (Background image/video)] Fixed a bug where padding settings were not reflected.
- [Slider] Fixed a bug where it would flicker when sliding.
- [Contents slider] Fixed a bug where it would flicker when sliding.
- [Pickup slider] Fixed a bug where it would flicker when sliding.
= 20.4.3 =
* [Recent posts] Fixed a bug that the second and later blocks may not be displayed when multiple recent post blocks are lined up.
= 20.4.2 =
* [Slider] Change autoplay buttons to svg.
* [Contents slider] Change autoplay buttons to svg.
= 20.4.1 =
* [Slider] Enlarge the click range of dots and autoplay buttons.
* [Contents slider] Enlarge the click range of dots and autoplay buttons.
= 20.4.0 =
* [Slider] Add the feature of shuffling slides.
* [Contents slider] Add the feature of shuffling slides.
* [Slider] Add pause button setting for autoplay.
* [Contents slider] Add pause button setting for autoplay.
* [Pickup slider] Add pause button setting for autoplay when the layout is caroucel.
* [Recent posts] Add pause button setting for autoplay when the layout is caroucel.
* [Taxonomy posts] Add pause button setting for autoplay when the layout is caroucel.
* [RSS] Add pause button setting for autoplay when the layout is caroucel.
* [Child pages] Add pause button setting for autoplay when the layout is caroucel.
= 20.3.4 =
* Fixed missing packages files.
= 20.3.3 =
* [Countdown timer] Fixed a bug that prevented the "Clear" button from working.
= 20.3.2 =
* [Read more box] Fixed a bug that caused unintended blocks to open and close when duplicating blocks.
= 20.3.1 =
* [Taxonomy terms] Added `$attributes` as second argument to filter hook `snow_monkey_blocks_taxonomy_terms_args`.
* [Box] Fixed a bug that blocks were broken when the border width was left blank.
* [Section (Break the grid)] Fixed a bug that shadows were displayed before images when using EWWW Image Optimizer.
= 20.3.0 =
* [Taxonomy] Add filter hook `snow_monkey_blocks_taxonomy_terms_args`.
* [Read more box] Fixed a bug that button size "Full" was not reflected.
= 20.2.2 =
* [Tabs] Fix Warning error.
= 20.2.1 =
* Add new block: Read more box block.
* [Recent posts] Add filtering settings by authorsgit push.
* [Tabs] Add `role="tablist"`.
* [Accordion:item] Add `aria-label`.
* [Accordion] Fixed a bug that blocks were broken when posting with less than editor role when multisite.
* [Tabs] Fixed a bug that blocks were broken when posting with less than editor role when multisite.
= 20.1.3 =
* [Alert] Fixed a bug that could cause the contents inside to disappear.
= 20.1.2 =
* Fixed a bug that `.is-layout-constrained` was given to an unintended position when there was no child block.
= 20.1.1 =
* [Box] Fixed a bug that prevented border radius settings from being displayed.
= 20.1.0 =
* [Box] Fixed a bug that prevented border settings from being displayed.
* [Balloon] Added style and transparency settings to border settings.
* [Box] Added style and transparency settings to border settings.
* [Information] Added style and transparency settings to border settings.
* [Contents slider] Added style and transparency settings to border settings.
= 20.0.1 =
* [Section] Fixed a bug where "Container alignment" did not work.
* [Section (Background image/video)] Fixed a bug where "Container alignment" did not work.
* [Section (Side heading)] Fixed a bug where "Container alignment" did not work.
* [Section (Break the grid)] Fixed a bug where "Container alignment" did not work.
= 20.0.0 =
* Update `apiVersion` of block.json is 2 to 3.
* Set `defer` attribute to `wp_enqueue_script()`.
* Remove unwrap and add ungroup.
* Changed CSS loading method to `file:`.
* Changed block CSS handle name. e.g. snow-monkey-blocks/accordion → snow-monkey-blocks-accordion-style
* [Accordion:Item] Set layout type: constrained.
* [Alert] Set layout type: constrained.
* [Balloon] Set layout type: constrained.
* [Box] Set layout type: constrained.
* [Container] Set layout type: constrained.
* [FAQ:Item] Set layout type: constrained.
* [Hero header] Set layout type: constrained.
* [Information:Item] Set layout type: constrained.
* [Items:free] Set layout type: constrained.
* [Media text] Set layout type: constrained.
* [Panels:Block link] Set layout type: constrained.
* [Panels:Free] Set layout type: constrained.
* [Section] Set layout type: constrained.
* [Contents slider:Item] Set layout type: constrained.
* [Step:Free] Set layout type: constrained.
* [Step:Standard] Set layout type: constrained.
* [Tabs:Tab panel] Set layout type: constrained.
= 19.10.1 =
* [Section (Background image/video)] Fixed a bug that caused the inspector to stretch vertically when a video was set as the background.
= 19.10.0 =
* [Hero header] Add new setting: Fit to the contents
* [Hero header] Fixed a bug that caused the inspector to stretch vertically when a video was set as the background.
* Add new block categories: Layout
* Flex block and grid block changed category to "Layout".
* Change block category name: Common blocks → Common
= 19.9.0 =
* Add new block: Flex
* Add new block: Grid
* [Items (Standard)] Fix "Align the bottom of the last element of each items" bug.
= 19.8.0 =
* [Section (Side heading)] Add new setting: gap
* [Section (Side heading)] Add new setting: Content column size
= 19.7.1 =
* [Slider] Fixed "Shifting the slider" bug.
* [Contents slider] Fixed "Shifting the slider" bug.
= 19.7.0 =
* [Hero header] Add new setting: Maximum width.
* [Items] Remove setting: Align the bottom of the button of each items (standard, block link item only).
* [Items] Add new setting: Align the bottom of the last element of each items
= 19.6.0 =
* Add new block: Hero header
* [Box] Added the ability to wrap and unwrap.
* [Container] Added the ability to wrap and unwrap.
* [Alert] Fixed a bug that the contents were lost when converting from paragraph block to alert block.
= 19.5.2 =
* [Contents slider] Fixed a bug that sometimes caused vertical scrolling.
= 19.5.1 =
* [Taxonomy posts] Fixed a bug in which the display settings for the meta and excerpts were not reflected correctly.
= 19.5.0 =
* [Recent posts] Fixed a bug that caused meta elements to be displayed in installed blocks that were not supposed to be displayed.
* [Taxonomy posts] Fixed a bug that caused meta elements to be displayed in installed blocks that were not supposed to be displayed.
* [Slider] Add `.is-scrolling` and `.is-fading`.
* [Pickup slider] Add `.is-scrolling` and `.is-fading`.
* [Contents slider] Add `.is-scrolling` and `.is-fading`.
* [File] Add text color setting.
* [Contents slider] Added the ability to set box shadows and borders at once.
* [Contents slider] Changed so that the shadows on the left and right edges of the slider are not displayed when a box shadow is set.
* [Contents slider] When box shadow is set + "Gutter" is set to "None", the shadow may overlap on top of the slide, changed so that the minimum spacing is maintained.
* [Contents slider] Fixed a bug that caused a momentary delay in the timing of drawing the previous and next slides when a box shadow was set.
* [Section (Break the grid)] Add "Remove container padding of the contents" setting.
* [Directory] Add text color setting.
= 19.4.0 =
* [Recent posts] Add setting: "The gap between each item".
* [Taxonomy posts] Add setting: "The gap between each item".
* [RSS] Add "The gap between each item".
* [Custom field] Add filter hook: `snow_monkey_blocks_custom_field_value_{field name}`
* [Items] Add setting: "Gap"
* [Panels] Add setting: "Gap"
* [Section (Break the grid)] Changed so that images are full width size when on mobile + full width.
* [Section (Break the grid)] Changed so that when mobile + the image position is right or left, the left/right position of the image changes according to the "Image size adjustment" setting.
* [Section (Break the grid)] Changed so that when mobile + the image position is right or left, the overlap between images and content changes according to the "Degree of overlap of content to image" setting.
* [Slider] The slider initialization process (the process of turning an image into a slider) is changed to just before the screen is scrolled and the slider is displayed on the screen.
* [Pickup slider] The slider initialization process (the process of turning an image into a slider) is changed to just before the screen is scrolled and the slider is displayed on the screen.
* [Contents slider] The slider initialization process (the process of turning an image into a slider) is changed to just before the screen is scrolled and the slider is displayed on the screen.
* [Contents slider] Fixed a bug that caused the left shadow to be obscured when sliding when a box shadow was set.
* [Section] Fixed a bug that the opacity of "Background text" was not correct when "Opacity" was set to 1.
* [Section (Background image/video)] Fixed a bug that the opacity of "Background text" was not correct when "Opacity" was set to 1.
* [Section (Break the grid)] Fixed a bug that the opacity of "Background text" was not correct when "Opacity" was set to 1.
= 19.3.2 =
* [Custom field] Fixed a problem in which 0 was not output on the screen when the stored value was 0.
= 19.3.1 =
* Add new block: Custom field block.
* Remove all block patterns.
* [Media text] Added gap setting.
* [Recent posts] Added author and publised date display settings (when meta is in view).
* [Taxonomy posts] Added author and publised date display settings (when meta is in view).
* [Recent posts] Added excerpt display setting (when excerpts are in view)
* [Taxonomy posts] Added excerpt display setting (when excerpts are in view).
* [Recent posts] Changed "Force display meta of each items" and "Force display category label of each items" to appear only when the post type is other than "Post".
* [Taxonomy posts] Changed "Force display meta of each items" and "Force display category label of each items" to appear only when the taxonomy is other than "Category" and "Tag".
* [Section (Break the grid)] Fixed a bug that images were unintentionally enlarged when the "Sort by mobile" was set to "Image > Text" + "Adjust the height of the media to the height of the block".
* [Section] "Remove container padding of the contents" can now be set unconditionally.
* [Section (Background image/video)] "Remove container padding of the contents" can now be set unconditionally.
* [Contents slider] Fixed a bug that left and right shadows were not seen when box shadow was set.
* [Contents slider] Fixed a bug that caused slide block variation conversion to fail.
= 19.2.1 =
* [Recent posts] Fixed a bug that taxonomies not associated with the currently selected post type were also displayed as selectable items.
= 19.2.0 =
* [Section] Minimum height setting added.
* [Section (Background image/video)] Minimum height setting added.
* [Section (Side heading)] Minimum height setting added.
* [Panels] Fixed a bug that the focus ring was not displayed.
* [Items (Banner)] Fixed a bug that the focus ring was not displayed.
* [Recent posts] Added the ability to filter by term.
= 19.1.0 =
* [Section (Break the grid)] Fixed a bug that prevented videos from being set up.
* [Section (Background image/video)] Fixed a bug that prevented videos from being set up.
* [Media text] Fixed a bug that prevented videos from being set up.
* [Pricing table] Fixed a bug in which column sizes were not always reflected.
* [Panels] Add "Glue each item together" setting.
* [Section] Add vertical padding setting.
* [Section (Side heading)] Add vertical padding setting.
* [Section (Background image/video)] Add vertical padding setting.
= 19.0.1 =
* [Balloon] Fixed a bug that balloon contents may disappear after recovery.
= 19.0.0 =
* Added "Overlap divider on content" setting.
* Added "Triangle (large)" to section divider.
* Change `CheckboxControl` to `ToggleControl`.
* Change `ImageSizeSelectControl` to `ImageSizeControl`.
* Change `__experimentalGetSettings` to `getSettiings`.
* Change `anchorRef` to `anchor`.
* Change `is{Variant}` to `variant="{variant}"`.
* Changed the link setting popover to open with a button click instead of automatically displaying when it has been set.
* Changed to allow transform between each section block.
* Changed to use BorderBoxControl for border settings.
* Changed to use `ToolsPanel`.
* Changed to use inspector style tabs on some blocks.
* Fixed a bug in WordPress 6.2 that caused `DateTimePicker` layout to break.
* Fixed a bug in WordPress 6.2 that caused placeholder of RSS block layout to break.
* Fixed a bug that could cause design corruption in iframe preview.
* [Alert] Change to use InnerBlocks for contents.
* [Balloon] Add border settings and avatar visibility setting.
* [Balloon] Change to use InnerBlocks for contents.
* [Contents outline] Fixed a bug that titles were not displayed when titles were not set.
* [Icon list] Change to use InnerBlocks for contents.
* [Information] Add label column text color setting.
* [Information] Add "Center" to label alignment.
* [Information] Add "50%" to label column size.
* [Information (Row)] Fixed a bug that caused the label entry field to drop one line.
* [Item (Block link)] Add "Display button" setting.
* [Item (Block link)] Add "Display image" setting.
* [Item (Standard)] Add "Display button" setting.
* [Item (Standard)] Add "Display image" setting.
* [Items (Banner)]GFixed a bug that sometimes left gaps between each banner when "lue each item together" was enabled.
* [Media text] Add fill setting, color settings, column split timing setting and block style "Border".
* [Media text] Fixed a bug that the size specified in "Image column size" was not accurate.
* [Panels (Block link)] Add color settings.
* [Panels (Free)] Add color settings.
* [Panels (Horizontal layout)] Add "Display button" setting.
* [Panels (Horizontal layout)] Add "Display image" setting.
* [Panels (Horizontal layout)] Add color settings.
* [Panels (Vertical layout)] Add "Display button" setting.
* [Panels (Vertical layout)] Add "Display image" setting.
* [Panels (Vertical layout)] Add color settings.
* [Pricing table (Plan)] Add "Display button" setting.
* [Pricing table (Plan)] Add "Display image" setting.
* [Pricing table (Plan)] Adjusted the design of nested listings.
* [Pricing table (Plan)] Change to use InnerBlocks for contents.
* [Pricing table] Fixed a bug that prevented the column size setting from working.
* [Section (background image/video)] Add divider settings.
= 18.2.0 =
* Snow Monkey v19.2.0 or higher is required to use with the Snow Monkey theme.
* Fluid typography applied.
* [Accordion] Add a margin to the left of the toggle button.
* [Tabs] Fixed an issue where the tab button position may become misaligned depending on the iOS version.
* [FAQ] Fixed a bug in which labels and text were not aligned vertically.
= 18.1.7 =
* [Section (Break the grid)] Change video to autoplay, loop, or mute.
* [Information] Fixed a bug that the display position of labels was inherited when nested.
* [Tabs] Fix a bug that tab color is blue on iOS.
= 18.1.6 =
* [Panel] Fixed a bug that sometimes caused the text to be white depending on the combination of blocks.
= 18.1.5 =
* [Contents outline] Fix PHP Warning error.
= 18.1.4 =
* [Section (Break the grid)] Fixed a bug that sometimes resulted in a PHP fatal error.
= 18.1.3 =
* [Section] Fix "Max width of the contents" bug.
* Update styles of .c-row > .block-list-appender.
= 18.1.2 =
* [Section (Break the grid)] Fixed a bug that prevented setting the background color of content when the color selected in the color picker was CSS var.
* [Section (Break the grid)] Fixed a bug that prevented masks from being set.
* Update styles of .c-row > .block-list-appender.
= 18.1.1 =
* [Button] Fixed a bug that text was not centered when set to full size.
= 18.1.0 =
* [Button] Changed to the same look and feel as the button block in the core.
* [Contents outline] Added title setting.
= 18.0.1 =
* [Panels] Fixed a bug that the heights of each panel were not aligned.
* [Panels] Change the size of the title of the panel to a smaller size.
* [Container] Added a setting to remove spaces on the left and right.
* [Media text] Fixed a bug in that "Sort by mobile" was sometimes not reflected correctly.
* Remove CSS from fallback.css that affects the entire page.
= 18.0.0 =
* Require [email protected] or later.
* Add some CSS vars.
* New block: Insert pattern (Beta)
* [Balloon] Changed design to use CSS vars.
* [Box] Changed design to use CSS vars.
* [Button] Changed design to use CSS vars.
* [Button box] Changed design to use CSS vars.
* [Countdown] Changed design to use CSS vars.
* [Directory structure] Changed design to use CSS vars.
* [Evaluation star] Changed design to use CSS vars.
* [Evaluation star] Refactoring CSS
* [FAQ] Changed design to use CSS vars.
* [FAQ] Refactoring CSS.
* [Items] Changed design to use CSS vars.
* [Pricing table] Changed design to use CSS vars.
* [rating box] Changed design to use CSS vars.
* [Section] Changed design to use CSS vars.
* [Section (Break the grid)] Changed design to use CSS vars.
* [Section (Side heading)] Changed design to use CSS vars.
* [Section (Background image/video)] Changed design to use CSS vars.
* [Contents slider] Changed design to use CSS vars.
* [Slider] Changed design to use CSS vars.
* [Step] Changed design to use CSS vars.
* [Items (Banner)] Fix bug than in panel block, the link is not clickable.
* Fixed a bug in which multiple slider-type blocks did not slide correctly when the arrows were clicked.
* Update patterns.
* Refactoring block manager.
= 17.2.1 =
* [Child pages] Fixed a bug that prevented blocks from being selected on the editor.
= 17.2.0 =
* Support block presets feature of Snow Monkey Editor plugin.
* [RSS] Fixed a bug that caused a block error when trying to enter a feed URL.
= 17.1.0 =
* Added support for move_to attribute in table of contents block.
= 17.0.3 =
* Fixed a bug that caused fallback CSS to be loaded even in environments where fallback CSS is not required.
= 17.0.2 =
* Fixed a bug that caused a Fatal Error when opening Settings → Snow Monkey Blocks.
* Fixed a bug that caused a Fatal Error when saving settings.
= 17.0.1 =
* [Contents slider] Fixed a bug that sometimes prevented the display.
* [Recent posts] Fixed a bug that could result in invalid content.
* [Taxonomy posts] Fixed a bug that could result in invalid content.
* [RSS] Fixed a bug that could result in invalid content.
* [Recent posts] Fixed a bug that prevented selection on the editor.
* [Taxonomy posts] Fixed a bug that prevented selection on the editor.
* [RSS] Fixed a bug that prevented selection on the editor.
* [Taxonomy] Fixed a bug that prevented selection on the editor.
* [Pickup slider] Fixed a bug that prevented selection on the editor.
* [Like me box] Fixed a bug that prevented selection on the editor.
= 17.0.0 =
* Requires WordPress 6.1 or later.
* [Panels] Fixed a bug that images were not included in the clickable area of links in horizontal layouts.
* [Buttons] Added background gradient settings.
* [Button box] Added background gradient settings.
* [Items] Added background gradient settings.
* [Pricing table] Added background gradient settings.
* [Slider] Fixed a bug that images sometimes did not reflect width and height.
= 16.1.0 =
* [FAQ] Add structured data.
* [Tabs] Fixed a bug that when a slider block (fade) was placed, the slider block was displayed even when its tab panel was hidden.
* [Tabs] Fixed a bug that caused unintended display when using "Duplicate Block" and "Delete Block".
= 16.0.9 =
* [Tabs] Fixed an issue where slider blocks placed on the second and subsequent tabs were displayed a little larger.
= 16.0.8 =
* [Tabs] Fixed an issue where slider blocks placed on the second and subsequent tabs were displayed a little larger.
= 16.0.7 =
* [Contents Slider] Fixed a bug that caused padding to be added to the top and bottom of the slider for displaying a box shadow even if a box shadow was not set.
= 16.0.6 =
* [Section] Fixed a bug that caused a block validation error when copying and pasting the block to another site with the texture set.
* [Section (Break the grid)] Fixed a bug that caused a block validation error when copying and pasting the block to another site with the texture set.
* [Section (Side heading)] Fixed a bug that caused a block validation error when copying and pasting the block to another site with the texture set.
= 16.0.5 =
* [Tabs] Fixed an issue where moving the tab position after adding a tab would cause the tab to be incorrectly linked to the content.
= 16.0.4 =
* [Tabs] Fixed a bug that lines were not displayed on tabs that required scrolling when the block style "Line" was used.
= 16.0.3 =
* Fixed a bug that prevented some blocks from being inserted on Windows servers.
= 16.0.2 =
* [Tabs] Fixed an issue where unnecessary space was sometimes created at the bottom of tab blocks depending on the content of the hidden block.
* [Slider] Changed so that when the next/prev button is clicked, it loops if the user is in the first/last position.
* [Contents slider] Changed so that when the next/prev button is clicked, it loops if the user is in the first/last position.
= 16.0.1 =
* [Tabs] Fixed a bug that the second and subsequent tabs were displayed out of alignment when "Align the height of each tab panel" was not checked.
= 16.0.0 =
* Requires WordPress 6.0 or later.
* Changes due to changes in WordPress 6.0.
* Update FontAwesome 5 to 6.
* [Balloon] Changed to apply margins between elements.
* [Contents slider] Fixed a bug that blocks could be broken when selecting slides.
* [Contents slider] Fixed a bug that sometimes prevented the correct background color from being applied to slides.
* [Tabs] Fixed a bug that slider blocks were sometimes not displayed when they were inserted inside a slider block.
= 15.0.6 =
* Fixed a bug that prevented the block manager from working if WordPress was installed in the sub directory.
= 15.0.5 =
* Fixed a bug that prevented the block manager from working if WordPress was installed in the own directory.
= 15.0.4 =
* Fixed a bug in which settings could not be changed in the block manager.
= 15.0.3 =
* Refactoring the blocks manager.
* Fixed a bug that caused js errors in the customizer.
= 15.0.2 =
* [FAQ] Addressing the fact that when the Q and A labels are unchanged, the start of the sentence is misaligned.
* [Section] Fixed a bug where the texture "Noise" sometimes did not lay down cleanly.
* [Section (Break the grid)] Fixed a bug where the texture "Noise" sometimes did not lay down cleanly.
* [Section (Side heading)] Fixed a bug where the texture "Noise" sometimes did not lay down cleanly.
= 15.0.1 =
* [Contents slider] Fixed a bug where scrolling down the page after sliding an item could cause the slide to go back to the first one.
* [Section] Fixed a bug where the bottom of the background text could not be set correctly.
* [Section (Break the grid)] Fixed a bug where the bottom of the background text could not be set correctly.
* [Section (Side heading)] Fixed a bug where the bottom of the background text could not be set correctly.
* [Section (Background image/video)] Fixed a bug where the bottom of the background text could not be set correctly.
【セクション】【セクション(ブロークングリッド)】【セクション(サイド見出し)】【セクション(背景画像/動画)】背景テキストの下基準位置がおかしい
= 15.0.0 =
* [Section (YouTube)] Abolition.
* [Accordion] Changed to show outline when accordion block is focused during keyboard operation.
= 14.1.1 =
* Update [email protected]
= 14.1.0 =
* [Slider] Fixed a bug where images were not width:100%.
* [Taxonomy posts] Added the ability to select the taxonomy to be used for category labels.
= 14.0.1 =
* [Contents outline] Fixed a bug that headings in group blocks are not targeted in WordPress 5.9.
= 14.0.0 =
* Requires WordPress 5.9 or later.
* End of support for ie11.
* Changes due to changes in WordPress 5.9.
* Renamed and order of the settings panel for each block.
* Renamed the child blocks of each block.
* [Balloon] Moved avatar position settings to the block toolbar.
* [Panel] Moved image position settings to the block toolbar.
* [Items:banner] Fixed a bug that images were not being used as `cover`.
* [Items:banner] Fixed a bug where an unwanted margin would appear at the top of the image when the image size was 4:3.
* [Contents slider] Fixed a bug where the background color was not reflected when set to a gradient.
* [Section (Break the grid)] Fixed a bug where the image would disappear when the media was moved to the top or bottom after "Adjust the height of the media to the height of the block." was enabled.
= 13.7.3 =
* [Media text] Fixed "Sort by mobile" bug.
= 13.7.2 =
* [Media text] Fixed bug that when "Sort by mobile" was set, InnerBlocks with `.c-row` would also be affected.
= 13.7.1 =
* [Items] Fix "Border" block style bug.
= 13.7.0 =
* [Items] Add block styles: "Boundary line" and "Border".
* [Items:banner] Add new settings: "3:4" and "9:16" into "Image aspect ratio".
* [Items:banner] Add new feature: Content alignment setting.
= 13.6.0 =
* [Contents slider] Improved display in the editor.
* [Contents slider] Fixed bug that caused a validation error when saving a slide with the background color set.
* [Child pages] Fix "Specify the parent page." bug.
* Update examples.
= 13.5.0 =
* Add the "Contents Slider" block.
* [Panel] Add the "Item (Free input / Block link)" block.
* [Section] Add new feature: Background text.
* [Section (Break the grid)] Add new feature: Background text.
* [Section (Background image/video)] Add new feature: Background text.
* [Section (YouTube)] Add new feature: Background text.
* [Child pages] Add new feature: Specify the parent page.
* [Box] Add new feature: Content Padding.
* [Contents outline] Fix bug that "Show section block titles" is not refrected.
* [Section (Break the grid)] Fixed bug that the lead text was not centered even if the text alignment was centered.
= 13.4.0 =
* [Section] Add new setting: Remove container padding.
* [Section] Changed "Container alignment" to show only when the block is full width.
* [Section] Add new setting: Add "Full width (Content only)" and "Full width (Content only)" to "Container alignment".
* [Section (Background image/video)] Remove container padding.
* [Section (Background image/video)] "Container alignment" to show only when the block is full width.
* [Section (Background image/video)] Add new setting: Add "Full width (Content only)" and "Full width (Content only)" to "Container alignment".
* [Section (YouTube)] Remove container padding.
* [Section (YouTube)] "Container alignment" to show only when the block is full width.
* [Section (YouTube)] Add new setting: Add "Full width (Content only)" and "Full width (Content only)" to "Container alignment".
* [Section (Side heading)] "Container alignment" to show only when the block is full width.
* [Section (Break the grid)] "Container alignment" to show only when the block is full width.
* [Slider] Improved the display in the editor when the slider is shifted.
= 13.3.0 =
* Change some blocks name. Double hyphens to single hyphen. eg. `snow-monkey-blocks/step--item` to `snow-monkey-blocks/step-item`.
* [Section (Break the grid)] Add new feature: Adjust the height of the media to the height of the block.
= 13.2.1 =
* [Box] Fix box shadow bug.
= 13.2.0 =
* [Slider] Add new setting: Animation speed.
* [Box] Add new setting: Box shadow.
= 13.1.0 =
* Add `max-width: 100%` to `.smb-section__inner`.
* [Container] Add new setting: Max width of the contents.
* [Section]
* [Section (Side heading)] Fixed a bug where the "Max content width" was not maintained when the block was positioned right or left.
* [Section (Background image/video)] Fixed a bug where the "Max content width" was not maintained when the block was positioned right or left.
* [Section (YouTube)] Fixed a bug where the "Max content width" was not maintained when the block was positioned right or left.
= 13.0.3 =
* Fix typo.
= 13.0.2 =
* [Section] Fix bug that layout is corrupted when old HTML structure.
* Fixed bug where the editing screen might not be displayed.
= 13.0.1 =
* Change image name.
= 13.0.0 =
* [Section] Change HTML structures.
* [Section] Add new setting: Max width of the contents.
* [Section] Add new setting: Container alignment.
* [Section (Background image/video)] Change HTML structures.
* [Section (Background image/video)] Add new setting: Max width of the contents.
* [Section (Background image/video)] Add new setting: Container alignment.
* [Section (Background image/video)] Add new setting: Image size.
* [Section (YouTube)] Change HTML structures.
* [Section (YouTube)] Add new setting: Max width of the contents.
* [Section (YouTube)] Add new setting: Container alignment.
* [Section (Side heading)] Change HTML structures.
* [Section (Side heading)] Add new setting: Max width of the contents.
* [Section (Side heading)] Add new setting: Container alignment.
* [Section (Break the grid)] Change HTML structures.
* [Section (Break the grid)] Changed so that containers are not full width even if they are full width.
* [Section (Break the grid)] Add new setting: Container alignment.
* [Section (Break the grid)] Add new settings: Background settings.
* [Section (Break the grid)] Add new settings: Fixed background settings.
* [Section (Break the grid)] Add new setting: Padding.
* [Section (Break the grid)] Add new settings: "Top" and "Bottom" to "Media position".
* [Section (Break the grid)] Add new settings: "No wrap" to "Sort by mobile".
* [Section (Break the grid)] Add new paramaters of "Image Size Adjustment".
* [Section (Break the grid)] Add new paramaters of "Content Size Adjustment".
* [Section (Break the grid)] Add new paramaters of "Degree of overlap of content to image".
* [Section (Break the grid)] Change block attribute values. "imageSize", "contentSize" and "contentHorizontalPosition".
* [Button] Fixed a bug that the background color setting was not reflected when entering a class in the additional CSS class after setting the block style to ghost.
* [Button box] Fixed a bug that the background color setting was not reflected when entering a class in the additional CSS class after setting the block style to ghost.
* [Items:banner] Fix block validation error.
* Change images in block patterns.
* Change block pattern categories name.
= 12.6.1 =
* [Slider] Fixed a bug that the slide position was shifted when set to alignwide.
= 12.6.0 =
* [Section (Break the grid)] Move "Contents alignment" inspector to block toolbar.
* [Section (Side heading)] Move "heading position" inspector to block toolbar.
* [Section (Background image/video)] Add new setting: "Full" into "Height".
* [Section (Background image/video)] Add new setting: Vertical alignment.
* [Section (Background image/video)] Add new setting: Horizontal alignment.
* [Section (Background image/video)] Move "Contents alignment" inspector to block toolbar.
* [Section (YouTube)] Add new setting: "Full" into "Height".
* [Section (YouTube)] Add new setting: Vertical alignment.
* [Section (YouTube)] Add new setting: Horizontal alignment.
* [Section (YouTube)] Move "Contents alignment" inspector to block toolbar.
* [Section] Add new setting: "Full" into "Height".
* [Section] Add new setting: Vertical alignment.
* [Section] Add new setting: Horizontal alignment.
* [Section] Move "Contents alignment" inspector to block toolbar.
* [Child pages] Add new setting: "Large image" into "Layout".
* [Recent posts] Add new setting: "Large image" into "Layout".
* [RSS] Add new setting: "Large image" into "Layout".
* [Taxonomy posts] Add new setting: "Large image" into "Layout".
= 12.5.1 =
* [Slider] Refactoring HTML.
= 12.5.0 =
* [Slider] Add setting: Margin size between slides.
* [Slider] Add setting: Shifting the slider.
* [Media text] Change Japanese translation.
= 12.4.1 =
* Add some block keywords.
* [Slider] Enables scrolling by drag.
* [Pickup slider] Enables scrolling by drag.
* [Recent posts] Enables scrolling by drag.
* [Taxonomy posts] Enables scrolling by drag.
* [Balloon] The name can be decorated.
= 12.4.0 =
* [Pickup Slider] Fix bug that additional CSS classes is not refrected.
* [Pickup Slider] Add settings. "Fade", "Display arrows", "Display dots" and "Change dots to thumbnails".
= 12.3.1 =
* [Tabs] Update design of "Line" block style.
* Update icons.
= 12.3.0 =
* Add new block: Tabs block.
* Update icons.
= 12.2.0 =
* [Items] Add setting for item justification.
* [Panels] Add setting for item justification.
* [Box] Add border radius setting.
= 12.1.0 =
* [Section (Break the grid)] Add "Contents alignment" setting.
= 12.0.3 =
* [Section (Break the grid)] Fixed a bug where media could not be placed on the left.
= 12.0.2 =
* Fixed a bug in which the "Contents alignment" of child sections was not correctly reflected when section-based blocks were nested.
* [Section (Break the grid)] Fixed a bug where the lead text was not centered even if the "Contents alignment" was centered.
* [Section (YouTube)] Fixed a bug where the lead text was not centered even if the "Contents alignment" was centered.
= 12.0.1 =
* [Recent posts] Fixed a bug where this is not being re-rendered in the block based widget screen. This may affect the compatibility with older block. In this case, please reconfigure a new block.
* [Taxonomy posts] Fixed a bug where this is not being re-rendered in the block based widget screen. This may affect the compatibility with older block. In this case, please reconfigure a new block.
= 12.0.0 =
* Compatible with WordPress 5.8. 5.7 is not supported.
* CSS changes with the WordPress 5.8 update.
* [Button] Change the margin from `margin` to `gap`.
* [Section] Add setting the vertical position of the content.
* [Section] Add height setting.
* [Section (Background image/video)] Change the class name of vertical alignment and height.
* [Section (YouTube)] Change the class name of vertical alignment and height.
* [Section (Background image/video)] Fixed a bug that caused videos to be treated as images when specified as URLs in the media.
* [Section (Break the grid)] Fixed a bug that caused videos to be treated as images when specified as URLs in the media.
* [Media text] Fixed a bug that caused videos to be treated as images when specified as URLs in the media.
* [Slider (Deprecated)] Fixed a bug where images were sometimes not displayed in full width.
= 11.4.1 =
* [Box] Fixed a bug that the ruled lines were sometimes missing in Safari.
* [Slider] Fixed a bug that could scroll horizontally even though it was a fade.
= 11.4.0 =
* The section blocks can now be displayed in all themes.
* [Section] Fixed a bug where applying formatting to a lead could break the layout.
* [Section (Background image/video)] Fixed a bug where applying formatting to a lead could break the layout.
* [Section (YouTube)] Fixed a bug where applying formatting to a lead could break the layout.
* [Section (Break the grid)] Fixed a bug where applying formatting to a lead could break the layout.
= 11.3.1 =
* [Section] Fixed a bug where applying formatting to a lead could break the layout.
* [Section (Background image/video)] Fixed a bug where applying formatting to a lead could break the layout.
* [Section (YouTube)] Fixed a bug where applying formatting to a lead could break the layout.
* [Section (Break the grid)] Fixed a bug where applying formatting to a lead could break the layout.
* [Section (Break the grid)] Fixed a bug that images did not extend to the edge of the screen when made full width in the editor.
* [Section] Fixed a bug where it tried to load a texture image even if the texture was set to "None".
* [Section (Side heading)] Fixed a bug where it tried to load a texture image even if the texture was set to "None".
= 11.3.0 =
* [Balloon] Add text color setting.
* [Section] Add "Background (Fixed) Settings".
* [Section (Side heading)] Add "Background (Fixed) Settings".
* [Section] Add texture settings.
* [Section (Side heading)] Add texture settings.
* [Section] Changed so that moving the background color does not move the position of the separator.
* [Section (Side heading)] Changed so that moving the background color does not move the position of the separator.
* [Section] Change "Background Settings" to "Background (Movable) Settings".
* [Section (Side heading)] Change "Background Settings" to "Background (Movable) Settings".
* [Section] Fixed a bug that caused the delimiters to shrink in Firefox.
* [Section (Side heading)] Fixed a bug that caused the delimiters to shrink in Firefox.
* [Section (Background image/video)] Fixed a bug where the gradient was not reflected.
* [Section (YouTube)] Fixed a bug where the gradient was not reflected.
* [Countdown] Fixed a bug where the block style was not reflected.
= 11.2.0 =
* [Recent posts] Added the ability to display meta information and category labels.
* [Taxonomy posts] Added the ability to display meta information and category labels.
* [Recent posts] Add new layout "Carousel (Rich media)".
* [Taxonomy posts] Add new layout "Carousel (Rich media)".
* [RSS] Add new layout "Carousel (Rich media)".
* [Child pages] Add new layout "Carousel (Rich media)".
* [Section (Background image/video)]Gradients in background mask color settings changed to core components.
* [Section (YouTube)] Gradients in background mask color settings changed to core components.
* [Step] Refactoring CSS.
* [Section] Fixed a bug that sometimes caused thin lines to be displayed when setting delimiters.
* [Section (Side heading)] Fixed a bug that sometimes caused thin lines to be displayed when setting delimiters.
* Update CSS of each blocks for block editor.
* Changed the popover display conditions for buttons in each block.
* Fixed some translations.
= 11.2.1 =
* [Step] Correct the misalignment of the line.
= 11.1.0 =
* [Media text] Add media link and attachment link settings.
* Update link/unlink icons.
= 11.0.3 =
* [Slider] Fixed a bug in which loop playback was not performed when the number of slides to be displayed was more than two.
* [Buttons] Fixed a bug that blocks could be broken after changing the alignment.
= 11.0.2 =
* [Section (Break the grid)] Fixed a bug in which the bottom part of the text was sometimes cut off when using alignfull + mobile.
= 11.0.1 =
* [Section] Fixed a bug where the background would be covered by the next element when the background position was shifted.
* [Section (Break the grid)] Fixed a bug where the shadow would be covered by the next element when the shadow position was shifted.
= 11.0.0 =
* [Box] Add gradient setting to background color setting.
* [Items] Add new setting. "Align the bottom of the button of each items (standard, block link item only)."
* [Section] Change the gradient setting to the core.
* [Section (Side heading)] Change the gradient setting to the core.
* [Buttons] Updates horizontal alignment settings to match core blocks.
* [Testimonial] Fix bottom margin bug on editor.
* [Slider] Fixed a bug that prevented slide interval from being reflected.
* [Pickup slider] Fixed a bug that prevented slide interval from being reflected.
* [Like me box] Fixed a bug that sometimes resulted in a Fatal error.
* Change `className="components-disabled"` to `<Disabled />`.
* Change `registerStore` to `createReduxStore`.
* Fixed a bug where the title and description of each block were not translated.
* In Snow Monkey theme, some layouts are broken when "White space size between elements" is set to "Wide".
* Fix heading3 block pattern bug.
= 10.3.3 =
* [Slider] Fixed a bug that prevented slide interval from being reflected on iOS.
* [Pickup Slider] Fixed a bug that prevented slide interval from being reflected on iOS.
= 10.3.2 =
* [Section(YouTube)] Fixed a bug that caused images to be shifted to the left on Safari.
= 10.3.1 =
* [Slider] Fixed a bug that prevented slide interval from being reflected on iOS.
* [Slider] Fixed a bug where the bottom margin was not correct in the editor.
* [Thumbnail gallery] Fixed a bug where the bottom margin was not correct in the editor.
= 10.3.0 =
* [Slider] Fixed bug that caused images to not be displayed in the editor when the fade setting was enabled.
* [Slider] Change the HTML structure of the slider block.
* [Child pages] Add some settings.
= 10.2.1 =
* [Slider] Fixed a bug that prevented slide interval from being reflected on iOS.
* [Pickup Slider] Fixed a bug that prevented slide interval from being reflected on iOS.
* Fixed a bug that images of block patterns (feature1, feature6) were not displayed.
* Fixed a bug where it was possible to insert blocks even if they were disabled in the block manager.
= 10.2.0 =
* Add blocks manager. Dashboard > Settings > Snow Monkey Blocks.
= 10.1.0 =
* [Section (Background image/video)] Add focal point setting.
* [Items] Add vertical alignment setting.
* [Section] Fixed a bug in which setting the separator and background position at the same time resulted in an unintended display.
* [Pickup slider] Fixed a cumulative bug in Safari.
* [Slider] Fixed a cumulative bug in Safari.
= 10.0.1 =
* [Items] Refactoring CSS.
* [Information] Fixed a bug in the editor where the placeholders for labels were misaligned.
* [Section] Add "Make sure the background doesn't overflow to the outside" sestting.
= 10.0.0 =
* WordPress 5.6 compatibility.
* Added the ability to specify the URL for each block of images.
* [Items] Add the option to glue each item together.
* [Items] Add free input child block.
* [Panels] Add free input child block.
* [Panels] Change max per row 4 to 6.
* [Information] Add new block.
* [Button] Add text block style.
* [Section] Change background position styles.
= 9.7.1 =
* [Evaluation star] Title not being displayed fixed.
* [Slider] Fix IE11 layout bug.
* Fixed an issue where link formats could be set for each button.
* Speeding up PHP file loading.
= 9.7.0 =
* [Slider] Fixed layout mismatch in ie11.
* [Pickup slider] Fixed layout mismatch in ie11.
* [Panel] Change children items name.
* [Buttons] Update layout.
* [Button] Fixed a bug that prevented it from becoming full size.
* [Items (Banner)] Add text alignment setting.
* [Items (Banner)] Add "Fit the content" to size setting.
* [Items (Banner)] Change the size setting from "Default" to "Fit to image".
= 9.6.2 =
* Fix bug that Assets::_enqueue_block_scripts() does not return $block_content in admin context.
* [Pricing table] Fix auto column size bug.
= 9.6.1 =
* [Section(break the grid)] Some fixes for 9.6.0.
= 9.6.0 =
* [Button] Changed to allow multiple buttons to be lined up like the core button block.
* [Button] Add border radius setting.
* [Button] Add new button size settings.
* [Section(break the grid)] Add mask setting.
* [Section(break the grid)] Add content background opacity setting.
* [Section(break the grid)] Add mobile order setting.
* [Button box] Add button setting.
* [Items] Add button setting.
* [Pricing table] Add button setting.
* [Section(background image/video)] Move mask color setting to mask setting.
* [Section(YouTube)] Move mask color setting to mask setting.
* [Section(break the grid)] Move image position setting to toolbar.
* [Section(break the grid)] Move vertical alignment setting to toolbar.
* [Items] Fixed an issue with blocked links not being set if the button label is not entered.
* [Panels] Fixed an issue where images would be collapsed in IE11 when viewed horizontally.
= 9.5.0 =
* [Recent posts] Add text2 layout. (Require Snow Monkey v11.4.0)
* [Taxonomy posts] Add text2 layout. (Require Snow Monkey v11.4.0)
* [RSS] Add text2 layout. (Require Snow Monkey v11.4.0)
* [Evaluation star] Add title setting.
* Change registering block patterns timing `plugins_loaded` to `init`.
* Formatting is now available for all blocks of text entry.
= 9.4.2 =
* [Child pages] Fixed a bug that caused the title tag to be printed even if the title was not entered.
* [Section (Background image/video)] Fixed a bug that the image would not spread to full size in the editor.
* [Section (Background image/video)] Fixed a bug that the mask did not work when "Repeat" was enabled.
* [Section (Background image/video)] Fixed a bug that the number of digits of opacity was not correct.
* [Items (Banner)] Fixed a bug that the number of digits of opacity was not correct.