-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathArchiveChanges.json
3121 lines (3120 loc) · 98.9 KB
/
ArchiveChanges.json
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
[
{
"Date": "19/Sep/24",
"Changes": [
{
"Icon": "OITG.png",
"Name": "OpenITG",
"List": [
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/OPENITG/NotITG-v4.9-UpgradePack.zip'>NotITG v4.9.</a>"
]
},
{
"Icon": "SM40.png",
"Name": "StepMania 4",
"List": [
"<a href='https://objects-us-east-1.dream.io/smbuilds/SM4/Cross/StepmaniaX.4.0cvs.itg2.rar'>Added a build of StepManiaX</a> that contains a ITG2 theme and keymaps in it. Appears to the same as the 4.0CVS version, so its added as an option in that same entry."
]
},
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"<h3>StepMania 3.9</h3>",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=DDREncore'>StepManiaEncore</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=SMDestroyed'>StepMania Destroyed</a>.",
null,
"<h3>StepMania 3.95</h3>",
"Added screenshots for the following themes:",
"<a href='../Themes/ThemePreview.php?Category=SM3.95&ID=Staiainv2'>Staiainv2</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.95&ID=Xoon2'>Xoon2</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.95&ID=Xoon3'>Xoon3</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.95&ID=Xoon4'>Xoon4</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.95&ID=ITG355'>In The Groove 355</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.95&ID=ITGPRO'>In The Groove Pro</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.95&ID=ITG2H4X'>In The Groove H4X Edition</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.95&ID=ITG2UE'>In The Groove 2 -Ultimate Edition-</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.95&ID=SimplyLove'>Simply Love</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.95&ID=ITG3'>In The Groove 3</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.95&ID=Glass11'>Glass 1.1</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.95&ID=ITG3GOLD'>In The Groove 3 GOLD</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.95&ID=ITG2Pink'>In The Groove 2 Pink</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.95&ID=ITG2GOLD'>In The Groove 2 GOLD</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.95&ID=PHIL'>ITG PHILLLLLLL</a>."
]
}
]
},
{
"Date": "15/Aug/24",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"<h3>StepMania 5</h3>",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=DDR6thMix'>DDR 6th Mix -DDR MAX-</a>."
]
}
]
},
{
"Date": "31/Jul/24",
"Changes": [
{
"Icon": "SM40.png",
"Name": "General Archive Update",
"List": [
"Hi, sorry I was gone for a bit. Turns out during this time, a lot of links in here have been broken, so this update comes to fix all of them. This is a rolling update, so there will be multiple commits going through the missing items, updating which are broken, missing, moved, etc.",
"Huge thanks to Ryuto Setsujin, Edmspack for letting me know about these broken links."
]
},
{
"Icon": "SM39.png",
"Name": "StepMania 3.9",
"List": [
"Removed Mac version of StepMania 3.9 Release Candidate 2a, as it wasn't a thing, only RC2 was released for Mac."
]
},
{
"Icon": "SM40.png",
"Name": "StepMania 4",
"List": [
"Fixed linux download links for CVS-20060716 and CVS-20080103."
]
},
{
"Icon": "SMSSC.png",
"Name": "SM-SSC",
"List": [
"Fixed Windows download link for SM-SSC 1.0 Release Candidate 1."
]
},
{
"Icon": "SM5.png",
"Name": "StepMania 5",
"List": [
"Fixed Windows download links for both StepMania Event builds.",
"Fixed Linux download links for SM5 5.0.8 to 5.0.12.",
"Fixed download link for StepPrime Beta 0.94.5.",
"STEP MOD 2020's download link has been replaced with the archive's backup."
]
},
{
"Icon": "ETT.png",
"Name": "Etterna",
"List": [
"Fixed the rest of the missing links for Mac and Linux builds."
]
},
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"<h3>SM3.9 Plus</h3>",
"Fixed download link for <a href='../Themes/ThemePreview.php?Category=SM3.9_Plus&ID=IIDXGold'>IIDX GOLD</a>.",
"Fixed download link for <a href='../Themes/ThemePreview.php?Category=SM3.9_Plus&ID=PXII'>IIDX Gold 14th Style (Project XII)</a>.",
null,
"<h3>SM3.95</h3>",
"Fixed download link for <a href='../Themes/ThemePreview.php?Category=SM3.95&ID=Glass'>Glass</a>.",
"Fixed download link for <a href='../Themes/ThemePreview.php?Category=SM3.95&ID=ITG3Shadow'>In The Groove Shadow 3</a>.",
"Fixed download link for <a href='../Themes/ThemePreview.php?Category=SM3.95&ID=Secks'>Secks</a>.",
"Fixed download link for <a href='../Themes/ThemePreview.php?Category=SM3.95&ID=SalAndy'>salAndy3.95</a>.",
"Fixed download link for <a href='../Themes/ThemePreview.php?Category=SM3.95&ID=MB'>Mario_Blue</a>.",
"Fixed download link for <a href='../Themes/ThemePreview.php?Category=SM3.95&ID=Katt'>Katt Theme</a>.",
null,
"<h3>SM-SSC</h3>",
"Fixed download link for <a href='../Themes/ThemePreview.php?Category=SM-SSC&ID=Optical'>Optical</a>.",
"Fixed download link for <a href='../Themes/ThemePreview.php?Category=SM-SSC&ID=Moonlight'>moonlight</a>.",
null,
"<h3>StepMania 5</h3>",
"Fixed download link for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=Jounin'>Jounin - SM Creation XXIV</a>.",
null,
"<h3>ITGMania</h3>",
"Fixed download link for <a href='../Themes/ThemePreview.php?Category=ITGM&ID=simplygen'>Simply-Gensokyo</a>.",
"Fixed download link for <a href='../Themes/ThemePreview.php?Category=ITGM&ID=simplyitgmania'>Simply-ITGMania</a>.",
"Fixed download link for <a href='../Themes/ThemePreview.php?Category=ITGM&ID=simplyitgmania'>Simply Love (for ITGMania) v5.4.0</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=ITGM&ID=SimplyLove'>Simply Love v5.5.0</a>.",
"<ul>Quick reminder that Simply Love is now an ITGMania exclusive (which is a shame), so further updates will go to that section.</ul>"
]
}
]
},
{
"Date": "19/May/24",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"<h2>SM3.9</h2>",
"Every single theme currently available on the archive for StepMania 3.9 (with the exception of TDR-Mix -Original Edition-) now has screenshots! Thanks to an individual who would like to remain anonymous.",
null,
"New themes have been added:",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=Aoi'>A.O.I</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=Aoi-np2'>A.O.I -0.2</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=BeatendoV1'>Beatendo V1</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=Cheesemix2'>Cheesemix 2</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=DDRSN2'>Dance Dance Revolution SuperNOVA 2</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=DSFever'>Dancing Stage Fever</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=DSMegaMix'>Dancing Stage MegaMix Rev 4.0</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=DDR4thPlus'>DDR 4th Mix Plus</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=DDRUltramixPlus'>DDR Ultramix Plus 2.9</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=KatzeExtreme'>Katze Extreme</a>.",
"<h2><a href='#BeatUpMania'>Beat Up Mania</a></h2>",
"Created Section.",
"Moved <a href='../Themes/ThemePreview.php?Category=BeatUpMania&ID=AuditionII'>Audition II</a> from SM3.9 to this section as its meant for this build."
]
}
]
},
{
"Date": "12/May/24",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Tools Archive",
"List": [
"Added OpenSMO to the <a href='../Tools/'>tools archive</a>."
]
},
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"<h3>SM3.9</h3>",
"Fixed download link for <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=SMlp'>Stepmania Pony Mix</a>.",
"Fixed download link for <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=XIBlack'>XI Black R2+</a>."
]
}
]
},
{
"Date": "8/May/24",
"Changes": [
{
"Icon": "SM39.png",
"Name": "StepMania 3.9",
"List": [
"Added a <a href='https://objects-us-east-1.dream.io/smbuilds/SM3.9/Windows/Stepmania%20DDR%20%2B%20TECHNO%20MOTION%20FULL%20LIBERADO.zip'>A repackaged SM3.9 build by CODE: REBORN</a>, which includes a TechnoMotion based theme and content."
]
}
]
},
{
"Date": "2/May/24",
"Changes": [
{
"Icon": "SM39.png",
"Name": "StepMania 3.9",
"List": [
"Added a <a href='https://objects-us-east-1.dream.io/smbuilds/SM3.9/Windows/neonfm_2005.zip'>'final' version of Neon FM: Dance Radio</a>, which Eric Yockey just posted publicly on Rhythm Game Cabs."
]
},
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"<h2>StepMania 3.9</h2>",
"Added images to the following themes, thanks to ThePlay0987654.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=CS1'>CyberiaStyle</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=CS2'>CyberiaStyle 2</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=FFR'>Flash Flash Revolution</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=FB2'>ForeverBlue 2</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=CitySc'>CityScape</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=NPREX3'>N.PREX3 NeoStyle</a>."
]
}
]
},
{
"Date": "8/Apr/24",
"Changes": [
{
"Icon": "SM5.png",
"Name": "StepMania 5",
"List": [
"Thanks to ElGFAS for bringing these up!",
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/SM5/Windows/StepP2/StepP2%20-%20Release%20V3.0.zip'>StepP2 V3.0</a>.",
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/SM5/Windows/StepP2/StepP2%20-%20Release%20V3.1.zip'>StepP2 V3.1</a>.",
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/SM5/Windows/StepP2/StepP2%20-%20Release%20V3.2.zip'>StepP2 V3.2</a>.",
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/SM5/Windows/StepP2/StepP2%20-%20Release%20V3.4.zip'>StepP2 V3.4</a>."
]
}
]
},
{
"Date": "8/Mar/24",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"<h2>StepMania 5</h2>",
"A bunch of themes from Madkat182.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=DDR1st'>DDR 1st</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=DDR2ndMix'>DDR 2nd Mix</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=DDR3rdMix'>DDR 3rd Mix</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=DDR5thKat'>DDR 5th Mix</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=DDRX'>DDR X</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=DDREX2'>DDR Extreme 2</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=DDRDDM'>DDR DDM</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=Aoi'>Aoi</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=DDR2014'>DDR 2014</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=DDR2013Kat'>DDR 2013</a>.",
null,
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=SimplyLove'>Simply Love V5.4.0</a>.",
"<h2>Project OutFox:</h2>",
"Added <a href='../Themes/ThemePreview.php?Category=OutFox&ID=starlight-threepointzero'>XX -starlight- 3.0</a>.",
null,
"<h2>ITGMania</h2>",
"Added <a href='../Themes/ThemePreview.php?Category=ITGM&ID=SimplyLove'>Simply Love (For ITGMania) V5.4.0</a>"
]
},
{
"Icon": "ITGM.png",
"Name": "ITGMania",
"List": [
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/SM5/ITGMania/Windows/ITGmania-0.8.0-Windows-no-songs.exe'>ITGMania v0.8.0</a>."
]
}
]
},
{
"Date": "18/Feb/24",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=HPFEdition'>ITG Happy Feet! Edition</a>. Thanks to Miles DFOX for unearthing this!"
]
}
]
},
{
"Date": "18/Jan/24",
"Changes": [
{
"Icon": "OUTFOX.png",
"Name": "Project OutFox",
"List": [
"Added <a href='https://objects-us-east-1.dream.io/outfox/Windows/OutFox-AlphaV-0.5.0.0-pre042-Win64-date-20231225.exe'>Project OutFox Alpha V Playtest Public Build pre042</a>."
]
},
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"Added versions 1.6.0 and 2.0.0 of <a href='../Themes/ThemePreview.php?Category=OutFox&ID=Superuser'>superuser</a>."
]
},
{
"Icon": "SM5.png",
"Name": "StepMania 5",
"List": [
"Added three builds of StepP1 Plus:",
"<a href='https://objects-us-east-1.dream.io/smbuilds/SM5/Windows/stepp1-plus-0.9.5-beta1.zip'>StepP1 Plus v0.9.5 BETA-1</a>",
"<a href='https://objects-us-east-1.dream.io/smbuilds/SM5/Windows/stepp1-plus-0.9.5-beta2.zip'>StepP1 Plus v0.9.5 BETA-2</a>",
"<a href='https://objects-us-east-1.dream.io/smbuilds/SM5/Windows/stepp1-plus-1.0.0.zip'>StepP1 Plus v1.0.0</a>"
]
}
]
},
{
"Date": "19/Dec/23",
"Changes": [
{
"Icon": "SM39.png",
"Name": "StepMania 3.9",
"List": [
"Added decompiled packages for <a href='https://objects-us-east-1.dream.io/smbuilds/SM3.9/Windows/MGD-Decomp/MGD2/MGD-Decomp.7z'>Mungyodance 2</a> and <a href='https://objects-us-east-1.dream.io/smbuilds/SM3.9/Windows/MGD-Decomp/MGD3/MGD3-Decomp.zip'>Mungyodance 3</a>.",
"Added decompiled packages for the <a href='https://objects-us-east-1.dream.io/smbuilds/SM3.9/Windows/MGD-Decomp/MGD2/MGD-Add1-Decomp.7z'>Addon 1</a> and <a href='https://objects-us-east-1.dream.io/smbuilds/SM3.9/Windows/MGD-Decomp/MGD2/MGD-Add2-Decomp.7z'>Addon 2</a> packages for Mungyodance 2.",
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/SM3.9/Windows/ResurrecXion%20Proyect%2015.03.EXE'>ResurrecXion Proyect 15.03</a>.",
null,
"Thanks to locuuraa for the following entries.",
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/SM3.9/Windows/3DDX%20-%20Stepmania.7z'>3DDX 2-D-TECH</a>.",
"Added a <a href='https://objects-us-east-1.dream.io/smbuilds/SM3.9/Others/Pop%27n%20Music%20-%20Characters.7z'>character bundle for Pop'n'Mania (PNM Test)</a>"
]
},
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"<h2>StepMania 3.9</h2>",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=AuditionII'>Audition II</a>. Thanks to locuuraa for this entry."
]
}
]
},
{
"Date": "13/Dic/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"<h2>StepMania 5</h2>",
"Thanks to Scrypts for the pictures.",
null,
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=SM4Alpha'>StepMania 4 Alpha</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=MithrasGoneWild'>Mithras Gone Wild</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=D3NEX'>D3NEX</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=D3NEXM'>D3NEX MAXIMUM</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=minimalist'>minimalist</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=PDR'>PONY DANCE REVOLUTION -1st Party-</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=spooky_theme'>Simplicity Theme</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=optics'>optics</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=ITG2'>In The Groove 2</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=DokiDoki'>Doki Doki Dancing All Night!</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=drunkenshame'>drunken-shame</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=Gothic'>GothicTheme</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=SMSuperNova'>StepMania SuperNova V3</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=Moonlight'>Moonlight</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=TimeRift'>TimeRift</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=Optical'>Optical</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=fiftyOne'>Lambda</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=RX'>ResurrecXion Proyect</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=Britney'>Britney's Dance Beat</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=otchill'>StepMania: On The Chill</a>.",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=miquote'>miquote-adventure</a>.",
"<h2>Project OutFox:</h2>",
"Added version 0.5 of <a href='../Themes/ThemePreview.php?Category=OutFox&ID=Virtua-Steps'>Virtua Steps</a>."
]
},
{
"Icon": "SM40.png",
"Name": "Other Sims Archive",
"List": [
"<h2><a href='../OtherSims/#DazzleDazzleRealization'>Dazzle Dazzle Realization</a></h2>",
"Added <a href='https://objects-us-east-1.dream.io/smothersims/DazzleDazzleRealization/d2r2a1.lzh'>version 2.00 α1</a>. Thanks to Nemi for finding this.",
"<h2><a href='../OtherSims/#DietDietRevolution'>Diet Diet Revolution</a></h2>",
"Added <a href='https://objects-us-east-1.dream.io/smothersims/DietDietRevolution/DDR99-video-footage-2023-12-10.mp4'>gameplay footage</a>. More will come for the other entries as I get better VMs setup.",
"<h2><a href='../OtherSims/#beatmaniyari'>BEAT魔にやり</a></h2>",
"Fixed the release dates for versions 1.08 and 1.10."
]
}
]
},
{
"Date": "4/Dic/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"<h2>OutFox</h2>",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=OutFox&ID=Virtua-Steps'>Virtua Steps</a>. Thanks to Ryuto Setsujin for the pictures.",
"<h2>StepMania 5</h2>",
"Added pictures for <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=chiprev'>Chip.Revolution</a>. Thanks to wrland for the pictures.",
"<h2>StepMania 4</h2>",
"Added the <a href='../Themes/ThemePreview.php?Category=SM4&ID=CeruleanSkies'>original Cerulean Skies</a> and the HD version of <a href='../Themes/ThemePreview.php?Category=SM4&ID=CeruleanSkies2'>Cerulean Skies 2</a>. Huge thanks to velkoon for unearthing these!"
]
}
]
},
{
"Date": "28/Nov/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Other Sims Archive",
"List": [
"<h2><a href='../OtherSims/#DWI'>Dance With Intensity</a></h2>",
"We have surfaced 19 builds of the game, and are now available. Huge thanks to <a href='https://twitter.com/skoshche'>Skoshche</a> for finding these."
]
}
]
},
{
"Date": "27/Nov/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"<h2>ITGMania</h2>",
"Added <a href='../Themes/ThemePreview.php?Category=ITGM&ID=simplyitgmania'>Simply-ITGMania</a>"
]
}
]
},
{
"Date": "16/Nov/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"Added a selection of themes made for <a href='../Themes/#ITG2PC'>mDawg's In The Groove 2 PC.</a>"
]
}
]
},
{
"Date": "21/Oct/23",
"Changes": [
{
"Icon": "SM164.png",
"Name": "DDR PC Edition",
"List": [
"<h1>ANNOUNCEMENT</h1>",
"<a href='../Builds/BuildChangeLogs.php?Version=DDRPCM1'>WE HAVE FOUND IMAGES AND INFORMATION ABOUT THE M1 BUILD.</a>"
]
},
{
"Icon": "SM39.png",
"Name": "StepMania 3.95",
"List": [
"Added the missing segments of Changelogs for OpenITG builds Alpha 1 through 7. Thanks to Goofwear from unearthing these.",
"Added source packages for OpenITG builds Alpha 1 through Alpha 8."
]
},
{
"Icon": "SM40.png",
"Name": "Footage Archive",
"List": [
"Added dedicated section to download the <a href='../Footage/#ITGextras'>In The Groove Random Movies</a>."
]
},
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"<h2>StepMania 3.95:</h2>",
"Added images for Altitude. Thanks <a href='https://github.com/Assimileafy'>Assimileafy</a>!",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.95&ID=Xoon2'>Xoon 2</a>.",
"<h2>Project OutFox:</h2>",
"Fixed credits with multiple themes.",
"<h2>StepMania 5:</h2>",
"Added images to MadkaT182's Tournament.",
"Added new releases of DDR-A3-THEME",
"Added v5.3.0 release of Simply Love."
]
}
]
},
{
"Date": "13/Oct/23",
"Changes": [
{
"Icon": "SM39.png",
"Name": "StepMania 3.95",
"List": [
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/SM3.95/Windows/ITG_PoWa.rar'>ITG PoWa!</a>.",
"Added Changelogs for OpenITG builds Alpha 1 through 7."
]
},
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"<h2>StepMania 3.95:</h2>",
"Moved ITGShadow3 to this category as it is meant to be run here."
]
}
]
},
{
"Date": "7/Oct/23",
"Changes": [
{
"Icon": "SM5.png",
"Name": "StepMania 5",
"List": [
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/SM5/Windows/PC%20-%20Twerkout%20Revolution.zip'>Twerkout Revolution</a>. Totally forgot this was a thing. Thanks to DancingMaractus for showing me this again."
]
},
{
"Icon": "SM40.png",
"Name": "Other Sims Archive",
"List": [
"Added the <a href='../OtherSims/#beatsportable'>Beats Portable collection</a>."
]
}
]
},
{
"Date": "4/Jul/23",
"Changes": [
{
"Icon": "ITGM.png",
"Name": "ITGMania",
"List": [
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/SM5/ITGMania/Windows/ITGmania-0.7.0-Windows-no-songs.exe'>ITGMania v0.7.0</a>."
]
},
{
"Icon": "ITGM.png",
"Name": "ITGMania Custom Builds",
"List": [
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/SM5/ITGMania/Linux/ITGSI/itg-v0-17.zip'>In The Groove System Image V0.17</a>."
]
}
]
},
{
"Date": "29/Jun/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"Thanks to <a href='https://twitter.com/rpa2k'>Frondal</a>, there are new themes.",
"<h2>StepMania 3.9</h2>",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=oni3'>Original Nascence Interface 3</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=NewNovaE'>DDR NewNovaE</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=NeonM2'>NeonMANIA v2</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=HMZe'>Hopscotch Mix 'Zenith'</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=HMEn'>Hopscotch Mix 'Encore'</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=HMEx'>Hopscotch Mix 'Excel'</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=Shuffle'>Shuffle</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=Cobalite'>Cobalite</a>.",
"<h2>OpenITG</h2>",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=ITGAh4x'>In The Groove ANOTHER H4X EDITION</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=ITGWolfRec'>ITG RECOLOR</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=ITGICE'>In The Groove ICE</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=DDR5th'>DanceDanceRevolution 5th Mix</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=DearSis'>Dear Sister</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=Moogle'>Moogle</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=Orange'>Orange</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=PurpleDrank'>Purple DRANK</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=Tribal'>Tribal</a>."
]
}
]
},
{
"Date": "27/Jun/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"Added theme screenshots for the following themes. Thanks to Wrland for the images!",
"<a href='../Themes/ThemePreview.php?Category=SM3.9&ID=BLEACH'>BLEACH</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.9&ID=D3M'>D3Mania</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.9&ID=panzer5th'>PanzerForce 5th Mix</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.9&ID=pcd1'>pop*candy</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.9&ID=pcd2'>pop*candy 2</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.9&ID=XXM2'>XXmiX 2nd Act</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.9&ID=DDel'>東方踊々夢 ~ Dancing Delusion</a>.",
"<a href='../Themes/ThemePreview.php?Category=SM3.9_Plus&ID=PXIV'>Project XVI Anarch</a>.",
"<h2>StepMania 3.9</h2>",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=Hisoutenmai'>Touhou Hisoutenmai</a>.",
"<h2>StepMania 3.9 Plus</h2>",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9_Plus&ID=AOI-sapphire'>AOI sapphire</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9_Plus&ID=IIDX13'>IIDX13-DistorteD</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9_Plus&ID=IIDXGold'>IIDX GOLD</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9_Plus&ID=IIDXLincle'>IIDX Lincle</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9_Plus&ID=IIDXTricoro'>IIDX Tricoro</a>."
]
}
]
},
{
"Date": "25/Jun/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"<h2>StepMania 3.9</h2>",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=Mashiphoni'>StepMania - ましろ色シンフォニー - Re-make Ver.</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=KeyEdit3rd'>StepMania - Key Edition - 3rd</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=Natsuyume'>StepMania - NATSUYUME Edition -</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=Lillian2.5'>StepMania lillian ver2.5</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=Lillian3'>StepMania lillian ver3.0</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=DracuRiot'>StepMania - DRACU-RIOT! -</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=PIUPAN2'>PIU Paradise NEXT2</a>."
]
},
{
"Icon": "SM39.png",
"Name": "StepMania 3.9",
"List": [
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/SM3.9/Windows/Electronic-Beats.zip'>Electronic Beats</a>."
]
}
]
},
{
"Date": "20/Jun/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "NoteSkins Archive",
"List": [
"More noteskins have been added.",
"Link system has been fixed.",
"Quick travel has been added."
]
},
{
"Icon": "SM39.png",
"Name": "StepMania 3.9",
"List": [
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/SM3.9/Windows/Super%20Dancer%20Offline%20Xtreme.zip'>Super Dancer Offline Xtreme</a>."
]
}
]
},
{
"Date": "13/Jun/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "StepMania Archive",
"List": [
"Added a preliminary version of the <a href='../NoteSkins/'>noteskins archive</a>. It does not contain all items I've been sent so far, as I have to go through all of the submissions. Also I need to check origins for some of these submissions, due to the 3.9-SM5 conversions with multiple code segments from other authors."
]
}
]
},
{
"Date": "21/May/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Builds Archive",
"List": [
"Added view for sources in changelogs. Now you can see the link where the changelog was sourced from. Only a few builds right now have them as I have to populate them."
]
},
{
"Icon": "SM40.png",
"Name": "Theme Archive",
"List": [
"Added more versions of <a href='../Themes/ThemePreview.php?Category=OITG&ID=SLGJUVM'>SLGJUVM</a> that I recovered from my hard drives. A tip: don't override previous versions, they can become useful later."
]
},
{
"Icon": "ETT.png",
"Name": "Etterna",
"List": [
"Added Etterna 0.72.3."
]
},
{
"Icon": "OUTFOX.png",
"Name": "Project OutFox",
"List": [
"Added Project OutFox Alpha V Playtest Public Build pre041."
]
},
{
"Icon": "ITGM.png",
"Name": "ITGMania",
"List": [
"Added ITGMania 0.6.1."
]
},
{
"Icon": "SM5.png",
"Name": "StepMania 5",
"List": [
"Added Pumpsanity 0.95.2. Also added changelog info to them."
]
}
]
},
{
"Date": "20/May/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"<h2>Etterna</h2>",
"Removed Zenith, Rebith-kl and quark upon request from the author."
]
}
]
},
{
"Date": "1/May/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"Added more themes for StepMania 5.",
null,
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=DeltaNEX'>Pump It Up Delta NEX Rebirth</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=minimalist'>minimalist</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=PDR'>PONY DANCE REVOLUTION -1st Party-</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=ultimate'>Ultimate</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=spooky_theme'>Simplicity Theme</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=optics'>optics</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=paddyco_theme'>Stepmania Theme With No Name Yet</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=otchill'>StepMania: On The Chill</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=miquote'>miquote-adventure</a>."
]
}
]
},
{
"Date": "29/Apr/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"Added themes for StepMania 5 thanks to an individual who would like to remain anonymous.",
null,
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=MetroQuadX'>Metro Quad X</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=MetroQuadX-Ridiculous'>Metro Quad X (Ridiculous Mod)</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=Consensual'>Consensual</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=Consensual-Ridiculous'>Consensual (Ridiculous Mod)</a>."
]
}
]
},
{
"Date": "24/Apr/23",
"Changes": [
{
"Icon": "SM5.png",
"Name": "StepMania 5",
"List": [
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/SM5/Windows/PumpSanity-b0.95.1.zip'>PumpSanity Beta 0.95.1</a>. This is only the base game, you'll have to find the rest of the data."
]
},
{
"Icon": "SM40.png",
"Name": "Other Sims Archive",
"List": [
"Updated source links to use Internet Archive instances to perserve their contents."
]
}
]
},
{
"Date": "21/Apr/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"Added the <img width=16 src='../VersionIcon/ETT.png'> <a href='../Themes/#ETT'>Etterna section</a>. Sorry for taking so long to add it!"
]
}
]
},
{
"Date": "17/Apr/23",
"Changes": [
{
"Icon": "SM5.png",
"Name": "StepMania 5",
"List": [
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/SM5/Windows/PumpSanity.zip'>PumpSanity Beta 0.95</a>. This is only the base game, you'll have to find the rest of the data."
]
}
]
},
{
"Date": "16/Apr/23",
"Changes": [
{
"Icon": "OUTFOXA4.png",
"Name": "Project OutFox",
"List": [
"Added Project OutFox <a href='https://objects-us-east-1.dream.io/outfox/Windows/OutFox-0.4.19.LTS-Win64-date-20230414.exe'>Alpha LTS 4.19.0</a>."
]
}
]
},
{
"Date": "4/Apr/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"I've mistakenly left the Contribute link to point to my ITG 2 theme's issue section instead of the archives. That's fixed now. Thanks to Nhan for pointing this out."
]
},
{
"Icon": "SM5.png",
"Name": "StepMania 5",
"List": [
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/SM5/Windows/M4A1-Chan%202023.zip'>M4A1-Chan 2023</a>."
]
}
]
},
{
"Date": "3/Apr/23",
"Changes": [
{
"Icon": "ITGM.png",
"Name": "ITGMania",
"List": [
"Added In The Groove System Image <a href='https://objects-us-east-1.dream.io/smbuilds/SM5/ITGMania/Linux/ITGSI/itg-v0-16-final.zip'>v0.16</a>."
]
},
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"<h2>StepMania 3.9:</h2>",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=XIBlack'>XI Black R2+</a>",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=TermSoc'>Terminal社会Society</a>",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.9&ID=NEM'>NEMura Theme</a>",
null,
"<h2>StepMania 3.95:</h2>",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.95&ID=Staiainv12'>Staiainv12</a>",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.95&ID=Glass11'>Glass 1.1</a>, which is a mod of <a href='../Themes/ThemePreview.php?Category=SM3.95&ID=Glass'>Glass.</a>",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.95&ID=Conductor'>Conductor's Theme</a>"
]
}
]
},
{
"Date": "2/Apr/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"Entries now contain meta tags. This allows you to have <a href='https://josevarela.net/img/archive-embed-demo.png'>embeds</a> when linking the archive's pages.",
null,
"Thanks to <a href='https://twitter.com/rpa2k'>Frondal</a>, there are new themes.",
"<h2>StepMania 3.95:</h2>",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.95&ID=PINK'>PINK</a>",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.95&ID=SalAndy'>salAndy3.95</a>",
"Added <a href='../Themes/ThemePreview.php?Category=SM3.95&ID=PHIL'>ITG PHILLLLLLL</a> (explicit language)",
null,
"<h2>OpenITG:</h2>",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=foxymix'>foxymix</a>",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=turquoise'>turquoise</a>",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=Velocity'>Velocity</a>",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=shadow'>ITG Shadow</a>",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=ebony'>In The Groove 2 - Ebony edition</a>",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=Submetal'>ITG Submetal 2.0</a>",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=REDux'>ITG REDux</a>",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=ITG3h4x'>In The Groove 3 -h4x edition-</a>",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=ITG3Shadow'>In The Groove Shadow 3</a>",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=halloween'>Aurora Halloween</a>",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=futurex'>futurex</a>",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=ITG3'>In The Groove 3</a>",
null,
"<h2>StepMania 3.9+:</h2>",
"<a href='../Themes/ThemePreview.php?Category=SM3.9_Plus&ID=PXII'>Project XII</a> has been moved to the 3.9+ category, as it was previously on SM5."
]
}
]
},
{
"Date": "25/Mar/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"<h2>OpenITG:</h2>",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=ITGAlpha'>In the Groove 1 Alpha</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=CaveStory'>Cave Story</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=Girouette'>Girouette</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=Ikachan'>Ikachan</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=MegaGroove'>MegaGroove Network</a>.",
"Added <a href='../Themes/ThemePreview.php?Category=OITG&ID=SatellaView'>SatellaView</a>.",
null,
"<h2>General:</h2>",
"Fixed image previews due to the migration to PHP."
]
}
]
},
{
"Date": "23/Mar/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=SimplyLove'>Simply Love 5.2.1</a>.",
"Added the original <a href='../Themes/ThemePreview.php?Category=SM3.95&ID=SimplyLove'>Simply Love</a>."
]
}
]
},
{
"Date": "18/Mar/23",
"Changes": [
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=chiprev'>Chip.Revolution</a>."
]
},
{
"Icon": "SM40.png",
"Name": "Other Sims Archive",
"List": [
"Fixed download links for BEAT魔にやり."
]
},
{
"Icon": "SM5.png",
"Name": "StepMania 5",
"List": [
"Added <a href='https://objects-us-east-1.dream.io/smbuilds/SM5/Windows/STEPMOD__1.2.zip'>STEP MOD 1.2</a>."
]
}
]
},
{
"Date": "17/Mar/23",
"Changes": [
{
"Icon": "ITGM.png",
"Name": "ITGmania",
"List": [
"Added version 0.6.0."
]
},
{
"Icon": "ETT.png",
"Name": "Etterna",
"List": [
"Added versions 0.72.1 and 0.72.2."
]
},
{
"Icon": "SM40.png",
"Name": "Themes Archive",
"List": [
"Added <a href='../Themes/ThemePreview.php?Category=StepMania 5&ID=SimplyLove'>Simply Love 5.2.0</a>.",
"Split ITGM versions of Simply Love to their own category."
]
}
]
},
{
"Date": "11/Feb/23",
"Changes": [
{