-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchangelog.html
More file actions
executable file
·3038 lines (3038 loc) · 109 KB
/
changelog.html
File metadata and controls
executable file
·3038 lines (3038 loc) · 109 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title></title>
<meta name="generator" content="LibreOffice 24.2.7.2 (Linux)"/>
<meta name="created" content="00:00:00"/>
<meta name="changed" content="2026-03-23T13:22:29.832552848"/>
<style type="text/css">
@page { size: 21cm 29.7cm; margin-left: 2cm; margin-right: 1cm; margin-top: 1cm; margin-bottom: 1cm }
p { line-height: 115%; margin-bottom: 0.25cm; background: transparent }
h2 { margin-top: 0.35cm; margin-bottom: 0.21cm; background: transparent; page-break-after: avoid }
h2.western { font-family: "Liberation Serif", serif; font-size: 18pt; font-weight: bold }
h2.cjk { font-family: "Noto Serif CJK SC"; font-size: 18pt; font-weight: bold }
h2.ctl { font-family: "Noto Sans Devanagari"; font-size: 18pt; font-weight: bold }
h4 { margin-top: 0.21cm; margin-bottom: 0.21cm; background: transparent; page-break-after: avoid }
h4.western { font-family: "Liberation Serif", serif; font-size: 12pt; font-weight: bold }
h4.cjk { font-family: "Noto Serif CJK SC"; font-size: 12pt; font-weight: bold }
h4.ctl { font-family: "Noto Sans Devanagari"; font-size: 12pt; font-weight: bold }
strong { font-weight: bold }
a:link { color: #000080; text-decoration: underline }
</style>
</head>
<body lang="ru-RU" link="#000080" vlink="#800000" dir="ltr"><h2 class="western">
2026 March 11 - Version 3.1.6 - Latest</h2>
<ul>
<li><p style="margin-bottom: 0cm">new: compatibility with new
spotify API changes.
</p></li>
<li><p style="margin-bottom: 0cm">new: Deezer provider for music
metadata.
</p></li>
<li><p style="margin-bottom: 0cm">new: Updated artist page
discography tab design.
</p></li>
<li><p style="margin-bottom: 0cm">fix: outgoing emails sometimes not
marked as sent in log, even if email was sent.
</p></li>
<li><p style="margin-bottom: 0cm">fix: range date picker skipping
months sometimes
</p></li>
<li><p style="margin-bottom: 0cm">fix: language change requiring a
page reload to take effect
</p></li>
<li><p style="margin-bottom: 0cm">fix: a few issues with dashboard
layout
</p></li>
<li><p style="margin-bottom: 0cm">fix: issue with deleting channels
</p></li>
<li><p style="margin-bottom: 0cm">fix: issues with seo tags in the
new landing page editor
</p></li>
<li><p style="margin-bottom: 0cm">fix: show navbar in track insights
page in backstage
</p></li>
<li><p style="margin-bottom: 0cm">fix: user profile not viewable for
guests sometimes
</p></li>
<li><p style="margin-bottom: 0cm">fix: album with future release
date still appearing in search and notifying followers
</p></li>
<li><p style="margin-bottom: 0cm">fix: close confirmation dialog on
playlist delete
</p></li>
<li><p style="margin-bottom: 0cm">fix: track page sometimes showing
error page if all artists were detached from track
</p></li>
<li><p style="margin-bottom: 0cm">fix: allow disabling default file
types for media
</p></li>
<li><p style="margin-bottom: 0cm">fix: artist page not loading
sometimes if bio could not be fetched
</p></li>
<li><p style="margin-bottom: 0cm">fix: issues with local search
</p></li>
<li><p style="margin-bottom: 0cm">fix: track download not working
sometimes for tracks uploaded on older versions
</p></li>
<li><p>fix: artist not being able to upload artwork sometimes after
backstage request is approved.
</p></li>
</ul>
<h2 class="western">2026 January 14 - Version 3.1.5</h2>
<ul>
<li><p style="margin-bottom: 0cm">fix: seo tags changed on previous
versions causing issues
</p></li>
<li><p style="margin-bottom: 0cm">fix: try pro button sometimes not
showing
</p></li>
<li><p style="margin-bottom: 0cm">fix: album upload sometimes not
working
</p></li>
<li><p style="margin-bottom: 0cm">fix: tracks uploaded on previous
versions not being downloadable
</p></li>
<li><p style="margin-bottom: 0cm">fix: issue with local+spotify
search method
</p></li>
<li><p style="margin-bottom: 0cm">fix: similar artists query not
working on some hosting providers
</p></li>
<li><p style="margin-bottom: 0cm">fix: show close button on lyrics
page
</p></li>
<li><p style="margin-bottom: 0cm">fix: some languages for wikipedia
bio setting not being selectable
</p></li>
<li><p style="margin-bottom: 0cm">fix: show minimum two grid items
in channels, regardless of screen size.
</p></li>
<li><p style="margin-bottom: 0cm">fix: hide plans/subscriptions menu
items in admin area, if subscriptions are disabled.
</p></li>
<li><p style="margin-bottom: 0cm">fix: selected channel not
reflected in general settings
</p></li>
<li><p style="margin-bottom: 0cm">fix: html language not being
properly set
</p></li>
<li><p style="margin-bottom: 0cm">fix: badge not showing in feature
grid on landing page editor
</p></li>
<li><p>fix: issues with mysql fulltext search
</p></li>
</ul>
<h2 class="western">2026 January 08 - Version 3.1.4</h2>
<ul>
<li><p style="margin-bottom: 0cm">new: updated design for desktop
and mobile player
</p></li>
<li><p style="margin-bottom: 0cm">new: offline support for songs,
albums and playlists
</p></li>
<li><p style="margin-bottom: 0cm">new: improved PWA functionality
for better offline support
</p></li>
<li><p style="margin-bottom: 0cm">new: compact grid layout for
channels
</p></li>
<li><p style="margin-bottom: 0cm">new: support for trials in
subscriptions
</p></li>
<li><p style="margin-bottom: 0cm">new: it's now possible to schedule
album to release on a future date
</p></li>
<li><p style="margin-bottom: 0cm">new: it's now possible to disable
specific artists without deleting them
</p></li>
<li><p style="margin-bottom: 0cm">new: updated landing page design
</p></li>
<li><p style="margin-bottom: 0cm">new: auto update functionality in
admin area. You will now be notified of new updates to BeMusic in
admin area and can update directly from "admin > settings >
system > update" page.
</p></li>
<li><p style="margin-bottom: 0cm">new: upgraded "admin >
settings > uploading" page.
</p>
<ul>
<li><p style="margin-bottom: 0cm">You can now have multiple
"backends" (eg. s3, ftp, local disk) at the same time for
storing files.
</p></li>
<li><p style="margin-bottom: 0cm">If multiple backends are selected
for upload type, random one will be used.
</p></li>
<li><p style="margin-bottom: 0cm">Separate configuration for each
upload type.
</p></li>
</ul>
<li><p style="margin-bottom: 0cm">new: updated design for admin area
</p></li>
<li><p style="margin-bottom: 0cm">new: new landing page editor in
admin area with support for sections.
</p></li>
<li><p style="margin-bottom: 0cm">new: merged appearance editor and
settings pages in admin area.
</p></li>
<li><p style="margin-bottom: 0cm">new: Purchase code can now be
activated from "admin > settings > system > licenses"
page.
</p></li>
<li><p>fix: 40+ bugs and other minor issues.
</p></li>
</ul>
<h2 class="western">2024 September 09 - Version 3.1.3</h2>
<ul>
<li><p style="margin-bottom: 0cm">new: improved genre layout when
showing in channels
</p></li>
<li><p style="margin-bottom: 0cm">new: add an option to only allow
social login with existing account
</p></li>
<li><p style="margin-bottom: 0cm">new: ask for confirmation on page
leave when there are changes in settings page
</p></li>
<li><p style="margin-bottom: 0cm">fix: lazy loading more tracks in
history page not working
</p></li>
<li><p style="margin-bottom: 0cm">fix: tracks not lazy loading on
clicking next button, only when playback ends
</p></li>
<li><p style="margin-bottom: 0cm">fix: landing page settings
sometimes not saving in appearance editor
</p></li>
<li><p style="margin-bottom: 0cm">fix: album page seo data
</p></li>
<li><p style="margin-bottom: 0cm">fix: account settings link in OTP
code email
</p></li>
<li><p style="margin-bottom: 0cm">fix: show thumbnail for large
image when cdn url is specified
</p></li>
<li><p>fix: incorrect owner sometimes showing in admin > files
</p></li>
</ul>
<h2 class="western">2024 July 26 - Version 3.1.2</h2>
<ul>
<li><p style="margin-bottom: 0cm">new: it's possible to show or hide
menu item based on user subscription status
</p></li>
<li><p style="margin-bottom: 0cm">new: channel editor search field
now allows searching by ID
</p></li>
<li><p style="margin-bottom: 0cm">new: show queue worker status in
settings page
</p></li>
<li><p style="margin-bottom: 0cm">new: ask user to unsubscribe first
before allowing account deletion
</p></li>
<li><p style="margin-bottom: 0cm">fix: issue with adding content to
channels
</p></li>
<li><p style="margin-bottom: 0cm">fix: uploaded image in become
artist request not saving sometimes
</p></li>
<li><p style="margin-bottom: 0cm">fix: albums on artist page not
ordered correctly
</p></li>
<li><p style="margin-bottom: 0cm">fix: don't recreate default menus
and custom pages during update if they were modified
</p></li>
<li><p style="margin-bottom: 0cm">fix: hide channel reorder button,
if sorting type is not set to manual
</p></li>
<li><p style="margin-bottom: 0cm">fix: uploads sometimes failing
validation even if extension is allowed in settings page
</p></li>
<li><p style="margin-bottom: 0cm">fix: comment list layout on mobile
</p></li>
<li><p style="margin-bottom: 0cm">fix: some tablets not showing menu
properly
</p></li>
<li><p style="margin-bottom: 0cm">fix: pagination buttons not
preserving filters
</p></li>
<li><p>fix: hide social login menu item in account settings if all
social logins are disabled
</p></li>
</ul>
<h2 class="western">2024 June 09 - Version 3.1.1</h2>
<ul>
<li><p style="margin-bottom: 0cm">new: it's now possible to show
pagination on channel pages
</p></li>
<li><p style="margin-bottom: 0cm">new: updated channel management
pages in admin area
</p></li>
<li><p style="margin-bottom: 0cm">new: errors on the site will now
show more details, if logged in as admin
</p></li>
<li><p style="margin-bottom: 0cm">new: translations can now be
downloaded and uploaded as .json file
</p></li>
<li><p style="margin-bottom: 0cm">new: added CRON, outgoing email
and error logs in admin area
</p></li>
<li><p style="margin-bottom: 0cm">new: changed email verification to
use one time password, instead of verification link
</p></li>
<li><p style="margin-bottom: 0cm">new: request password before
allowing user to delete account
</p></li>
<li><p style="margin-bottom: 0cm">new: allow sitemap generation via
command line
</p></li>
<li><p style="margin-bottom: 0cm">new: added social icons in the
icon selector in menu manager
</p></li>
<li><p style="margin-bottom: 0cm">fix: lyrics page on mobile
</p></li>
<li><p style="margin-bottom: 0cm">fix: download files with slash in
the name
</p></li>
<li><p style="margin-bottom: 0cm">fix: some layout issues in user
profile page
</p></li>
<li><p style="margin-bottom: 0cm">fix: subscription activation
sometimes being delayed when using stripe
</p></li>
<li><p style="margin-bottom: 0cm">fix: paypal subscription state
sometimes not syncing with the site
</p></li>
<li><p style="margin-bottom: 0cm">fix: hidden plans being used for
discount calculation
</p></li>
<li><p style="margin-bottom: 0cm">fix: old settings sometimes being
cached
</p></li>
<li><p style="margin-bottom: 0cm">fix: resending email verification
from admin area
</p></li>
<li><p style="margin-bottom: 0cm">fix: some issues with appearance
editor color pickers
</p></li>
<li><p>fix: mobile menu sometimes opening links in new window
</p></li>
</ul>
<h2 class="western">2024 March 22 - Version 3.1.0</h2>
<ul>
<li><p style="margin-bottom: 0cm">new: added synchronised lyric
support
</p></li>
<li><p style="margin-bottom: 0cm">new: improved automatic lyrics
importing
</p></li>
<li><p style="margin-bottom: 0cm">new: search page will now load
more matching results when scrolling
</p></li>
<li><p style="margin-bottom: 0cm">new: open context menus as trays
on mobile
</p></li>
<li><p style="margin-bottom: 0cm">fix: og:image tag sometimes not
showing
</p></li>
<li><p style="margin-bottom: 0cm">fix: don't autofocus first item in
search dropdown
</p></li>
<li><p style="margin-bottom: 0cm">fix: track and album embed images
sometimes not showing
</p></li>
<li><p style="margin-bottom: 0cm">fix: search not ordering artists
correctly sometimes
</p></li>
<li><p style="margin-bottom: 0cm">fix: user profile page showing
non-public playlists sometimes
</p></li>
<li><p style="margin-bottom: 0cm">fix: seo tags being duplicated
sometimes
</p></li>
<li><p style="margin-bottom: 0cm">fix: incorrect link in checkout
error page
</p></li>
<li><p style="margin-bottom: 0cm">fix: api docs authentication
</p></li>
<li><p style="margin-bottom: 0cm">fix: settings sometimes not saving
in admin area
</p></li>
<li><p style="margin-bottom: 0cm">fix: sitemap indexing having link
to non-existing sitemap sometimes
</p></li>
<li><p style="margin-bottom: 0cm">fix: layout issue on dark mode in
account settings page
</p></li>
<li><p style="margin-bottom: 0cm">fix: cookie notice layout on
mobile
</p></li>
<li><p>fix: mark all notification as unread, instead of just visible
ones via mark as unread button
</p></li>
</ul>
<h2 class="western">2024 January 01 - Version 3.0.9</h2>
<ul>
<li><p>fix: a few issues with user passwords and login
</p></li>
</ul>
<h2 class="western">2023 December 14 - Version 3.0.8</h2>
<ul>
<li><p style="margin-bottom: 0cm">new: it's now possible to change
default font, border radius and navbar color from appearance editor.
</p></li>
<li><p style="margin-bottom: 0cm">fix: issues with repeat one player
option
</p></li>
<li><p style="margin-bottom: 0cm">fix: issue with when switching
from stripe test mode to live
</p></li>
<li><p style="margin-bottom: 0cm">fix: flac audio incorrectly being
detected as video
</p></li>
<li><p style="margin-bottom: 0cm">fix: make genre names translatable
in channel grid view
</p></li>
<li><p style="margin-bottom: 0cm">fix: track channel list layout
</p></li>
<li><p style="margin-bottom: 0cm">fix: default album view option
</p></li>
<li><p style="margin-bottom: 0cm">fix: custom landing page SEO tags
not showing sometimes
</p></li>
<li><p style="margin-bottom: 0cm">fix: playlist channel curated
order issue
</p></li>
<li><p>fix: date range picker issue when starting selection from end
date
</p></li>
</ul>
<h2 class="western">2023 November 11 - Version 3.0.7</h2>
<ul>
<li><p style="margin-bottom: 0cm">new: improved first page load
speed
</p></li>
<li><p style="margin-bottom: 0cm">new: improved SEO tags editor in
admin area
</p></li>
<li><p style="margin-bottom: 0cm">new: tags are now searchable for
artist and album
</p></li>
<li><p style="margin-bottom: 0cm">new: add reported filter to
comments datatable
</p></li>
<li><p style="margin-bottom: 0cm">new: added logout button to verify
email page
</p></li>
<li><p style="margin-bottom: 0cm">new: show user suspension reason
on edit user page
</p></li>
<li><p style="margin-bottom: 0cm">fix: album share link not
including artist name
</p></li>
<li><p style="margin-bottom: 0cm">fix: some HLS playback issues
</p></li>
<li><p style="margin-bottom: 0cm">fix: fallback to native video
player for HLS on iOS
</p></li>
<li><p style="margin-bottom: 0cm">fix: track description not being
editable from album form
</p></li>
<li><p style="margin-bottom: 0cm">fix: hide similar artists header
if there are no similar artists
</p></li>
<li><p style="margin-bottom: 0cm">fix: datepicker keyboard input not
working sometimes
</p></li>
<li><p style="margin-bottom: 0cm">fix: hide facebook and twitter
buttons on backstage page if they are not setup in admin area
</p></li>
<li><p style="margin-bottom: 0cm">fix: wrong edit artist page
sometimes accessible after claiming artist
</p></li>
<li><p style="margin-bottom: 0cm">fix: uploaded logo files sometimes
getting removed
</p></li>
<li><p style="margin-bottom: 0cm">fix: appearance editor values not
updating sometimes without page reload
</p></li>
<li><p style="margin-bottom: 0cm">fix: include geolocation database
locally
</p></li>
<li><p style="margin-bottom: 0cm">fix: permission issue with guest
role
</p></li>
<li><p style="margin-bottom: 0cm">fix: allow removing sentry dsn in
settings page
</p></li>
<li><p style="margin-bottom: 0cm">fix: hidden plans still visible on
change plan page
</p></li>
<li><p style="margin-bottom: 0cm">fix: annual subscription sometimes
not getting selected
</p></li>
<li><p style="margin-bottom: 0cm">fix: paypal subscription issue
</p></li>
<li><p style="margin-bottom: 0cm">fix: issues with "api.access"
permission
</p></li>
<li><p style="margin-bottom: 0cm">fix: issue with search on mobile
</p></li>
<li><p style="margin-bottom: 0cm">fix: confirmation dialog not
closing sometimes
</p></li>
<li><p>fix: landing page background issues on iOS
</p></li>
</ul>
<h2 class="western">2023 May 26 - Version 3.0.6</h2>
<ul>
<li><p style="margin-bottom: 0cm">new: added two factor
authentication support
</p></li>
<li><p style="margin-bottom: 0cm">new: users can now be
suspended/baned from admin area
</p></li>
<li><p style="margin-bottom: 0cm">new: added full size social login
buttons as an option in login and register pages
</p></li>
<li><p style="margin-bottom: 0cm">new: it's now possible to prevent
emails from certain domains from registering new accounts
</p></li>
<li><p style="margin-bottom: 0cm">new: added active sessions panel
in account settings page
</p></li>
<li><p style="margin-bottom: 0cm">new: Improved responsiveness of
all tables across the site.
</p></li>
<li><p style="margin-bottom: 0cm">fix: track image not showing when
embedding
</p></li>
<li><p style="margin-bottom: 0cm">fix: playlist not loading more
tracks on mobile
</p></li>
<li><p style="margin-bottom: 0cm">fix: library page menu not showing
on tablet screen size
</p></li>
<li><p style="margin-bottom: 0cm">fix: prevent saving album if
uploads are in progress
</p></li>
<li><p style="margin-bottom: 0cm">fix: long artist names sometimes
overflowing player controls
</p></li>
<li><p style="margin-bottom: 0cm">fix: last week option in date
picker
</p></li>
<li><p style="margin-bottom: 0cm">fix: prevent admin user from being
deleted
</p></li>
<li><p style="margin-bottom: 0cm">fix: wrong site url sometimes
being set during installation
</p></li>
<li><p style="margin-bottom: 0cm">fix: some visual issues on
checkout page
</p></li>
<li><p style="margin-bottom: 0cm">fix: light theme still being
default, event if dark theme is selected in settings page
</p></li>
<li><p style="margin-bottom: 0cm">fix: hide theme change button if
theme changing is disabled in settings page
</p></li>
<li><p>fix: compatability with new versions of tntsearch method
</p></li>
</ul>
<h2 class="western">2023 April 23 - Version 3.0.5</h2>
<ul>
<li><p style="margin-bottom: 0cm">new: hls and dash streams are now
supported as track source.
</p></li>
<li><p style="margin-bottom: 0cm">new: Improved responsiveness of
all tables across the site
</p></li>
<li><p style="margin-bottom: 0cm">new: uploaded tracks will now
inherit genres, tags and artists from album.
</p></li>
<li><p style="margin-bottom: 0cm">fix: "lyrics.view"
permission not being added by default
</p></li>
<li><p style="margin-bottom: 0cm">fix: role names not being
translatable
</p></li>
<li><p style="margin-bottom: 0cm">fix: automation not being fully
disabled sometimes from settings page
</p></li>
<li><p style="margin-bottom: 0cm">fix: menus not showing in landing
page header/footer
</p></li>
<li><p style="margin-bottom: 0cm">fix: an issue with artist albums
pagination
</p></li>
<li><p>fix: savings calculation in pricing page
</p></li>
</ul>
<h2 class="western">2023 April 03 - Version 3.0.4</h2>
<ul>
<li><p style="margin-bottom: 0cm">new: track, album, artist and
playlist links in search dropdown will now have context menu
</p></li>
<li><p style="margin-bottom: 0cm">fix: release date not being
extracted from uploaded file
</p></li>
<li><p style="margin-bottom: 0cm">fix: show become author menu item
on mobile
</p></li>
<li><p style="margin-bottom: 0cm">fix: adblockers preventing history
page from loading
</p></li>
<li><p style="margin-bottom: 0cm">fix: some artist names not
slugifying properly
</p></li>
<li><p style="margin-bottom: 0cm">fix: profiles tab in search page
</p></li>
<li><p style="margin-bottom: 0cm">fix: an issue with email
verification page
</p></li>
<li><p style="margin-bottom: 0cm">fix: show lyrics button in track
context menu
</p></li>
<li><p>fix: channel cache not being cleared automatically after
channel is updated
</p></li>
</ul>
<h2 class="western">2023 March 23 - Version 3.0.3</h2>
<ul>
<li><p style="margin-bottom: 0cm">fix: add missing translations to
localizations page
</p></li>
<li><p style="margin-bottom: 0cm">fix: comments still showing in
album page, even if disabled in settings page
</p></li>
<li><p style="margin-bottom: 0cm">fix: search section link not
working sometimes
</p></li>
<li><p style="margin-bottom: 0cm">fix: existing album not being
editable sometimes in admin area
</p></li>
<li><p style="margin-bottom: 0cm">fix: edit profile dialog
overflowing on mobile
</p></li>
<li><p style="margin-bottom: 0cm">fix: adding/removing item to
library requires page reload for it to appear
</p></li>
<li><p style="margin-bottom: 0cm">fix: share playlist button not
working
</p></li>
<li><p>fix: make channel title translatable
</p></li>
</ul>
<h2 class="western">2023 March 21 - Version 3.0.2</h2>
<ul>
<li><p style="margin-bottom: 0cm">change: center play button on
artist grid item
</p></li>
<li><p style="margin-bottom: 0cm">change: disable like and repost
buttons when logged in as track owner, instead of removing them
completely
</p></li>
<li><p style="margin-bottom: 0cm">fix: songs not being searchable on
mobile sometimes
</p></li>
<li><p style="margin-bottom: 0cm">fix: pricing table not showing on
landing page
</p></li>
<li><p style="margin-bottom: 0cm">fix: prevent long track name from
wrapping in player controls and overlay
</p></li>
<li><p style="margin-bottom: 0cm">fix: close overlay when navigating
to a different page
</p></li>
<li><p style="margin-bottom: 0cm">fix: track list layout not showing
tracks when nested in a channel
</p></li>
<li><p style="margin-bottom: 0cm">fix: tracks not being playable in
channel grid
</p></li>
<li><p style="margin-bottom: 0cm">fix: google tag manager snippet
not being inserted correctly sometimes
</p></li>
<li><p style="margin-bottom: 0cm">fix: table rows only being
selectable with double tap on some phones
</p></li>
<li><p style="margin-bottom: 0cm">fix: external link not working
when added in 'auth-dropdown' position via menu manager
</p></li>
<li><p>fix: tags table preventing search index from being created
</p></li>
</ul>
<h2 class="western">2023 March 19 - Version 3.0.1</h2>
<ul>
<li><p style="margin-bottom: 0cm">fix: space not being usable in
search page on mobile
</p></li>
<li><p style="margin-bottom: 0cm">fix: wrong track sometimes being
played if same track appears in a channel individually and as part
of album
</p></li>
<li><p style="margin-bottom: 0cm">fix: upload progress not showing
when uploading multiple tracks to create an album
</p></li>
<li><p style="margin-bottom: 0cm">fix: Default genre channels not
being created properly during installation
</p></li>
<li><p style="margin-bottom: 0cm">fix: Local + Spotify search option
not working
</p></li>
<li><p style="margin-bottom: 0cm">fix: channels not being deletable
from admin area
</p></li>
<li><p style="margin-bottom: 0cm">fix: menu manager having incorrect
url for channels
</p></li>
<li><p>fix: long track names pushing options button offscreen
</p></li>
</ul>
<h2 class="western">2023 March 18 - Version 3.0.0</h2>
<h4 class="western">New features</h4>
<ul>
<li><p style="margin-bottom: 0cm">Added sitewide play statistics in
admin area, as well as statistics for artist, album and track.
</p></li>
<li><p style="margin-bottom: 0cm">It's now possible to list artists,
albums and tracks of specific genre in the same channel.
</p></li>
<li><p style="margin-bottom: 0cm">Fully rewritten BeMusic in React.
This results in many improvements from previous version, including
better performance, bundle size reduction by nearly 2x (with bigger
reduction in future updates), better animations and many bugfixes.
</p></li>
<li><p style="margin-bottom: 0cm">Refreshed the design for most
pages across the site.
</p></li>
<li><p>It's now possible to upload files directly from browser to s3
and s3 compatible services.
</p></li>
</ul>
<h4 class="western">Enhancements</h4>
<ul>
<li><p style="margin-bottom: 0cm">Multiple tracks can now be moved
at the same time within playlist.
</p></li>
<li><p style="margin-bottom: 0cm">Improved performance for track
tables with large amount of tracks.
</p></li>
<li><p style="margin-bottom: 0cm">Improved admin datatable
performance where there are a lot of artists, albums or tracks.
</p></li>
<li><p style="margin-bottom: 0cm">Correctly show minutes left in the
upload music page.
</p></li>
<li><p style="margin-bottom: 0cm">Hide queue and player bar if no
tracks are cued.
</p></li>
<li><p style="margin-bottom: 0cm">Migrated Google Analytics
integration to v4.
</p></li>
<li><p style="margin-bottom: 0cm">Updated landing page design and
added a few more options in landing page editor.
</p></li>
<li><p style="margin-bottom: 0cm">Pricing table can now be shown
inlined in the landing page.
</p></li>
<li><p style="margin-bottom: 0cm">Admin sidebar can now be edited
from menu manager.
</p></li>
<li><p style="margin-bottom: 0cm">Updated to the latest version of
Laravel.
</p></li>
<li><p style="margin-bottom: 0cm">Updated Stripe integration to the
latest version. It now accepts payments from Google/Apple pay and
other, country specific providers, in addition to credit cards.
</p></li>
<li><p style="margin-bottom: 0cm">Updated PayPal integration to the
latest version. It can now accept a number of other payment sources
including cards.
</p></li>
<li><p style="margin-bottom: 0cm">Many improvements to subscription
flow and plan creation in admin area.
</p></li>
<li><p style="margin-bottom: 0cm">Added compatibility with PHP 8.2+
</p></li>
<li><p style="margin-bottom: 0cm">It's now possible to preview files
from "admin -> files" page.
</p></li>
<li><p style="margin-bottom: 0cm">When email confirmation is
enabled, user will now see a special page where they can resend
confirmation email.
</p></li>
<li><p style="margin-bottom: 0cm">Appearance editor themes section
now has fewer colors that need to be overwritten.
</p></li>
<li><p style="margin-bottom: 0cm">Added a lot more icons in
appearance editor icon selector.
</p></li>
<li><p style="margin-bottom: 0cm">Call to action buttons in landing
page editor and gdpr settings in admin area now have the same
options as menu editor items.
</p></li>
<li><p style="margin-bottom: 0cm">Improved filtering for data tables
in admin area.
</p></li>
<li><p style="margin-bottom: 0cm">Menus can now be assigned to
multiple positions.
</p></li>
<li><p style="margin-bottom: 0cm">Menu items in menu manager can now
be configured to show based on user roles or permissions.
</p></li>
<li><p style="margin-bottom: 0cm">Added region option to mailgun
mail provider in settings page.
</p></li>
<li><p style="margin-bottom: 0cm">Upgraded GDPR EU location check.
</p></li>
<li><p style="margin-bottom: 0cm">Added postmark mail provider.
</p></li>
<li><p>Updated translation manager in admin area, there should no
longer be any missing strings.
</p></li>
</ul>
<h4 class="western">Bug Fixes</h4>
<ul>
<li><p style="margin-bottom: 0cm">Prevent player from getting stuck
in loading state sometimes.
</p></li>
<li><p style="margin-bottom: 0cm">Load more albums when artist page
view mode is set to grid.
</p></li>
<li><p style="margin-bottom: 0cm">Track table will not correctly
show track as playing without the need to hover over it.
</p></li>
<li><p style="margin-bottom: 0cm">Better handle tracks that were
deleted manually from database.
</p></li>
<li><p style="margin-bottom: 0cm">Fixed an issue with waveform
progress not matching actual playback status sometimes.
</p></li>
<li><p style="margin-bottom: 0cm">Fix some issues with comment reply
indentation.
</p></li>
<li><p style="margin-bottom: 0cm">Fixed an issue with playlist total
duration sometimes showing incorrect value.
</p></li>
<li><p style="margin-bottom: 0cm">Properly log track plays when
queue method is selected in settings page.
</p></li>
<li><p style="margin-bottom: 0cm">Fixed a number of issues related
to timezones and daylight savings time in charts.
</p></li>
<li><p style="margin-bottom: 0cm">Fixed an issue where ordering in
admin data tables would not work properly when certain filters were
active.
</p></li>
<li><p style="margin-bottom: 0cm">Prevent user from being logged out
when changing password in account settings page.
</p></li>
<li><p style="margin-bottom: 0cm">Default browser language will no
longer take priority over one selected in admin settings.
</p></li>
<li><p>Fixed an issue where disabling registration from settings
page would leave API registration route active.
</p></li>
</ul>
<h2 class="western">2021 August 16 - Version 2.5.2</h2>
<h4 class="western">Enhancements</h4>
<ul>
<li><p style="margin-bottom: 0cm">Comments table in admin area will
now show album/track the comment is for.
</p></li>
<li><p style="margin-bottom: 0cm">Channel cache will now be cleared
automatically when channel is edited or auto-updated.
</p></li>
<li><p style="margin-bottom: 0cm">It's now possible to enter spotify
ID manually for artist/album/track from admin area.
</p></li>
<li><p>Updated datatable design in admin area and added a number of
new filters.
</p></li>
</ul>
<h4 class="western">Bug Fixes</h4>
<ul>
<li><p style="margin-bottom: 0cm">Artist table can now be sorted by
number of albums.
</p></li>
<li><p style="margin-bottom: 0cm">Fixed an issue where users were
not able to delete their own comments sometimes.
</p></li>
<li><p style="margin-bottom: 0cm">Corrected a few issues with album
reposts.
</p></li>
<li><p style="margin-bottom: 0cm">Adding album to queue will now
work properly from album channel.
</p></li>
<li><p style="margin-bottom: 0cm">Artist links will now be properly
removable when editing artist from backstage.
</p></li>
<li><p style="margin-bottom: 0cm">Social logins panel in account
settings page will now be hidden if all social logins are disabled
in settings page.
</p></li>
<li><p style="margin-bottom: 0cm">Album page will now have correct
SEO tags when sharing on facebook.
</p></li>
<li><p style="margin-bottom: 0cm">Fixed an issue where artist tabs
in interface settings page were not showing sometimes.
</p></li>
<li><p style="margin-bottom: 0cm">Hide embed track tab when user
does not have embed permission.
</p></li>
<li><p style="margin-bottom: 0cm">Hide "try pro" menu item
if user does not have "plans.view" permission.
</p></li>
<li><p style="margin-bottom: 0cm">Don't limit queue to 15 tracks on
radio page.
</p></li>
<li><p style="margin-bottom: 0cm">Hide "remove from playlist"
context menu button if user does not have required permission.
</p></li>
<li><p>Prevent user from sometimes retaining permissoions to add
tracks to playlist when playlist collaboration is turned off.
</p></li>
</ul>
<h2 class="western">2021 May 25 - Version 2.5.1</h2>
<h4 class="western">Enhancements</h4>
<ul>
<li><p style="margin-bottom: 0cm">A more descriptive error message
will now be shown if incompatible PHP version is detected.
</p></li>
<li><p style="margin-bottom: 0cm">Artist "verified" status
can now be toggled when editing artist from admin area.
</p></li>
<li><p>Tracks will now always fallback to simple seekbar if waveform
is not available.
</p></li>
</ul>
<h4 class="western">Bug Fixes</h4>
<ul>
<li><p style="margin-bottom: 0cm">Fixed an issue where channel
search was not working if channel type of content was set to
"multiple types".
</p></li>
<li><p style="margin-bottom: 0cm">Fixed redirect url after artist is
created in admin area.
</p></li>
<li><p style="margin-bottom: 0cm">Fixed a few issues with images not
showing when sharing track or album on social media sites.
</p></li>
<li><p style="margin-bottom: 0cm">Fixed an issue with similar
artists having wrong url sometimes on artist page.
</p></li>
<li><p style="margin-bottom: 0cm">Don't show "become artist"
menu item, if user is already an artist.
</p></li>
<li><p style="margin-bottom: 0cm">Allow searching all artists in
backstage request form, regardless of current user permissions.
</p></li>
<li><p style="margin-bottom: 0cm">Fixed playlists page in user
library on mobile.
</p></li>
<li><p style="margin-bottom: 0cm">Fixed a few issues with sitemap
generation.
</p></li>
<li><p style="margin-bottom: 0cm">Album and track importing by
spotify ID will now work correctly if that album or track has
already been imported previously.
</p></li>
<li><p style="margin-bottom: 0cm">Radio will now work correctly on
PHP 8
</p></li>
<li><p style="margin-bottom: 0cm">Fixed a few issues with algolia
search provider.
</p></li>
<li><p>Fixed an issue where public image would sometimes be uploaded
as private when using s3 to store files.
</p></li>
</ul>
<h2 class="western">2021 May 22 - Version 2.5.0</h2>
<h4 class="western">Enhancements</h4>
<ul>
<li><p>Artist and album can now be imported by spotify ID even if
providers are set to local in settings page.
</p></li>
</ul>
<h4 class="western">Bug Fixes</h4>
<ul>
<li><p style="margin-bottom: 0cm">Fixed an issue where "Add
content manually" type for channel would not work correctly
when creating a new channel.
</p></li>
<li><p style="margin-bottom: 0cm">Fixed a few issues with manually
re-ordering channel contents.
</p></li>
<li><p style="margin-bottom: 0cm">Fixed an issue with track and
album page not showing artist name in browser tab title.
</p></li>
<li><p style="margin-bottom: 0cm">Fixed an issue where changed seo
settings in appearance editor would not save sometimes.
</p></li>
<li><p style="margin-bottom: 0cm">Fixed an issue with some profile
details not saving correctly when editing user profile page.
</p></li>
<li><p>Fixed a few issues with record importing in search settings
page.
</p></li>
</ul>
<h2 class="western">2021 May 21 - Version 2.4.9</h2>
<h4 class="western">New Features</h4>
<ul>
<li><p style="margin-bottom: 0cm">Added collaboration functionality
to playlists.
</p></li>
<li><p style="margin-bottom: 0cm">Added backstage section where user
can submit a request to claim, verify or become an artist.
</p></li>
<li><p style="margin-bottom: 0cm">Added admin section for managing
backstage requests.
</p></li>
<li><p style="margin-bottom: 0cm">Added several search integrations,
including meillisearch and elasticsearch. This allows for much
better search speed and accuracy.
</p></li>
<li><p style="margin-bottom: 0cm">Added new search provider for
searching both spotify and local database at the same time.
</p></li>
<li><p style="margin-bottom: 0cm">Added "spotify:playlist"
auto update method to channels.