-
Notifications
You must be signed in to change notification settings - Fork 598
/
updatelog.html
763 lines (727 loc) · 37.4 KB
/
updatelog.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
<html lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7FN7LEVWXD"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-7FN7LEVWXD');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="images/ico.ico" type="image/x-icon">
<title>Updates | Seraph</title>
<link rel="stylesheet" href="storage/css/updatelog.css">
<meta name="description" content="an open source games site hosting 500+ games, useful utilities, powerful settings + a clean user interface">
<meta property="og:site_name" content="seraph">
<meta property="og:title" content="seraph">
<meta property="og:type" content="website">
<meta property="og:description" content="an open source games site hosting 500+ games, useful utilities, powerful settings + a clean user interface">
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', function() {
navigator.serviceWorker.register('/offline-worker.js').then(function(registration) {
console.log('service worker initalised! scope:', registration.scope);
navigator.serviceWorker.addEventListener('message', function(event) {
if (event.data === 'cached') {
document.getElementById('cache-status').style.display = 'block';
}
});
}, function(error) {
console.log('ack, error with serviceworker! ', error);
});
});
}
</script>
</head>
<body>
<div id="content-side">
<br>
<br>
<h1>updates</h1>
<h3 style="text-align: center;"><a href="index.html" style="color: var(--text-color); text-decoration: underline;">homepage</a> • <a href="https://github.com/a456pur/seraph" target="_blank" style="text-decoration: underline; color: var(--text-color)">github</a></h3>
<select id="version-select">
<option value="v10">version 10</option>
<option value="v9">version 9</option>
<option value="v8.2">version 8.2</option>
<option value="v8.1">version 8.1</option>
<option value="v8">version 8</option>
<option value="v7.4">version 7.4</option>
<option value="v7.3">version 7.3</option>
<option value="v7.2">version 7.2</option>
<option value="v7.1">version 7.1</option>
<option value="v7">version 7</option>
<option value="v6.2">version 6.2</option>
<option value="v6.1">version 6.1</option>
<option value="v6">version 6</option>
<option value="v5.1">version 5.1</option>
<option value="v5">version 5</option>
<option value="v4">version 4</option>
<option value="v3">version 3</option>
<option value="v2">version 2</option>
<option value="v1">version 1</option>
</select>
<div id="v10" class="version-content default">
<h2>version 10</h2>
<ul>
<li>offline mode
<ul>
<li>download 200+ games from the site by clicking the download button to the left of them</li>
<li>after one game is downloaded, loading the site without an internet connection will send you to an offline version on the site where you can access downloaded games</li>
<li>supports ruffle/flash + works seamlessly with compatible games</li>
</ul>
</li>
<li>new games/apps
<ul>
<li>added 132 games
<ul>
<li>emulated games
<ul>
<li>sega genesis: comix zone, ecco the dolphin, gunstar heroes, phantasy star iv, ranger x, ristar, shining force, shinobi iii, sonic the hedgehog, sonic the hedgehog 2, streets of rage 2, vectorman, vectorman 2</li>
<li>game boy: kirby’s dreamland 2, link’s awakening dx, metroid ii, super mario land 2, warioland ii, castlevania: aria of sorrow, final fantasy tactics advance, drill dozer, pokemon yellow</li>
<li>nes: battle toads, castlevania iii, contra, duck tales, kid icarus, mega man 2, ninja gaiden, mike tyson’s punch out</li>
<li>snes: chrono trigger, contra iii, donkey kong country 3, earthbound, final fantasy iv, f-zero, super metroid, illusion of gaia</li>
<li>n64: banjo tooie, harvest moon 64, jet force gemini, mystical ninja, turok dinosaur hunter, yoshi’s story</li>
<li>nintendo ds: advance wars: days of ruin, castlevania: dawn of sorrow, castlevania: order of ecclesia, mario and luigi: partners in time</li>
</ul>
</li>
<li>flash games
<ul>
<li>abuda the alien, battle beavers, controlcraft 2, age of war, age of war 2, amorphous, bubble spinner, crush the castle, crush the castle 2, epic battle fantasy, epic battle fantasy 2, epic battle fantasy 3, fancy pants adventure 3, flood runner 2, flood runner 3, dragon boy 2, neon rider, pandemic 2, stick war, stick war 2, ultimate flash sonic, zombocalpyse, zombotron, zombotron 2, three line, bike champ, bike champ 2, corporation inc, shop empire fable, wubzzy’s amazing adventure</li>
</ul>
</li>
<li>nitrome games
<ul>
<li>canopy, cave chaos, changetype(), cheese dreams, chisel, chisel 2, ditto, feed me, final ninja, frost bite, frost bite 2, ice breaker, mutiny, nitrome must die, oodlegobs, super treadmill, swindler, test subject arena, test subject complete, twin shot, twin shot 2</li>
</ul>
</li>
<li>flipline games
<ul>
<li>cactus mccoy, cactus mccoy 2, papa louie, papa louie 2, papa louie 3, steak and jake, steak and jake: midnight march</li>
</ul>
</li>
<li>other games
<ul>
<li>backrooms 2d, basket random, csgo clicker, doom, funny shooter 2, gun fest, infinite craft, lows adventures 2, pako highway, recoil, run 3 plus, slope city, state io, sudoku, superhero drop, balloon run, crazy tunnel 3d, eaglercraft 1.8, geometry dash sky, gold digger frvr, hexgl, house of hazards, pick crafter, precision client, subway runner, xx142-b2.exe</li>
</ul>
</li>
</ul>
</li>
<li>added 4 apps
<ul>
<li>calculator: a simple calculator, allowing you to perform simple addition, subtraction, multiplication and division</li>
<li>etch a sketch: create digital pixel drawings - mimicking the experience of an etch-a-sketch with quality of life features</li>
<li>zip opener: directly upload and view/download individual files inside a zip archive</li>
<li>godoblocks: a mimick of the 2005 roblox beta era - recreated entirely in godot</li>
</ul>
</li>
<li>fixed friday night funkin & drift hunters</li>
</ul>
</li>
<li>settings overhaul
<ul>
<li>new data management section
<ul>
<li>import/export data into save files, allowing for transfer over multiple sites</li>
<li>clear all data off the site with the clear data button</li>
</ul>
</li>
<li>new panic mode
<ul>
<li>customise a panic key (defaults to ctrl+shift+p)</li>
<li>customise a panic url (defaults to https://www.desmos.com/scientific)</li>
<li>perform the shortcut on any page to instantly delete all contents of the site and redirect to the panic url</li>
</ul>
</li>
<li>custom theme updates
<ul>
<li>added ability to export and import custom themes directly into the site, allowing for ease of access switching + sharability</li>
<li>custom themes now do not require a refresh of the page every time</li>
</ul>
</li>
<li>new theme: ghostly - an abandoned town, said to be haunted by spirits lurking within</li>
<li>added open games in same tab setting</li>
<li>fixed tab cloaking not working on lots of pages, now works globally</li>
<li>tab cloak and resetting auto applies now with page refresh</li>
<li>removed tooltips to condense space</li>
<li>significantly improved animation</li>
</ul>
</li>
<li>seraphim - mobile update
<ul>
<li>mobile version is now detachable from seraph and can be hosted separately</li>
<li>converted games and apps from buttons to app icons for a more unique interface</li>
<li>blurred all theme backgrounds to help contrast content more on smaller screens</li>
<li>now integratable with ios! open seraphim in safari > more > add to home page</li>
<li>setting bars now stack instead of appearing next to each other</li>
<li>games are now sorted in alphabetical order</li>
<li>custom themes are now compatible with mobile mode</li>
<li>mobile now uses new and consolidated stylesheet</li>
<li>scripts on page now execute in one instead of being fragmented</li>
<li>removed games/apps opening in a blank tab</li>
<li>adjusted meta tags to fit the site</li>
</ul>
</li>
<li>updates page
<ul>
<li>update log page is now a dropdown menu instead of a long page - scales down from version 10 all the way to version 1</li>
<li>improved animation on page load</li>
<li>fixed header glowing bug on page, making a weird background effect</li>
</ul>
</li>
<li>other changes
<ul>
<li>homepage now has dedicated big settings button</li>
<li>shrunk down app size slightly</li>
<li>added update popup for whenever there is a new update - shown on the homepage</li>
<li>404 page now has a previous page button</li>
<li>fixed errors with 404 page styling, images and fonts</li>
<li>fixed errors with 404 linkbar links redirecting to wrong parts of the site</li>
<li>mobile users are now not automatically redirected to the mobile friendly version of the site on the homepage</li>
<li>background image bandwidth has been significantly downgraded by 50-90%</li>
<li>game thumbnails total bandwidth reduced significantly (19.2mb > 2.2mb)</li>
<li>favicon is now improved to give a more rounded design</li>
<li>fixed homepage size on mozilla browsers</li>
<li>star/cross icon is now an image icon instead of using unicode characters</li>
<li>themes.css now is used in place of having all stylesheets have different schemes</li>
<li>polished readme file, adding more content to it and removing unnecessary information</li>
<li>changed placeholder image (displays when there is no current thumbnail for a game)</li>
<li>css stylesheets have been renamed to make it easier to sort through</li>
</ul>
</li>
</ul>
</div>
<div id="v9" class="version-content">
<h2>version 9</h2>
<ul>
<li>
Added mobile edition to homepage
<ul>
<li>Mobile friendly user interface that loads fewer resources</li>
<li>Contains compatible games/apps with touchscreen, as well as preset themes and tab cloaking</li>
</ul>
</li>
<li>
Added twenty-seven brand new games
<ul>
<li>Geometry Rash, Hole.io, Sandtrix, Shapeshipper, Slope Ball, Stickman Golf, Totally Accurate Battle Simulation, Watermelon Game, Wall Smash, Crimson Fantasia, Cut the Rope, Funny Mad Racing, Geometry Dash Lite, Grand Theft Grotto, Drift Mania, Rise Higher, Burrito Bison, Pool, Redball, Redball 3, Redball 4, Redball 4 Vol 2, Redball 4 Vol 3, Rough Dino, Time Shooter, Time Shooter 2, Time Shooter 3</li>
</ul>
</li>
<li>
Added two new apps
<ul>
<li>HTML Coder, v86</li>
</ul>
</li>
<li>Added cookie consent prompt to the site</li>
<li>Retired the policy/data page due to the addition of cookie consent prompt</li>
<li>Fixed crucial bug leading games to a 404 error (e.g., Subway Surfers)</li>
<li>Fixed numerous backend bugs / various undocumented changes</li>
</ul>
</div>
<div id="v8.2" class="version-content">
<h2>version 8.2</h2>
<ul>
<li>
Added three brand new games
<ul>
<li>Ten Minutes Till Dawn</li>
<li>Volley Random</li>
<li>Waterworks</li>
</ul>
</li>
<li>Added Metro theme</li>
<li>Added open blank tab links to game page, home page, and apps page; opening your current window in a new tab</li>
<li>Removed custom cursor due to complaints / incompatible with users not enabling JavaScript</li>
</ul>
</div>
<div id="v8.1" class="version-content">
<h2>version 8.1</h2>
<ul>
<li>
Added six brand new games
<ul>
<li>Dadish</li>
<li>Dadish 2</li>
<li>Dadish 3</li>
<li>Yohoho.io</li>
<li>Snow Rider 3D</li>
<li>Tube Jumpers</li>
</ul>
</li>
<li>Added subzero theme; a theme featuring pixelated blue scenery, exploring an abandoned flooding Subzero station.</li>
</ul>
</div>
<div id="v8" class="version-content">
<h2>version 8</h2>
<ul>
<li>
Added custom themes
<ul>
<li>Custom themes allow a user to customize Seraph even more than what preset themes have to offer</li>
<li>You now have the ability to manipulate the background image, background color, font family, border/secondary border colors, hover colors, and text glow colors</li>
<li>Saves and functions just as a normal theme would, works all across the site</li>
</ul>
</li>
<li>
Added twelve brand new games
<ul>
<li>
<strong>Flash:</strong> Sprinter, Tron, 1 on 1 Soccer
</li>
<li>
<strong>Other:</strong> Bad Time Simulator, Amazing Rope Police, Celeste, Just Fall LOL, Ngon, Rocket Soccer, Stickman Climb, osu!mania, Helix Jump
</li>
</ul>
</li>
<li>
Added two brand new apps
<ul>
<li>
<strong>Turbowarp Packager:</strong> A tool that converts Scratch projects into HTML files, zip archives, or applications for Windows, MacOS, and Linux.
</li>
<li>
<strong>Turbowarp Unpackager:</strong> A tool that unpackages HTML/zip files generated by Turbowarp's packager, forkphorous, or HTMLifier into their original Scratch project.
</li>
</ul>
</li>
<li>Added mobile games genre (games that are compatible with touch screen devices)</li>
<li>Made games, apps, and update log page background static while scrolling</li>
<li>Touched up settings styling, fixing some styling issues and adjusting the layout/descriptions</li>
<li>Added scrolling to the settings page / made settings scrollbar visible</li>
<li>Reshuffled links on the home page</li>
<li>Readded previous version update onto update log</li>
<li>Updated README slightly to fix some errors</li>
</ul>
</div>
<div id="v7.4" class="version-content">
<h2>version 7.4</h2>
<ul>
<li>Added misinformation theme; featuring unreadable colors and animated backgrounds designed to ruin the aesthetic of seraph, unlockable by typing a secret code into the settings page</li>
<li>Removed header glow from update log headers for optimized performance</li>
<li>Fixed normal cursor appearing on the settings page</li>
<li>Updated meta tags to have more consistent information</li>
<li>Added search bar to the apps page</li>
<li>Moved copyright statement to the bottom of the apps page</li>
<li>Restocked some links</li>
</ul>
</div>
<div id="v7.3" class="version-content">
<h2>version 7.3</h2>
<ul>
<li>
Added eighteen brand new games
<ul>
<li>
<strong>Flash:</strong> Shop Empire, Monster Brawl, Multitask, Shift, Shift 2, Shift 3, Shift 4
</li>
<li>
<strong>Nintendo DS:</strong> Monopoly, Picross DS, WarioWare: DIY
</li>
<li>
<strong>Other:</strong> Pizza Tower, Territorial.io, 1v1.lol, Ballistic Chickens, Basketbros.io, Minecraft Classic, Deathrun 3D, Soccer Random
</li>
</ul>
</li>
<li>Added ethereal theme; a dormant forest landscape, left untouched by anyone for years</li>
<li>Revamped homepage buttons to look cleaner and appear next to each other</li>
<li>Updated settings page animation to fade in elements individually</li>
<li>Updated games page animation to tween scale</li>
<li>Adjusted layout of games page</li>
<li>Fixed normal cursor appearing over custom cursor in host and data page</li>
<li>Updated README file for GitHub to make it more clear</li>
</ul>
</div>
<div id="v7.2" class="version-content">
<h2>version 7.2</h2>
<ul>
<li>
Added fifty-one brand new games
<ul>
<li>
<strong>SNES:</strong> The Legend of Zelda: A Link To The Past, Donkey Kong Country, Donkey Kong Country 2, Super Bomberman, Mario Paint, Mega Man X, Super Mario RPG, Super Tennis, Wario's Woods
</li>
<li>
<strong>Flash:</strong> World's Hardest Game 2, Bubble Tanks 2, Choose Your Weapon, Choose Your Weapon 2, Choose Your Weapon 3, Connect 4, Electric Box, Minecraft Tower Defence 2
</li>
<li>
<strong>Nintendo DS:</strong> Cars 2, Cooking Mama, Adventure Time: Hey Ice King!, Garfield Gets Real, WarioWare: Touched, Kirby Power Paintbrush
</li>
<li>
<strong>Sega Mega Drive:</strong> Sonic and Knuckles, Altered Beast, Sonic Spinball, Sonic the Hedgehog 3, Streets of Rage, Golden Axe
</li>
<li>
<strong>Game Boy Advance:</strong> Kirby & The Amazing Mirror
</li>
<li>
<strong>Other:</strong> Champion Island, Super Mario Construct, Clicker Heroes, Stair Race 3D, Slope 2, Paper.io 3D, MotoX3M Spooky, MotoX3M Winter, Snake, Papa's Tacomia, OVO, Knife Hit, Cubefield, Burger and Frights, Chess, Friday Night Funkin: Mid Fight Masses, Thumb Fighter, Snowbattle.io, Lazy Jump 3D, Go Ball, Flippy Fish
</li>
</ul>
</li>
<li>Renamed cookies page to data page</li>
<li>Added anonymous analytic tracking</li>
</ul>
</div>
<div id="v7.1" class="version-content">
<h2>version 7.1</h2>
<ul>
<li>
Added thirty-six brand new games
<ul>
<li>
<strong>Nintendo DS:</strong> Mario and Luigi: Bowser's Inside Story, The Legend of Zelda: Spirit Tracks, The Sims 2, Tetris DS, Sonic Rush, The Sims 3, Super Princess Peach, Lego Batman
</li>
<li>
<strong>Game Boy Advance:</strong> Doom II, Duke Nukem Advance, Mario Party Advance, Mario Pinball Land, Pacman World, Rayman 3, Shrek 2, Simcity 2000, The Simpsons: Road Rage
</li>
<li>
<strong>Nintendo 64:</strong> Diddy Kong Racing, Wave Racing, Quest 64, Gex 64, Duke Nukem 64, Mortal Kombat 4
</li>
<li>
<strong>Flash:</strong> Bad Piggies, Super Mario Flash 2, Swords and Sandals, Swords and Sandals 2
</li>
<li>
<strong>Other:</strong> Wordle, Vex, Vex 2, Vex 5, Vex 7, Stack, Skibidi Toilet Attack, MotoX3M Pool, Offline Paradise
</li>
</ul>
</li>
<li>
Added two new themes
<ul>
<li>
<strong>Molten:</strong> An abandoned mineshaft, now gone to waste
</li>
<li>
<strong>Amethyst:</strong> A temple lying dormant at night, enveloped in an eerie purple aesthetic
</li>
</ul>
</li>
<li>Added new webretro app: Upload ROMs and play games on old retro devices with your browser using webretro!</li>
<li>Created four more website links</li>
<li>Fixed some mobile sizing issues</li>
<li>Adjusted some spacing briefly</li>
</ul>
</div>
<div id="v7" class="version-content">
<h2>version 7</h2>
<ul>
<li>
Added twenty-seven brand new games
<ul>
<li>
<strong>Nintendo 64:</strong> Goldeneye 007, The Legend of Zelda: Majora's Mask, Paper Mario, Mario Golf, Pokemon Stadium, Excitebike 64, Pokemon Snap, Mario Party 3
</li>
<li>
<strong>Flash:</strong> Duck Life 5, Learn to Fly 3, Bloxors, Electric Man 2, Portal, Portal 2, Skywire 2
</li>
<li>
<strong>Game Boy Advance:</strong> Golden Sun, Metroid Fusion, Dragon Ball Z: Supersonic Warriors, Wario Land 4, Sonic Advance 2
</li>
<li>
<strong>Other:</strong> Duck Life 6, Boxing Random, Cell Machine, Stickman Boost, Vex 3, Vex 4, Skibidi Toilet 1v100
</li>
</ul>
</li>
<li>
Added website themes setting
<ul>
<li>Personalize your Seraph experience by choosing from a selection of custom themes from the settings menu</li>
<li>
<strong>Azurite:</strong> Enjoy the main Seraph theme but enveloped in a dark and warm tint of blue
</li>
<li>
<strong>Retro:</strong> A blast to the past theme, featuring retro-like aesthetics and pixelated backgrounds/fonts
</li>
<li>
<strong>Cosmic:</strong> A mysterious space station, with no visible signs of life in sight...
</li>
</ul>
</li>
<li>
Added starred games feature
<ul>
<li>Click on the star icon on any game to add it to the starred games section</li>
<li>Starred games appear above every other game</li>
<li>Saves to your browser, works with genre sorting and search bar</li>
</ul>
</li>
<li>Added Weavesilk app to the apps page</li>
<li>Added Google Drive cloak</li>
<li>Renamed cloaking tab page to settings page</li>
<li>Added four new links for Seraph</li>
<li>Redid backgrounds for 404, settings, host and home page</li>
<li>Added notice for how Seraph handles cookies and local storage, accessible from the homepage</li>
<li>Adjusted games page styling slightly to add more spacing and made text slightly smaller</li>
<li>Fixed cloaking on Windows 11 app</li>
<li>Attempted to fix 404 page styling on some 404 instances</li>
</ul>
</div>
<div id="v6.2" class="version-content">
<h2>version 6.2</h2>
<ul>
<li>
Added thirty-nine brand new games
<ul>
<li>
<strong>Nintendo 64:</strong> Doom 64, Banjo Kazooie, Donkey Kong 64, F-Zero X, Kirby 64, Mario Kart 64, Mario Party, Mario Party 2, The Legend of Zelda: Ocarina of Time, Star Fox 64, Super Smash Bros
</li>
<li>
<strong>Game Boy Advance:</strong> Street Fighter 2, Advance Wars 2, Harvest Moon, Mario Tennis, Mega Man Zero, Pokemon Mystery Dungeon, Pokemon Unbound
</li>
<li>
<strong>Flash:</strong> Papa's Bakeria, Papa's Cupcakeria, Papa's Cheeseria, Papa's Pastaria, Gun Mayhem 2, Gun Mayhem Redux, Achievement Unlocked 2, Achievement Unlocked 3, Factory Balls, Skywire, Super Mario Flash
</li>
<li>
<strong>Nintendo DS:</strong> Mario Party DS, Professor Layton, Scribblenauts
</li>
<li>
<strong>Other:</strong> Bad Ice Cream, Bad Ice Cream 2, Bad Ice Cream 3, Adventure Capitalist, Monkey Mart, Getaway Shootout, Rabbit Samurai
</li>
</ul>
</li>
<li>
Added two brand new apps
<ul>
<li>
<strong>Windows 11:</strong> a recreation of Windows 11 inside of React, which can be run through a web browser
</li>
<li>
<strong>Turbowarp:</strong> a Scratch mod which introduces lots of quality of life changes + compiles projects to JavaScript, making them run faster
</li>
</ul>
</li>
<li>Added a 404 page when the user runs into a page which doesn't exist</li>
<li>Redid hosting tutorial to add more clarification + showcase how to update the site</li>
<li>Added ten more links</li>
</ul>
</div>
<div id="v6.1" class="version-content">
<h2>version 6.1</h2>
<ul>
<li>
Added 30 brand new games
<ul>
<li>
<strong>Flash:</strong> Chibi Knight, Doodle Defender, Learn to Fly 2, Papa's Scooperia, Papa's Sushiria, Papa's Wingeria, Raft Wars, Unfair Mario, The Impossible Quiz 2, Papa's Donuteria, Fancy Pants Adventure 2, Big Red Button, Achievement Unlocked
</li>
<li>
<strong>Nintendo DS:</strong> Ace Attorney, Pokemon Diamond, Pokemon Platinum, Pokemon Soulsilver, Kirby Mass Attack
</li>
<li>
<strong>Game Boy Advance:</strong> Metal Gear Solid, Mother 3, Advance Wars, Banjo Pilot, Super Monkey Ball Jr, Sonic Advance, Worms World Party
</li>
<li>
<strong>Other:</strong> Rooftop Snipers 2, Fireboy and Watergirl, Cluster Rush, Boxing Physics 2, Tiny Fishing
</li>
</ul>
</li>
<li>
Added one brand new app
<ul>
<li>
<strong>Thirty Dollar Website:</strong> a tool which can be used to make music entirely through meme sound effects and simple instruments
</li>
</ul>
</li>
<li>Added a new dropdown below the search bar to show games by genre, improving game discovery</li>
<li>New Vercel hosting for the main domain, content should load up to x2 faster than the previous host</li>
<li>Update log page now shows every update instead of just one</li>
<li>Added Chrome New Tab page cloak</li>
<li>Polished README file in the GitHub to be more clear</li>
<li>Removed more incorrect branding</li>
</ul>
</div>
<div id="v6" class="version-content">
<h2>version 6</h2>
<ul>
<li>
Added eighteen brand new games
<ul>
<li>Flash: Run, Run 2, Battleships, Breaking the Bank, Duck Life, Duck Life 2, Duck Life 3, Line Rider, Mario Combat, Raft Wars 2, Space Invaders, Gun Mayhem, Learn to Fly</li>
<li>Nintendo DS: Animal Crossing: Wild World, Mario Kart DS, New Super Mario Bros, Nintendogs: Best Friends, Super Mario 64 DS</li>
</ul>
</li>
<li>
Added a brand new apps section, hosting fun utilities and demos of projects
<ul>
<li>Ruffle App: Allows users to run thousands of Flash files (.swf) using Ruffle</li>
<li>EmulatorJS App: Allows users to run game ROMs using EmulatorJS</li>
<li>WebGL Fluids: A full fluid simulation ran entirely in WebGL</li>
</ul>
</li>
<li>
Added tab cloaking
<ul>
<li>Select a preset cloak from the cloaking page, navigable from the homepage</li>
<li>Five preset cloaks are preset currently, with more to come</li>
<li>Refresh to see your tab disguised in plain sight!</li>
<li>Every page on the website has been altered to support this new feature</li>
</ul>
</li>
<li>Site now prefers to use official ruffle CDN instead of hosting locally to save bandwidth</li>
<li>New Vercel domain that auto-syncs with any changes made in GitHub</li>
<li>New background images created for relevant pages</li>
<li>Added neon glow to every h1 element in the site</li>
<li>Removed incorrect branding around the site</li>
<li>Minor optimizations around pages</li>
<li>Added more brief mobile support to pages around the site</li>
<li>Wording rephrasing has been made to better clarify information</li>
</ul>
</div>
<div id="v5.1" class="version-content">
<h2>version 5.1</h2>
<ul>
<li>Added twenty-one brand new games</li>
<ul>
<li>Game Boy Advance: Bomberman, Fire Emblem, Ice Climber, Mario Kart Super Circuit, Pokemon Leaf Green, Pokemon Ruby, Pokemon Sapphire</li>
<li>Flash: Papa's Freezeria, Bloons Tower Defence, Bloons Tower Defence 2, Bloons Tower Defence 3, Bloons Tower Defence 4, Super Smash Flash, Super Meat Boy, This Is The Only Level</li>
<li>Other: Color Switch, A Dance of Fire and Ice (ADOFAI), Stickman Hook, Defend the Tank, Sort the Court</li>
</ul>
<li>Added new placeholder image for games which do not have a thumbnail</li>
<li>Fixed cursor bug making horizontal scrollbars appear</li>
</ul>
</div>
<div id="v5" class="version-content">
<h2>version 5</h2>
<ul>
<li>Added fifteen brand new games</li>
<ul>
<li>Game Boy Advance: Castlevania, Donkey Kong, Dr Mario, Metroid, Super Mario Bros 2 (Advance ver), Super Mario Bros 3 (Advance ver), The Legend of Zelda, WarioWare, Yoshi's Island (Advance ver)</li>
<li>Game Boy: Super Mario Land, Kirby's Dream Land, Donkey Kong Land</li>
<li>Other: Doge Miner, Tanuki Sunset, Aquapark Slides</li>
</ul>
<li>Reworked games page</li>
<ul>
<li>Added a search bar at the top of the page</li>
<li>Adjusted front size and width of buttons</li>
<li>Added homepage and GitHub button at the top of the page</li>
<li>Added copyrifght statement / credit for website at the top of the page</li>
<li>Changed background to darken the image and add various shapes</li>
<li>Background now repeats across the screen instead of stretching</li>
<li>Buttons no longer need to have the text clicked</li>
</ul>
<li>Completely revamped the hosting page</li>
<li>Tweaked the background of the hosting page</li>
<li>Added more optimisations for low-end devices</li>
<li>Added some mobile support for pages across the site</li>
<li>Changed update log animation</li>
<li>Increased font size for update log + added padding</li>
<li>Added a neon glow to the homepage header</li>
</ul>
</div>
<div id="v4" class="version-content">
<h2>version 4</h2>
<ul>
<li>
Added ten brand new games
<ul>
<li>Baldi's Basics</li>
<li>Bob the Robber 2</li>
<li>Minesweeper</li>
<li>Pokemon Emerald</li>
<li>Pokemon Fire Red</li>
<li>Super Mario Bros</li>
<li>Super Mario Kart</li>
<li>Super Mario World</li>
<li>There is No Game</li>
<li>World's Hardest Game</li>
</ul>
</li>
<li>Added announcement banner showcasing that ten games will be added every week for the next five weeks</li>
<li>Tweaked update log layout to center links</li>
<li>Created a new background picture for hosting page</li>
<li>Adjusted the width of game page buttons</li>
<li>Game page buttons can now display three on one row if the screen size is capable</li>
<li>Added Google meta tags</li>
</ul>
</div>
<div id="v3" class="version-content">
<h2>version 3</h2>
<ul>
<li>
Added sixteen brand new games
<ul>
<li>
FNAF: Five Nights at Freddy's 1, Five Nights at Freddy's 2, Five Nights at Freddy's 3, Five Nights at Freddy's 4
</li>
<li>
Riddle School: Riddle School, Riddle School 2, Riddle School 3, Riddle School 4, Riddle School 5, Riddle Transfer, Riddle Transfer 2
</li>
<li>
Other: Drift Boss, Friday Night Funkin, Papa's Pancakeria, Pacman, Rooftop Snipers
</li>
</ul>
</li>
<li>
Updated games page
<ul>
<li>Added a custom cursor</li>
<li>Resized buttons to be semi-responsive</li>
<li>Games now open in a new tab</li>
<li>Border effect removed for more optimization</li>
<li>Changed font to match more with the website</li>
</ul>
</li>
<li>Added custom cursor around the whole website</li>
<li>Changed homepage styling to be more accessible</li>
<li>Fixed resizing issues related to update log page</li>
<li>Fonts no longer rely on Google Fonts and are stored locally</li>
<li>Attempted to fix tanking Happy Wheels performance</li>
<li>Major GitHub README overhaul</li>
</ul>
</div>
<div id="v2" class="version-content">
<h2>version 2</h2>
<ul>
<li>Added twenty-one brand new games</li>
<ul>
<li>Flash Games: Fancy Pants Adventure, The Binding of Isaac, Happy Wheels, Theme Hotel, Escaping the Prison, Stealing the Diamond, Infiltrating the Airship, Fleeing the Complex, The Impossible Quiz, Solitaire</li>
<li>Unity: SUPERHOT, Tunnel Rush, Drift Hunters</li>
<li>Other: Papa's Hotdoggeria, Townscaper, PaperIO2, Doodle Jump, Vex 6, Among Us (fangame), Edge Surf, MotoX3M</li>
</ul>
<br>
<li>Completely revamped the games page</li>
<ul>
<li>Buttons no longer have descriptions</li>
<li>Instead of clicking play, you can now click the whole button</li>
<li>Brand new hover effect</li>
<li>Buttons all have thumbnails</li>
<li>Buttons are smaller in width by 20px</li>
</ul>
<br>
<li>Completely revamped the homepage</li>
<li>Added an update log page for full changelogs of what has been modified in updates</li>
<li>Reorganised folder layout for website</li>
<li>Miscellaneous optimisations / head tag optimisations</li>
<li>GitHub clean up</li>
</ul>
</div>
<div id="v1" class="version-content">
<h2>version 1</h2>
<ul>
<li>Finished the first iteration of the site, now ready for public release!</li>
<li>Ten games have been added for a total of twenty</li>
<li>Hosting page with tutorial</li>
<li>Seraph is now open source!</li>
<br>
</ul>
</div>
<br>
</div>
<script>
document.getElementById('version-select').addEventListener('change', function() {
const selectedValue = this.value;
const versionContents = document.querySelectorAll('.version-content');
versionContents.forEach(function(content) {
if (content.id === selectedValue) {
content.style.display = 'block';
} else {
content.style.display = 'none';
}
});
});
</script>
<script src="storage/js/cloak.js"></script>
<script src="storage/js/theme.js"></script>
</body>
</html>