-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathchanges.htm
More file actions
3176 lines (2704 loc) · 138 KB
/
changes.htm
File metadata and controls
3176 lines (2704 loc) · 138 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 lang="en-US">
<head>
<meta charset="UTF-8">
<title>DeepSID: Archived Changes</title>
</head>
<body style="width:820px;font-family:arial;">
<h2 style="margin-top:0;">DeepSID Archived Changes</h2>
<p><i>Click <a href="http://deepsid.chordian.net?tab=changes">here</a> to see the most recent changes at the web site itself.</i></p>
<h3>December 27, 2024</h3>
<ul>
<li>The <a href="https://www.hvsc.c64.org/" target="_top">High Voltage SID Collection</a> has been upgraded to the latest version #82.</li>
<li>JSIDPlay2 has been changed to WebAssembly and it should now be fast enough to play stereo tunes on mobile devices.
It should play at least 40% faster.</li>
</ul>
<h3>November 8, 2024</h3>
<ul>
<li>A new SID handler with WebUSB support for <a href="https://github.com/LouDnl/USBSID-Pico">USBSID-Pico</a> has been added to Hermit's emulator by LouD.
Note that WebUSB can be quite demanding resource wise.</li>
</ul>
<h3>October 19, 2024</h3>
<ul>
<li>Fixed sid model and clock speed info flags not always showing the correct information.</li>
</ul>
<h3>October 13, 2024</h3>
<ul>
<li>Ratings stars for a song are now shown in the info box too, so you can see and rate the song even when you have browsed away from it.
The collection version number has been moved down above the sundry box.</li>
</ul>
<h3>October 6, 2024</h3>
<ul>
<li>Added <a href="//deepsid.chordian.net/?player=130&type=player&search=quantum">Quantum Soundtracker</a> to the list of music editors.</li>
</ul>
<h3>October 3, 2024</h3>
<ul>
<li>Fixed an UTF-8 issue due to an update on CSDb. All CSDb pages should display properly again.</li>
</ul>
<h3>September 28, 2024</h3>
<ul>
<li>A new tag group type for events has been created. These tags have a green color and are shown before all other tag types.
They are used for events such as demo parties. The event name always come first, then optionally "Compo"
which can then optionally be followed by the ranking such as "Winner" and "#1" to "#9" tags.</li>
</ul>
<h3>August 4, 2024</h3>
<ul>
<li>Fixed temporary emulating testing (hotkey "l") not playing the uploaded tune when clicked.</li>
</ul>
<h3>July 25, 2024</h3>
<ul>
<li>Added the CSDb music competitions related to HVSC #81.</li>
</ul>
<h3>July 21, 2024</h3>
<ul>
<li>The "Compo", "Winner" and "#1" to "#9" tags now always huddle together in a logical manner.</li>
</ul>
<h3>July 20, 2024</h3>
<ul>
<li>The sundry tab for stereo is now also available for JSIDPlay2. Here you can set sliders for balance and delay,
change the stereo mode, and toggle fake stereo along with the SID chip to read from.</li>
<li>You can now hit the BACKSPACE key to go back to the parent folder.</li>
</ul>
<h3>July 18, 2024</h3>
<ul>
<li>Fixed main volume not being remembered when refreshing the site.</li>
</ul>
<h3>July 17, 2024</h3>
<ul>
<li>Advanced settings has been added in the settings tab. Its contents will depend on the SID handler chosen. There
are only advanced settings for JSIDPlay2 to begin with.</li>
<li>Moved the buffer size in the settings tab into the new section for advanced settings.</li>
<li>Added some advanced settings for the JSIDPlay2 emulator – default emulation (<i>reSID</i> or <i>reSIDfp</i>) and
sampling method (<i>Decimate</i> or <i>Resample</i>), plus a ton of filter names for 6581 and 8580 chips.</li>
<li>Selecting a different SID handler now always refreshes the site, instead of just a select few. To make up for this, the tab
you're in is remembered every time you change the SID handler.</li>
<li>All new files in HVSC #81 are now connected to CSDb entries.</li>
</ul>
<h3>July 15, 2024</h3>
<ul>
<li>Fixed a bug when refreshing the site while using other SID handlers than WebSid HQ, Legacy or reSID.</li>
</ul>
<h3>July 14, 2024</h3>
<ul>
<li>Added a SID handler for another reSID emulator, this time 'WebSidPlay' by Jürgen Wothke (called 'reSID' here
to avoid confusion). It's a port of <a href="https://github.com/libsidplayfp/libsidplayfp" target="_top">libsidplayfp</a>
and is only 30% slower than WebSid HQ, making it a great choice for excellent emulation.
The new reSID handler is in BETA and still have the following issues:
<ul>
<li>Reading the digi type and rate is not supported yet.</li>
<li>Reading the SID registers is slow on big buffer sizes and only supports 1SID.</li>
<li>The oscilloscope is not supported yet.</li>
<li>Showing the PAL/NTSC and 6581/8580 flags is not ready yet.</li>
<li>Advanced reSID settings are not available.</li>
<li>For 2SID and 3SID tunes, the visuals only show the first SID chip.</li>
<li>Exotic SID tunes (4SID and more) are not supported.</li>
</ul>
</li>
<li>Another emulator button for the new reSID emulator has been added in the visuals tab.</li>
<li>Added logic for disabling view buttons (piano, graph, etc.) when a SID handler doesn't support it.</li>
<li>All three emulators by Jürgen Wothke (WebSid HQ, WebSid Legacy and reSID) now share a new and streamlined script player.
DeepSID has been overhauled accordingly to support this.</li>
<li>The scopes for WebSid HQ and WebSid Legacy have been significantly improved, using a new channel streamer script.
Setting a specific buffer size for the scope to work is no longer necessary.</li>
<li>A bug has been fixed in a player script for WebSid HQ. Now the visuals are perfectly synchronized.</li>
</ul>
<h3>July 6, 2024</h3>
<ul>
<li>Upgraded the JSIDPlay2 emulator. An "open" method has been renamed to fix a bug in DeepSID that prevented
certain links to PlayMOD and CShellDB from working, as well as the "p" hotkey for opening a tiny DeepSID.</li>
<li>Fixed the tune timer not keeping up when using fast forward in JSIDPlay2.</li>
<li>Fixed when the tags line for a SID row was not reappearing after showing a loading spinner.</li>
</ul>
<h3>June 30, 2024</h3>
<ul>
<li>The <a href="https://www.hvsc.c64.org/" target="_top">High Voltage SID Collection</a> has been upgraded to the latest version #81.</li>
<li>Added composer profiles for the new folders in HVSC #81.</li>
</ul>
<h3>June 29, 2024</h3>
<ul>
<li>Fixed a bug where the piano visuals would appear in the other tabs.</li>
</ul>
<h3>June 28, 2024</h3>
<ul>
<li>Upgraded the JSIDPlay2 emulator. It now has tune length events.</del></li>
<li>Stopping a tune with JSIDPlay2 now kills the worker thread to save on mobile battery power.</li>
<li>Changed the logic for the loading spinner when using JSIDPlay2. It now clears earlier than before.</li>
<li>The visuals tab is now turned off as default for JSIDPlay2, to save on CPU time.</li>
</ul>
<h3>June 22, 2024</h3>
<ul>
<li>Added a SID handler for <a href="https://haendel.ddns.net:8443/static/teavm/c64jukebox.vue" target="_top">JSIDPlay2</a>.
This uses the renowned reSID engine and offers excellent emulation, but it's also considerably
more demanding. You need a powerful CPU to run this one. Only the playback and visuals are supported in this "BETA" update.
Support for stereo and filter presets are coming in a later update.</li>
<li>Because of the new SID handler, an ON/OFF toggle button has been added in the visuals tab. If your CPU is having trouble making the
playback sound coherent, try turning the visuals off. This may especially be helpful with digi, 2SID and 3SID tunes. Turning the visuals
off not only saves time on having to update this, it also turns off SID register output in the JSIDPlay2 emulator. </li>
<li>Fixed tags not being removed too when a loading spinner is shown in a SID row.</li>
<li>Buffer size is now unique for each of the emulators supported by the visuals tab.</li>
</ul>
<h3>May 16, 2024</h3>
<ul>
<li>Hermit's emulator is now capable of playing back SID+FM files. These are SID files combined with
FM emulation and have been accomplished by using either the <a href="https://www.c64-wiki.com/wiki/Commodore_Sound_Expander" target="_top">SFX Sound Expander</a> or the <a href="https://c64.xentax.com/index.php/fm-yam" target="_top">FM-YAM</a>
cartridge. Thank you to Thomas Jansson (tubesockor) for this update.</li>
<li>A new <a href="//deepsid.chordian.net/?file=/SID%20Happens/SID+FM/">SID+FM</a> subfolder has been created in the <a href="//deepsid.chordian.net/?file=/SID%20Happens/">SID Happens</a> folder.
You can only enter this subfolder when you have selected the <b>Hermit's (+FM)</b> SID handler in the top left drop-down box.
It's possible to upload new files to this subfolder, but they must of course be of the SID+FM type or they will be deleted.</li>
</ul>
<h3>January 6, 2024</h3>
<ul>
<li>Added the CSDb music competitions related to HVSC #80.</li>
</ul>
<h3>December 27, 2023</h3>
<ul>
<li>All new files in HVSC #80 are now connected to CSDb entries.</li>
</ul>
<h3>December 24, 2023</h3>
<ul>
<li>The <a href="https://www.hvsc.c64.org/" target="_top">High Voltage SID Collection</a> has been upgraded to the latest version #80.</li>
<li>Added composer profiles for the new folders in HVSC #80.</li>
</ul>
<h3>December 1, 2023</h3>
<ul>
<li>Thomas Jansson has extended the ASID support. It now supports up to 3 SID chips and multispeed,
as well as SID+FM songs (uses OPL registers according to SFX Sound Expander and FM-YAM). To use
multispeed or multiple SID, a Turbo MIDI interface (like Elektron TM-1) is needed
to utilize the higher than normal MIDI-bandwidth.</li>
</ul>
<h3>October 11, 2023</h3>
<ul>
<li>Fixed a blanking issue by removing the GB64 tab entirely. This tab previously received game information from
the GameBase64 web site. However, the web site was relocated lately due to the recent demise of the previous
web administrator, and the new web location caused DeepSID to show a blank page.</li>
</ul>
<h3>July 23, 2023</h3>
<ul>
<li>The <code>Copy Link</code> menu item on the right-click context menu now includes a URL parameter for
showing the CSDb tab instead of the default profile tab.</li>
</ul>
<h3>July 22, 2023</h3>
<ul>
<li>Added the CSDb music competitions related to HVSC #79.</li>
</ul>
<h3>July 15, 2023</h3>
<ul>
<li>All new files in HVSC #79 are now connected to CSDb entries.</li>
</ul>
<h3>July 2, 2023</h3>
<ul>
<li>The main volume slider setting is now remembered between browser sessions.</li>
<li>Removed a typing throttle for checking if the user name already exists. Hopefully this prevents automatic login
mechanisms from submitting before this check has been performed by DeepSID.</li>
<li>Creating a new playlist will now show a dialog box where you can rename it on the fly.</li>
</ul>
<h3>July 1, 2023</h3>
<ul>
<li>The <a href="https://www.hvsc.c64.org/" target="_top">High Voltage SID Collection</a> has been upgraded to the latest version #79.</li>
<li>Added composer profiles for the new folders in HVSC #79.</li>
</ul>
<h3>June 11, 2023</h3>
<ul>
<li>A new SID handler for ASID (MIDI) has been implemented by Thomas Jansson. You can use this handler to play SID music
on MIDI devices such as SidStation, TherapSID, Midibox SID and C64 (using Station64).</li>
</ul>
<h3>June 10, 2023</h3>
<ul>
<li>Fixed the 6581 button not being clickable when selecting the filter sundry tab.</li>
</ul>
<h3>June 8, 2023</h3>
<ul>
<li>DeepSID now only uses HTTPS. HTTP will automatically be redirected to HTTPS.</li>
<li>The profile page for Compute's Gazette SID Collection now shows a standard page instead of the site itself.
This is better anyway since year data has been added to all songs in the collection.</li>
</ul>
<h3>April 18, 2023</h3>
<ul>
<li>The Discord server for DeepSID has been deleted. See this annex box for alternatives: <a class="annex-link" href="9">Social links</a></li>
</ul>
<h3>April 13, 2023</h3>
<ul>
<li>Almost all groups now have profile images.</li>
<li>Added the group <a href="//deepsid.chordian.net/?file=/GROUPS/sidDivers/">sidDivers</a> along with a profile image for them as well.</li>
<li>Credits are no longer hidden for music releases in the CSDb tab.</li>
</ul>
<h3>April 12, 2023</h3>
<ul>
<li>A recommended box for a group now properly states it's a group with members, not a folder with songs.</li>
</ul>
<h3>March 11, 2023</h3>
<ul>
<li>A folder REST API call now also show all of its subfolders.</li>
<li>New SID handler <a class="set-lemon" href="#">Lemon's MP3 Files</a> has been added which plays MP3 files recorded from JSIDPlay2,
courtesy of Kim Lemon at the <a href="https://www.lemon64.com/">Lemon64</a> web site. Only tunes from
<a href="https://www.hvsc.c64.org/">High Voltage SID Collection</a> are supported for now.</li>
</ul>
<h3>March 5, 2023</h3>
<ul>
<li>DeepSID's copy of <a href="http://www.c64music.co.uk/" target="_top">Compute's Gazette SID Collection</a> has now been upgraded to version 1.45.</li>
</ul>
<h3>February 26, 2023</h3>
<ul>
<li>A composer profile REST API call now show full paths for all images.</li>
<li>Unknown URL parameter in REST API call now issues a bad request (400) error.</li>
</ul>
<h3>February 25, 2023</h3>
<ul>
<li>You can now call a REST API for adding info to your own web site.
See this annex box for more: <a class="annex-link" href="16">REST API</a></li>
</ul>
<h3>February 12, 2023</h3>
<ul>
<li>A message is now shown if WebAssembly is not enabled in your web browser.</li>
</ul>
<h3>February 4, 2023</h3>
<ul>
<li>Added the CSDb music competitions related to HVSC #78.</li>
</ul>
<h3>January 13, 2023</h3>
<ul>
<li>Upgraded the WebSid (HQ) emulator. Added a fix for <a href="//deepsid.chordian.net/?file=/MUSICIANS/H/Hubbard_Rob/Mr_Meaner.sid">Mr_Meaner</a>.</li>
</ul>
<h3>January 2, 2023</h3>
<ul>
<li>All new files in HVSC #78 are now connected to CSDb entries.</li>
</ul>
<h3>January 1, 2023</h3>
<ul>
<li>Fixed Jammer's <a href="//deepsid.chordian.net/?file=/MUSICIANS/J/Jammer/Pitstop.sid&subtune=1">Pitstop</a> that was lacking database information.</li>
</ul>
<h3>December 24, 2022</h3>
<ul>
<li>The <a href="https://www.hvsc.c64.org/" target="_top">High Voltage SID Collection</a> has been upgraded to the latest version #78.</li>
<li>Added composer profiles for the new folders in HVSC #78.</li>
</ul>
<h3>December 11, 2022</h3>
<ul>
<li>Deleted the exotic sub folder with duplicated 2SID tunes as you can adjust the stereo yourself in the sundry
tab added back in October. Deleting the folder means less maintenance on my part.</li>
</ul>
<h3>November 6, 2022</h3>
<ul>
<li>All stereo panning is now reset to center when selecting the WebSid (HQ) emulator.</li>
</ul>
<h3>October 22, 2022</h3>
<ul>
<li>The stereo settings are now retained across songs and subtunes.</li>
<li>Stereo is now also turned off per default to save on CPU time. As soon as you drag one of the stereo sliders,
it is automatically turned on in the "Enhance off" mode.</li>
<li>Fixed a bug that messed up the layout of the stereo tab in certain web browsers, like Safari on Apple devices.</li>
</ul>
<h3>October 21, 2022</h3>
<ul>
<li>The stereo mode now defaults to "Enhance off" when clicking new songs.</li>
</ul>
<h3>October 18, 2022</h3>
<ul>
<li>Upgraded the WebSid (HQ) emulator. Fixed a stereo initialization issue.</li>
</ul>
<h3>October 16, 2022</h3>
<ul>
<li>Upgraded the WebSid (HQ) emulator. Added pseudo-stereo support. The volume has been lowered to allow for this feature –
make sure you turn it up a bit.</li>
<li>A new sundry tab has been added which makes use of the stereo feature of the new WebSid (HQ) emulator.
There's a panning slider for each voice, for up to three SID chips. Each slider also show oscilloscope output,
which makes it easier to find the slider you want to tweak as the music plays.</li>
<li>If you drag the stereo tab bigger, there are a few controls for the entire stereo feature. To be absolutely
honest, I can't personally hear any difference when using the headphones checkbox nor the reverb slider. They came with
the Google library that the WebSid programmer used, and it's possible they do not affect SID at all.</li>
</ul>
<h3>September 24, 2022</h3>
<ul>
<li>A recommended box can now sometimes be a playlist spotlight.</li>
</ul>
<h3>August 21, 2022</h3>
<ul>
<li>Clicking a sundry tab that is already active now collapses the box. This works no matter what device you're using,
but it's actually meant to give mobile devices a way to free up more vertical space.</li>
<li>The profile options for uploading to the SH folder are now without the "HVSC/MUSICIANS" part. This makes it possible
to find people faster, e.g. by typing the letter folder.</li>
</ul>
<h3>August 19, 2022</h3>
<ul>
<li>Upgraded script processor and scope scripts used by WebSid (HQ) emulator. This should fix scope issues.</li>
</ul>
<h3>August 6, 2022</h3>
<ul>
<li>When uploading to the SH folder, the drop-down box with composers now contains two lists.
The first is active composers only and the second is everyone. This should make
it easier to select a common composer.</li>
</ul>
<h3>July 31, 2022</h3>
<ul>
<li>Fixed the remix tab not showing any entries at all.</li>
</ul>
<h3>July 19, 2022</h3>
<ul>
<li>Added a URL switch for activating a mini-player mode. The browser, page, login and two of the sundry tabs
are not available in this mode. Use <code>&mini=1</code> for use in an "invisible" folder where the Prev/Next buttons
still work, or use <code>&mini=2</code> where only the specified tune can be played. To see what other URL switches
could be nice to use, just run the URL without specifying the <code>?file=</code> switch.
</li>
</ul>
<h3>July 17, 2022</h3>
<ul>
<li>Added the <a href="https://deepsid.chordian.net/?player=129&type=player&search=flexsid">FlexSID</a> editor to the list of players.</li>
</ul>
<h3>July 12, 2022</h3>
<ul>
<li>You can now also search for the SID type. Choose <code>Type</code> and then type e.g. "rsid" then search.</li>
</ul>
<h3>July 11, 2022</h3>
<ul>
<li>Added the CSDb music competitions related to HVSC #77.</li>
<li>In the piano view, the colors of the keys are now affected by the entire ADSR envelope output.</li>
<li>Fixed a bug that showed the same search results multiple times if performed fast in rapid succession.</li>
</ul>
<h3>July 10, 2022</h3>
<ul>
<li>Upgraded the WebSid (HQ) emulator. The piano view now makes use of a new feature in it to fade out its
keys depending on the ADSR envelope output of the voices.</li>
</ul>
<h3>July 9, 2022</h3>
<ul>
<li>Upgraded the WebSid (HQ) emulator. See below for what this version brings.</li>
<li>The piano view now always run at full speed in WebSid (HQ) mode regardless of the buffer size.</li>
<li>The scopes are now always available in WebSid (HQ) mode regardless of the buffer size.</li>
<li>Fixed MEMO and STATS views not working anymore. Both now also operate at 60 hz. Note that the MEMO view
doesn't really make use of it since Jürgen's update only covers the SID registers.</li>
</ul>
<h3>July 3, 2022</h3>
<ul>
<li>Wrote and ran a script to update the file counts of the GROUPS member folders.</li>
<li>The 13 new 2SID files in HVSC #77 (i.e. that uses 6 voices) has now been added as
<a href="//deepsid.chordian.net/?file=/_Exotic%20SID%20Tunes%20Collection/Stereo%202SID&here=1&search=77&type=new&tab=csdb">exotic stereo files</a>.</li>
<li>Fixed a bug that prevented the specific search query "summer" from returning any results.</li>
</ul>
<h3>July 2, 2022</h3>
<ul>
<li>Upgraded the WebSid (HQ) emulator. Added API for specific SID instance access, cleaned up digi-related scope handling, rolled back
flawed CIA performance optimization and flawed COUNTER_PERIOD improvement.</li>
<li>Note that the scopes now include digi output when a voice-specific digi technique is used. Normal $D418 digi is exclusively shown
in the fourth scope output. Remember to use a buffer size of 16384 to see the scopes.</li>
<li>Fixed a bug when displaying data from additional SID chips in the piano view.</li>
<li>All new files in HVSC #77 are now connected to CSDb entries.</li>
</ul>
<h3>June 25, 2022</h3>
<ul>
<li>The <a href="https://www.hvsc.c64.org/" target="_top">High Voltage SID Collection</a> has been upgraded to the latest version #77.</li>
<li>Added composer profiles for the new folders in HVSC #77.</li>
</ul>
<h3>May 28, 2022</h3>
<ul>
<li>DeepSID's copy of <a href="http://www.c64music.co.uk/" target="_top">Compute's Gazette SID Collection</a> has now been upgraded to version 1.43.</li>
</ul>
<h3>May 14, 2022</h3>
<ul>
<li>All 2SID tunes in the SH folder of 2022 have been turned "exotic" which means they now play in stereo.</li>
</ul>
<h3>April 23, 2022</h3>
<ul>
<li>Imported the new GameBase64 collection v18 with new game entries and screenshots.</li>
</ul>
<h3>April 2, 2022</h3>
<ul>
<li>DeepSID's copy of <a href="http://www.c64music.co.uk/" target="_top">Compute's Gazette SID Collection</a> has now been upgraded to version 1.42.</li>
</ul>
<h3>March 26, 2022</h3>
<ul>
<li>Fixed an inversion problem in the ASCII graphics of certain CGSC songs.</li>
</ul>
<h3>March 13, 2022</h3>
<ul>
<li>The dark blue chunk in the memory bar is now slightly darker in the dark color theme.</li>
<li>Improved how hotkeys are ignored when using all kinds of text input controls.</li>
</ul>
<h3>March 12, 2022</h3>
<ul>
<li>Fixed a bug where group folders were also a profile choice when uploading to the SH folder.</li>
<li>Changed how tags slide to the left when hovering on them. Instead of just sliding the line of tags
to the left edge, the line now slides far enough for the plus button to be visible.</li>
<li>All composer profiles with a CSDb page now have a composer link that goes to that page.</li>
</ul>
<h3>March 8, 2022</h3>
<ul>
<li>Upgraded the WebSid (HQ) emulator. Added a hack for Wacek's version of <a href="//deepsid.chordian.net/?file=/MUSICIANS/W/Wacek/4_Non_Blondes-Whats_Up_Remix.sid">4 Non Blondes</a>.</li>
</ul>
<h3>February 27, 2022</h3>
<ul>
<li>Upgraded the WebSid (HQ) emulator. Added specific handling of Mahoney digi and fixed 6581/8580 toggle bug.</li>
</ul>
<h3>February 26, 2022</h3>
<ul>
<li>Fixed ADSR values shown in the wrong order in the new stats view.</li>
</ul>
<h3>February 20, 2022</h3>
<ul>
<li>Added solo buttons for each voice in the stats view.</li>
</ul>
<h3>February 19, 2022</h3>
<ul>
<li>A new stats view button has been added in the visuals tab. This mode shows what is being used
in the SID chip, both in real-time (red dots) and in total over time (checkmarks).</li>
</ul>
<h3>January 30, 2022</h3>
<ul>
<li>The screen, BASIC ROM and KERNEL ROM areas can now be vaguely seen in the memory bar.</li>
<li>Fixed competition folders not working properly.</li>
</ul>
<h3>January 29, 2022</h3>
<ul>
<li>Removed the link for reporting a profile change. Nobody was using it and it clashed with long names.</li>
</ul>
<h3>January 23, 2022</h3>
<ul>
<li>Rewrote the way the annex box appears contextually upon page reload. If the URL is not for a playlist
but has a profile that may show composer links, there is a good chance these may be shown instead of tips.</li>
<li>Groups no longer appear in the page with recommended folders.</li>
<li>The CSDb tab now shows a release page if it's the only release for that song anyway.</li>
</ul>
<h3>January 22, 2022</h3>
<ul>
<li>Groups no longer appear in the list of game composers in the bottom of the root page.</li>
</ul>
<h3>January 16, 2022</h3>
<ul>
<li>More <a href="//deepsid.chordian.net/?file=/GROUPS/">GROUPS</a> have been added the past few days, for a total of 54 groups.</li>
<li>Groups can now have avatar images. The avatar images for groups in MUSICIANS have been added.</li>
</ul>
<h3>January 13, 2022</h3>
<ul>
<li>Added the CSDb music competitions related to HVSC #76.</li>
</ul>
<h3>January 9, 2022</h3>
<ul>
<li>Fixed folders in GROUPS not being able to load directly or refresh.</li>
<li>Fixed a bug that caused GROUPS folders to be shown in one of the top 10 lists.</li>
<li>Added a ton of GROUPS entries, for a total of 18 groups.</li>
</ul>
<h3>January 8, 2022</h3>
<ul>
<li>Improved the detection of 2SID and 3SID tunes for the PIANO view.</li>
<li>An unofficial <a href="//deepsid.chordian.net/?file=/GROUPS/">GROUPS</a> folder has now been added in the root of the HVSC folder. Each group folder in it
has a collection of member folders. These folders actually redirect to a MUSICIANS folder, and if you
browse back one folder from there, you will automatically be brought back to the original GROUPS subfolder again.</li>
<li>The first two groups available in the new GROUPS folder are <a href="//deepsid.chordian.net/?file=/GROUPS/Vibrants/">Vibrants</a> and <a href="//deepsid.chordian.net/?file=/GROUPS/Maniacs of Noise/">Maniacs of Noise</a>.</li>
</ul>
<h3>January 6, 2022</h3>
<ul>
<li>All new files in HVSC #76 are now connected to CSDb entries.</li>
</ul>
<h3>January 1, 2022</h3>
<ul>
<li>The avatar images for the three big lists in the bottom of the root page are back. They are now
loaded in a deferred manner to avoid bogging down the site.</li>
</ul>
<h3>December 31, 2021</h3>
<ul>
<li>All the SID files uploaded to the SH folder this year has now been moved into a <a href="//deepsid.chordian.net?file=/SID Happens/2021/">2021</a> sub folder.</li>
<li>External links pointing to the root SH folder now redirects to the new year folder.</li>
</ul>
<h3>December 30, 2021</h3>
<ul>
<li>Improved the default search query to also look for the real names of composers. For example, a
search for <a href="//deepsid.chordian.net/?search=thomas">Thomas</a> will now also return folders such as those for DRAX, Laxity, etc.</li>
</ul>
<h3>December 28, 2021</h3>
<ul>
<li>The 8 new 2SID files in HVSC #76 (i.e. that uses 6 voices) has now been added as
<a href="//deepsid.chordian.net/?file=/_Exotic%20SID%20Tunes%20Collection/Stereo%202SID&here=1&search=76&type=new&tab=csdb">exotic stereo files</a>.</li>
<li>Upgraded the WebSid (HQ) emulator. A hack (not a real fix) has been implemented that allows it to play
Adam Morton's problematic <a href="//deepsid.chordian.net/?file=/MUSICIANS/M/Morton_Adam/Synthmeld.sid">Synthmeld.sid</a> song.</li>
<li>The STIL report link now only appears inside the HVSC folder structure.</li>
<li>Superfluous URL switches are now discarded when going back one folder, to the root, or changing folder.</li>
</ul>
<h3>December 25, 2021</h3>
<ul>
<li>Added composer profiles for the new folders in HVSC #76.</li>
</ul>
<h3>December 24, 2021</h3>
<ul>
<li>The <a href="https://www.hvsc.c64.org/" target="_top">High Voltage SID Collection</a> has been upgraded to the latest version #76.</li>
</ul>
<h3>December 23, 2021</h3>
<ul>
<li>Improved when the folder button for tags in the sundry box is actually supposed to be visible.</li>
</ul>
<h3>December 12, 2021</h3>
<ul>
<li>If the annex box is showing external composer links, it is now automatically refreshed when
another composer profile page is shown.</li>
<li>The list of external links for a composer is now sorted alphabetically.</li>
</ul>
<h3>December 11, 2021</h3>
<ul>
<li>You can now add external links to a composer profile. Click the new link in the line with the star ratings to
open these in the annex box. All users logged in are free to add, edit and delete these links.</li>
</ul>
<h3>November 29, 2021</h3>
<ul>
<li>In the tips pages for the annex box, all search links are now performed without refreshing the site.
Also, a tag in the tips pages about these can now be clicked to search for it.</li>
</ul>
<h3>November 27, 2021</h3>
<ul>
<li>Improved the handling of how the STIL tab is named, depending on the context.</li>
<li>The STIL tab is now called <code>Notes</code> whenever a file from the SH folder is played.</li>
</ul>
<h3>November 24, 2021</h3>
<ul>
<li>Changed the logic of showing the filter settings depending on 6581 chip mode. The controls are
now disabled instead of invisible, and the chip mode button has been placed next to the tab.</li>
</ul>
<h3>November 23, 2021</h3>
<ul>
<li>Fixed not being able to alternate between WebSid (HQ) and WebSid (Legacy) properly.</li>
<li>Various filter settings can now be adjusted in a new filter tab in the sundry box. You need
to be using the WebSid (HQ) emulator for this, and the file needs to be in 6581 chip mode.</li>
</ul>
<h3>November 20, 2021</h3>
<ul>
<li>The default 6581 filter for WebSid (HQ) has now been set to R2, which is much brighter than the previous R4.</li>
<li>The vertical scrollbar should no longer appear in some web browsers, such as e.g. Firefox.</li>
<li>Hitting <code>p</code> to pop-up a tiny DeepSID now opens it in mobile mode, although it's still using WebSid (HQ).</li>
<li>Overhauled the FAQ page with links to tips in the annex box, to avoid duplicate information.</li>
</ul>
<h3>November 18, 2021</h3>
<ul>
<li>Upgraded the WebSid (HQ) emulator. It has a new filter implementation for the 6581 version, and the
centering of the scopes has been fixed.</li>
<li>Added a new <code>?notips=1</code> URL switch to avoid showing the annex box with tips.</li>
</ul>
<h3>November 16, 2021</h3>
<ul>
<li>Created an annex box in the void area to the right where random tips can now be seen. The tips in the STIL
box are no longer shown. Click the corner icon for a list of the annex tips you can choose from.</li>
</ul>
<h3>November 14, 2021</h3>
<ul>
<li>Fixed a bug that stopped autoplaying if the subtune was shorter than one second.
Thank you for spotting that one, Andreas Wallström. Try Jason Brooke's
<a href="//deepsid.chordian.net/?file=/MUSICIANS/B/Brooke_Jason/Out_Run.sid&subtune=4">Out Run</a>
or David Whittaker's <a href="//deepsid.chordian.net/?file=/MUSICIANS/W/Whittaker_David/Paddle_Mania.sid&subtune=18">Paddle Mania</a> as examples.</li>
</ul>
<h3>November 7, 2021</h3>
<ul>
<li>Fixed a bug that showed the folder button in the tags sundry box when it wasn't supposed to be.</li>
<li>Removed redundant debug code that I never really used anyway.</li>
</ul>
<h3>October 30, 2021</h3>
<ul>
<li>Removed the top line for CShellDB and PlayMOD, and instead added an invite link for Discord.</li>
<li>Fixed a bug that enabled the visuals tab when entering the SH folder while using the
YouTube SID handler.</li>
<li>Fixed empty drop-down box when entering the competitions folder.</li>
<li>Added a magenta color strip for SidTracker64 tunes.</li>
<li>Search shortcuts now show a small magnifying glass inside of their folder icons.</li>
</ul>
<h3>October 24, 2021</h3>
<ul>
<li>Overhauled how sticky sorting of SID files is handled. This also fixed a bug where a SID row
was not marked by an external link if sorting by anything other than name.</li>
<li>A recommended box in the root page now sometimes advertise for my other site,
<a href="http://csdb.chordian.net/">CShellDB</a>.</li>
</ul>
<h3>October 23, 2021</h3>
<ul>
<li>The <a href="http://ogp.me/">Open Graph</a> title for a SID file in the SH folder should now
show the proper composer name (or handle) and title, instead of just the filename.</li>
<li>External links to a SID file that shows an avatar image now also add a small play icon in the
bottom right corner of this image, to make it clear that clicking the link will play it.</li>
</ul>
<h3>October 22, 2021</h3>
<ul>
<li>If the composer of a SID file specified in an external link has an avatar image, this will now be
displayed instead of the default play image. This also works in the SH folder.</li>
</ul>
<h3>October 18, 2021</h3>
<ul>
<li>Songs with more than one subtune now always maintain the relevant switch in the URL, regardless
of what number it is. This should fix the issue where the first subtune can't be played from an
external link.</li>
</ul>
<h3>October 13, 2021</h3>
<ul>
<li>Sorting a folder with SID files (other than the SH folder) is now sticky.</li>
<li>Fixed a bug that made the sort options in the SH folder sticky for other folders.</li>
</ul>
<h3>October 9, 2021</h3>
<ul>
<li>It is now possible to proceed to the next subtune after saving video links. Just mark the checkbox
(and optionally adjust the subtune number in the drop-down box) in the bottom left corner of the dialog box.</li>
</ul>
<h3>October 2, 2021</h3>
<ul>
<li>DeepSID's copy of <a href="http://www.c64music.co.uk/" target="_top">Compute's Gazette SID Collection</a> has now been upgraded to version 1.41.</li>
<li>SID names are now prefixed with a tiny icon (with three horizontal lines) whenever there's a STIL text entry.</li>
</ul>
<h3>September 25, 2021</h3>
<ul>
<li>In the video links dialog box, the corner link for opening multiple search tabs now
search directly in the four specific channels. This should yield more precise results.</li>
<li>Small color strips can now be seen in the beginning of SID rows for certain specific player
types. GoatTracker is gray, NewPlayer is green, Sid-Wizard is cyan, SID Factory II is blue,
and DMC is yellow.</li>
</ul>
<h3>September 24, 2021</h3>
<ul>
<li>Fixed a bug that in rare cases mixed data from multiple composers when showing both the
chart with active years and the bars with players used.</li>
<li>It is no longer possible to mark and select folders as well as context menu options.
If you want to copy a folder name, enter it and copy it from the URL box instead.</li>
</ul>
<h3>September 18, 2021</h3>
<ul>
<li><del>Removed the avatar images from the three big lists in the bottom of the root page, as the loading
of these images bogged down the site too much. With more space available, the full names of the
composers are now shown instead of the slightly shortened versions.</del></li>
</ul>
<h3>September 17, 2021</h3>
<ul>
<li>Added a new <code>?cover=1</code> URL switch to force showing the auto-play cover overlay upon refresh.</li>
<li>The <code>?wait=X</code> switch is now sticky when specified in the URL.</li>
</ul>
<h3>September 16, 2021</h3>
<ul>
<li>Changed the <code>?wait=X</code> URL switch to now wait <code>X</code> number of milliseconds
before stopping.</li>
<li>DeepSID now waits up to 10 seconds for a YouTube channel tab to start playing its video. If it
doesn't and there are more channel tabs, it will try the next one instead. (If it was the last tab,
it will try the first one.)</li>
</ul>
<h3>September 12, 2021</h3>
<ul>
<li>Added a corner link in the video links dialog box for opening multiple search tabs at once.</li>
</ul>
<h3>September 8, 2021</h3>
<ul>
<li>The dialog box for editing video links now discard rows with an empty video ID.</li>
</ul>
<h3>September 5, 2021</h3>
<ul>
<li>The video ID in the dialog box for editing video links now accept the time offset parameter.
For example, typing <code>Gro7n1oqHUo?t=63</code> will start the video 63 seconds later.</li>
</ul>
<h3>September 3, 2021</h3>
<ul>
<li>Searching for YouTube videos now also include the name of the author.</li>
<li>Opening the dialog box for editing video links now always offer three commonly used
channel options.</li>
</ul>
<h3>August 31, 2021</h3>
<ul>
<li>Added a new <code>?wait=1</code> URL switch for selecting a specific song but not play it yet.</li>
</ul>
<h3>August 29, 2021</h3>
<ul>
<li>A new SID handler for <b>YouTube videos</b> has been added. You can select it in the top left
drop-down box. Note that only SID rows that have video links are enabled. Since this is a new
feature in DeepSID, there are of course an abundance of disabled rows for now. More video
links will be added over time.</li>
<li>Most of the the standard DeepSID controls will control a YouTube video. You can even
click somewhere in the time progress bar to jump to another spot in the video.</li>
<li>A dialog box has been added for editing video links. To open it, right-click a SID row
(disabled or not) and choose <b>Edit YouTube Links</b>. You can add up to five tabs with
YouTube video links for the same song or subtune, and you can also choose which one should
be the default tab when a SID row is clicked.</li>
</ul>
<h3>August 15, 2021</h3>
<ul>
<li>All scrollable areas now use the default web browser scrollbar. The custom scrollbar
jQuery plugin has been removed completely. Thanks
<a href="http://manos.malihu.gr/jquery-custom-content-scroller/" target="_top">malihu</a>
for years of service back when the default scrollbars were crude.</li>
</ul>
<h3>August 13, 2021</h3>
<ul>
<li>The browser pane with folders and files now uses a thin version of the default web
browser scrollbar instead of the custom scrollbar jQuery plugin.</li>
</ul>
<h3>August 6, 2021</h3>
<ul>
<li>Fixed search for competition folders showing incorrect results.</li>
<li>Removed the search shortcut for game composers. Apart from not being able to show all
tunes in one big list before hitting the search cap, the new big list in the root page
also makes the search shortcut redundant.</li>
<li>It is no longer possible to search for search shortcuts.</li>
</ul>
<h3>August 5, 2021</h3>
<ul>
<li>The root page now shows three big lists in the bottom – one for active composers
(that made music this year), procrastinators (made music last year) and all professional
game composers. The two first lists for this and last year may have a few "noise" entries
in them because of the way HVSC adds old tunes as new releases. I'll see what I can do
to iron these out over time.</li>
<li>Added the CSDb music competitions related to HVSC #75.</li>
</ul>
<h3>August 2, 2021</h3>
<ul>
<li>All new files in HVSC #75 are now connected to CSDb entries.</li>
</ul>
<h3>August 1, 2021</h3>
<ul>
<li>Fixed a bug where the table cell with star ratings was sometimes pushed too small.</li>
<li>Improved the handling of pretty player names which fixed a few odd adaptations of the tiny ones.</li>
<li>The pretty player names for JCH's NewPlayer series now also show if the tune is unpacked.</li>
<li>On CSDb release pages, all download links for PRG files now also offer an alternative C64 link.
The file is exactly the same, only the extension is different. The advantage is that you can
associate it with an offline emulator such as VICE and run it directly from your web browser.
This is not always possible with PRG files.</li>
<li>Fixed a bug that sometimes added commas in the copyright field when uploading tunes.</li>
<li>Improved the handling of copyright year when uploading tunes.</li>
</ul>
<h3>July 31, 2021</h3>
<ul>
<li>Added three search shortcuts in the first level of the HVSC folder:
<ul>
<li>A search shortcut for multispeed finds all tags with "Multispeed" or "2x" and up to "16x" speeds.</li>
<li>A search shortcut for multisid finds all "2SID", "3SID", "4SID", "8SID" and "10SID" tunes.</li>
<li><del>A search shortcut for game composers finds all soundtracks from popular game composers.</del></li>
</ul>
</li>
</ul>
<h3>July 20, 2021</h3>
<ul>
<li>You can now also search for the files added in the latest HVSC update by someone. Choose
<code>Latest</code> and then type the name to do this. If you want to be certain that only a
specific composer is matched, add a slash in the end. For example, "tomas/" will only show
hits for Danko. Append e.g. ",72" for that HVSC version.</li>
<li>A new type of folder item called a <i>search shortcut</i> has been added to DeepSID. This
has been used inside the first level folder of HVSC to search for new stuff in the latest
five HVSC updates.</li>
<li>The second search shortcut for folders is a special search that lists folders in HVSC (mostly by composers)
that contains files added in the latest HVSC update. Each folder shown in the search results
are actually new search shortcuts. Clicking one shows only those new files.</li>
</ul>
<h3>July 17, 2021</h3>
<ul>
<li>The cover overlay for auto-playing a tune is no longer shown if not necessary.</li>
</ul>
<h3>July 13, 2021</h3>
<ul>
<li>The 4 new 2SID files in HVSC #75 (i.e. that uses 6 voices) has now been added as
<a href="//deepsid.chordian.net/?file=/_Exotic%20SID%20Tunes%20Collection/Stereo%202SID&here=1&search=75&type=new&tab=csdb">exotic stereo files</a>.</li>
</ul>
<h3>July 12, 2021</h3>
<ul>
<li>The <a href="https://www.hvsc.c64.org/" target="_top">High Voltage SID Collection</a> has been upgraded to the latest version #75.</li>
<li>Added composer profiles for the new folders in HVSC #75.</li>
</ul>
<h3>June 26, 2021</h3>
<ul>
<li>Upgraded the WebSid (HQ) emulator. Updated noise-WF implementation (with combined-WF handling)
and floating-WF handling. Check <a href="//deepsid.chordian.net/?file=/MUSICIANS/M/Mixer/Soundcheck.sid">Soundcheck.sid</a>
and <a href="//deepsid.chordian.net/?file=/SID%20Happens/Cubase64.sid">Cubase64.sid</a> to hear these improvements.</li>
</ul>
<h3>May 13, 2021</h3>
<ul>
<li>The GB64 tab is now available in the SH folder as I may add links there to new game soundtracks.</li>
</ul>
<h3>May 2, 2021</h3>
<ul>
<li>Imported the new GameBase64 collection v17 with new game entries and screenshots.</li>
</ul>
<h3>January 26, 2021</h3>
<ul>
<li>Fixed database errors for <a href="//deepsid.chordian.net/?file=/MUSICIANS/A/Acrouzet/Puzzled-Background_Music_IV.sid">Puzzled-Background_Music_IV.sid</a>
and <a href="//deepsid.chordian.net/?file=/GAMES/A-F/Desert_Decision.sid">Desert_Decision.sid</a>.</li>
</ul>
<h3>January 24, 2021</h3>
<ul>
<li>Fixed a bug that caused the WebSid (HQ) emulator to report using CIA when in fact it was using VBI.</li>
</ul>
<h3>January 6, 2021</h3>
<ul>
<li>Upgraded the WebSid (HQ) emulator. Fixed a pulse initialization bug that affected PollyTracker songs.</li>
</ul>
<h3>December 30, 2020</h3>
<ul>
<li>The tags for unique waveforms (<b>$31</b>, <b>$61</b> and <b>$71</b>) are now hidden as they
added too much clutter to songs. However, it's still possible to add or remove them, and you
can also still search for them. Nevertheless they are now partly deprecated and thus I will
personally not add them to new songs anymore.</li>
<li>You can now right-click any playlist folder and download it from the context menu. You can do
this to all playlists, even those you don't own. The playlist will be downloaded as a ZIP file.</li>
</ul>
<h3>December 29, 2020</h3>
<ul>
<li>Upgraded the WebSid (HQ) emulator. Rolled back the anti-aliasing introduced by the December 1
upgrade. Fixed an issue with non-BASIC songs that still use BASIC.</li>
<li>Added the CSDb music competitions related to HVSC #74.</li>
<li>All new files in HVSC #74 are now connected to CSDb entries.</li>
<li>Fixed a bug where the unselected CSDb tab showed a notification dot when no entry was available.</li>
</ul>
<h3>December 28, 2020</h3>
<ul>
<li>The 8 new 2SID files in HVSC #74 (i.e. that uses 6 voices) has now been added as
<a href="//deepsid.chordian.net/?file=/_Exotic%20SID%20Tunes%20Collection/Stereo%202SID&here=1&search=74&type=new&tab=csdb">exotic stereo files</a>.</li>
<li>All the SID files uploaded to the SH folder this year has now been moved into a <a href="//deepsid.chordian.net?file=/SID Happens/2020/">2020</a> sub folder.</li>
<li>External links pointing to the root SH folder now redirects to the new year folder.</li>
</ul>
<h3>December 23, 2020</h3>
<ul>
<li>Added composer profiles for the new folders in HVSC #74.</li>
</ul>
<h3>December 21, 2020</h3>
<ul>
<li>The <a href="https://www.hvsc.c64.org/" target="_top">High Voltage SID Collection</a> has been upgraded to the latest version #74.</li>
</ul>