-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathCHANGELOG
executable file
·1519 lines (763 loc) · 28.7 KB
/
CHANGELOG
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
# Changelog (dd/mm/yy)
## (12/01/25)
· 📦 ADD: Games > Portal (Source Engine) for aarch64.
· 👌 IMPROVE: Games > Half Life 2 launcher script for aarch64.
## (25/12/24)
· 📦 ADD: Games > Half Life 2 (Source Engine) for aarch64.
## (09/12/24)
· 👌 IMPROVE: Emulators > Amiberry (Amiga emulator) v7.0.0-RC1 for armhf/aarch64.
· 🐛 FIX: Games > Fallout.
## (06/12/24)
· 👌 IMPROVE: Server > Git Server.
## (05/11/24)
· 👌 IMPROVE: Devs > Docker.
· 👌 IMPROVE: Server > Git Server.
## (19/10/24)
· 📦 ADD: Others > Metasploit Framework.
## (01/10/24)
· 📦 ADD: Games > Carmageddon (AKA Dethrace) for aarch64.
· 👌 IMPROVE: Emulators > Speccy (Portable ZX-Spectrum emulator) for aarch64.
## (28/09/24)
· 📦 ADD: Mmedia > Spotube (Spotify Clone).
· 👌 IMPROVE: Others > Wine add Hangover v9.17 for aarch64.
## (06/09/24)
· 👌 IMPROVE: Others > Wine add Hangover v9.15 for aarch64.
· ❌ REMOVE: Others > Box86/Box64 installation (Only compilation is available).
## (03/09/24)
· 👌 IMPROVE: Emulation > PPSSPP v1.17.1-19410 (PSP Emulator) for aarch64.
## (20/08/24)
· 👌 IMPROVE: Games > Crispy-Doom 7.0.0 for aarch64.
## (10/07/24)
· 👌 IMPROVE: Games > Blood for aarch64.
· 👌 IMPROVE: Games > Xash3D (Half Life) for aarch64. Removed armfh support.
## (07/07/24)
· 👌 IMPROVE: Games > Arx Libertatis for aarch64.
· 🐛 FIX: Emulatos > residual.
## (24/06/24)
· 👌 IMPROVE: Games > Alien VS Predator for aarch64.
## (23/06/24)
· 👌 IMPROVE: Games > Abbaye des Morts 2.0.3 for aarch64.
## (16/06/24)
· 📦 ADD: Emulators > PCem for aarch64 (PCem is an emulator for old XT/AT-class PC).
## (09/06/24)
· 📦 ADD: Games > WipeOut for aarch64.
## (28/05/24)
· 👌 IMPROVE: Games > OpenClaw for aarch64.
· 👌 IMPROVE: Others > UXPlay (Airplay Mirroring) for armhf & aarch64.
## (06/05/24)
· 📦 ADD: Games > Hexen 2 for aarch64 (using engine fteqw).
## (10/04/24)
· 📦 ADD: Devs > SQLiteStudio.
## (07/04/24)
· 🐛 FIX: Emulatos > mGBA.
## (02/04/24)
· 📦 ADD: Games > Unreal Tournament 99.
## (28/03/24)
· 🐛 FIX: Config > Vulkan driver.
## (15/03/24)
· 👌 IMPROVE: Others > Scrcopy v2.4 with Android 15 support.
## (08/03/24)
· 👌 IMPROVE: Config > Vulkan 24.0.0 & libdrm-2.4.120.
· 👌 IMPROVE: Games > Quake: Quakespasm (Quake I) v0.96.1 for aarch64.
· 👌 IMPROVE: Games > Quake: Latest Quake 2 with Vulkan support.
· 👌 IMPROVE: Games > Quake: Quake 3 now with aarch64 support.
· 👌 IMPROVE: Emulators > M.A.M.E. v0.263.
## (06/03/24)
· 👌 IMPROVE: Emulators > Unreal Speccy Emulator (ZX Spectrum) for armhf & aarch64.
## (05/03/24)
· 👌 IMPROVE: Games > Fallout 2 Community Edition (aarch64).
## (04/03/24)
· 👌 IMPROVE: Games > Fallout 2 Community Edition (aarch64).
## (24/02/24)
· 👌 IMPROVE: Games > RVGL (AKA Re-Volt) v23.1030 for archhf & aarch64.
## (17/02/24)
· 👌 IMPROVE: Emulators > mGBA 0.11 (It supports Game Boy, Game Boy Color & Game Boy Advanced).
## (11/02/24)
· 👌 IMPROVE: Games > DXX-Rebirth 0.60 (Descent).
## (01/02/24)
· 👌 IMPROVE: Emulators > Redream (Sega Dreamcast).
### (26/01/24)
· 👌 IMPROVE: Emulators > RetroArch (Add Shaders).
## (24/01/24)
· 👌 IMPROVE: Others > Fixes.
· 👌 IMPROVE: Others > SDL2 (Compile the latest version on your OS).
· 👌 IMPROVE: Minor fixes on helper.sh.
## (13/01/24)
· 👌 IMPROVE: Emulators > RetroArch (Add Shaders).
· ❌ REMOVE: Others > Net Tools (deprecated).
· 👌 IMPROVE: Others > Metasploit.
## (10/01/24)
· 👌 IMPROVE: Emulatos > Snes9X 1.62.3 & BSNes v115 for 64-bit.
## (22/12/23)
· 👌 IMPROVE: Config > Vulkan 23.3.1 & libdrm-2.4.119.
## (19/11/23)
· 🐛 FIX: Install script.
· 🐛 FIX: Emulatos > OpenMSX (missing library).
## (16/11/23)
· 👌 IMPROVE: Emulatos > mGBA 0.11 for 32/64-bit.
## (14/11/23)
· 📦 ADD: Devs > Docker.
· 👌 IMPROVE: Refactor code adapted to RPi 5 on some scripts.
· 🐛 FIX: Install script.
· 🐛 FIX: Games > Duke Nukem 3D 32-bit.
· 🐛 FIX: Devs > VSCode.
## (11/11/23)
· 👌 IMPROVE: Refactor code adapted to RPi 5 on some scripts.
· 👌 IMPROVE: Others > Update bootloader compatible with Raspberry Pi 5.
## (15/10/23)
· 👌 IMPROVE: Emulators > AetherSX2 (PS2) to v1.5 for 32-bit & 64-bit.
· 👌 IMPROVE: Adapt some scripts for Raspberry Pi Bookworm.
· 🐛 FIX: Tweaks > Others.
· ❌ REMOVE: Tweaks > autologin.
## (30/09/23)
· 👌 IMPROVE: Config > Vulkan 23.2.1.
· 👌 IMPROVE: Others > GL4ES.
· 👌 IMPROVE: Tweaks > Others (Option to increase performance).
## (16/09/23)
· 👌 IMPROVE: Merge some improvements thanks to some collaborators.
· 👌 IMPROVE: Emulators > MAME version (2.58)
## (07/08/23)
· 👌 IMPROVE: Games > GemRB (AKA Baldur's Gate Game Engine) 0.92 for aarch64.
· 👌 IMPROVE: Replace libpng12-0 on some scripts for libpng16-16.
## (22/07/23)
· 📦 ADD: Internet > nChat is Telegram/WhatsApp from Terminal for aarch64.
· 👌 IMPROVE: Emulators > RetroArch Update cores & 1.16.0-1 for 32/aarch64.
· ❌ REMOVE: Internet > WhatsApp Cli (not working anymore).
## (15/07/23)
· 📦 ADD: Internet > nChat for Telegram/WhatsApp for aarch64.
· ❌ REMOVE: Internet > WhatsApp Cli (not working anymore).
## (01/07/23)
· 👌 IMPROVE: Games > Duke Nukem 3D (Eduke32) for aarch64
## (17/06/23)
· 👌 IMPROVE: Games > SMario 64 Plus for aarch64 by Morsgame with tons of improvements.
## (03/06/23)
· 📦 ADD: Games > Fallout 2.
## (17/05/23)
· 👌 IMPROVE: Games > MAME 0.254 for 32/aarch64 BullsEye & Buster.
## (30/04/23)
· 👌 IMPROVE: Games > Serious Sam 1.10.4-1: Classic, Vulkan Ed. for arm64 (armhf soon).
## (25/03/23)
· 📦 ADD: Server > Block IPs using Iptables.
· 👌 IMPROVE: Scripts Server > Media Server, Emulators > GBA. Some minor fixes.
## (20/03/23)
· 👌 IMPROVE: New relases: Scrcopy v2.0 for aarch64 (Audio support for Android 11+).
## (14/03/23)
· 👌 IMPROVE: Config > Vulkan Driver 22.3.7 for 32/aarch64.
## (10/03/23)
· 👌 IMPROVE: Emulators > RetroArch Update cores & 1.15.0-1 for 32/aarch64.
## (9/03/23)
· 👌 IMPROVE: Config > Vulkan Driver 22.3.7 for 32/aarch64.
## (22/01/23)
· 👌 IMPROVE: Server > Update Web Server with PHP 8.2 & Nginx 1.23.3.
· ❌ REMOVE: Owncloud.
## (16/01/23)
· 👌 IMPROVE: Emulators > RetroArch Update cores & 1.14.0-1 (arm64).
## (13/01/23)
· 👌 IMPROVE: Emulators > RetroArch Update cores & 1.14.0-1 (armhf).
## (6/11/22)
· 👌 IMPROVE: Games > OpenXCOM 1.0.a379 for 32/aarch64.
## (5/11/22)
· 👌 IMPROVE: Games > Quake > Quakespasm 0.95 for 32/aarch64.
## (13/10/22)
· 👌 IMPROVE: Config > Change Vulkan driver to compile 22.2 (stable branch)
## (7/10/22)
· 📦 ADD: Emulators > Add VICE Commodore 64 emu for 32/aarch64.
· 👌 IMPROVE: Emulators > RetroArch 1.11.1-1. Added Buster 32 bits support.
## (18/09/22)
· 📦 ADD: Emulators > Flycast for 32/aarch64.
## (03/09/22)
· 👌 IMPROVE: Emulators > MAME 0.247 for 32/aarch64.
## (19/08/22)
· 👌 IMPROVE: Games > Super Mario 64 for aarch64.
## (16/08/22)
· 👌 IMPROVE: Emulators > ScummVM bump to 2.7.0 for 32/aarch64.
## (06/08/22)
· 👌 IMPROVE: Emulators > MAME bump to 0.246.
## (30/07/22)
· 🐛 FIX: Games > Serious Sam.
## (21/07/22)
· 🐛 FIX: Emulators > PS1 (DuckStation).
· 🐛 FIX: Games > Quake 1.
## (18/07/22)
· 👌 IMPROVE: Emulators > PS1 (DuckStation) aarch64 support.
· 👌 IMPROVE: Emulators > PS2 (AetherSX2).
## (09/07/22)
· 👌 IMPROVE: Emulators > RetroArch 1.10.3.
· 👌 IMPROVE: Emulators > DOSBox-X 0.84.2.
· 👌 IMPROVE & Fix: Emulators > MAME v0.245.
## (28/06/22)
· 🐛 FIX: Configure > Vulkan driver.
## (25/06/22)
· 🐛 FIX: Emulators > Dosbox.
## (19/06/22)
· 👌 IMPROVE: Emulators > openMSX 0.18 & aarch64 support.
## (04/06/22)
· 📦 ADD: Others > ZShell.
· 👌 IMPROVE: Games > Quake I, II aarch64 support.
## (19/05/22)
· 👌 IMPROVE: MMedia > OBS for aarch64.
## (02/05/22)
· 👌 IMPROVE: Emulators > MAME 0.243.
## (01/05/22)
· ❌ REMOVE: Config > raspnetinst.sh.
· 👌 IMPROVE: Games > Arx Libertatis v1.3 for aarch64.
## (14/04/22)
· 👌 IMPROVE: Emulation > Box86 and Box64.
## (10/04/22)
· 👌 IMPROVE: Games > Blake Stone 1.2.12 for 32/aarch64.
## (09/04/22)
· 👌 IMPROVE: Inet > SyncTERM 1.2 for 32/aarch64.
## (03/04/22)
· 👌 IMPROVE: Emulators > MAME 0.242 for 32/aarch64.
## (24/03/22)
· 👌 IMPROVE: Emulators > Redream (Sega Dreamcast).
## (12/03/22)
· 👌 IMPROVE: Emulators > Amiberry (Amiga emulator) 4.1.6 for 32/aarch64.
## (6/03/22)
· 👌 IMPROVE: Emulators > DOSBox-X version 0-83.24 for 32/aarch64.
## (05/03/22)
· 👌 IMPROVE: Emulators > RetroArch Duckstation core for aarch64 (Thanks @foxhound311).
· 👌 IMPROVE: Others > RPiplay aarch64 support.
## (21/02/22)
· 🐛 FIX: Emulators > Retroarch aarch64 cores.
## (18/02/22)
· 👌 IMPROVE: Emulators > New RetroArch cores aarch64 (Thanks @foxhound311).
· 👌 IMPROVE: Games > Grand Thef Auto III & IV aarch64 support (Thanks @foxhound311).
· 👌 IMPROVE: Games > l'Abbaye des Morts aarch64 support.
## (6/02/22)
· 👌 IMPROVE: PiKISS menu and message If you are running on a aarch64 environment.
· 👌 IMPROVE: Emulators > RetroArch v1.10.0 aarch64 support.
## (29/01/22)
· 👌 IMPROVE: Emulators > RetroArch v1.10.0 + update cores.
## (22/01/22)
· 📦 ADD: Games > Sonic Robo Blast 2.
## (16/01/22)
· 📦 ADD: Games > Super Mario War.
## (15/01/22)
· 👌 IMPROVE: Minor refactor code on helper.sh, .bashrc_aliases, psx.sh, smario64.sh
## (30/12/21)
· 📦 ADD: Multimedia > TVPlayer for watch TV channels from Spain and other International.
· ❌ REMOVE: Scripts dwnmp3.sh, flexget.sh, hotstop.sh.
## (25/12/21)
· 🐛 FIX: Others > RPiPlay (AirPlay mirroring) now compatible with Bullseye using Gstreamer.
## (17/12/21)
· 📦 ADD: Games > OpenJK (Jedi Knight: Jedi Academy).
· 👌 IMPROVE: Internet > Whatscli v1.0.11 (A cli interface for whatsapp).
· 👌 IMPROVE: Emulators > Duckstation (PSX) now compatible with Buster & Twister OS.
· 🐛 FIX: Games > Arx Libertatis > Broken link. Remove menu for choose version.
· 🐛 FIX: Games > Alien Vs Predator > Broken link.
## (16/12/21)
· 📦 ADD: Games > OpenJK (Jedi Knight: Jedi Academy).
· 👌 IMPROVE: Internet > Whatscli v1.0.11 (A cli interface for whatsapp).
· 👌 IMPROVE: Emulators > Duckstation (PSX) now compatible with Buster & Twister OS.
## (11/12/21)
· 👌 IMPROVE: Emulators > RetroArch 1.9.14-1 + update cores.
## (07/12/21)
· 👌 IMPROVE: Emulators > Duckstation (PSX).
· 🐛 FIX: Emulators > PSX missing BiOS URL.
## (04/12/21)
· 🐛 FIX: Emulators > PSX missing deps.
· 🐛 FIX: Games > Serious Sam.
## (20/11/21)
· 👌 IMPROVE: Emulators > RetroArch 1.9.13.2-1.
· 🐛 FIX: Configure > Vulkan.
· 👌 IMPROVE: Tweaks > Others >Add reduce stop job running tweak.
## (16/11/21)
· 🐛 FIX: Configure > Vulkan. FIX missing deps on Bullseye.
## (15/11/21)
· 👌 IMPROVE: Emulators > Update & new binary compiled DOSBox to 0.83.20 (Compatible with Bullseye).
· 👌 IMPROVE: Change compile parameter for cortex-a72 on some scripts.
· 🐛 FIX: Games > Quake > Quake ][ URL texture pack & typo.
· ❌ REMOVE: Others > Cool Retro Term (Added on Bullseye's repository).
## (11/11/21)
· 👌 IMPROVE: Games > Update Diablo (ver. 1.3.0).
· ❌ REMOVE: Tweaks > Others > NOOP Scheduler (Not available anymore).
## (1/11/21)
· 👌 IMPROVE: Server > CUPs (Printer driver).
## (26/10/21)
· 👌 IMPROVE: Emulators > RetroArch 1.9.12-1.
## (25/10/21)
· 🐛 FIX: Games > OpenRCT2.
· 🐛 FIX: Games > Heroes 3.
## (18/10/21)
· 📦 ADD: Server > Database MariaDB (MySQL fork).
· 📦 ADD: Server > LEMP stack (Linux + Nginx Light v1.43 + MariaDB v10.3 + PHP v7.4 or v8.1).
· 👌 IMPROVE: Server > Frameworks (WordPress, Node, Ghost).
## (26/09/21)
· 📦 ADD: Games > OpenRCT2 (RollerCoaster Tycoon 2).
## (25/09/21)
· 🐛 FIX issue 117: already up to date and It is not installed. Refactor code.
· 👌 IMPROVE: Refactor code call to make_install_compiled_app.
## (24/09/21)
· 🐛 FIX: Games > Zandronum (compile source code path).
· 🐛 FIX: Install return value.
## (18/09/21)
· 📦 ADD: Games > Shadow Warrior.
· 👌 IMPROVE: Games > Diablo (Add Hellfire support).
## (10/09/21)
· 👌 IMPROVE: Games > Grand Theft Auto III.
· 👌 IMPROVE: Games > Grand Theft Auto Vice City.
## (28/08/21)
· 👌 IMPROVE: Games > Diablo 2.
· 👌 IMPROVE: Emulators > RetroArch 1.9.8-1.
· 🐛 FIX: Games > Zandronum.
· 🐛 FIX: Emulators > mGBA.
## (07/08/21)
· 📦 ADD: Internet > SyncTERM (Telnet/SSH/BBS).
## (01/08/21)
· 📦 ADD: Emulators > RetroArch 1.9.7-1 + Extras
## (24/07/21)
· 📦 ADD: Games > Heroes of Might & Magic III (VCMI engine).
## (17/07/21)
· 👌 IMPROVE: Games > Super Mario 64 EX (HQ textures for Mario/Bowser and +).
## (11/07/21)
· 👌 IMPROVE: Emulation > openMSX ver. 0.17.
## (27/06/21)
· 📦 ADD: Games > GemRB (Baldur's Gate and other RPG games).
· 👌 IMPROVE: Grand Theft Auto III, Grand Theft Auto Vice City.
## (30/05/21)
· 🐛 FIX: Games > OpenXCOM.
· 👌 IMPROVE: MagicAirCopy®.
## (23/05/21)
· 📦 ADD: Games > Hermes.
· 👌 IMPROVE: Others > Winex86 + Box86 + Winetricks. Add option for uninstall Wine.
· 🐛 FIX: Emulators > Box86.
## (21/05/21)
· 📦 ADD: Others > Winex86 + Box86.
· 🐛 FIX: Emulators > Box86.
## (07/05/21)
· 📦 ADD: Emulators > MAME (Add Mame 0.230).
· 👌 IMPROVE: Server > Auto update Debian Buster.
· 🐛 FIX: Server > VPNServer.
· 🐛 FIX: Others > Scrcpy (Missing scrcpy-server).
· ❌ REMOVE: Emulators > Advanced MAME (Obsolete).
## (01/04/21)
· 📦 ADD: Emulators > Nestopia UE (NES emulator).
· 🐛 FIX: Games > Smario64 (Uninstall process).
## (24/04/21)
· 👌 IMPROVE: Emulators > Redream (Sega Dreamcast).
· 👌 IMPROVE: Devs > Qt5.15.2 LTS with OpenGL support.
## (17/04/21)
· 👌 IMPROVE: Devs > QT5 compile version 5.15.2.
· 👌 IMPROVE: Games > DXX-Regirth (AKA Descent)
## (27/03/21)
· 📦 ADD: Games > Grand Theft Auto Vice City.
## (20/03/21)
· 📦 ADD: Games > Grand Theft Auto III.
## (05/03/21)
· 📦 ADD: Games > Prince Of Persia (full).
· 👌 IMPROVE: Tweaks > Others > Add/Remove Swap.
## (28/02/21)
· 👌 IMPROVE: Devs > Install VSCode or VSCodium (same with no telemetry).
· 👌 IMPROVE: Internet > Zoom updated to release 5.4.2 (53391.1108).
· 🐛 FIX: Internet > Zoom.
## (22/02/21)
· 👌 IMPROVE: New relases: RPiplay 1.2 (Airplay mirror). Scrcopy (Android mirror 1.17).
· 👌 IMPROVE: Tweaks > Remove Packages > Remove Snap daemon.
## (21/02/21)
· 👌 IMPROVE: New versin 1.8.0. New compiled versions of Blood, DOSBox-X 0.83. Refactor code.
· 👌 IMPROVE: MagicAirCopy®. Now detect automatically if you have the file _res/magic-air-copy-pikiss.txt_ to use it.
· 🐛 FIX: Games > Arx Fatalis & Quake 1 (shareware files missing).
## (07/02/21)
· 📦 ADD: Emulators > Duckstation - PlayStation 1, aka. PSX Emulator.
## (06/02/21)
· 👌 IMPROVE: Amiberry.
· 👌 IMPROVE: Tweaks > Packages > Remove Microsoft VSCode source list (You can safely install it with PiKISS later 😉).
## (30/01/21)
· 📦 ADD: Server > Remote Desktop with Nomachine, xRDP and VNC Server.
## (24/01/21)
· 📦 ADD: Multimedia > Jellyfin (Stream media to any device from your own server).
## (17/01/21)
· 📦 ADD: Games > Zendronum to play Doom + Heretic + Hexen + Strife. Shareware included.
## (12/01/21)
· ❌ REMOVE: Internet > Cordless (not maintained anymore).
## (05/01/21)
· 🐛 FIX: Games > Captain S shortcut.
## (03/01/21)
· 🐛 FIX: Games > AVP, Diablo.
· 👌 IMPROVE: Others > RPiPlay, Gl4ES, scrcpy.
· 👌 IMPROVE: Games > Blood, Eduke32, SMario64
· 👌 IMPROVE: Emulators > PSP, ResidualVM. Refactor code. Change /home/pi -> $HOME.
## (27/12/20)
· 🐛 FIX: Links broken for StarCraft, StepMania, OpenMW and OpenBOR.
## (25/12/20)
· 📦 ADD: Games > VVVVVV (Instead of jumping, you need to reverse gravity).
## (22/12/20)
· 👌 IMPROVE: Games > Diablo I binaries upgraded to 1.1.0.
## (15/12/20)
· 📦 ADD: Internet > Whatscli (Allow users to use WhatsApp via cli).
· 👌 IMPROVE: Configure > Vulkan frozen on version 20.3.0 due some users reported problems with latest 21.0.0.
## (13/12/20)
· 📦 ADD: Multimedia > Moonlight (Open source implementation of NVIDIA's GameStream).
· 👌 IMPROVE: Others > SDL2.
## (06/12/20)
· 📦 ADD: Games > Temptations (Retro platform game).
## (28/11/20)
· 📦 ADD: Games > Open Claw (Platform 2D Captain Claw (1997) reimplementation).
## (22/11/20)
· 📦 ADD: Games > StepMania.
· 📦 ADD: Emulators > Redream (Sega Dreamcast).
· 📦 ADD: Emulators > Bsnes (SuperNES).
## (09/11/20)
· 📦 ADD: Others > Alacritty (Fastest terminal emulator in existence).
## (07/11/20)
· 📦 ADD: Games > fheroes2 (Heroes of Might and Magic II engine)
## (05/11/20)
· 📦 ADD: Games > StarCraft + Brood War expansion.
· 👌 IMPROVE: Emulators > Box86.
## (04/11/20)
· 📦 ADD: Others > Upgrade your boot loader on Raspberry Pi 4.
· 👌 IMPROVE: Server > Pi-Hole (Ad-Blocker).
## (03/11/20)
· 👌 IMPROVE: Emulators > mGBA Game Boy Advance Emulator.
## (24/10/20)
· 👌 IMPROVE: GAMES > MagicAirCopy® with support for local dir/files.
## (19/10/20)
· 🐛 FIX: GAMES > Diablo 1.
## (17/10/20)
· 📦 ADD: Games > Return to Castle Wolfenstein.
## (14/10/20)
· 👌 IMPROVE: Configure > Compile/update Vulkan Mesa driver.
## (12/10/20)
· 👌 IMPROVE: Devs > Change OSSCode with native VSCode 32 or aarch64.
## (07/10/20)
· 🐛 FIX: Games > Openmw.
## (06/10/20)
· 🐛 FIX: Internet > Zoom on Twister OS.
· 🐛 FIX: Games > Openbor.
## (03/10/20)
· 📦 ADD: Internet > Zoom using Box86.
· 📦 ADD: Emulation > Box86 for Raspberrry Pi 2-4.
## (29/09/20)
· 👌 IMPROVE: Games > OpenBor 3.0 (Street of Rage 2X included!).
· 👌 IMPROVE: Others > SDL2 (Enable Vulkan support if compile yourself).
## (27/09/20)
· 📦 ADD: Games > Quake.
## (20/09/20)
· 📦 ADD: Games > Half Life.
## (11/09/20)
· 📦 ADD: Games > Blake Stone.
## (07/09/20)
· 📦 ADD: Games > Quake 3 Arena (with Vulkan support, High textures and some tweaks).
## (01/09/20)
· 📦 ADD: Games > The Elder Scroll: Morrowind (OpenMW).
· 📦 ADD: Others > Compile GL4ES.
## (29/08/20)
· 📦 ADD: Emulators > VICE (Commodore 64).
## (27/08/20)
· 📦 ADD: Games > Open Supaplex.
## (26/08/20)
· 📦 ADD: Games > Serious Sam The First Encounter.
## (23/08/20)
· 📦 ADD: Devs > TIC-80.
## (20/08/20)
· 📦 ADD: Games > Spelunky Classic HD.
## (16/08/20)
· 📦 ADD: Games > Serious Sam The Second Encounter.
## (15/08/20)
· 📦 ADD: Devs > Code - OSS (VSCode fork).
## (13/08/20)
· 📦 ADD: Others > Compile cool-retro-term.
## (11/08/20)
· 👌 IMPROVE: Server > Nagios 4.
· 🐛 FIX: Configure > Compile/update Vulkan Mesa driver (EXPERIMENTAL).
## (08/08/20)
· 📦 ADD: Emulation > ResidualVM (Cross-platform 3D game interpreter for Monkey4 or The Longest Journey).
## (06/08/20)
· 📦 ADD: Server > Jenkins CI.
## (02/08/20)
· 📦 ADD: Games > Aliens versus Predator (1999 video game).
## (01/08/20)
· 📦 ADD: Games > OpenXCom (UFO).
· 👌 IMPROVE: Games > Hurrican (Remove glitches and add language support).
· 👌 IMPROVE: Emulation > Amiberry.
## (31/07/20)
· 📦 ADD: Others > ShaderToys for Pi 4 (Render over 100+ OpenGL ES 3.0 shaders).
## (30/07/20)
· 📦 ADD: Games > Hurrican.
## (29/07/20)
· 👌 IMPROVE: Crispy Doom. Refactor code and uninstall option.
## (28/07/20)
· 📦 ADD: Games > Arx Libertatis.
## (27/07/20)
📦 ADD: Multimedia > Easy compile OBS (Open Broadcaster Software).
## (25/07/20)
· 📦 ADD: Internet > Cordless (Discord client from cli).
## (24/07/20)
· 📦 ADD: Games > Quake ][.
## (23/07/20)
· 📦 ADD: Emulation > Dolphin (Gamecube emulator. Wii not supported yet) (EXPERIMENTAL).
· 🐛 FIX: Games > OpenBOR and Xump.
## (22/07/20)
· 📦 ADD: PiKISS try to update automatically.
· 📦 ADD: Others > Uninstall PiKISS 😢.
· 👌 IMPROVE: Others > SDL2 binary 2.0.13 or compile 2.0.12.
## (21/07/20)
· 📦 ADD: Others > Airplay mirroring for iDevices.
## (19/07/20)
· 📦 ADD: Games > Blood.
## (17/07/20)
· 📦 ADD: Other > Scrcpy 1.13 (Mirror Android devices on Raspberry Pi OS/Twister OS).