forked from mx-space/kami
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
3411 lines (1814 loc) · 188 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# CHANGELOG
## [4.1.1](https://github.com/mx-space/kami/compare/v4.1.0...v4.1.1) (2023-02-15)
### Bug Fixes
* dockerfile build ([d1a1f16](https://github.com/mx-space/kami/commit/d1a1f16d649682192c33f7ca7fbf04756b5c99a8))
# [4.1.0](https://github.com/mx-space/kami/compare/v4.0.11...v4.1.0) (2023-02-14)
### Bug Fixes
* **deps:** update dependency @floating-ui/react-dom to v1.3.0 ([#1583](https://github.com/mx-space/kami/issues/1583)) ([ebf95a2](https://github.com/mx-space/kami/commit/ebf95a221e82fc6d9a6db2fed980ce9971143194))
* **deps:** update dependency mobx to v6.8.0 ([#1576](https://github.com/mx-space/kami/issues/1576)) ([4d67526](https://github.com/mx-space/kami/commit/4d67526e1e2f13ee02b9f2de7705a2e2be46ca09))
* **deps:** update dependency react-intersection-observer to v9.4.2 ([#1574](https://github.com/mx-space/kami/issues/1574)) ([23b85cb](https://github.com/mx-space/kami/commit/23b85cb8cd060d2394d8cdda710110ec35ef8960))
* **deps:** update dependency socket.io-client to v4.6.0 ([#1571](https://github.com/mx-space/kami/issues/1571)) ([db2fefd](https://github.com/mx-space/kami/commit/db2fefd3334f717129838d403ef8db4afd8f85a3))
* **deps:** update dependency validator to v13.9.0 ([#1566](https://github.com/mx-space/kami/issues/1566)) ([165722d](https://github.com/mx-space/kami/commit/165722d074a7e42111da63b09065e86f7fa7bfb7))
* **home:** hide friend section if nothing ([0acdcc6](https://github.com/mx-space/kami/commit/0acdcc672113d1b5811b661cd1d9dc0481920cbe))
### Features
* **home:** modal of subscribe entry ([d79a256](https://github.com/mx-space/kami/commit/d79a25697d3cb59f35dd08c6fac16fe4ba559e57))
* subscribe support ([#1582](https://github.com/mx-space/kami/issues/1582)) ([16bf795](https://github.com/mx-space/kami/commit/16bf795e5022be0e8ac663f11b2a1f5fb415d792))
## [4.0.11](https://github.com/mx-space/kami/compare/v4.0.10...v4.0.11) (2023-02-03)
## [4.0.10](https://github.com/mx-space/kami/compare/v4.0.9...v4.0.10) (2023-02-03)
### Bug Fixes
* **deps:** update dependency @floating-ui/react-dom to v1.2.2 ([a92361d](https://github.com/mx-space/kami/commit/a92361dc97a799ebd61610692c373e6d23b9b418))
* **deps:** update dependency swr to v2.0.3 ([3cbd951](https://github.com/mx-space/kami/commit/3cbd951294d7edf7dec1ab57043972033ac1796e))
* google font api, remove loli ([a9a599f](https://github.com/mx-space/kami/commit/a9a599f6dd0ce31fb2be90a2458b0a3453b838fa))
* meting endpoint ([55e66ca](https://github.com/mx-space/kami/commit/55e66ca4a9552062456d3d3939fdbac441c18de1))
* **post-list:** speed up animation ([01d00a8](https://github.com/mx-space/kami/commit/01d00a8a51acdfdfdbe2e452193c537a287cdd2f))
## [4.0.9](https://github.com/mx-space/kami/compare/v4.0.8...v4.0.9) (2023-01-27)
### Bug Fixes
* cleanup next config ([59478e2](https://github.com/mx-space/kami/commit/59478e2452fb45ae9690b2b1768c726b3ae9a9e0))
* **deps:** update dependency @floating-ui/react-dom to v1.2.1 ([85aa1fe](https://github.com/mx-space/kami/commit/85aa1fe344c8533f165408b352ad630af4524af1))
* **deps:** update dependency @formkit/auto-animate to v1.0.0-beta.6 ([9d1baf7](https://github.com/mx-space/kami/commit/9d1baf7fc553a0d42cbe0c5bb58547c70545bb05))
* **deps:** update dependency react-countup to v6.4.1 ([56e2770](https://github.com/mx-space/kami/commit/56e2770b2da59d96ea4b7d235e90b268fd4df835))
* **deps:** update dependency swr to v2.0.1 ([327208f](https://github.com/mx-space/kami/commit/327208fc341bc9df56c3d16646b692c75cab1709))
* **deps:** update dependency swr to v2.0.2 ([9d989d8](https://github.com/mx-space/kami/commit/9d989d8cea4f8798723603ee40f86406ac58fe65))
* downgrade @rollup/plugin-typescript ([ce2fd30](https://github.com/mx-space/kami/commit/ce2fd30872f0b009b28859a14143a5b201b9366e))
## [4.0.8](https://github.com/mx-space/kami/compare/v4.0.7...v4.0.8) (2023-01-11)
### Bug Fixes
* data display exceptions during initialization ([#1531](https://github.com/mx-space/kami/issues/1531)) ([5773fc9](https://github.com/mx-space/kami/commit/5773fc966259b91632ecc8dd2177360c0e857e60))
* **deps:** update dependency @floating-ui/react-dom to v1.2.0 ([#1535](https://github.com/mx-space/kami/issues/1535)) ([03ca8ab](https://github.com/mx-space/kami/commit/03ca8ab670eb750ddd44b8bef91b0b6612a6fc4a))
* **kami-design:** image size ([#1534](https://github.com/mx-space/kami/issues/1534)) ([a6fe005](https://github.com/mx-space/kami/commit/a6fe00581594c17c28a5a8e6f4ca280eff1bba58))
## [4.0.7](https://github.com/mx-space/kami/compare/v4.0.6...v4.0.7) (2023-01-08)
### Bug Fixes
* **deps:** update dependency @floating-ui/react-dom to v1.1.1 ([13e599e](https://github.com/mx-space/kami/commit/13e599e9860d6e67cc4315c28778aa111a7f7d86))
* **deps:** update dependency @floating-ui/react-dom to v1.1.2 ([baadc6d](https://github.com/mx-space/kami/commit/baadc6dc826cc26c91c9f68e94406fed22acaf6c))
* export Modal in entry file ([f1a6379](https://github.com/mx-space/kami/commit/f1a6379051ef2233f79cce6ad4fa6eb2be8b590d))
* make ts happy ([e473748](https://github.com/mx-space/kami/commit/e473748f5c64a294acf7f6a38c4505fe08d2002d))
* transition entry file ([1fa3d60](https://github.com/mx-space/kami/commit/1fa3d6088a052d5c7adaf5a186ec064ef4c9d3e9))
* ui improve ([f92f28f](https://github.com/mx-space/kami/commit/f92f28f7e6eb28c1b36b1196659d4458159a72b0))
### Features
* extract modal component ([9d19bf7](https://github.com/mx-space/kami/commit/9d19bf7d8f69c9c89eda06e74ecf991391eeb1c1))
## [4.0.6](https://github.com/mx-space/kami/compare/v4.0.5...v4.0.6) (2022-12-25)
### Bug Fixes
* increase go to anchor time ([732eceb](https://github.com/mx-space/kami/commit/732eceb16c952b80868bc29f6c10db62b62e6b49))
* use master avatar instend of gravatar ([6ac8895](https://github.com/mx-space/kami/commit/6ac8895cb87583e3b0dd2c7a6ca3fe60fd13dc01))
## [4.0.5](https://github.com/mx-space/kami/compare/v4.0.4...v4.0.5) (2022-12-24)
### Bug Fixes
* header subtitle overflow ([ac95920](https://github.com/mx-space/kami/commit/ac959201e779ed2697082e35c0a7743f0262175d))
* modal root portal ([d84cb61](https://github.com/mx-space/kami/commit/d84cb61c15c83d6db60878f9e53deae684cae233))
* notes styles and crash ([77301f0](https://github.com/mx-space/kami/commit/77301f0d19a8ec9b0b805f1d37910d64262248e7))
* override windi style of `indent` ([ea36eec](https://github.com/mx-space/kami/commit/ea36eec0609e9c7cc3ac89304b2ed989381ecc3f))
### Features
* show what you say when comment ([b1a40c2](https://github.com/mx-space/kami/commit/b1a40c2ad7302f65cbf01ecdf46cc5d546564e4e))
## [4.0.4](https://github.com/mx-space/kami/compare/v4.0.3...v4.0.4) (2022-12-23)
### Bug Fixes
* load more not trigger loading ([3f191e7](https://github.com/mx-space/kami/commit/3f191e70944c9b044e7dd82cd33b693e0ab38811))
* overlay and improve pref of modal ([8c0e71d](https://github.com/mx-space/kami/commit/8c0e71db3a834fe208551fa3d20ec5b929bf9f2a))
### Features
* recently support thumbs up ([85b0409](https://github.com/mx-space/kami/commit/85b0409eef79de4735d632aa641913a0f75db82d))
## [4.0.3](https://github.com/mx-space/kami/compare/v4.0.2...v4.0.3) (2022-12-23)
### Bug Fixes
* **recently:** event handler ([8c7dcce](https://github.com/mx-space/kami/commit/8c7dccec835b3a150474638cae3bf8403bf17b2d))
* toast close ([40a484f](https://github.com/mx-space/kami/commit/40a484f5ba946ccf0612be288464161f3ded3d90))
### Features
* `recently` support comment ([05871ed](https://github.com/mx-space/kami/commit/05871ed0b2930f275e2ae74099ddb54d6ab0a682))
## [4.0.2](https://github.com/mx-space/kami/compare/v4.0.1...v4.0.2) (2022-12-18)
### Bug Fixes
* topic introduce line-height style ([551ed35](https://github.com/mx-space/kami/commit/551ed35a0999e20fc32073e4ed82b9b77e953dbe))
* update markdown-jsx dep to fix slugify ([b33ff18](https://github.com/mx-space/kami/commit/b33ff1886d24e6a1b0c5bc2623c7a967381dafe8))
## [4.0.1](https://github.com/mx-space/kami/compare/v4.0.0...v4.0.1) (2022-12-10)
### Bug Fixes
* docker build ([1b13cf3](https://github.com/mx-space/kami/commit/1b13cf3566d04b03241b88a8cb23af3a29394b68))
* markdown wrapper prop passing ([0d40a7a](https://github.com/mx-space/kami/commit/0d40a7a23d0b7672984cf84d93950cf2e3a93d93))
* module entry field ([b22ed98](https://github.com/mx-space/kami/commit/b22ed985fcaec95f84ab3fb44c904d1d2b636bef))
* rollup build of react-use ([b07dc7f](https://github.com/mx-space/kami/commit/b07dc7f26d917351e2856f4d1d910e02abd25d5b))
# [4.0.0](https://github.com/mx-space/kami/compare/v3.15.8...v4.0.0) (2022-12-10)
### Bug Fixes
* build sciprt ([bb332a8](https://github.com/mx-space/kami/commit/bb332a87b94d1e3e62538bbbb5ce64477f457eea))
* bundle ([34f732b](https://github.com/mx-space/kami/commit/34f732b56cc37d88d51a2a1ed6d7343285e21a4a))
* components dts bundle ([449fffb](https://github.com/mx-space/kami/commit/449fffb0d6d0447e52213922e82e2f9c76a4582f))
* **deps:** update dependency dayjs to v1.11.7 ([95aac56](https://github.com/mx-space/kami/commit/95aac566b91a7223afcc0d6d281ab2cc14f38708))
* **deps:** update dependency devtools-detector to v2.0.14 ([b4deb07](https://github.com/mx-space/kami/commit/b4deb07b54ea60f0c2497bc79301ceea4ddbab21))
* **deps:** update dependency react-countup to v6.4.0 ([#1467](https://github.com/mx-space/kami/issues/1467)) ([1fac506](https://github.com/mx-space/kami/commit/1fac50689d4122aa0c05f671d912f0327d71a5cc))
* dts bundle ([504f8af](https://github.com/mx-space/kami/commit/504f8af612801f63fd2eaeed5327a0adc29a958a))
* import React UMD ([95b15aa](https://github.com/mx-space/kami/commit/95b15aa86c2e9208654d9f306572f0a5ef63e3fe))
* **kami-design:** markdown props ([a205777](https://github.com/mx-space/kami/commit/a205777fee07a65d85eb49da953362f5e21b63b1))
* markdown extract ([565553c](https://github.com/mx-space/kami/commit/565553cb65f7ff49a0cc77f196f87f2dca0cbd19))
* markdown renderers ([14c15be](https://github.com/mx-space/kami/commit/14c15be74508f97585ed7ca97fc0433a644bc7b3))
* rollup config ([f4c97e1](https://github.com/mx-space/kami/commit/f4c97e1ee8ebc20868633b613498afdb66707c63))
* typing entry ([6916191](https://github.com/mx-space/kami/commit/691619181e067a08cab0604f70fc7bb6f76362b2))
### Features
* add swr ([#1485](https://github.com/mx-space/kami/issues/1485)) ([1b90133](https://github.com/mx-space/kami/commit/1b90133838ed281b85f442ae5b54be6cc1bd25a1))
* build types ([60c248b](https://github.com/mx-space/kami/commit/60c248b758281990a54556e37240974bdfde1d1d))
* bundle components dts and fix windi bundle ([8356be3](https://github.com/mx-space/kami/commit/8356be301f05e4e023fd6dee1823d8aa3ff84a35))
* bundle every components ([ecd4ad6](https://github.com/mx-space/kami/commit/ecd4ad6a1ce1d9e003e736ffa447180b40cdf289))
* migrating shared components ([183b327](https://github.com/mx-space/kami/commit/183b327efb0565eca3f95b883a79126388cfc1f2))
* optimize banner in darkmode ([#1469](https://github.com/mx-space/kami/issues/1469)) ([4348d82](https://github.com/mx-space/kami/commit/4348d82f241aae71d6051e6ad5327f4f4a9811e7))
* replace new markdown component ([c49fefd](https://github.com/mx-space/kami/commit/c49fefde2c419480cca518385a7de293b4e02a94))
* rollup config & monorepo ([255336c](https://github.com/mx-space/kami/commit/255336cd6be0a1f8e823a821858843f82e984ef8))
## [3.15.8](https://github.com/mx-space/kami/compare/v3.15.7...v3.15.8) (2022-11-25)
### Bug Fixes
* cdn url ([bc869c9](https://github.com/mx-space/kami/commit/bc869c9a9de8bf556a03c30936fd83109b7d34e1))
* **deps:** update dependency @floating-ui/react-dom to v1.0.1 ([9fdab07](https://github.com/mx-space/kami/commit/9fdab074ba8e66c3f4d03062e9e163131e91cff1))
* **deps:** update dependency @formkit/auto-animate to v1.0.0-beta.5 ([0a068bc](https://github.com/mx-space/kami/commit/0a068bc35e4bd0b6bc7077cae164d06e22ad7d48))
* **deps:** update dependency @mx-space/api-client to v1.0.0-beta.3 ([1040c4f](https://github.com/mx-space/kami/commit/1040c4fab6a1555ef8f7cde4ecc687b54ae29e64))
* **deps:** update dependency markdown-escape to v2 ([#1461](https://github.com/mx-space/kami/issues/1461)) ([d512c12](https://github.com/mx-space/kami/commit/d512c1273c095e54fb5f9d513961fc71a27e9601))
* **deps:** update dependency medium-zoom to v1.0.7 ([a406fcb](https://github.com/mx-space/kami/commit/a406fcbe0d2147578786dae657daae776dbd003b))
* **deps:** update dependency medium-zoom to v1.0.8 ([4378c16](https://github.com/mx-space/kami/commit/4378c168012c6da00d6b75c29797e36484f6442b))
* **deps:** update dependency mobx to v6.7.0 ([#1455](https://github.com/mx-space/kami/issues/1455)) ([8436d13](https://github.com/mx-space/kami/commit/8436d137e33db3b94dbad16eb154a5444e197e88))
* **deps:** update dependency next-seo to v5.14.0 ([#1444](https://github.com/mx-space/kami/issues/1444)) ([4c1ce88](https://github.com/mx-space/kami/commit/4c1ce88616ab3ac4b5f4218dc97e12aed27ed389))
* **deps:** update dependency next-seo to v5.14.1 ([97d0133](https://github.com/mx-space/kami/commit/97d0133650003fa720498db077de10c9d8e49525))
* **deps:** update dependency react-intersection-observer to v9.4.1 ([17b51ff](https://github.com/mx-space/kami/commit/17b51fffa70aa8ab0037f03d5635d3228a58aae7))
* **deps:** update dependency socket.io-client to v4.5.4 ([abb02c2](https://github.com/mx-space/kami/commit/abb02c2ee6114a174aa0703860d931e1505f7a58))
* **player:** consume own music song data ([97c021a](https://github.com/mx-space/kami/commit/97c021aae56e2998c9efa9047eff5ea9e9a7a73b))
### Features
* add umami host-url ([2dfece3](https://github.com/mx-space/kami/commit/2dfece3132487511346ca34c21827d37711b9a00))
## [3.15.7](https://github.com/mx-space/kami/compare/v3.15.6...v3.15.7) (2022-11-04)
### Bug Fixes
* comment highlight ([#1433](https://github.com/mx-space/kami/issues/1433)) ([32e0dd8](https://github.com/mx-space/kami/commit/32e0dd8b6ec427b36dd133ebd8bd55eebd10d309))
* **deps:** update dependency dayjs to v1.11.6 ([ee299e6](https://github.com/mx-space/kami/commit/ee299e6bcabdaee32b16e113b40fd15618b6b95e))
* **deps:** update dependency next-seo to v5.13.0 ([#1436](https://github.com/mx-space/kami/issues/1436)) ([0dabc7d](https://github.com/mx-space/kami/commit/0dabc7d8f0ce2ccc823f51a950eae61b329a0dac))
* **deps:** update dependency next-seo to v5.9.0 ([#1421](https://github.com/mx-space/kami/issues/1421)) ([aa06dee](https://github.com/mx-space/kami/commit/aa06deea075eb79d4babbd8daa699b98f30b14a6))
* **deps:** update dependency react-toastify to v9.1.1 ([#1439](https://github.com/mx-space/kami/issues/1439)) ([095f46e](https://github.com/mx-space/kami/commit/095f46e39225562d8ac9a3ba80c2e75a91527789))
### Performance Improvements
* **comment:** reduce causing styling shifts ([#1441](https://github.com/mx-space/kami/issues/1441)) ([8bf02f7](https://github.com/mx-space/kami/commit/8bf02f79fa1919764fcf0ca657453689cc32a3f4))
## [3.15.6](https://github.com/mx-space/kami/compare/v3.15.5...v3.15.6) (2022-10-19)
### Bug Fixes
* toc auto-refresh ([a0d58ae](https://github.com/mx-space/kami/commit/a0d58ae7e4ecdec82d477b83ca7957ba340d5aaa))
## [3.15.5](https://github.com/mx-space/kami/compare/v3.15.4...v3.15.5) (2022-10-18)
### Bug Fixes
* **deps:** update dependency next-seo to v5.6.0 ([#1415](https://github.com/mx-space/kami/issues/1415)) ([d196483](https://github.com/mx-space/kami/commit/d19648365aefdc225abda6c0c8f479171fb9c212))
* **deps:** update dependency react-countup to v6.3.2 ([b529c29](https://github.com/mx-space/kami/commit/b529c29316ad9bb190def10e9bbd95a42ca87565))
* **deps:** update dependency socket.io-client to v4.5.3 ([83febb3](https://github.com/mx-space/kami/commit/83febb33672d51bc93fc9fa02122201b1062cef0))
* **link-card:** show image url for debug ([7591634](https://github.com/mx-space/kami/commit/7591634ff338126a46b6a26923cfe85c163d6b0a))
* update own deps to esm ([17ca57a](https://github.com/mx-space/kami/commit/17ca57a5b32ec5b86b107680ed926c39cf3549ff))
* **utils:** safe guard of relativeTime ([3e11019](https://github.com/mx-space/kami/commit/3e11019a04e2bcca601c8d84cb49b32f7b72435d))
### Features
* ui improve ([98f7c32](https://github.com/mx-space/kami/commit/98f7c3291c0c61d744406a5394a13a75d90a2fd3))
* ui improve ([04f14be](https://github.com/mx-space/kami/commit/04f14be2decf939ba9160c1ad8244ed792189416))
## [3.15.4](https://github.com/mx-space/kami/compare/v3.15.3...v3.15.4) (2022-10-03)
### Bug Fixes
* **deps:** update dependency react-message-popup to v1.0.0 ([6d74521](https://github.com/mx-space/kami/commit/6d745216ea7a0c5cb7be68043de3f257260545d5))
### Features
* **header:** add subtitle ([3bd5695](https://github.com/mx-space/kami/commit/3bd5695525c34d164b2f5a7e5de48d13e64d11d0))
* **intro:** improve popover style ([f62935c](https://github.com/mx-space/kami/commit/f62935cacd6907aae7929c02103addff6a9e0abf))
## [3.15.3](https://github.com/mx-space/kami/compare/v3.15.2...v3.15.3) (2022-09-29)
### Bug Fixes
* comment avatar disappear ([#1396](https://github.com/mx-space/kami/issues/1396)) ([bbf7a4a](https://github.com/mx-space/kami/commit/bbf7a4a415a57599b08f014ea015de6b4d1729d7))
## [3.15.2](https://github.com/mx-space/kami/compare/v3.15.1...v3.15.2) (2022-09-27)
### Bug Fixes
* toc max-width and lamp coincidence ([af05395](https://github.com/mx-space/kami/commit/af05395a2a09f611d760c30db87d7fac33a92122))
### Features
* disable comment for site ([475c6ec](https://github.com/mx-space/kami/commit/475c6ec6b00e58b2acefe573e2af3690f6792c25))
## [3.15.1](https://github.com/mx-space/kami/compare/v3.15.0...v3.15.1) (2022-09-25)
### Bug Fixes
* safe setstate hook ([df08fc2](https://github.com/mx-space/kami/commit/df08fc2279b308e96e5d3d213aaa31119700833a))
### Features
* ui adjust ([57bfa33](https://github.com/mx-space/kami/commit/57bfa33a1ed01ba565ac745cd821ef1f0cdc210e))
# [3.15.0](https://github.com/mx-space/kami/compare/v3.14.8...v3.15.0) (2022-09-10)
### Bug Fixes
* **deps:** update dependency devtools-detector to v2.0.12 ([22056d7](https://github.com/mx-space/kami/commit/22056d7ea9006a202e71b7b7ed4cc3ee5d627919))
* **deps:** update dependency mobx to v6.6.2 ([b8ba1c0](https://github.com/mx-space/kami/commit/b8ba1c0087fa89e9e1fd45481d071cc622cd2d99))
* update lock file ([f2ef110](https://github.com/mx-space/kami/commit/f2ef1105e31f7bd022fc3d03aa75c06d45c6b948))
## [3.14.8](https://github.com/mx-space/kami/compare/v3.14.7...v3.14.8) (2022-09-07)
### Bug Fixes
* comment pin sort ([449623b](https://github.com/mx-space/kami/commit/449623b8ba56abaad3e0fee497daf0289eefdeb1))
* **deps:** update dependency socket.io-client to v4.5.2 ([1c826ef](https://github.com/mx-space/kami/commit/1c826efb34f233602c07174cb98982ac89409642))
* inline markdown icon style ([6d5d318](https://github.com/mx-space/kami/commit/6d5d3180d29158aceb8c037bd1138f8ed3bebb5d))
* notification maybe null ([b010af9](https://github.com/mx-space/kami/commit/b010af9e528864ad2ab2f4adccf1836afc55d96e))
### Features
* improve toast style ([efbab23](https://github.com/mx-space/kami/commit/efbab235e2eddd043857766f8295c40a49fc2ab9))
## [3.14.7](https://github.com/mx-space/kami/compare/v3.14.6...v3.14.7) (2022-08-28)
### Bug Fixes
* auth token expires time ([e177d26](https://github.com/mx-space/kami/commit/e177d26963e4769b4a9e4ab9b3ccc9d967e5fbc6))
* **deps:** update dependency react-countup to v6.3.1 ([4b5aa2f](https://github.com/mx-space/kami/commit/4b5aa2f380d5b9e36f245608cb3ea528d638e26d))
* toast auto close ([8e286ba](https://github.com/mx-space/kami/commit/8e286bacd142add59a6bb5c5db098af009da5df8))
### Features
* custom welcome notification ([b48c97e](https://github.com/mx-space/kami/commit/b48c97e644eba49d0cdb1cda2e845cce9ed5844d))
### Performance Improvements
* fetch note timeline ([fb143d9](https://github.com/mx-space/kami/commit/fb143d903ab4bd2450ca944bf1838cc0715323eb))
## [3.14.6](https://github.com/mx-space/kami/compare/v3.14.5...v3.14.6) (2022-08-26)
### Bug Fixes
* **deps:** update dependency @formkit/auto-animate to v1.0.0-beta.2 ([79fab54](https://github.com/mx-space/kami/commit/79fab54b15b4ddb707a16737323d5ffdead8dce1))
* **deps:** update dependency @formkit/auto-animate to v1.0.0-beta.3 ([1dec90d](https://github.com/mx-space/kami/commit/1dec90d4b63fa4d2b1995087a6d16d9896e95d7a))
### Features
* `LinkCard` support github repo ([00ed6a0](https://github.com/mx-space/kami/commit/00ed6a06c4cd545834e8391b6b65e410f6d938fb))
## [3.14.5](https://github.com/mx-space/kami/compare/v3.14.4...v3.14.5) (2022-08-18)
### Bug Fixes
* autoplay ([aace7e0](https://github.com/mx-space/kami/commit/aace7e083b36033c2a07b5a087c0199912c110bc))
* improve list num pos ([e321314](https://github.com/mx-space/kami/commit/e321314caa838ffe9990581b3f45ff083a7453fc))
## [3.14.4](https://github.com/mx-space/kami/compare/v3.14.3...v3.14.4) (2022-08-17)
### Bug Fixes
* fix some thing ([3b7b173](https://github.com/mx-space/kami/commit/3b7b173d3b9ebf7fbbe9da47ae021f5a8d2c4465))
### Features
* gallery autoplay ([7917207](https://github.com/mx-space/kami/commit/7917207de5d67ce05bf5443f46436bd1355bbd46))
* **gallery:** scroll indicator ([5be91f0](https://github.com/mx-space/kami/commit/5be91f00077b36344ca8f0d7ac1842f234d13fe2))
## [3.14.3](https://github.com/mx-space/kami/compare/v3.14.2...v3.14.3) (2022-08-16)
### Bug Fixes
* **deps:** update dependency devtools-detector to v2.0.11 ([d6175ae](https://github.com/mx-space/kami/commit/d6175aecb83334dae3855379d12506961d3e9240))
* gallery resize observer ([9b4edd0](https://github.com/mx-space/kami/commit/9b4edd069727074b6eee6d40437fb08305065e7e))
* recently markdown render style ([aac7d73](https://github.com/mx-space/kami/commit/aac7d737c71fbc984ef6c3253aa01f6183199ed1))
### Features
* improve ui ([08cc91d](https://github.com/mx-space/kami/commit/08cc91d07c1489980e7b5926a5ff800ff6df6861))
* **link-card:** fetch error fallback style ([26100d7](https://github.com/mx-space/kami/commit/26100d7437f7e4e9ece3ea637fbf056d27e634f3))
## [3.14.2](https://github.com/mx-space/kami/compare/v3.14.1...v3.14.2) (2022-08-14)
### Bug Fixes
* `Image` ([8322445](https://github.com/mx-space/kami/commit/832244527672c52be0ed206e32af313f922dc2bb))
* blockquote style ([0eacd84](https://github.com/mx-space/kami/commit/0eacd849c3271b1921e46ad83e5c3125bf41615b))
* gallery figcaption pos ([41e786c](https://github.com/mx-space/kami/commit/41e786c58934f0e8aed999bcc6c9b3267ccf7e37))
* header swiper style ([3054fd1](https://github.com/mx-space/kami/commit/3054fd1d8a8808a9480274a85882910d68515fa5))
* nofollow link ([b1b5f52](https://github.com/mx-space/kami/commit/b1b5f528021d91516256c7408e884f512b4464c1))
### Features
* **markdown:** support image title ([0c1dcdc](https://github.com/mx-space/kami/commit/0c1dcdc09ccf9b5d616d52a51373ad8bf92c5816))
## [3.14.1](https://github.com/mx-space/kami/compare/v3.14.0...v3.14.1) (2022-08-13)
### Bug Fixes
* **deps:** update dependency dayjs to v1.11.5 ([ebefad9](https://github.com/mx-space/kami/commit/ebefad938020cb1e462814101d7ee759b145f772))
* md render props ([a404526](https://github.com/mx-space/kami/commit/a404526b41009f77226a5a978b4bf28db43dbe1a))
* other override of markdown ([f7f806a](https://github.com/mx-space/kami/commit/f7f806a206f4924ee91eaf05fc5c3263416fd62a))
* toc depth ([2cf6c6d](https://github.com/mx-space/kami/commit/2cf6c6d29e01f5e7793a3e0fe01e5d678c10a432))
* toc style in laptop ([0f7fe66](https://github.com/mx-space/kami/commit/0f7fe66110f5755bc1cd35f2afba337680c7385a))
### Features
* auto reveal to current toc item ([bbbbc4b](https://github.com/mx-space/kami/commit/bbbbc4be49136e38a30f258f021ef22a14ac7961))
* support markdown container ([#1360](https://github.com/mx-space/kami/issues/1360)) ([2f27994](https://github.com/mx-space/kami/commit/2f2799459a21402bdba04952cf9149e3ad0d720f))
### Performance Improvements
* improve toc perfermance ([4629415](https://github.com/mx-space/kami/commit/4629415951b2c354b9fdbe1477f81898b0f10d04))
# [3.14.0](https://github.com/mx-space/kami/compare/v3.13.11...v3.14.0) (2022-08-11)
### Bug Fixes
* add missing key ([5a51b09](https://github.com/mx-space/kami/commit/5a51b09a3e8c70b6b4036e7a636483ca056354e5))
* casesentive file ([f31fbb3](https://github.com/mx-space/kami/commit/f31fbb384cbd59e2d256fdb1d5080a1e14de4709))
* decrease trigger shortcut panel timeout ([7dacfcd](https://github.com/mx-space/kami/commit/7dacfcdfe2e9c4a4831462ac78f3b28c307f0721))
* **deps:** update dependency react-shortcut-guide to v0.3.5 ([9bb4d27](https://github.com/mx-space/kami/commit/9bb4d2749291a7d778cfa4d2ba1ce4fc79f730c2))
* **deps:** update dependency react-toastify to v9.0.8 ([74e401b](https://github.com/mx-space/kami/commit/74e401b3a52b2525bec936ca0d88eba1c328d409))
* disable type for comment ([3c7fdae](https://github.com/mx-space/kami/commit/3c7fdae9e5459d3ba9d02dc4a39f3727fc377a4f))
* link card usage ([c6216c6](https://github.com/mx-space/kami/commit/c6216c6a4d461ca1c94be35b6331015ef8e3b665))
* lyrics style ([#1351](https://github.com/mx-space/kami/issues/1351)) ([5f1b63b](https://github.com/mx-space/kami/commit/5f1b63b514b6a6a7fe7361f993771fe925edb812))
* memo context state ([d92c6eb](https://github.com/mx-space/kami/commit/d92c6ebf35cab35ffd2c95517f7bcb1306d8728e))
* merge conflict ([cf85862](https://github.com/mx-space/kami/commit/cf85862546e1946f5cf95743230709abb5c0bd16))
### Features
* init markdown ([7bb7819](https://github.com/mx-space/kami/commit/7bb7819af1645fea1c4830ede3778d6236e9a0ce))
* markdown container init ([ef267b5](https://github.com/mx-space/kami/commit/ef267b55df7ad8ebbe3a330fec03660280e7f5ac))
* use react 18 feature ([9bfd7a6](https://github.com/mx-space/kami/commit/9bfd7a6c3926ca561ac5886e5e2dc18dadf03130))
## [3.13.11](https://github.com/mx-space/kami/compare/v3.13.10...v3.13.11) (2022-08-07)
### Bug Fixes
* change isoTimeString to locale string ([ca37b6d](https://github.com/mx-space/kami/commit/ca37b6da47e9b6ceda59ee8424fefcbc11eaf87e))
* checkbox style on ios safari ([daca342](https://github.com/mx-space/kami/commit/daca3429d21dce2936838a2d9eecdfc54f99331a))
* header bottom color ([921e663](https://github.com/mx-space/kami/commit/921e6639208446690a0f6ea2def4ec6c9c64ba27))
* header like button width ([3955ef2](https://github.com/mx-space/kami/commit/3955ef2605806bd8bc8938ddc45d4647c75d962c))
* netease icon ([0032aab](https://github.com/mx-space/kami/commit/0032aab417a542a9b78cf94ea40ffdebbfaa20bc))
* position ([32fcc31](https://github.com/mx-space/kami/commit/32fcc31daa55ec0d58989232e07014747ec82598))
* shortcut guide hold key event ([94ee27e](https://github.com/mx-space/kami/commit/94ee27e31e968bff3ccb7c06652250d8610e23cc))
* show post summary ([1ade293](https://github.com/mx-space/kami/commit/1ade293e1edffd7dc218753a33d8f6e73db1d7b0))
### Features
* improve image in comment ([5872b55](https://github.com/mx-space/kami/commit/5872b5531b05c5c785f27b05a89c2a40583f64b7))
* support music lyrics ([59a572b](https://github.com/mx-space/kami/commit/59a572b8d7d39e958d294089187c60fec1d0a7c6))
### Performance Improvements
* maybe reduce size ([#1344](https://github.com/mx-space/kami/issues/1344)) ([a3f2a36](https://github.com/mx-space/kami/commit/a3f2a3688d8a985588a1992247108edcc8863bbc))
## [3.13.10](https://github.com/mx-space/kami/compare/v3.13.9...v3.13.10) (2022-08-04)
### Bug Fixes
* image load error text color ([6b1e959](https://github.com/mx-space/kami/commit/6b1e9596eaf417e425f5114f60708658e76dd7dc))
### Performance Improvements
* headerbar opacity animation ([d4a33f8](https://github.com/mx-space/kami/commit/d4a33f86645143f44c9324374d7214da9dee0d7c))
## [3.13.9](https://github.com/mx-space/kami/compare/v3.13.8...v3.13.9) (2022-08-03)
### Bug Fixes
* **comment:** open in a tab ([2989a78](https://github.com/mx-space/kami/commit/2989a7854c350b016cde9df8c04f33a4ce0cc9e4))
* placeholder image and show error url ([52761c5](https://github.com/mx-space/kami/commit/52761c5720d852ff4601053871250d8a8f9280a4))
* standlone build with workbox ([019f362](https://github.com/mx-space/kami/commit/019f362e33df228dc88867f0b242732ea986f9a9))
## [3.13.8](https://github.com/mx-space/kami/compare/v3.13.7...v3.13.8) (2022-08-03)
### Bug Fixes
* avatar 1:1 ([e442c83](https://github.com/mx-space/kami/commit/e442c83ba86e6950465cac529985bcbd56fbf31e))
## [3.13.7](https://github.com/mx-space/kami/compare/v3.13.6...v3.13.7) (2022-08-01)
### Bug Fixes
* avatar lazyload stat style ([57773d2](https://github.com/mx-space/kami/commit/57773d2efbc2fe61a96faecc6a99babac1fc50ff))
* **deps:** update dependency react-transition-group to v4.4.4 ([cbb9c09](https://github.com/mx-space/kami/commit/cbb9c096357344135b3b840865c9b4de9f63e323))
* header swiper with scroll threshold ([2e05ee1](https://github.com/mx-space/kami/commit/2e05ee16fe0239c0b344e063baef79086f503b6b))
* transition group crash ([e9f0478](https://github.com/mx-space/kami/commit/e9f0478be0833e279582ba590ccf577f1cc6bd47))
## [3.13.6](https://github.com/mx-space/kami/compare/v3.13.5...v3.13.6) (2022-07-29)
### Bug Fixes
* open in new tab ([cf98847](https://github.com/mx-space/kami/commit/cf988477eabb8629540c080f51405ef1c1fdad25))
* shortcut box size ([f86f601](https://github.com/mx-space/kami/commit/f86f6019a992b545e93b5d7277d27c1c7396ca14))
### Features
* header ui improve ([3d1e860](https://github.com/mx-space/kami/commit/3d1e8603dc89562af6b23b23d5ed9509b2f77b31))
## [3.13.5](https://github.com/mx-space/kami/compare/v3.13.4...v3.13.5) (2022-07-27)
### Bug Fixes
* maybe reduce hydate error ([b07b054](https://github.com/mx-space/kami/commit/b07b054bcee47d00ff3dd6b18dc1276715c64b27))
* **nav:** swap icon and label pos ([b06d2dd](https://github.com/mx-space/kami/commit/b06d2dd4c2e8a3dd8fd6d03b2c196d6041b9b7ca))
* toc ([a548940](https://github.com/mx-space/kami/commit/a548940726750bb4164fcd321f2d93d3160f5f07))
## [3.13.4](https://github.com/mx-space/kami/compare/v3.13.3...v3.13.4) (2022-07-24)
### Bug Fixes
* note banner style on mobile ([d2b372c](https://github.com/mx-space/kami/commit/d2b372c7ce27493b23180596f6275201db428726))
* show notice overtime ([2e92d22](https://github.com/mx-space/kami/commit/2e92d22047566a01bb381d3d23b9c1da24ae7dc9))
## [3.13.3](https://github.com/mx-space/kami/compare/v3.13.2...v3.13.3) (2022-07-24)
### Bug Fixes
* ci fetch ([edbdd30](https://github.com/mx-space/kami/commit/edbdd3003227e47c950bde11bc6f60dfdcc449b1))
* **deps:** update dependency next-seo to v5.5.0 ([#1332](https://github.com/mx-space/kami/issues/1332)) ([0f34fb9](https://github.com/mx-space/kami/commit/0f34fb903e55aec7ea1bbb3acdec3fcafb7e66dd))
* **deps:** update dependency react-intersection-observer to v9.4.0 ([#1335](https://github.com/mx-space/kami/issues/1335)) ([cedf034](https://github.com/mx-space/kami/commit/cedf0346b61124bc69a0a4a7ba55995a2521f88e))
* **deps:** update dependency react-shortcut-guide to v0.3.2 ([#1336](https://github.com/mx-space/kami/issues/1336)) ([36f9ffe](https://github.com/mx-space/kami/commit/36f9ffe5dfb0d063acfc939f6a4ab20737322bb1))
### Features
* note banner ([4573188](https://github.com/mx-space/kami/commit/45731883814e825ae201bea0de4cc04d64ed91d6))
## [3.13.2](https://github.com/mx-space/kami/compare/v3.13.1...v3.13.2) (2022-07-22)
### Bug Fixes
* eslint error ([a8e0bbe](https://github.com/mx-space/kami/commit/a8e0bbef6ff6cd8d1eedd4cc4ffe8d4c27823143))
## [3.13.1](https://github.com/mx-space/kami/compare/v3.13.0...v3.13.1) (2022-07-20)
### Bug Fixes
* **deps:** update dependency dayjs to v1.11.4 ([84b0589](https://github.com/mx-space/kami/commit/84b058919f9f6a51f52a86ca4df691b64cb7cd56))
### Features
* comment improve ([c2d7760](https://github.com/mx-space/kami/commit/c2d7760790a8e06feed4a017999e6f77df51c7af))
* comment whispers ([7c717e0](https://github.com/mx-space/kami/commit/7c717e04218c9db44e2539222077539705f5c101))
# [3.13.0](https://github.com/mx-space/kami/compare/v3.13.0-alpha.0...v3.13.0) (2022-07-19)
### Bug Fixes
* **deps:** update dependency react-toastify to v9.0.6 ([1e12bd1](https://github.com/mx-space/kami/commit/1e12bd1e71588a25281a2b4e04dbdba79f66fec9))
* **deps:** update dependency react-toastify to v9.0.7 ([a255395](https://github.com/mx-space/kami/commit/a255395a2492cf14778449e83eac8e97f434ac84))
# [3.13.0-alpha.0](https://github.com/mx-space/kami/compare/v3.12.2...v3.13.0-alpha.0) (2022-07-17)
### Bug Fixes
* error page title ([5837e67](https://github.com/mx-space/kami/commit/5837e67361d16024708a9f6cb07acd6f6a4b008f))
### Features
* add error view ([14500e1](https://github.com/mx-space/kami/commit/14500e120f143dcdc854cc725f765a13a2bbb96b))
* add more bug ([c90528f](https://github.com/mx-space/kami/commit/c90528f9e4b5a575b2151a12954fe0ff540ee7e1))
### Performance Improvements
* reduce fetch in router change ([5537b61](https://github.com/mx-space/kami/commit/5537b612fbd1054187f423df89d127b8bd48fc87))
* reduce footer bg render ([e9d1ea0](https://github.com/mx-space/kami/commit/e9d1ea0c48e330880a62e0d39e95093b98bbd6e8))
## [3.12.2](https://github.com/mx-space/kami/compare/v3.12.1...v3.12.2) (2022-07-11)
### Bug Fixes
* too more fetch root data ([3afacc0](https://github.com/mx-space/kami/commit/3afacc0db77b853ecf9c323eb65fc4440cbe4b38))
### Performance Improvements
* improve again router navigation speedup ([5e908f0](https://github.com/mx-space/kami/commit/5e908f0f989a68e50da356e104fbb58e02d82f1e))
## [3.12.1](https://github.com/mx-space/kami/compare/v3.12.0...v3.12.1) (2022-07-11)
### Reverts
* speed-up navigation to server-fetched route ([#1323](https://github.com/mx-space/kami/issues/1323)) ([dec0980](https://github.com/mx-space/kami/commit/dec09803c86b18c81c9bb04ffd004f96246526f3))
# [3.12.0](https://github.com/mx-space/kami/compare/v3.11.11...v3.12.0) (2022-07-11)
### Bug Fixes
* docker build ([030b4c0](https://github.com/mx-space/kami/commit/030b4c05da180470b987825fbe76050907c88f18))
### Features
* speed-up navigation to server-fetched route ([#1323](https://github.com/mx-space/kami/issues/1323)) ([fb8ee00](https://github.com/mx-space/kami/commit/fb8ee00bd9801dffd0574f8d6e45373846fbe95a))
## [3.11.11](https://github.com/mx-space/kami/compare/v3.11.10...v3.11.11) (2022-07-09)
### Bug Fixes
* standalone build ([27911bd](https://github.com/mx-space/kami/commit/27911bdb742f274852ae9d9304b8366da312dcc2))
## [3.11.10](https://github.com/mx-space/kami/compare/v3.11.9...v3.11.10) (2022-07-09)
### Bug Fixes
* enable `newNextLinkBehavior` ([84f61d0](https://github.com/mx-space/kami/commit/84f61d0e1524b6139a39b89e8f60ed54402342d1))
* **input:** surround line cover the element when resize ([47bbdd1](https://github.com/mx-space/kami/commit/47bbdd1e76cfb4a7afaa2ebff60f329830b9e55c))
* kaomoji escape markdown ([43a57fe](https://github.com/mx-space/kami/commit/43a57fef2b6d99ad9043630b6af755778dea8cdd))
### Features
* update next and standalone build ([#1316](https://github.com/mx-space/kami/issues/1316)) ([5228c4d](https://github.com/mx-space/kami/commit/5228c4d8d84508b4e0378205e33ab9f6d4a85184))
## [3.11.9](https://github.com/mx-space/kami/compare/v3.11.8...v3.11.9) (2022-07-07)
### Bug Fixes
* also random friends in home page ([5f63ad5](https://github.com/mx-space/kami/commit/5f63ad50bf30d09338f731905dc3c098fb2dc70d))
* closure in hook ([4ac9e5e](https://github.com/mx-space/kami/commit/4ac9e5e3bc7b11513740fec02fc0c7f991ec1b0e))
* **deps:** update dependency clsx to v1.2.1 ([a2b063a](https://github.com/mx-space/kami/commit/a2b063a0497f9c7a63ee44ede0341a2f8973dece))
## [3.11.8](https://github.com/mx-space/kami/compare/v3.11.7...v3.11.8) (2022-07-05)
### Bug Fixes
* set token after re-login then fetch data ([c96781c](https://github.com/mx-space/kami/commit/c96781c6602b6839595db6e5bca7abd7f563b161))
### Features
* add process title ([55e8ab3](https://github.com/mx-space/kami/commit/55e8ab33ea1785b56548e0dd801b9ab87e4f2a45))
* umami custom ([c5edc47](https://github.com/mx-space/kami/commit/c5edc47c9c3b099d2ed82499a3480e664859a28a))
## [3.11.7](https://github.com/mx-space/kami/compare/v3.11.6...v3.11.7) (2022-07-04)
### Bug Fixes
* header drawer can not click ([b0c6238](https://github.com/mx-space/kami/commit/b0c623897238e2e02ee5c9d3f5bcac2c308a87c2))
## [3.11.6](https://github.com/mx-space/kami/compare/v3.11.5...v3.11.6) (2022-07-03)
### Bug Fixes
* shortcut panel dependency ([343c4d5](https://github.com/mx-space/kami/commit/343c4d54bef09d0e878956e8e2b8e32fef5acf59))
## [3.11.5](https://github.com/mx-space/kami/compare/v3.11.4...v3.11.5) (2022-07-03)
### Bug Fixes
* **deps:** update dependency clsx to v1.2.0 ([#1311](https://github.com/mx-space/kami/issues/1311)) ([5833cab](https://github.com/mx-space/kami/commit/5833cab4cb1f2c74e73e3838449a1ce1d6a096cd))
### Features
* add algolia logo bar on search ([134492c](https://github.com/mx-space/kami/commit/134492cf87f533a7c4d44505e66315625828194c))
## [3.11.4](https://github.com/mx-space/kami/compare/v3.11.3...v3.11.4) (2022-07-02)
### Bug Fixes
* header drawer overlay flash ([7c0f26e](https://github.com/mx-space/kami/commit/7c0f26ecb2c79f83d01d855959e7527f69ac0cd7))
* overlay ([1fb7ef8](https://github.com/mx-space/kami/commit/1fb7ef8cb18b0aa2858afa6931e07806faf7f8f6))
## [3.11.3](https://github.com/mx-space/kami/compare/v3.11.2...v3.11.3) (2022-07-02)
### Bug Fixes
* add atom discover ([8b37cbf](https://github.com/mx-space/kami/commit/8b37cbfc26f3ec01abd4ff2bc2fa51c3f5b98248))
* close button position ([688bf37](https://github.com/mx-space/kami/commit/688bf3755808946cdaa7886656d8a976ea9fb7ff))
* **deps:** update dependency devtools-detector to v2.0.10 ([4ce142f](https://github.com/mx-space/kami/commit/4ce142f81c16a36e62f2477d61e81fe3abfb80ad))
* **deps:** update dependency mobx to v6.6.1 ([0689482](https://github.com/mx-space/kami/commit/06894829f6eafa1f4ad752599717e817c2a55900))
* **deps:** update dependency react-intersection-observer to v9.3.5 ([a36ceaf](https://github.com/mx-space/kami/commit/a36ceafc12539d1879bfb72ec7df87aa71c1542e))
* move `Content` outside ([25153cf](https://github.com/mx-space/kami/commit/25153cf7838932442d6855d31b59338685249772))
* only in dev can route to dev routes ([4df9587](https://github.com/mx-space/kami/commit/4df95876588ade514dbde36421b9371b8c70d47a))
* overlay center props ([8214343](https://github.com/mx-space/kami/commit/821434342bd3f8c33d712609339f754c3ec7cc32))
* search ([32e2296](https://github.com/mx-space/kami/commit/32e2296761b1709a1d2c9a0e32ae21a6c0d33a71))
* support toc on mobile viewport & UI improve ([3df2c96](https://github.com/mx-space/kami/commit/3df2c969ac935df39c5fe96f1f3ba0f7e3eb0eb2))
* use weakMap ([80d0180](https://github.com/mx-space/kami/commit/80d01801aa2ef7d797cb7c6a22725282a7c61e06))
### Features
* add some method on stack modal ([b8a2a87](https://github.com/mx-space/kami/commit/b8a2a879e9de4ca3770410b50b9931fe91916e0c))
* close button for modal ([99cecaa](https://github.com/mx-space/kami/commit/99cecaa8ee8d27f62a44ecea36729c3bf2cf202a))
* drawer of modal ([cf4d9db](https://github.com/mx-space/kami/commit/cf4d9dba33b9f440159750d8b6e8fd8dc9229f7e))
* modal animation ([f2d8fd2](https://github.com/mx-space/kami/commit/f2d8fd2ca8fcdcd967ccae536da08561370d3793))
* modal stack ([dd3d73e](https://github.com/mx-space/kami/commit/dd3d73e3a9d7d60f1a684aad101fa6d59394e0c5))
* modal stack init ([22b5371](https://github.com/mx-space/kami/commit/22b5371df9e5af6f6c7989147a911406f1341569))
* modal transition ([be0be84](https://github.com/mx-space/kami/commit/be0be84e53cbbc53e5cfe3adaf8bcd19c37addd3))
## [3.11.2](https://github.com/mx-space/kami/compare/v3.11.1...v3.11.2) (2022-06-26)
### Features
* jump to markdown render ([cd7bce3](https://github.com/mx-space/kami/commit/cd7bce3beb3330251b5475f591fe4bbce1f40624))
* refresh token ([6db1352](https://github.com/mx-space/kami/commit/6db135251a620ae07af8c41eb65244da55fedd9b))
## [3.11.1](https://github.com/mx-space/kami/compare/v3.11.0...v3.11.1) (2022-06-26)
### Bug Fixes
* header drawer leading ([ad3406b](https://github.com/mx-space/kami/commit/ad3406b410a2109b164a94d15a6bb05af31122e6))
* improve music page ui ([cc4bbeb](https://github.com/mx-space/kami/commit/cc4bbebda2aee59e136e9196a418cf5a5516fe6d))
* post block title style in mobile ([511713e](https://github.com/mx-space/kami/commit/511713e29eeb20c523ae68876146b5efa18bf310))
# [3.11.0](https://github.com/mx-space/kami/compare/v3.10.6...v3.11.0) (2022-06-26)
### Features
* improve banner ui ([af3d35a](https://github.com/mx-space/kami/commit/af3d35a3cdba6db430336341a563ed4099267255))
* post related ([c856a41](https://github.com/mx-space/kami/commit/c856a41dcd1526afceb293cb13f839df303df2d5))
## [3.10.6](https://github.com/mx-space/kami/compare/v3.10.5...v3.10.6) (2022-06-25)
### Bug Fixes
* improve UI ([6a7b9d8](https://github.com/mx-space/kami/commit/6a7b9d86ac94e1297112f8b0a6570a19b87c3678))
### Features
* double click logo jump to admin url if logged ([0c09d3c](https://github.com/mx-space/kami/commit/0c09d3c35d209ce8697d624d531f9d530ce3fa16))
* jump to timeline anchor highlight ([8a6b079](https://github.com/mx-space/kami/commit/8a6b079eab76cef8799079f53abd6563d2a05753))
* re-design note footer nav bar ([f97eed0](https://github.com/mx-space/kami/commit/f97eed088a21805b84e8fa03456145652bfb64bd))
## [3.10.5](https://github.com/mx-space/kami/compare/v3.10.4...v3.10.5) (2022-06-24)
### Bug Fixes
* color notice panel toggle mode will disappear ([18e1f7b](https://github.com/mx-space/kami/commit/18e1f7b908d69b003940659ce9b1414bfc376b1f))
* **deps:** update dependency react-intersection-observer to v9.3.4 ([2aba47b](https://github.com/mx-space/kami/commit/2aba47bfda93fd3f0b28cf50b3e64eb988f5344e))
* reduce size ([#1292](https://github.com/mx-space/kami/issues/1292)) ([c744220](https://github.com/mx-space/kami/commit/c74422059d679ace728bdfc0317f6a8867a62ce8))
* search value ([1630b6f](https://github.com/mx-space/kami/commit/1630b6f752978636d42e0551effca312c38f861c))
### Features
* icon transition ([97150c0](https://github.com/mx-space/kami/commit/97150c0bf33b8afb0b47fc468d4c8390c82efa54))
## [3.10.4](https://github.com/mx-space/kami/compare/v3.10.3...v3.10.4) (2022-06-22)
### Bug Fixes
* **ban-copy:** overlay opacity ([3e3e342](https://github.com/mx-space/kami/commit/3e3e342c75dc90223cd8153fcdfc5cc3b7265d8d))
* icon transition ([2dcb4ff](https://github.com/mx-space/kami/commit/2dcb4ffd49d72d74eb400b598d38bac43755e539))
### Features
* **note-timeline:** optimize animate ([3d3c1cd](https://github.com/mx-space/kami/commit/3d3c1cdab4b3d91dfa6081044aa04d5bcb9de476))
## [3.10.3](https://github.com/mx-space/kami/compare/v3.10.2...v3.10.3) (2022-06-21)
### Bug Fixes
* **deps:** update dependency react-countup to v6.3.0 ([#1288](https://github.com/mx-space/kami/issues/1288)) ([7fdb641](https://github.com/mx-space/kami/commit/7fdb641261028f364f70c56ee11d47d852cb46bd))
* **deps:** update dependency react-toastify to v9.0.5 ([e1573ec](https://github.com/mx-space/kami/commit/e1573ec2d3f41a6014f55502aeba32b034ddc9f1))
* header divider style ([08ddb4c](https://github.com/mx-space/kami/commit/08ddb4c141bd27fd7b173c1b7f97a137bbe764f7))
* hide edit btn in print ([0d48fec](https://github.com/mx-space/kami/commit/0d48fec28066ef04c6bc0e29c7a7de16b1cda421))
* media print style ([c3ea81e](https://github.com/mx-space/kami/commit/c3ea81ee80b05b0e96be417285092785a266c4de))
### Features
* add notification tracker ([c57a810](https://github.com/mx-space/kami/commit/c57a810cbab5264008c747e5a24d9715f523369d))
* **note-timeline:** add icon for current item ([cadee4e](https://github.com/mx-space/kami/commit/cadee4ea345dc2dc50ce6abcbb0bc4f12cd545bd))
## [3.10.2](https://github.com/mx-space/kami/compare/v3.10.1...v3.10.2) (2022-06-19)
### Bug Fixes
* comment avatar 1:1 ([bddfa88](https://github.com/mx-space/kami/commit/bddfa88d468d6823e025cb681a6087718a8b0504))
* loop single song ([7483c65](https://github.com/mx-space/kami/commit/7483c653278c972326a9d3cd6b26bb0307f35c48))
* shuffle play list ([3c4cbbc](https://github.com/mx-space/kami/commit/3c4cbbc3cd80342cfc3f7bca6c8615835b66e725))
### Features
* improve animate for timeline ([#1286](https://github.com/mx-space/kami/issues/1286)) ([4c05449](https://github.com/mx-space/kami/commit/4c05449de5c3ef9b247200942b536b5c0370ff33))
## [3.10.1](https://github.com/mx-space/kami/compare/v3.10.0...v3.10.1) (2022-06-18)
### Bug Fixes
* style ([0340df6](https://github.com/mx-space/kami/commit/0340df6ef41daa101dc4798e47f7eff59a83ad3c))
* ui improve ([fed8574](https://github.com/mx-space/kami/commit/fed85744822e39d9272c7a759ac7452ccf38ba77))
# [3.10.0](https://github.com/mx-space/kami/compare/v3.9.7...v3.10.0) (2022-06-18)
### Bug Fixes
* adjust timeline style ([e766af7](https://github.com/mx-space/kami/commit/e766af7d7a7290634417f8ba701b87a609e1b330))
* **comment:** pin icon pos ([bbc23df](https://github.com/mx-space/kami/commit/bbc23df94a184acb812e5abe3c870bc5c0cfbc8b))
* copywrite ([fe2fc44](https://github.com/mx-space/kami/commit/fe2fc44f84546a8b7184b177543d19cc675cdc1c))
* improve toast card style ([1360311](https://github.com/mx-space/kami/commit/13603118df8c7cc7b19598952d66c6f5a12606c3))
* only root comment can pined ([db0d51d](https://github.com/mx-space/kami/commit/db0d51df3a8076839d96942e8857d1ac2de22155))
* select none of edit link ([de63e37](https://github.com/mx-space/kami/commit/de63e37b4bc48a9c20ebb8c67a816ab012df2c4c))
### Features
* add notice tracker ([3d97b94](https://github.com/mx-space/kami/commit/3d97b94627cda227036cad6f6a1de5895718f746))
* comment sync to recently ([df17e71](https://github.com/mx-space/kami/commit/df17e714b3c9bde1e15afd9d66600eda430a85c3))
* recently ref ([38fdf99](https://github.com/mx-space/kami/commit/38fdf99e7b6c199e89e672b11b1e625b98333eaa))
## [3.9.7](https://github.com/mx-space/kami/compare/v3.9.6...v3.9.7) (2022-06-16)
### Bug Fixes
* comment sort and pin once ([c5d7a1f](https://github.com/mx-space/kami/commit/c5d7a1f7aa4624d82cea844fe508650f2cdae6b5))
### Features
* comment pin ([83bf832](https://github.com/mx-space/kami/commit/83bf832cfb6120fb51fcde2984dcce6927b4c2b7))