-
Notifications
You must be signed in to change notification settings - Fork 6
/
changelog.html
1182 lines (560 loc) · 35.7 KB
/
changelog.html
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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Changelog</title>
<link id="theme-style" rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="favicon-halloween.png" type="image/x-icon">
<script src="theme-toggle.js" defer></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons+Round">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
</head>
<body>
<div class="banner-changelog" id="tint">
<ul>
<li class="right"> </li>
<li class="right"><a href="sources.html">Sources</a></li>
<li class="right"><a href="media.html">Media</a></li>
<li class="right"><a href="archives.html">Archives</a></li>
<li class="right"><a href="tos.html">Terms of Service</a></li>
<li class="right"><a href="meet-the-developers.html">Meet the Developers</a></li>
<li class="right"><a href="help.html">Help</a></li>
<li class="right"><a href="changelog.html" class="active">Changelog</a></li>
<li class="right"><a href="news.html">Newsletter</a></li>
<li class="right"><a href="index.html">Start</a></li>
<li class="left"><a href="index.html" style="font-size: 22px;"><img src="favicon-halloween.png" class="logo" alt=""></a></li>
<li class="left">
<select id="theme-selector">
<option value="style.css">Light Theme</option>
<option value="dark.css">Dark Theme</option>
<option value="matrix.css">Matrix Theme</option>
<option value="future.css">Future Theme</option>
<option value="blue.css">Blue Theme</option>
<option value="legacy-light.css">Legacy Light</option>
<option value="legacy-dark.css">Legacy Dark</option>
</select>
</li>
</ul>
<div class="overlay"><div id="fullbright"><br><br><br><h1 class="header" style="color: white; font-size: 81px; filter: none;">Changelog</h1></div></div>
</div>
<br><br><br>
<audio style="display: none;" controls autoplay loop src="audio/thick.mp3"></audio>
<div class="container">
<a href="index.html"><button class="nav-button">Home 🏡</button></a>
</div>
<br><br>
<p><b>NOTE!</b> git[x.x.x] is referring to the version relative to the Github release.</p><br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">9.0.1 (git3.0.1) - The Restoration</p><br><p style="line-height: 45px;">
[+] Exploits Section <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">9.0.0 (git3.0.0) - The Restoration</p><br><p style="line-height: 45px;">
[!] The v6.wiki restoration has started! Fill out the help form for your favorite game to be added! <br>
[+] Dadish 3 <br>
[+] Minecraft on Classplay <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">8.6.4 (git2.6.4)</p><br><p style="line-height: 45px;">
[+] October Lunch Menu 🥪 <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">8.6.3 (git2.6.3)</p><br><p style="line-height: 45px;">
[-] OOGA BOOGA removed <br>
[+] Terms of Service updated <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">8.6.2 (git2.6.2)</p><br><p style="line-height: 45px;">
[+] SprintingSnail has joined the devs! 🥳 <br>
[+] TurboWarp <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">8.6.1 (git2.6.1)</p><br><p style="line-height: 45px;">
[+] Turbowarp <br>
[-] Classboard text next to logo (navbar) <br>
[+] Lots of bug fixes <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">8.6.0 (git2.6.0)</p><br><p style="line-height: 45px;">
[+] Live Support <br>
[-] Music Player <br>
[+] New README.md for Github profile <br>
[+] Bug fixes and other tweaks <br>
[+] TurboWarp (fast Scratch) <br>
[-] Text next to logo (navbar)
[-] Scratch (got Blocked you will be missed 😭)
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">8.5.2 (git2.5.2)</p><br><p style="line-height: 45px;">
[+] Blinded by SprintingSnail <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">8.5.1 (git2.5.1)</p><br><p style="line-height: 45px;">
[+] iCivics <br>
[+] OpenGuessr <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">8.5.0 (git2.5.0)</p><br><p style="line-height: 45px;">
[+] Chatrooms <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">8.4.0 (git2.4.0)</p><br><p style="line-height: 45px;">
[+] Login page <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">8.3.0 (git2.3.0)</p><br><p style="line-height: 45px;">
[+] Classroom6x, Unblocked Games 77, and others are back! <br>
[+] Unblocked a lot of pages <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">8.2.0 (git2.2.0)</p><br><p style="line-height: 45px;">
[+] September Lunch Menu <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">8.1.0 (git2.1.0)</p><br><p style="line-height: 45px;">
[+] Classboard Docs <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">8.0.0 (git2.0.0) - The Music Update</p><br><p style="line-height: 45px;">
[+] NEW Music Player!!! <br>
[+] Vex 5 <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">7.2.2 (git1.1.2)</p><br><p style="line-height: 45px;">
[+] Math Playground <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">7.2.1 (git1.1.1)</p><br><p style="line-height: 45px;">
[-] Sadly, we had to remove LOTS of games :( <br>
[+] New keybinds <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">7.2.0 (git1.1.0)</p><br><p style="line-height: 45px;">
[+] August Lunch Menu <br>
[ℹ️] Over 100 Commits! <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">7.1.0 (git1.0.0) - Github Release</p><br><p style="line-height: 45px;">
[+] browser.lol (Proxie) <br>
[ℹ️] Goodbye Google Sites :(<br>
[ℹ️] URL changed to <a href="https://use-classboard.github.io" target="_blank" style="color: dodgerblue; text-decoration: underline;">use-classboard.github.io</a> <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">7.0.0 - A Year Like No Other</p><br><p style="line-height: 45px;">
[+] EVEN MORE Minecraft Clients!!! (Made by cobblesteve01!) <br>
[+] Finish up the hunt fast! Submissions will be starting soon.<br>
[+] Less than TEN days of school left!!!<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -30px;">6.9.2</p> <br><p style="line-height: 45px;">
[-] Youtube Card for cobblesteve01 <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">6.9.1</p><p style="line-height: 45px;">
[+] YouTube card for cobblesteve01 <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">6.9.0</p><p style="line-height: 45px;">
[+] Happy Birthday Hinkley! <br>
[+] Moved some gems around for The Hunt <br>
[+] Canva <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">6.7.0</p><p style="line-height: 45px;">
[+] The Hunt! 2024 <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">6.6.0</p><p style="line-height: 45px;">
[+] May Lunch Menu! <br>
[+] Bug fixes and other tweaks <br>
[-] Removed "New File" button from Classboard IDE <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">6.5.0</p><p style="line-height: 45px;">
[+] Classboard IDE (Integrated Development Environment) <br>
[+] Summer break countdown <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">6.4.1</p><p style="line-height: 45px;">
[+] Two Player Games <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">6.4.0</p><p style="line-height: 45px;">
[+] We continue cooking with Shell Shockers!! <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">6.3.0</p><p style="line-height: 45px;">
[+] BRAWL STARS (the team is actually cooking) <br>
[+] Android APK <br>
[+] Minecraft 1.20 (we're a fire hazard) <br>
[+] Ultimate Chrome 3 (put the fire out) <br>
[+] Bug fixes and other tweaks :) <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">6.2.2</p><p style="line-height: 45px;">
[+] Fixed v6.wiki <br>
[+] apk for Android is almost ready! <br>
[+] Fixed Android Error <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">6.2.1</p><p style="line-height: 45px;">
[+] Sapphire Games <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">6.2.0</p><p style="line-height: 45px;">
[+] April Lunch Menu <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">6.1.0</p><p style="line-height: 45px;">
[+] Fixed EaglercraftX Online <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">6.0.1</p><p style="line-height: 45px;">
[+] cute puppy video <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">6.0.0 - APRIL FOOLS!</p><p style="line-height: 45px;">
[+] Minecraft Online! <br>
[+] n64 <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">5.9.0</p><p style="line-height: 45px;">
[+] Download packs, worlds, and see servers! (Minecraft) <br>
[+] New source, Eaglercrack <br>
[+] Chat rooms are down <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">5.8.0</p><p style="line-height: 45px;">
[+] Minecraft Indev <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">5.7.0</p><p style="line-height: 45px;">
CHAT ROOM OUT NOW!!!!!! <br>
[+] Brawlstars <br>
[-] Craziest Games (Blocked) <br>
[-] Classroom7x (Doesn't Work) <br>
[-] neal.fun (Blocked) <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">5.6.0</p><p style="line-height: 45px;">
[+] Github <br>
[+] Nitro Racing <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">5.5.0</p><p style="line-height: 45px;">
[+] Chatroom (Pre-release) <br>
[+] Snake <br>
[+] Minesweeper <br>
[+] Tetris <br>
[-] Roblox <br>
[+] March Lunch Menu <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">5.4.0</p><p style="line-height: 45px;">
[+] Roblox! (REAL) <br>
[+] 1v1.LOL <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v5.3.1</p><p style="line-height: 45px;">
[+] Stick Merge <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v5.3.0</p><p style="line-height: 45px;">
[+] Bruny's IXL <br>
[+] Cookie Clicker <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v5.2.1</p><p style="line-height: 45px;">
[-] Maurice Thompson has been fired. <br>
[+] Ryan Kim's "Meet the Developer" bio. <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v5.2.0</p><p style="line-height: 45px;">
[+] Monkey Mart <br>
[+] Landon Pennington's "Meet the Developer" bio. <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v5.0.1</p><p style="line-height: 45px;">
[+] Fixed some linking bugs with the buttons <br>
[+] Fortnite Policy <br>
[+] Other bug fixes and tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v5.0.0 - The Web Update</p><p style="line-height: 45px;">
[+] Bing <br>
[+] Great Migration <br>
[+] Minecraft 1.9.4 Screenshot <br>
[-] CGS <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.9.1</p><p style="line-height: 45px;">
[+] Scratch Note <br>
[+] YTMP4 <br>
[-] Taylor Swift 2048 (Thank God) <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.9.0</p><p style="line-height: 45px;">
[+] Minecraft 1.8.8 <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.8.1</p><p style="line-height: 45px;">
[+] Soundboard Guys <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.8.0</p><p style="line-height: 45px;">
[+] Classboard Games Studio <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.7.1</p><p style="line-height: 45px;">
[+] Atlantis Emulator <br>
[+] Bug fixes and other tweaks <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.7.0</p><p style="line-height: 45px;">
[+] Study Packets <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.6.2</p><p style="line-height: 45px;">
[+] Super Mario Bros Wild Team Studio <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.6.1</p><p style="line-height: 45px;">
[+] Taylor Swift 2048 <br>
[-] Pencil Scratching ASMR <br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.6.0</p><p style="line-height: 45px;">
[+] MINECRAFT!!!<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.5.1</p><p style="line-height: 45px;">
[+] Bracket Creator (March Madness)<br>
[+] Basketball (Classboard Media)<br>
[+] Watch March Madness<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.5.0</p><p style="line-height: 45px;">
[+] Free Games Sites<br>
[+] Classboard Media<br>
[+] MemeZ<br>
[+] Sports
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.4.4</p><p style="line-height: 45px;">
[+] Little Alchemy<br>
[+] Nuke Map<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.4.3</p><p style="line-height: 45px;">
[-] ShellShockers (Blocked)<br>
[-] Unblocked Games Premium (Blocked)<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.4.2</p><p style="line-height: 45px;">
[+] Youtube!<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.4.1</p><p style="line-height: 45px;">
[+] You can now request music!<br>
[+] Fixed some embed bugs on Classboard Music<br>
[-] Archived the Point Shop<br>
[+] Other bug fixes and tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.4.0</p><p style="line-height: 45px;">
[+] Classboard Music (After a LONG time)<br>
[+] More bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.3.3</p><p style="line-height: 45px;">
[+] Interland! (Remember this?)<br>
[+] Craziest Games<br>
[+] LOTS of bug fixes<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.3.2</p><p style="line-height: 45px;">
[+] New Lunch Menu<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.3.1</p><p style="line-height: 45px;">
[+] Clixer By Adam El Shayeb<br>
[+] Fullscreen for every version of Geometry Dash<br>
[+] LOTS of bug fixes and tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.3.0</p><p style="line-height: 45px;">
[+] RICO<br>
[+] Funky House<br>
[+] Voyage<br>
[+] Final Way<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.2.3</p><p style="line-height: 45px;">
[+] Added Savvas Realize login page<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.2.2</p><p style="line-height: 45px;">
[+] Afterlife (Geometry Dash)<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.2.1</p><p style="line-height: 45px;">
[+] Fixed a bug with Divine Emancipation<br>
[+] More bug fixes<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.2.0</p><p style="line-height: 45px;">
[+] GD Levels 4 - 6<br>
[+] GD Levels 7 and 8<br>
[+] GD Levels 9 - 13<br>
[+] GD Levels 14 and 15<br>
[+] GD Levels 16 - 21<br>
[+] Divine Emancipation (Geometry Dash)<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.1.2</p><p style="line-height: 45px;">
[+] Changed Geometry Dash 2.2 logo<br>
[+] Gavin's Youtube<br>
[+] Geometry Dash FUTRA<br>
[+] nBlocked Games<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.1.1</p><p style="line-height: 45px;">
[+] Geometry Dash Wave<br>
[+] Geometry Dash 2.2<br>
[+] Destiny Discover<br>
[+] Weather Forecast<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.1.0</p><p style="line-height: 45px;">
[+] Classboard Section<br>
-More from Classboard<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v4.0.0 - The Geometry Update</p><p style="line-height: 45px;">
[+] Geometry Dash v1.5<br>
[+] Geometry Dash Subzero<br>
[+] Geometry Dash Meltdown<br>
[+] Geometry Dash World (Dashlands)<br>
[+] Geometry Dash World (Toxic Factory)<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v3.8.0</p><p style="line-height: 45px;">
[+] Unblocked 66 EZ<br>
[+] Terms of Service<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v3.7.1</p><p style="line-height: 45px;">
[+] Oregon Trail<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v3.7.0</p><p style="line-height: 45px;">
[+] Adjusted to original theme<br>
-Classboard Times<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v3.6.1</p><p style="line-height: 45px;">
[+] GeoGuesser<br>
[+] Edulastic<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v3.6.0</p><p style="line-height: 45px;">
[+] Shell Shockers<br>
[+] Added a New Years theme to Classboard<br>
[-] Christmas Sale<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v3.5.1</p><p style="line-height: 45px;">
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v3.5.0</p><p style="line-height: 45px;">
[+] A new fresh, modern look for easier access<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v3.4.1</p><p style="line-height: 45px;">
[+] Google Doodles home page<br>
[+] Gizmos is now on the Student Services<br>
[+] Google Sites Link<br>
[+] Repilit Link<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v3.4.0</p><p style="line-height: 45px;">
-Removed Version on Home Page<br>
[+] The Champion Island Games<br>
[+] Updated Terms of Service<br>
[+] Updated 'A Message to You' Billboard<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v3.3.0</p><p style="line-height: 45px;">
[+] More from Classboard<br>
[+] Clean and Updated Look<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v3.2.2</p><p style="line-height: 45px;">
[-] Removed Tyrone's Unblocked Games<br>
[+] Re-added the Daily Poll<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v3.2.1</p><p style="line-height: 45px;">
[-] Removed the Daily Poll<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v3.2.0</p><p style="line-height: 45px;">
[+] New Navigation<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v3.1.1</p><p style="line-height: 45px;">
[+] Version moved to bottom of page<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v3.1.0</p><p style="line-height: 45px;">
[+] Classboard v3.0 Presentation<br>
[+] Badges System<br>
[+] 'New to Classboard?' Billboard Updated<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v3.0.0 - The Product Update</p><p style="line-height: 45px;">
[+] Classboard Beta Program<br>
[+] Classboard Gift<br>
[+] Night Mode<br>
[+] Merged FAQ with Requests and Feedback<br>
[+] Twelve Days of Points Coming Soon!<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.8.1</p><p style="line-height: 45px;">
[+] Unblocked Games World<br>
[+] Tyrone's Games<br>
[+] Unblocked Games WTF<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.8.0</p><p style="line-height: 45px;">
[+] Christmas Sale!<br>
[+] Christmas Theme!<br>
[+] New "Point Shop!"<br>
[+] New employee: Jack Blakely <br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.7.0</p><p style="line-height: 45px;">
[+] Info in point shop<br>
[+] How did you learn about classboard? form<br>
-Billboard<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.6.3</p><p style="line-height: 45px;">
[+] Updated the Weekly News<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.6.2</p><p style="line-height: 45px;">
-Teachers View (Still in archives!!)<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.6.1</p><p style="line-height: 45px;">
[+] Tomb of the Pharaoh in the "Games" section<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.6.0</p><p style="line-height: 45px;">
[+] Duolingo to "Other Services"<br>
[+] New "Mission Statement" on the home page<br>
[+] New "Guess the Number Competition" on the home page!<br>
[-] Removed the Leveling System<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.5.0</p><p style="line-height: 45px;">
[+] Fun Games 69<br>
[+] Teacher Mode FAQ<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.4.9</p><p style="line-height: 45px;">
- Removed Cooking Games (Blocked)<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.4.8</p><p style="line-height: 45px;">
[+] Cooking Games<br>
[+] VEX IQ Programming<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.4.7</p><p style="line-height: 45px;">
[+] Moved Employees List to Requests and Feedback<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.4.6</p><p style="line-height: 45px;">
[+] Hall Pass<br>
[+] Edited Welcome Page<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.4.5</p><p style="line-height: 45px;">
[+] Form for joining the team<br>
[+] EZ Classwork<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.4.4</p><p style="line-height: 45px;">
[+] Peardeck<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.4.3</p><p style="line-height: 45px;">
[+] TONS of Google links<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.4.2</p><p style="line-height: 45px;">
[-] Some websites have been removed due to blockings<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.4.1</p><p style="line-height: 45px;">
[+] CloudConvert<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.4.0</p><p style="line-height: 45px;">
[+] New Leveling System<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.3.1</p><p style="line-height: 45px;">
[+] Terms of Service changes<br>
[+] Improved Newsletter<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.3.0</p><p style="line-height: 45px;">
[+] Terms of Service<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.2.0</p><p style="line-height: 45px;">
[+] GameNas<br>
[+] Meet The Developers: Thomas Denson<br>
[+] Meet The Developers: Adam El Shayeb<br>
[+] Contact for Thomas Denson <br>
[+] The Canvas Edition<br>
[+] Pizza3x<br>
[+] New Team Member: Thomas Denson<br>
[+] Bug fixes and other tweaks<br>
<p style="font-weight: bold; font-size: 30px; margin-bottom: -20px;">v2.1.0</p><p style="line-height: 45px;">