forked from MichaIng/DietPi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.txt
1909 lines (1520 loc) · 163 KB
/
CHANGELOG.txt
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
v153
(05/07/17)
New Image:
DietPi for Native PC (x86_64) is now available. This is currently under BETA status, please see the following ticket for updated information: https://github.com/Fourdee/DietPi/issues/1007
Changes / Improvements / Optimizations:
General | NTPD updates: Increased verbosity of completion/errors: https://github.com/Fourdee/DietPi/pull/1035
General | GnuPG: Now installed by default on all DietPi systems. Required for OpenPGP key management, data signing etc: https://github.com/Fourdee/DietPi/issues/1032#issuecomment-311995136
General | DietPi RPi Kernel: Updated to 4.9.35. Includes support for new dual mode outputs on Allo Piano DAC +. Also includes patch for DSD pop during start of playback : https://github.com/Fourdee/DietPi/issues/1052
DietPi-Autostart | Added option for LightDM desktop boot (requires lightdm package to be installed).
DietPi-JustBoom | Added ability to configure Dual output modes on Allo Piano DAC + : https://github.com/Fourdee/DietPi/issues/1052#issuecomment-313089031
DietPi-Software | You can now uninstall software, if free space is below the 500MB threshold. Software installations are still prevented: https://github.com/Fourdee/DietPi/issues/1037
DietPi-Services | You can now check status of all DietPi controlled services with "dietpi-services status". Many thanks to @joaofl for adding this feature!: https://github.com/Fourdee/DietPi/pull/1025
DietPi-Software | Stretch: Updated additional software (eg: Plex/Mosquitto etc) repos to use stretch repos, where available.
DietPi-Software | NZBget: Added optimizations to reduce load on CPU, and, write cache specific to total RAM: https://github.com/Fourdee/DietPi/issues/1040
DietPi-software | BitTorrent (ALL): Write cache memory size is now set to 1/10th of total RAM. Previously 1/8th. This is to prevent excess RAM usage in multiple software combo installations. This applies to new installations only: http://dietpi.com/phpbb/viewtopic.php?f=11&t=2021#p7677
DietPi-Software | NTPD check improvements: Added options to retry NTPD update, or, override NTPD, when NTPD fails to update.
DietPi-Software | Nvidia GPU driver: Now available for installation (Native PC image only). Can also be configured in DietPi-Config: https://github.com/Fourdee/DietPi/issues/1007#issuecomment-312442384
Bug fixes:
DietPi-Autostart | Lower frame buffer for AmiBerry SDL2 now set correctly (480p).
DietPi-Autostart | Custom: Converted to SystemD service. This resolves issues with previously auto login system we used on headless devices: https://github.com/Fourdee/DietPi/issues/1024
DietPi-Config | Changing NTPD modes, will no longer flood the over current screen with print: https://github.com/Fourdee/DietPi/pull/1035
DietPi-Config | OPi Zero (H2+): Resolved an issue where setting 3.5mm output would not unmute lineout. Many thanks to @kurtjcu! https://github.com/Fourdee/DietPi/issues/1026
DietPi-Software | Resolved an issue where Mono libary would fail to install on ARMv6. This effected Emby, Sonarr, Radarr, Jackett. Many thanks to Larmo for reporting this: https://github.com/Fourdee/DietPi/issues/1023
DietPi-Software | AmiBerry: No longer installs Mono libs.
DietPi-Software | Emby: Now installs required Mono libs.
DietPi-Software | Stretch, Fail2Ban: Installation now functional. Many thanks to @noplanman for the fix: https://github.com/Fourdee/DietPi/issues/475#issuecomment-310873879
DietPi-Software | Stretch, OpenSSH Server: Resolved an issue where uninstalling openSSH server would fail due to apt package changes with openssh-blacklist*.
General | tmpfs /tmp: is now disabled for all devices with <= 512MB of RAM. This is to prevent out of space errors during mono based sofware installs (and possibly others): https://github.com/Fourdee/DietPi/issues/1027
General | SystemD daily apt processing: Is now disabled by default, as this would interfere with apt/dpkg locks. DietPi-Software updates apt, as needed during software installs: https://github.com/Fourdee/DietPi/issues/1032#issuecomment-311942730
General | Resolved an issue where USB-DAC setting could lose the alsa HW:x,x device after reboot, in cases where USB kernel init takes longer than when our boot service is launched: https://github.com/Fourdee/DietPi/issues/1051
-----------------------------------------------------------------------------------------------------------
v152
(17/06/17)
Changes / Improvements / Optimizations:
DietPi RPi Kernel | Updated to 4.9.30
Sparky SBC Kernel | Updated: https://github.com/Fourdee/DietPi/issues/1015
Odroid XU4 | Image updated to include kernel support for EMMC 5.1. Many thanks to Meveric.
DietPi-Config | Added support for Allo Mini BOSS DAC and Allo DigiOne: https://github.com/Fourdee/DietPi/issues/999
DietPi-Software | PlexPy: Now available for installation. Many thanks to @FireHelmet for providing us with the installation scripts!: https://github.com/Fourdee/DietPi/issues/971
DietPi-Software | Radarr: Now available for installation. Automatically downloads movies. Many thanks to @FireHelmet for providing us with the installation scripts!: https://github.com/Fourdee/DietPi/issues/966
DietPi-Software | Sonarr: Now available for installation. Automatically downloads TV shows. Many thanks to @FireHelmet for providing us with the installation scripts!: https://github.com/Fourdee/DietPi/issues/966
DietPi-Software | Jackett: Now available for installation. API for trackers, can be used with Sonaar/Radaar etc. Many thanks to @FireHelmet for providing us with the installation scripts!: https://github.com/Fourdee/DietPi/issues/1010
DietPi-Software | JRiver: Now available for installation. RPi only: https://github.com/Fourdee/DietPi/issues/988
DietPi-Software | NZBget: Now available for installation. Fast NZB download manager (c++) with web interface: https://github.com/Fourdee/DietPi/issues/1013
DietPi-Software | apc.php: Now installs latest version from github. Many thanks to @MichaIng: https://github.com/Fourdee/DietPi/issues/475#issuecomment-305898287
DietPi-Software | Pydio: New installs latest version. Many thanks to @noplanman: https://github.com/Fourdee/DietPi/pull/1008
Bug fixes:
DietPi-Config | MP2/WVC1 key entry: Resolved an issue where decode_XXX entries were not being generated: https://github.com/Fourdee/DietPi/issues/885#issuecomment-305731094
DietPi-Software | Plex Media Server (x86_64) installation now functional (due to URL changes): https://github.com/Fourdee/DietPi/issues/998
DietPi-Software | Resolved an issue where incompatible software titles, were not being disabled for x86_64.
DietPi-Software | WiringPi: Installs will be updated to latest version. This is to ensure compatibility with 4.9 kernel on RPi: https://github.com/Fourdee/DietPi/issues/1001
DietPi-Services | Stretch: Resolved an issue with MariaDB installations, DietPi will no longer launch both mysql and mariaDB services. Many thanks to @MichaIng for his assistance on this: https://github.com/Fourdee/DietPi/issues/1000
DietPi-Software | Stretch: Resolved an issue with deprecated --force-yes during apt installs. Many thanks to @MichaIng for providing the solution!: https://github.com/Fourdee/DietPi/issues/1018
-----------------------------------------------------------------------------------------------------------
v151
(01/06/17)
Images:
OPi Zero Plus 2 (H5): Image now available: https://github.com/Fourdee/DietPi/issues/876
Changes / Improvements / Optimizations:
RPi 3 USB Boot | Now supported with our updated v150 image. USB boot loader bit must be enabled on the device (see DietPi-Config | Advanced Options > USB Boot), prior to functional USB boot: https://github.com/Fourdee/DietPi/issues/970#issuecomment-304264851
General | NTP wait increased to 30 seconds (from 20): https://github.com/Fourdee/DietPi/issues/954
DietPi-Config | Advanced Options > USB Boot | Added for RPi 3 only. Enables the device to boot from USB mass storage devices: https://github.com/Fourdee/DietPi/issues/983#issue-231863978
DietPi-Config | Display Options > LED Control: New feature. Allows you to set trigger types for all LEDs on system (eg: off/heartbeat). Automatically applied during boot: https://github.com/Fourdee/DietPi/issues/968
DietPi-Config | Tools > Filesystem benchmarks | Added ability to use a custom location, by selecting from a list of active mounts on system. This also includes CIFS/SAMBA mounts etc.
DietPi-Drive_Manager | Support for PARTUUID fstab entries/mounts: https://github.com/Fourdee/DietPi/issues/970
DietPi-Software | Koel: Now available for installation. Web interface audio streamer. Many thanks to @sootstone for the install notes! https://github.com/Fourdee/DietPi/issues/797
DietPi-Software | Remot3.it (formally Weaved): Updated to latest version (1.3-07v) to allow support for Remot3.it. Existing installations will need to uninstall/reinstall to upgrade. Available binaries now limited to ARMv6/7 (eg: RPi): https://github.com/Fourdee/DietPi/issues/978
DietPi-Software | ReadyMedia (formally MiniDLNA): Updated all references to software names: https://github.com/Fourdee/DietPi/issues/979
DietPi-Software | Shairport-sync: Re-compiled to include MetaData by default: https://github.com/Fourdee/DietPi/issues/962
DietPi-Software | NextCloud: Updated to latest version (12.0.0), existing installations will need to uninstall/reinstall to update: https://github.com/Fourdee/DietPi/issues/974
DietPi-Software | sabnzbd: Updated to latest version (2.0.1), existing installations will need to uninstall/reinstall to update: https://github.com/Fourdee/DietPi/issues/865#issuecomment-305461703
Bug fixes:
General | Resolved a critial issue with VM images, due to DietPi-Drive_Manager functions exiting, prior to providing valid exit code, rendering most DietPi scripts unavailable. Many thanks to @sosher and @powerzumsel for reporting this: https://github.com/Fourdee/DietPi/issues/960
DietPi-Config | Disabling CPU freq limits, will now re-apply the highest clock before-hand.
DietPi-Config | XU4 4.9: CPU freq limits for 2GHz cores now available: https://github.com/Fourdee/DietPi/issues/926
DietPi-Drive_Manager | Resolved RootFS detection on script launch, with RPi. Due to /dev/root reported mount source, as appossed to /dev/mmcblk0p2: https://github.com/Fourdee/DietPi/issues/959
DietPi-Software | Shairport-sync: Resolved issues with config file having no effect. Location updated to /usr/local/etc/shairport-sync.conf: https://github.com/Fourdee/DietPi/issues/962#issuecomment-301735237
-----------------------------------------------------------------------------------------------------------
v150
(15/05/17)
Changes / Improvements / Optimizations:
General | Preperation for Odroid XU4 4.9 kernel support, once its released through apt: https://github.com/Fourdee/DietPi/issues/899
General | First Run Setup: Partition resize/expansion now supports /dev/mmcblk[0-10]: https://github.com/Fourdee/DietPi/issues/899#issuecomment-298912660
General | ASUS TB: Image has been updated, brings it up to Debian Stretch and latest kernel (as per official ASUS beta image v1.8).
General | Stretch: Now installs Chromium via apt.
General | DietPi RPi Kernel: Updated to 4.9: https://github.com/Fourdee/DietPi/issues/936
General | rpi_boardinfo: Has been removed from DietPi scripts. Now contained within dietpi-obtain_hw_model: https://github.com/Fourdee/DietPi/issues/936#issuecomment-301055299
DietPi-Autostart | Added ability to select "custom", editing script located in /etc/dietpi/autostart.sh, to launch any command during boot: https://github.com/Fourdee/DietPi/issues/916
DietPi-Config | Display Options: Added ability to enter MPEG2/VC1 keys for RPi: https://github.com/Fourdee/DietPi/issues/885
DietPi-Config | WiFi Hotspot: Added ability to toggle on/off state of hotspot: https://github.com/Fourdee/DietPi/issues/924
DietPi-Drive_Manager | Added support for setting Read Only/Read Write filesystems: https://github.com/Fourdee/DietPi/issues/229
DietPi-Process_Tool | Added support for PiHole FTL.
DietPi-RAMdisk | Log files now include timestamps. Thanks @WolfganP: https://github.com/Fourdee/DietPi/issues/905#issuecomment-298241622
DietPi-RAMlog | Mode 2: PiHole logs now included in hourly backups: https://github.com/Fourdee/DietPi/issues/933
DietPi-Software | CouchPotato: Now available for installation: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=7212#p7212
DietPi-Software | Python-Pip: Also installs python-dev by default. Required for compiling.
DietPi-Software | WiringPi: Now available for BPi Pro: https://github.com/Fourdee/DietPi/issues/937
DietPi-Software | Blynk Server: Updated to latest version (0.24) for new installations only. Thanks @phonicmouse: https://github.com/Fourdee/DietPi/pull/912
DietPi-Software | UrBackupSrv: Updated to latest version (2.1.19) for new installations only. Thanks @mtdjr : https://github.com/Fourdee/DietPi/issues/948
Bug fixes:
General | RPi: HW_MODEL_INDEX detection has changed. Now uses revision codes pulled from /proc/cpuinfo. This is mainly to support 4.9 kernel which lacks correct BCM code we previously used: https://github.com/Fourdee/DietPi/issues/936
General | If NTPD has not been run, it will be launched automatically, before waiting for status completion: https://github.com/Fourdee/DietPi/issues/919
General | Resolved an issue with incorrect temp readouts on H3/H2+ and NanoPi M2/M3 boards. Many thanks to @hectorcamp for the report: https://github.com/Fourdee/DietPi/issues/909
General | RPi kernel is now overwritten without cleanup, to prevent failed unzip (0bytes free space) rendering system unbootable: https://github.com/Fourdee/DietPi/issues/905
General | NanoPi M3: CIFS now built into our kernel: https://github.com/Fourdee/DietPi/issues/920
DietPi-Config | Sound Card: Correct name for Audiophonics I-Sabre 9028, as this driver is only compatible with that device.
DietPi-Drive_Manager | Resolved an issue where changing formatting options, prior to RootFS transfer, would prevent RootFS transfer completing: https://github.com/Fourdee/DietPi/issues/926#issuecomment-301256888
DietPi-RAMdisk | Disabled clearing of DietPi files, prior to disk save, in attempt to prevent loss of DietPi files in /boot, in 0byte free space situations: https://github.com/Fourdee/DietPi/issues/905#issuecomment-298241622
DietPi-RAMLog | Tweaked log clearing for PiHole FTL logs: https://github.com/Fourdee/DietPi/issues/918#issuecomment-299173649
DietPi-Software | At least 500MB of free space is now required on RootFS, before software will be installed: https://github.com/Fourdee/DietPi/issues/905#issuecomment-298343932
DietPi-Software | Resolved an issue where unauthenticated packages (eg: from other repos), would prevent apt-get upgrade from completing, due to lack of --force-yes.
DietPi-Software | Resolved an issue with SubSonic installation failing, due to package conflicts with lame and libmp3lame (from our ffmpeg): https://github.com/Fourdee/DietPi/issues/946
DietPi-Update | At least 500MB of free space is now required on RootFS, before DietPi can be updated: https://github.com/Fourdee/DietPi/issues/905#issuecomment-298343932
-----------------------------------------------------------------------------------------------------------
v149
(28/04/17)
New Device / Images:
OrangePi Zero Plus 2 (H3) | https://github.com/Fourdee/DietPi/issues/876#issuecomment-294464779
OrangePi Win | https://github.com/Fourdee/DietPi/issues/875#issuecomment-296160956
OrangePi Prime | https://github.com/Fourdee/DietPi/issues/874#issuecomment-297675707
Changes / Improvements / Optimizations:
DietPi-Config | Display Rotation: New options for RPi HDMI output and Touchscreen devices. DietPi also calculates FB X/Y flip automatically, if required to utilize full screen under 90/270 rotations. Many thanks to @midwan for RPi touch screen testing: https://github.com/Fourdee/DietPi/issues/859
DietPi-Config | Hostname change: Now prompts for immediate reboot. This is to avoid potential issues with software installations and non-updated hostname on system. Many thanks to @9H5G for the suggestion: https://github.com/Fourdee/DietPi/issues/880
DietPi-Config | Audio > Sound Card: Updated hifiberry-dac to include HiFiBerry MiniAMP, many thanks to ta11 for the info: https://twitter.com/ta11/status/852599202186227712
DietPi-Config | Swapfile: Added ability to select Auto size (1GB - total RAM = size). Auto is now the default. Mainly to prevent out of memory errors on recent influx of 256MB boards.
DietPi-Obtain_Hw_Model | Optimized/reduced count of total HW_ARCH (from 21 to 10). Will improve performance in DietPi-Software due to reduced array size.
DietPi-RAMlog | PiHole: PiHole FTL log file is now excluded from 1 hour clear (preserves current day logs): https://github.com/Fourdee/DietPi/issues/868
DietPi-Software | Amiberry SDL2: Now available for installation. SDL2 Amiberry is currently in dev/testing. can be enabled with dietpi-autostart and selecting SDL2 option. Roughly 2x FPS increase over SDL1: https://github.com/Fourdee/DietPi/issues/850
DietPi-Software | VirtualHere: Now available for installation. Allows you to access psychically attached USB devices, over the network: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=6709#p6709
DietPi-Software | SABnzbd: Now available for installation. NZB download manager with web interface: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=6747#p6747
DietPi-Software | Spotify Connect Web: Now available for installation. Web interface, client and player for Spotify Premium: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=7013#p7013
DietPi-Software | SDL2: Now available for installation in additional linux software (RPi only).
DietPi-Software | FFmpeg: (RPi devices) now installs our binaries built with OpenMAX HW encoding enabled: https://github.com/Fourdee/DietPi/issues/869
DietPi-Software | AmiBerry: Renamed all references of uae4arm to AmiBerry: https://github.com/Fourdee/DietPi/issues/850
DietPi-Software | NAA Daemon: Updated to latest version (3.5.1-35). Many thanks to volpone for the heads up: http://dietpi.com/phpbb/viewtopic.php?f=11&t=1832
General | DietPi RPi Kernel: Now supports 384KHz audio output. Tested with Allo BOSS DAC and JustBoom-DAC: https://github.com/Fourdee/DietPi/issues/900#issuecomment-297775790
General | ARMbian built images: Console boot verbosity increase.
General | DietPi user: Now created for testing "dietpi". We are aiming to phase out root with our DietPi user in the future, currently, this account is for testing/debugging only. Default password is "dietpi" if "AUTO_Global_Password=" is unchanged in dietpi.txt: https://github.com/Fourdee/DietPi/issues/796
General | RPi Jessie: Image updated to latest
General | AmiBerry: Image updated to latest
Bug fixes:
DietPi-Process_Tool | Emby server: Now supported.
DietPi-CPU_Info | Now supports devices used in a freezer (- values) :D. Thanks to Gordon for reporting and testing this: http://dietpi.com/phpbb/viewtopic.php?f=11&t=1677&p=6800#p6790
DietPi-Software | Amiberry SDL1: NUM/CAPS LEDs are now fully functional: https://github.com/Fourdee/DietPi/issues/760#issuecomment-288496760
-----------------------------------------------------------------------------------------------------------
v148
(08/04/17)
Changes / Improvements / Optimizations:
DietPi-Config | WiFi: Country code is now also applied to cfg80211 module params (ieee80211_regdom=): https://github.com/Fourdee/DietPi/issues/838
DietPi-Config | Network NAS/Misc: Added option to delay boot, until a valid network connection is established: https://github.com/Fourdee/DietPi/issues/842
DietPi-Config | Audio > Sound Card: Added support for AudioPhonics I-Sabre-K2M (9018K2M): https://github.com/Fourdee/DietPi/issues/716
DietPi-Software | NTPD check/wait: Is now bypassed if no valid network connection is available. It will be checked again, before software installation: https://github.com/Fourdee/DietPi/issues/840
DietPi-Software | Tonido: Now available for installation. Lightweight alternative to NextCloud/Owncloud: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=6476#p6476
DietPi-Software | IceCast: Now available for installation. This is a Shoutcast streaming server, using DarkIce for audio input: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=6526#p6526
DietPi-Software | MotionEye: Now available for installation (RPi only). Web interface and surveillance for your RPi/USB camera. Mainly focused towards motion detection usage: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&start=100
DietPi-Software | CloudPrint (Google): Now available for installation. Print server with support for Google cloud printing. Many thanks to Sciamano for his assistance with testing: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&start=100#p6630
DietPi-Set_Hardware | RPi Camera: Now enables bcm2835-v4l2 by default. Required for /dev/video0 stream (mainly for motioneye).
General | Boot: All failed drive mounts will be re-mounted after network connection is established. This is mainly a failsafe for CIFS/net shares, to ensure they are mounted again after network established: https://github.com/Fourdee/DietPi/issues/842#issuecomment-289448261
Bug fixes:
DietPi-Software | YaCy: Web interface admin details are now set during install. Username = admin, password = dietpi. Many thanks to Pilovali for reporting this!:
DietPi-Software | Gogs: Installation now resolved. Due to https://dl.gogs.io/ removing "latest" links for binary download. Now hosted on dietpi.com: https://github.com/Fourdee/DietPi/issues/833
DietPi-Software | OMV: Has been disabled. We have recieved too many reports from users with issues, due to incompatibility with DietPi. As we cant control what OMV does and how it does it, we cannot support it: https://github.com/Fourdee/DietPi/issues/851
DietPi-RAMlog | PiHole: Resolved an issue where PiHole logs were being cleared every 1 hour, if default locale on system is not en_GB. PiHole logs allow for current day and 5MB size limit. Many thanks to @k-plan for his assistance with this one: https://github.com/Fourdee/DietPi/issues/839
General | Cron-Daily: Removed a df export left over from auto TRIM code (no longer used).
General | RoseapplePi CPU temp: Now functional. Many thanks to @joaofl for this fix: https://github.com/Fourdee/DietPi/issues/848
RPi Stretch:
DietPi-Software | FFmpeg now sucessfully installs: https://github.com/Fourdee/DietPi/issues/475
-----------------------------------------------------------------------------------------------------------
v147
(24/03/17)
New Image:
Asus Tinker Board | http://dietpi.com/phpbb/viewtopic.php?f=8&t=1539#p6305
Changes / Improvements / Optimizations:
DietPi-AutoStart | Added option to launch Chromium, without a desktop: https://github.com/Fourdee/DietPi/issues/835
DietPi-Config | Audio > Sound Card: Added support for Soekris DAM1021 DAC: https://github.com/Fourdee/DietPi/issues/808
DietPi-Process_Tool | Blynk Server: now supported.
DietPi-Software | Aria2: Download manager with slick web UI interface, now available for install: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=6177#p6177
DietPi-Software | YaCy: Decentralized open source search engine, now available for install: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=6202#p6202
DietPi-Software | Blynk Server: config file added to the diepi user data folder, thanks to @joaofl: https://github.com/Fourdee/DietPi/pull/810
DietPi-Software | ShairPort-Sync: Updated to 3.0.2. SOXR interpolation is now enabled by default (will improve sound quality): https://github.com/Fourdee/DietPi/issues/819
DietPi-Software | MPD: Updated to 19.21. Also includes optional plugin support for UPNP playback, can be enabled in /etc/mpd.conf (https://github.com/Fourdee/DietPi/issues/821#issuecomment-288057932): https://github.com/Fourdee/DietPi/issues/821
DietPi-Software | NetData: Updated to 1.6. Also available for Virtual Machines (AMD64/x86_64)!: https://github.com/Fourdee/DietPi/issues/832
Bug fixes:
DietPi-Config | Change Locale: Once changed, the active locale on system will now be pumped into /etc/environment (thanks John for this), this should prevent 0.UTF-8 issues some of our users are reporting: https://github.com/Fourdee/DietPi/issues/825
DietPi-Software | Removed references for dietpi-uninstall. Many thanks to Pilovali!
-----------------------------------------------------------------------------------------------------------
v146
(14/03/17)
New Device:
RPi Zero W | Now fully supported (including onboard WiFi/BT): https://github.com/Fourdee/DietPi/issues/787
Changes / Improvements / Optimizations:
General | Wlan: 'disable power save' on boot, is now a service, installed when WiFi is enabled in 'dietpi-config' or via 'dietpi-set_hardware'.
General | DietPi RPi Kernel: Updated to latest.
DietPi-Drive_Manager | Added support for F2FS filesystem: https://github.com/Fourdee/DietPi/issues/802
DietPi-Drive_Manager | Transfer RootFS now allows for selection of filesystem types on target partition (eg: f2fs), RPi only: https://github.com/Fourdee/DietPi/issues/802
DietPi-Software | If NTPD is used (default on DietPi) for time sync, and, NTPD fails to sync, DietPi-Software will now exit, to prevent further issues with incorrect time during software installations: https://github.com/Fourdee/DietPi/issues/786
DietPi-Software | Syncthing-inotify: Installation updated to 0.8.5 (thanks John!)
Bug fixes:
General | RPi: Resolved an issue with sudo not having setuid bit set. Many thanks to @WolfganP for the fix: https://github.com/Fourdee/DietPi/issues/794
General | NanoPi M3: USB DACs are now functional with our latest kernel update: https://github.com/Fourdee/DietPi/issues/763
DietPi-Software | PiHole: Resolved issues with enable/disable adblocking and DHCP server having no effect: https://github.com/Fourdee/DietPi/issues/775
DietPi-Software | Gogs: Resolved issues with URL failing connection test due to them being renamed: https://github.com/Fourdee/DietPi/issues/793
-----------------------------------------------------------------------------------------------------------
v145
(04/03/17)
Changes / Improvements / Optimizations:
DietPi-Automation | Automatic format of USB drive: This feature has now been disabled and is no longer supported. This is due to the vast changes with how DietPi handles external drives: https://github.com/Fourdee/DietPi/issues/751#issuecomment-281163299
DietPi-Backup | Backup location: now has a list option, which allows user to select from all active mounts on system: https://github.com/Fourdee/DietPi/issues/751#issuecomment-281689544
DietPi-Cloudshell | Storage locations: now has a list option, which allows user to select from all active mounts on system.
DietPi-Drive_Manager | Is now capable of supporting various partitions on a drive, and, detects all drives on system. Default mount type is now UUID. Now also capable of supporting EMMC+SD combo on Odroid C2. RootFS transfer is now unlimited and can be used multiple times (RPi/Odroid only) : https://github.com/Fourdee/DietPi/issues/751
DietPi-Software | User data location: now has a list option, which allows user to select from all active mounts on system: https://github.com/Fourdee/DietPi/issues/751#issuecomment-281689544
DietPi-Software | Installing both MySQL and MariaDB at the same time, is no longer possible. This it to prevent incompatible MySQL + MariaDB installation: https://github.com/Fourdee/DietPi/issues/761
DietPi-Software | 1st run questions have been removed. Dedicated USB drives can be setup in the 'user data' option in menu: https://github.com/Fourdee/DietPi/issues/751#issuecomment-281163299
DietPi-Software | NextCloud: Will always install the latest sub version of v11 (eg: 11.0.1): https://github.com/Fourdee/DietPi/issues/779
DietPi-Software | HAProxy: Now installs latest version 1.7.2. Thanks to Jerome.
DietPi-Software | Python-Pip: Now available for install via Linux software menu: https://github.com/Fourdee/DietPi/issues/784
DietPi-Software | Blynk Server: Now available for installation: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=5901#p5901
DietPi-Software | Apt errors: Are now logged to '/var/log/dietpi-software_apt.log', and, displayed during notify: https://github.com/Fourdee/DietPi/issues/791
DietPi-Sync | Sync location: now has a list option, which allows user to select from all active mounts on system: https://github.com/Fourdee/DietPi/issues/751#issuecomment-281689544
General | Odroids: Changed from http://oph.mdrjr.net/meveric to our new mirror http://fuzon.co.uk/meveric for Meverics repo.
General | WiFi Power management is now disabled during boot using 'iwconfig'. This is in addition to existing power options set in /etc/network/interfaces, which have no effect wlan devices such as ap6212 (Neo Air). In other words, WiFi should provide a more stable and consistent connection on those devices.
Bug fixes:
General | ARMbian resizefs service. As this does not get removed by ARMbians initial setup scripts, we will remove it.
General | All DEV 4.9 kernel images have been reverted back to STABLE 3.x. Recent 4.10 DEV updates from ARMbian are too unstable for acceptable usage of device: https://github.com/Fourdee/DietPi/issues/778#issuecomment-283112473
General | ARMbian 'log2ram' has been removed on ARMbian built images, as this will conflict with DietPi-RAMlog: https://github.com/Fourdee/DietPi/issues/781
DietPi-Software | Resolved an issue with OpenBazaar installation, due to python-pip error, resulting in a failure to run OB binary: https://github.com/Fourdee/DietPi/issues/784
DietPi-Software | Resolved an issue where internet connection test would fail, due to 404 recieved from http://ftp.debian.org/debian. Many thanks to @tohjg for the fix: https://github.com/Fourdee/DietPi/issues/755#issuecomment-282203823
DietPi-Software | Resolved an issue with NAA Daemon failing to install, due to URL links being dropped for stretch packages in Debian repo, again. These binaries are now permanently hosted on DietPi.com: https://github.com/Fourdee/DietPi/issues/754
DietPi-Config | Sound card: Allo Cheapo, now sets the correct device index when running under optical out mode. Many thanks to Sudeep for the fix:
DietPi-Config | Resolved an issue with WaveShare32 on RPi failing to run X: https://github.com/Fourdee/DietPi/issues/767
RPi Stretch:
DietPi-Drive_Manager | No longer hangs when launched: https://github.com/Fourdee/DietPi/issues/751#issuecomment-280850954
-----------------------------------------------------------------------------------------------------------
v144
(16/02/17)
Changes / Improvements / Optimizations:
DietPi-Config | Audio > Sound card: Added support for Allo Boss DAC: https://github.com/Fourdee/DietPi/issues/748
DietPi-Config | Audio > PSU Noise Reduction: This mode attempts to reduce power consumption on your SBC. In turn, this may reduce PSU inflicted noise, that may degrade audio output quality. When enabled, the following is set CPU gov = Powersave, HDMI output = Disabled: https://github.com/Fourdee/DietPi/issues/757
DietPi-Software | AmiBerry (uae4arm): Updated to latest version (2.1): https://github.com/Fourdee/DietPi/issues/756
DietPi-Software | DietPiCam: Updated to latest version (6.2.29). To update existing installations, this requires a reinstall: https://github.com/Fourdee/DietPi/issues/737
DietPi-Software | Roon Bridge updated to v1.3. Now includes support for ARM64 devices (eg: Odroid C2/Pine A64): https://github.com/Fourdee/DietPi/issues/749
DietPi-Services | Added ability to read user created include file. Allowing users to add additional services for DietPi to control: https://github.com/Fourdee/DietPi/issues/740
Bug fixes:
DietPi RPi Kernel | Resolved an issue with missing firmware for common and onboard RPi devices (eg: rpi 3 wifi): https://github.com/Fourdee/DietPi/issues/741
SparkySBC | Kernel upgrade from Allo to improve USB DAC support.
DietPi-Config | Resolved an issue where Samba mounts would not always mount during boot. Many thanks to @Sciamano for this fix!: https://github.com/Fourdee/DietPi/issues/744
DietPi-Software | Resolved an issue with NoMachine armv7 binary incorrect url. Many thanks to @Qnx: https://github.com/Fourdee/DietPi/issues/750
DietPi-Software | Resolved an issue with NAA Daemon failing to install, due to URL links being dropped for stretch packages in Debian repo. Many thanks to Rene for spotting this: https://github.com/Fourdee/DietPi/issues/754
DietPi-Software | Resolved an issue where internet connection test would fail, when using apt sources with ftp://. Many thanks to @elRadix for reporting this: https://github.com/Fourdee/DietPi/issues/755
-----------------------------------------------------------------------------------------------------------
v143
(29/01/17)
Images:
BPi Pro | Image has been updated to 4.9 kernel. Onboard WiFi is now functional, HDMI audio is not supported at this time (3.5mm only): https://github.com/Fourdee/DietPi/issues/732
Changes / Improvements / Optimizations:
General | RPi: DietPi kernel is now installed by default. This adds support for Allo Piano 2.1 DAC, and 192KHz 16bit HDMI output.
DietPi-RAMdisk | Enabled additional logging for this process, as some users are experiencing issues. This should help us find the cause: https://github.com/Fourdee/DietPi/issues/719
DietPi-Config | Audio > Sound card: Added support for RPi "Pi-DIGI+"
DietPi-Software | NeoVim: Now available for RPi Stretch: https://github.com/Fourdee/DietPi/issues/692
DietPi-Software | O!MPD: Now available for installation. Slick, feature-rich MPD web interface music player: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=5171#p5171
DietPi-Software | NetData: Updated to latest (1.5.0): https://github.com/Fourdee/DietPi/issues/728
DietPi-JustBoom | Added option to launch Alsamixer
DietPi-JustBoom | Added various options unique to the Allo Piano 2.1 DAC: https://github.com/Fourdee/DietPi/issues/714
Bug fixes:
General | Pine 64 FB cursor is now visible: https://github.com/Fourdee/DietPi/issues/596
General | LED heartbeat for H3 is now functional and applied during boot.
DietPi-Config | Display > Added support for JustBoom IR Remote. Supports Kodi & MPD controls by default: https://github.com/Fourdee/DietPi/issues/735
DietPi-Config | Audio > USB-DAC: When enabled, will always re-detect and apply active card index during boot. Many thanks to "J. Künz" for these fixes!
DietPi-Config | Audio > Sound card: Corrected options for BPi Pro. Many thanks to "J. Künz" for these fixes!
DietPi-Config | Audio > Sound card: Corrected options for OPi Zero (H2+) HDMI and 3.5mm analogue (default).
DietPi-Config | Audio > Sound card: Allo Piano 2.1 DAC for RPi is now functional. Driver provided by DietPi kernel: https://github.com/Fourdee/DietPi/issues/727
DietPi-Software | Failure to move MySQL DB store will now prevent further action being taken: https://github.com/Fourdee/DietPi/issues/715
DietPi-Software | Resolved an issue with VNC4server/RealVNC install, that prevented desktop launch command being inserted to xstartup, if a desktop was installed beforehand:
DietPi-Software | Resolved an issue where installing LMS and SqueezeLite at the same time, would result in apt failure 100: https://github.com/Fourdee/DietPi/issues/736
-----------------------------------------------------------------------------------------------------------
v142
(14/01/17)
New Image:
DietPi for Sparky SBC (Allo) is now available: http://dietpi.com/phpbb/viewtopic.php?f=8&t=1161&p=4922#p4922
Changes / Improvements / Optimizations:
DietPi-Backup | Now supports BTRFS filesystems for target backup location.
DietPi-Backup | Now features "System only" and "Full backup" modes. In "Full backup" mode, DietPi User data is included in backups: https://github.com/Fourdee/DietPi/issues/685
DietPi-Config | Audio > Sound card: "Allo Piano DAC 2.1", now applies correct module and dtoverlay (previously Piano DAC 1 was used): https://github.com/Fourdee/DietPi/issues/699
DietPi-Config | Audio > Sound card: Added support for "Allo Cheapo" sound card on Sparky SBC.
DietPi-Config | Audio > Sound card: Added support for HDMI/3.5mm sound cards on NanoPi M2/M3.
DietPi-Config | Audio > Sound card: Added option for force 3.5mm output with Onboard RPi: https://github.com/Fourdee/DietPi/issues/704
DietPi-Config | Audio > Sound card: Added support for selecting USB-DAC sound cards: https://github.com/Fourdee/DietPi/issues/683
DietPi-Config | Audio > Sound card: Added support for RPi 'HifiBerry DIGI Pro' sound card.
DietPi-Config | WiFi: Reduced the DHCP retry count and timeouts, to prevent a unnecessary wait when enabling WiFi for the 1st time: https://github.com/Fourdee/DietPi/issues/711
DietPi-Software | Open Media Vault: Is now available for installation: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=4859#p4859
DietPi-Software | MySQL/MariaDB: Data store is now located in the DietPi User data location (eg: /mnt/dietpi_userdata/mysql). Should offer improved performance for USB drive users: https://github.com/Fourdee/DietPi/issues/672
DietPi-Software | NetData updated to latest version (1.4.0): https://github.com/Fourdee/DietPi/issues/696
DietPi-Software | Added support for Apt-Fast if installed: https://github.com/Fourdee/DietPi/issues/698
DietPi-Software | PiHole: Access via http://ip/admin is now supported, for new installations: https://github.com/Fourdee/DietPi/issues/703
Typo | Correct use of MHz (previously Mhz). Thanks to Rainer.
Bug fixes:
General | RPi 3 onboard Bluetooth is now functional: https://github.com/Fourdee/DietPi/issues/693
General | Odroid C2: Resolved an issue with deb-multimedia repo failing GPG key: https://github.com/Fourdee/DietPi/issues/677
General | Resolved an issue where access to /mnt/usb_1 would hang the program/command, when no USB drive was attached: https://github.com/Fourdee/DietPi/issues/684
General | Resolved an issue where alsamixer was unable to load sound card device: https://github.com/Fourdee/DietPi/issues/705
General | Odroids: Resolved an issue where Meverics custom CPU governor script, would override DietPi applied CPU govs during boot.
DietPi-Config | Resolved an issue where NTPD Daemon + Drift mode, did not create drift file. This mode has now been moved to systemd-timesyncd: https://github.com/Fourdee/DietPi/issues/709
DietPi-Config | Enabling the RPi camera will now apply the required 128MB minimum GPU memory split, if not already higher: https://github.com/Fourdee/DietPi/issues/706
DietPi-Software | Resolved issues with non-functional RPi camera with DietPi-Cam: https://github.com/Fourdee/DietPi/issues/706
DietPi-Automation | Resolved an issue with automated 1st run installation would hang on Odroid C2, during patch stage: https://github.com/Fourdee/DietPi/issues/689
Sparky SBC | Resolved an issue with touch screen module causing dmesg errors associated with it. This module is now disabled: https://github.com/Fourdee/DietPi/issues/699#issuecomment-271362441
RPi Stretch:
General | RPi 3 Onboard WiFi is now functional.
-----------------------------------------------------------------------------------------------------------
v141
(31/12/16)
Images:
NanoPi NEO | This image has been updated to kernel 4.9, appears more stable to 3.x. Also fixes a few issues relating to USB WiFi and i2c errors: https://github.com/Fourdee/DietPi/issues/667
NanoPi NEO Air | This image has been updated to kernel 4.9, appears more stable to 3.x. Also fixes a few issues relating to onboard WiFi, USB WiFi and i2c errors. Many thanks to @zador-blood-stained at ARMbian to help make this possible: https://github.com/Fourdee/DietPi/issues/640
Changes / Improvements / Optimizations:
DietPi-Software | Reduced the verbosity of onscreen text during apt installations.
DietPi-Software | PiHole: Web interface password is now set during install (default dietpi): https://github.com/Fourdee/DietPi/issues/662
DietPi-Software | UrBackup Server: Updated to latest version (2.0.38). Applies to new installations only: https://github.com/Fourdee/DietPi/issues/657
Bug fixes:
DietPi-Automation | Resolved an issue where static IPs were not being applied during 1st run dietpi-update stage. This fix applies to v140 and higher images: https://github.com/Fourdee/DietPi/issues/660
DietPi-Software | Resolved an issue where the DietPi installed version of Chromium was being overwritten by Debian repo during dist-upgrade: https://github.com/Fourdee/DietPi/issues/658
DietPi-Software | Resolved an issue where custom global password ('AUTO_Global_Password=') was not being used as MySQL login password, causing MySQL DB creations to fail: https://github.com/Fourdee/DietPi/issues/666
DietPi-Software | Resolved an issue where LMS failed to installed on Odroid C2: https://github.com/Fourdee/DietPi/issues/663
General | apt-transport-https: Is now installed by default on all devices. Required for https apt usage and resolves issues with apt simulation failing: https://github.com/Fourdee/DietPi/issues/669
-----------------------------------------------------------------------------------------------------------
v140
(21/12/16)
Changes / Improvements / Optimizations:
DietPi-Software | Mosquitto: Now available for install. Message broker that implements MQTT: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=4293#p4293
DietPi-Software | NAA Daemon: Now available for install. Signalyst Network Audio Adaptor (NAA): http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=4294#p4294
DietPi-Software | Node-Red: Now available for install. Visual tool for wiring together hardware devices, APIs and online services in new and interesting ways: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=4292#p4292
DietPi-Software | Tomcat8: Now available for install. Tomcat is a Servlet and JSP Server serving Java technologies: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=4316#p4316
DietPi-Software | Nextcloud: Updated to latest version v11 (NB: applies to new installations only): https://github.com/Fourdee/DietPi/issues/647
DietPi-Software | Syncthing: Updated to latest version v0.14.15 (NB: applies to new installations only).
DietPi-Software | Syncthing: Syncthing-Inotify is now installed by default with Syncthing: https://github.com/Fourdee/DietPi/issues/652
DietPi-Software | WiringPi: Is now also available for Odroid boards: https://github.com/Fourdee/DietPi/issues/650
DietPi-JustBoom | Added support for changing DSP Filters on sound cards that support it. eg: JustBoom, Allo Piano, Odroid HiFi Shield
DietPi-JustBoom | Added support for viewing current ALSA output stream info. Useful for checking current output freq, bitdepth etc.
DietPi-Config | IQaudIODAC: Added additional dtoverlay options for Pi-DigiAMP+.
Bug fixes:
DietPi-Cloudshell | Resolved an issue where Cloudshell would fail to start, due to tput failing the service on some devices. Many thanks to @Fabian0587, @rooted and @Saturn7 for their valuable assistance with testing: https://github.com/Fourdee/DietPi/issues/649
DietPi-Software | Wordpress: Resolved an issue where php-mysql module was not installed in some instances. Many thanks to @prp2 for reporting this: http://dietpi.com/phpbb/viewtopic.php?f=11&t=1026&p=4434#p4407
DietPi-Software | Plex Media Server: Is now disabled for ARMv6 devices. This is due to available repos removing support/packages for ARMv6 devices: https://github.com/Fourdee/DietPi/issues/648
DietPi-Software | 'AUTO_Global_Password=' in dietpi.txt: Is now also applied as the password for generated MySQL databases.
DietPi-Services | RPImonitor: This service is now triggered. Many thanks to K-Plan for reporting this.
General | C2: Resolved an issue where libc6 u6 is required, but u7 was installed: https://github.com/Fourdee/DietPi/issues/653
RPi Stretch:
DietPi-Software | HiFi: Installation has been resolved and is now functional.
DietPi-Config | Filesystem Benchmark results are now functional. Thanks to K-Plan for reporting this: https://github.com/Fourdee/DietPi/issues/475
-----------------------------------------------------------------------------------------------------------
v139
(09/12/16)
New Image:
OrangePi Plus: H3 with onboard EMMC, WiFi and SATA: http://dietpi.com/phpbb/viewtopic.php?f=8&t=980
OrangePi Zero: H2+ with onboard WiFi and PoE. This image was made possible and created by @aliosa27: http://dietpi.com/phpbb/viewtopic.php?f=8&t=985&p=4262#p4262
Changes / Improvements / Optimizations:
DietPi-Software | RealVNC Server for RPi: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=4149#p4149
DietPi-Software | Roon Bridge: Now available for install. Turns your SBC into a Roon capable audio player: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=4153#p4153
DietPi-Config | Display Options: Odroid Remote can now be enabled. This will automatically install Lirc, enable modules and setup for Odroid Remote on C1/C2/XU4: https://github.com/Fourdee/DietPi/issues/621
DietPi.com | Vastly reduced size of webpage/images for faster loading times on slow connections. Many thanks to @bhaveshgohel for this: https://github.com/Fourdee/DietPi/issues/616#issuecomment-264700382
Bug fixes:
DietPi-Software | Emby server: Is now functional. The cause was due to new additional package deps that are not provided by the Emby Debian 8 repo: https://github.com/Fourdee/DietPi/issues/619
-----------------------------------------------------------------------------------------------------------
v138
(02/12/16)
New DietPi website, logo and colour scheme:
http://dietpi.com
New Image:
NanoPi NEO Air image is now available: http://dietpi.com/phpbb/viewtopic.php?f=8&t=891#p3951
Changes / Improvements / Optimizations:
DietPi-Software | Cava: Console-based audio visualizer for MPD is now available for installation. Works on LCD HATS (eg: Odroid LCD Shield): http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=3928#p3928
DietPi-Software | Squeezelite: Updated to v1.8. Now supports releasing lock on soundcard when idle for 5 seconds: https://github.com/Fourdee/DietPi/issues/620
DietPi-JustBoom | Cava options (once installed): Can now be configured from the menu. MPD audio buffer size can now be changed.
DietPi-Config | Audio Options: 384kHz kernel can now be installed for RPi 2/3.
DietPi-Autostart | Cava option added.
DietPi-LetsEncrypt | Hardened webserver SSL security (Lighttpd) as per Hyneks article recommendations: https://hynek.me/articles/hardening-your-web-servers-ssl-ciphers/ . Many thanks to WaLLy3K for the info!
General | Odroid C2: Improved desktop performance by using FBturbo instead of Mali DDX, many thanks to Meveric for this: http://forum.odroid.com/viewtopic.php?f=138&t=19948&p=169808#p169808
General | Dmesg onscreen print level has been reduced. Mostly for Odroid C2 where HiFi Shield prints i2c info when starting/stopping stream on tty1.
General | DietPi for XenServer image has been removed and is no longer available for download.
Bug fixes:
DietPi-Set_Hardware | Resolved an issue where alsamixer would fail to function with default device.
DietPi-Cloudshell | Storage Scenes: Resolved an issue where mount locations that contained whitespace, would fail to provide stats: https://github.com/Fourdee/DietPi/issues/618
DietPi-Software | PiVPN: Reboot has been disabled in the PiVPN installer script. This is to allow DietPi-Software to complete the end stages of the installation process: https://github.com/Fourdee/DietPi/issues/611
-----------------------------------------------------------------------------------------------------------
v137
(15/11/16)
New Image:
NanoPi M1 image is now available: http://dietpi.com/phpbb/viewtopic.php?f=8&t=857#p3827
Changes / Improvements / Optimizations:
DietPi-Cloudshell | Storage scenes: now supports upto 5 additional drives. All of which can be configured and setup in dietpi-cloudshell: https://github.com/Fourdee/DietPi/issues/582
DietPi-Config | RPI 3: Onboard wifi can now be toggled on or off. This allows for use of a USB WiFi device if required: https://github.com/Fourdee/DietPi/issues/576
DietPi-Drive_Manager | RPi/Odroids: You can now transfer RootFS (SD card) to a USB drive. This feature is currently in testing, we recommend it should only be used on a fresh installation: https://github.com/Fourdee/DietPi/issues/509
DietPi-Software | TightVNC/VNC4 servers now support running in a shared desktop mode. Set dietpi_vncserver_shared_desktop=1 in dietpi.txt: https://github.com/Fourdee/DietPi/issues/607
DietPi-Software | MySQL: Has been optimized for lower memory usage. Many thanks to @trajano for this: https://github.com/Fourdee/DietPi/issues/605
DietPi-Process_Tool | Added support for RoonBridge: http://dietpi.com/phpbb/viewtopic.php?f=9&t=826&p=3862#p3862
DietPi-Update | Will now use multiple mirrors during updates.
General | Added exit paths to DietPi scripts. This is to prevent use by underprivileged users, where root/sudo access is required.
Bug fixes:
DietPi-Auto_Start | Resolved an issue where RetroPie power features did not function inside emulationstation. Many thanks to 'GaM3r2Xtreme' for providing this fix: http://dietpi.com/phpbb/viewtopic.php?f=9&t=532&p=3674#p3674
DietPi-Backup | Will preserve permissions during backups. Many thanks to @willgfx for providing this fix: https://github.com/Fourdee/DietPi/pull/595
DietPi-Config | H3-analogue soundcard is now correctly set. Many thanks to Frans for reporting this issue: http://dietpi.com/phpbb/viewtopic.php?f=11&t=843&p=3773#p3756
DietPi-Software | Chromium: Is now disabled for ARMv6 due to lack of binary. Many thanks to Christopher for reporting this: https://twitter.com/tapherjspiteri/status/798336126264061952
DietPi-Software | HaProxy: Resolved an issue where HaProxy would fail to start. Many thanks to @crazyquark for providing the fix: https://github.com/Fourdee/DietPi/issues/353#issuecomment-221372142
General | NanoPi M3/T3: CPU temp readouts are now functional.
-----------------------------------------------------------------------------------------------------------
v136
(01/11/16)
Changes / Improvements / Optimizations:
DietPi-Software | Mopidy: installation now available: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=3611#p3611
DietPi-Software | YMPD: installation updated to 1.3.0
DietPi-Config | RPi: Onboard RPI soundcard will now be disabled when another addon card is selected (frees up some memory)
DietPi-Config | RPi: The known method of forcing audio output on RPi to HDMI or 3.5mm jack is no longer effective, and, has been removed from dietpi-config (amixer cset numid=3 [0-2]).
DietPi-JustBoom | Can now be used with any soundcard, and, is now available when ALSA is installed from dietpi-software, and from dietpi-config audio options.
Image download | RPi & JustBoom images have been updated to latest versions.
Bug fixes:
DietPi-Software | Will no longer prompt the user, when dpkg requests to overwrite a configuration file, the existing conf will be used by default.
DietPi-Software | Resolved an issue where NoIp2 Sysinit service would cause a systemD double free or corruption error. Many thanks to HuffPuffin for reporting this issue! : https://github.com/Fourdee/DietPi/issues/589
DietPi-Software | Resolved an issue where OpenSSH server host keys were not being generated during installation. This previously could result in SSH connections being rejected.
DietPi-Set_Hardware | Setting WiFi country code will no longer report an error, if WiFi is disabled: https://github.com/Fourdee/DietPi/issues/590
DietPi-Config | Resolved an issue where setting JustBoom soundcard multiple times, results in multiple dtoverlay= entries: https://github.com/Fourdee/DietPi/issues/586
DietPi-JustBoom | Resolved an issue where disabling EQ and rebooting renders in no sound output: https://github.com/Fourdee/DietPi/issues/585
DietPi-JustBoom | The reset option will also reset ALSA EQ levels.
-----------------------------------------------------------------------------------------------------------
v135
(29/10/16)
New Device:
NanoPi M3/T3 DietPi image now available! Many thanks to AWL29 for creating the image and making this possible: http://dietpi.com/phpbb/viewtopic.php?f=8&t=784&p=3482#p3482
Changes / Improvements / Optimizations:
DietPi-Software | PiVPN: installation option added: PiVPN is a set of installation and configuration scrips that allows for OpenVPN installation and management, via a menu interface: https://github.com/Fourdee/DietPi/issues/570
DietPi-Software | NextCloud: Installation updated to 10.0.1, many thanks to @Bridouz: https://github.com/Fourdee/DietPi/pull/565
DietPi-Software | XU4 Cloudshell LCD Panel: Will automatically be enabled during DietPi-Cloudshell installation.
DietPi-Software | XU4: All 8 cores are now included in configuration stage. Previously we limited configurations to only use 4 CPU cores, due to heat issues with XU4. This will affect software installations such as webservers and should increase their overall performance.
DietPi-Software | Syncthing installation updated to 0.14.9.
DietPi-Software | MPD (HiFi): Updated to MPD 0.19.19 and now includes SOXR support for all SBC devices: https://github.com/Fourdee/DietPi/issues/580
DietPi-Software | PiHole: Installation now uses the official installer: https://github.com/Fourdee/DietPi/issues/583
DietPi-Config | LCD Panel addon: Added support for Odroid 3.5 inch LCD touchscreen shield: http://www.hardkernel.com/main/products/prdt_info.php?g_code=G147435282441
DietPi-Config | Soundcard: Added support for JustBoom high-end audiophile soundcards (384khz/32bit), available from Pi Supply: https://www.pi-supply.com/brand/justboom/
DietPi-Cloudshell | Now supports 480x320 resolutions (eg: Odroid 3.5 touchscreen shield).
General | DietPi-RAMdisk DietPi-RAMlog and DietPi-Boot have been converted from sysinit to SystemD.
Bug fixes:
General | XU4 Image: Resolved an issue where a corrupt image was causing power on issues for our users. Many thanks to everyone who helped report, debug and test this issue: https://github.com/Fourdee/DietPi/issues/558
DietPi-Services | Resolved an issue where a SystemD exit code of 5 would trigger a failed return state, when attempting to stop a service that isnt started/active.
DietPi-Cpu_set | DietPi will no longer attempt to set go_hispeed_load, if it is not supported by kernel (eg: XU4)
DietPi-Config | RPi 3: Resolved an issue where enabling serial console had no effect.
-----------------------------------------------------------------------------------------------------------
v134
(16/10/16)
Changes / Improvements / Optimizations:
DietPi-Software | SickRage: Is now available for installation. Automatically downloads and organises your favourite TV shows: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&start=80#p3327
DietPi-Software | LMS / Squeezebox: Now enabled for all devices.
DietPi-Config | Stress Test: Updated, options for a simple CPU burn. Results will also calculate min/max CPU temps. Logs results to file.
General | Avahi Daemon: added to dietpi-process_tool and dietpi-services.
General | NanoPi T2: Bluetooth is now installed by default. This also affects M2, shared image.
Bug fixes:
DietPi-Software | Resolved an issue where a failed libcec package installation, would terminate Kodi installations on XU4. Many thanks to Chris for reporting this: https://github.com/Fourdee/DietPi/issues/554
DietPi-Software | Nginx: Increased worker connections set during installation, to prevent in-page load failures with Nextcloud/Owncloud, and, various other web applications.
DietPi-Set_Hardware | NanoPi M2: Resolved an issue where default soundcard was being set to SPDIFTranscieve instead of HDMI/3.5mm mixer.
DietPi-LetsEncrypt | Resolved an issue where an empty string value in Input_Box function could cause a incorrect value being set in Apache2 confs. Many thanks to Keith for reporting this issue: http://dietpi.com/phpbb/viewtopic.php?f=11&t=757&p=3342
-----------------------------------------------------------------------------------------------------------
v133
(08/10/16)
Changes / Improvements / Optimizations:
DietPi-Software | Added installation option for Webmin: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=3047#p3047
DietPi-Software | Libcec3 now installed with Kodi by default: https://github.com/Fourdee/DietPi/issues/283
DietPi-Software | Emby is now available for ARM64 devices. Many thanks to Gabriel for making this possible: http://dietpi.com/phpbb/viewtopic.php?f=11&t=720&p=3120#p3117
DietPi-Software | Urbackup server installation updated to 2.0.36.
DietPi-Config | You can now change Apt mirrors from the "Networking NAS/Misc menu": https://github.com/Fourdee/DietPi/issues/519
DietPi-Config | Added ability to tweak Ondemand sampling rates in the performance menu: https://github.com/Fourdee/DietPi/issues/541
DietPi-Drive_Manager | To support large filesystems, GPT is now the default paritition table type on format, (previously MBR). Many thanks to Zone22: https://github.com/Fourdee/DietPi/issues/531
DietPi-Drive_Manager | Current userdata location is now shown in the main menu.
DietPi-Set_Cpu | If the target CPU gov is not available on the system, an alternative will be set and saved automatically.
DietPi-Automation | Added a global password var (AUTO_Global_Password=) in dietpi.txt, which will be applied to root login, and, during dietpi-software installations, for all software that use a password: https://github.com/Fourdee/DietPi/issues/533
DietPi-Automation | Added filesystem format type for USB drive format (AUTO_Dedicated_Usb_Drive_Format_Filesystem=) in dietpi.txt: https://github.com/Fourdee/DietPi/issues/537
DietPi-Automation | Added ability to force ethernet link speeds on 1st run (Ethernet_Force_Speed=) in dietpi.txt: https://github.com/Fourdee/DietPi/issues/544#issuecomment-252068249
General | Interactive is now the default CPU gov, provides improved response times: https://github.com/Fourdee/DietPi/issues/535
General | Ethtool is now installed by default. Mainly used to provide a workaround for known HW failure Pine A64 1Gbit boards: https://github.com/Fourdee/DietPi/issues/544#issuecomment-252068249
Bug fixes:
DietPi-Software | Emby has been disabled for ARMv6 devices, due to unsupported/broken repo on armv6 hardware: https://github.com/Fourdee/DietPi/issues/534
DietPi-Software | Resolved an issue where Nginx would prevent file uploads over 2MB. Many thanks to @pfeerick for reporting this and providing the solution: https://github.com/Fourdee/DietPi/issues/546
DietPi-Services | Resolved an issue where Samba services smbd and nmbd, were not being applied. Many thanks to RajatNair: https://github.com/Fourdee/DietPi/issues/542
DietPi-Config | Resolved an issue where NanoPiM2 was allowing H3 soundcards to be set.
General | Improved detection for RPi boards with warranty bit set.
-----------------------------------------------------------------------------------------------------------
v132
(25/09/16)
Changes / Improvements / Optimizations:
DietPi-Software | RPi: Added installation option for DXX-Rebirth (OpenGL port of Descent 1 & 2): http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=2963#p2963
DietPi-Software | Added installation option for Chromium. Please note, only RPi 2+ and Odroids support HW GPU acell at this time: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=3011#p3011
DietPi-Software | Added installation option for NextCloud: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=3026#p3026
DietPi-Software | XFCE will now install xfce4-terminal by default. Many thanks to UnixOutlaw for reporting this: http://dietpi.com/phpbb/viewtopic.php?f=11&t=693&p=2982#p2976
DietPi-Software | Cleaned up the default samba server config. Many thanks to Acriax: https://github.com/Fourdee/DietPi/issues/522
DietPi-Software | Php max upload size is now set automatically to the max capable on your device. Generally, 2GB for 32bit systems, 8796PB for 64bit systems. Used by programs such as Nextcloud.
DietPi-Software | UrBackup installation updated to 2.0.34.
DietPi-Update | Added a notice prior to update, with regards to: manually edited Linux configurations possibily affecting the update: https://github.com/Fourdee/DietPi/issues/525
DietPi-Drive_Manager | Added root FS (SD/EMMC) to list of drives, and option to move userdata there also.
General | p7zip is now installed by default.
Bug fixes:
DietPi-Software | User data directory of "Auto" will only be displayed on 1st run. "Auto" has no effect after 1st run installation is completed.
DietPi-Software | Will now exit on a failed apt installation, rather than continue. This will prevent any further changes (including uninstalls) from occurring. Many thanks to oshank for reporting this issue: https://github.com/Fourdee/DietPi/issues/516
DietPi-Software | Resolved failed installation with NoMachine. Many thanks to Pilovali for reporting this: https://github.com/Fourdee/DietPi/issues/527
DietPi-Services | Resolved an issue where "Samba client" would trigger "Samba server" and result in a failed status: https://github.com/Fourdee/DietPi/issues/451
DietPi-Drive_Manager | Resolved an issue where moving user data, would result in loss of filesystem permissions. Many thanks to Zone22 for reporting this issue: https://github.com/Fourdee/DietPi/issues/523
DietPi-Backup | Default backup directory is now /mnt/dietpi-backup. Previously, USB drive would be used if available.
-----------------------------------------------------------------------------------------------------------
v131
(20/09/16)
New Image:
OrangePi One | Is now available. Implimentation possible, with thanks to K-Plan: http://dietpi.com/download
New Features:
DietPi-Drive_Manager | Lightweight Drive Manager (eg: gparted). Allows you to mount, dismount, format EXT4/NTFS/FAT32/HFS+/BTRFS, toggle UUID mounting and control multiple (max 5) external/USB drives, for use on your DietPi system: https://github.com/Fourdee/DietPi/issues/271
Changes / Improvements / Optimizations:
DietPi-Software | Added installation options for NFS server and client: https://github.com/Fourdee/DietPi/issues/246
DietPi-Software | Added installation options for UrBackup Server: https://github.com/Fourdee/DietPi/issues/494
DietPi-Software | CertBot will now automatically install required packages, rather than prompt user.
DietPi-Software | Emby Media Server is now available for BPi M2+ BPi Pro and OPi PC. Thanks to John for testing with his BPi Pro (M1): http://dietpi.com/phpbb/viewtopic.php?f=11&t=644&p=2860#p2853
DietPi-Config | Added ability to mount NFS shares in Networking: NAS menu.
Raspberry Pi | Image download updated to v131: http://dietpi.com/download
Raspberry Pi | Image v131. We have changed from the unstable, unreliable and slow Raspbian Mirror Director, to Oxford UK Mirror: https://github.com/Fourdee/DietPi/issues/518. Requires v131 image or higher.
General | When inserting one USB drive to system, it will be mounted automaticaly to /mnt/usb_1 when plugged in: https://github.com/Fourdee/DietPi/issues/501
General | Dedicated USB drive setup will now set the UUID in /etc/fstab
General | HFS+ filesystem is now supported on all DietPi images.
General | You can now check bootup time duration, by running 'cat /var/log/boottime'. This is the duration from boot, to when SystemD has finished. TIP: Boot times can vastly be reduced, by using a static IP address.
DietPi-Lets_Encrypt | Now supports Apache2 and Lighttpd webserver stacks: https://github.com/Fourdee/DietPi/issues/479. Many thanks to aar0nism for posting a excellent guide we based this on: http://dietpi.com/phpbb/viewtopic.php?f=9&t=603&p=2625#p2624
Bug fixes:
DietPi-Software | Resolved an issue where FFMPEG did not install libmp3lame0 on RPi 1. Many thanks to Erayan for reporting this: https://github.com/Fourdee/DietPi/issues/511
DietPi-Software | Automatic moving of user data is now limited to 1st run installation only.
DietPi-Config | Resolved an issue where static IP WiFi connections failed to route data: https://github.com/Fourdee/DietPi/issues/515
DietPi-Cloudshell | Resolved an issue where the Storage scene would hang, if a unavailable NFS mount was used as custom USB device. Many thanks to John for reporting and testing this: https://github.com/Fourdee/DietPi/issues/395
DietPi-Automation | Resolved an issue where connection tests would not wait 1 second, before trying again. This occured when there was no available network.
Image | We have found a possible image/filesystem corruption on our Odroid C2 image. The image has been reverted back to a previous stable image and updated to v130: https://github.com/Fourdee/DietPi/issues/507
General | Resolved an issue where setting snd-bcm2835 soundcard did not set avoid_pwm_pll=0 (to allow HQ audio).
-----------------------------------------------------------------------------------------------------------
v130
(06/09/16)
New device:
NanoPi M2 DietPi image is now available. Many thanks to k-plan for sending me this tiny, but powerful board!: http://dietpi.com/phpbb/viewtopic.php?f=8&t=620#p2664
Changes / Improvements / Optimizations:
DietPi-Software | Uae4ARM | Amiga emulator for your Raspberry Pi. Collaboration with the creator of AmiBerry (Dimitris) to bring you the highest performance Amiga emulation, running on lightweight DietPi: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=64#p64
DietPi-Software | ARM64 | Squeezebox Server (Logitech Media Centre) and Squeezelite are now available for installation: https://github.com/Fourdee/DietPi/issues/354
DietPi-Software | Pi-hole | Installation updated to latest version 2.9: https://github.com/Fourdee/DietPi/issues/478
DietPi-Software | RPi monitor updated to latest version, thanks to WolfganP: https://github.com/Fourdee/DietPi/issues/238#issuecomment-241461096
DietPi-Software | You can now find the URL links for the online docs in the Help Menu. It will also list the URL links for each peice of software installed: https://github.com/Fourdee/DietPi/issues/483
DietPi-Software | xcompmgr is now installed by default with Xserver on ALL devices. Limits desktop composition effects to improve performance and reduce "moving window lag".
DietPi-Config | Raspberry Pi OpenGL driver can now be enabled in 'Display Options' > 'Change Resolutions' menu. Requires RPi 2 or 3: https://github.com/Fourdee/DietPi/issues/497
DietPi-Config | Added RPi 3 overclocking profiles: https://github.com/Fourdee/DietPi/issues/485
DietPi-Config | Added Stress test. Available from Tools menu. This can be used to test stability of your system (runs CPU, Ram and filesystem IO tests based on your device capabilities).
DietPi-Backup | Will no longer backup manpages/docs and .deb package caches.
DietPi-Apt-Get_Update | Has been removed. This previously allowed for threaded apt-get updates in background. We have now reverted to standard usage of apt-get update.
Bug fixes:
DietPi-Banner | IP address will now display if one exists on system.
Raspberry Pi | Improved detection for RPi 3 devices, when overclocked.
Raspberry Pi | Fix for scroll lock LED by Midwan: https://github.com/Fourdee/DietPi/issues/474#issuecomment-243215674
Raspberry Pi | Resolved an issue where running Kodi from desktop would render artifacts on exit. Many thanks to 467815891a for reporting the issue: https://github.com/Fourdee/DietPi/issues/484
Raspberry Pi | Mixer volume will now be set to -0.1db during boot (originally -50db), if soundcard is enabled.
-----------------------------------------------------------------------------------------------------------
v129
(21/08/16)
Changes / Improvements / Optimizations:
DietPi-Software | rTorrent + ruTorrent | is now available for installation in the DietPi optimized software menu. Many thanks to Ardakilic for his input, and to help make this installation possible: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=2603#p2603
DietPi-Software | Owncloud installation updated to latest stable (9.1): https://github.com/Fourdee/DietPi/issues/468
DietPi-Software | Added 'autoconf automake' packages to Build-Essential installation.
DietPi-Config | Added multiple display resolutions and refresh rates for Odroid C2: https://github.com/Fourdee/DietPi/issues/469
DietPi-Bugreport | Now allows for a max 50MB bug report upload.
Bug fixes:
DietPi-Config | RPi 2/3/Zero will now show correct sdram speed (450mhz default) in the overclocking menu: https://github.com/Fourdee/DietPi/issues/471
DietPi-Config | RPi Zero overclocking profiles have been removed: https://github.com/Fourdee/DietPi/issues/471
DietPi-Set_Hardware | Resolved an issue where disabling wifi modules would not clear the blacklist file, before being saved.
DietPi-Software | Resolved an issue where min GPU memory splits were not being applied.
DietPi-Config | When enabling WiFi for the 1st time, DHCP will be the default setting.
DietPi-Config | WiFi stats (speed and strength) for RPi 3 onboard wifi is now working correctly.
DietPi-Software | Deluge: Resolved an issue where remote thinclients were unable to connect. Many thanks to John for spotting this one: http://dietpi.com/phpbb/viewtopic.php?f=11&t=602
-----------------------------------------------------------------------------------------------------------
v128
(10/08/16)
Bug fixes:
DietPi-Software | Resolved an issue where MySQL installation would set key_buffer_size variable incorrectly. Many thanks to David Henry for reporting this: https://github.com/Fourdee/DietPi/issues/464
General | Resolved and issue where BPi Pro had an 'Unknown' temp readout: https://github.com/Fourdee/DietPi/issues/465
-----------------------------------------------------------------------------------------------------------
v127
(07/08/16)
New Device:
DietPi for NanoPi-NEO is here. Built with ARMbian build tools. Grab the image http://dietpi.com/download
Changes / Improvements / Optimizations:
DietPi-Banner | Relaxed the buffer clearing to only clear screen, when the full banner is displayed.
DietPi-Software | Major (if somewhat long overdue) coding overhaul to improve and optimize DietPi-Software further: https://github.com/Fourdee/DietPi/issues/453
DietPi-Software | Plex Media Server: Is now available for ARM64 devices (Pine / Odroid C2) and will install the 32bit binaries. Many thanks to LukasBombach for the ARM64 installation code: https://github.com/Fourdee/DietPi/issues/457
DietPi-Uninstall | Removed. Software can now be uninstalled from DietPi-Software.
DietPi-Automation | Continuation from v126, this has been revisited and further simplified. Please see here for updated usage: http://dietpi.com/phpbb/viewtopic.php?f=8&t=273#p1140
General | Linux-Headers will be removed on new installations. They are not required, unless native kernel compile. This will save 40MB+ space on rootFS.
General | Wheezy code has been removed. If you still want to use Wheezy, please see: http://dietpi.com/phpbb/viewtopic.php?f=9&t=432
General | All DietPi SBC images have been updated to v127. The latest kernel/firmware updates have also been applied.
Bug fixes:
DietPi-Software | VNCserver: Has changed to screen 1 by default. This allows vncserver to run if X:0 is already in use (eg: by a desktop or Kodi). Example connection from client: 192.168.0.100:1: https://github.com/Fourdee/DietPi/issues/454#issuecomment-237655998
DietPi-Automation | Custom locale and timezone set in dietpi.txt are now being correctly applied: https://github.com/Fourdee/DietPi/issues/174
-----------------------------------------------------------------------------------------------------------
v126
(28/07/16)
Changes / Improvements / Optimizations:
DietPi-Software | Coding improvements to allow for command line inputs and automated installations.
General | Updated my email address in all source code (daniel.knight[at]dietpi.com).
DietPi-Automation | Simplified automation code. One variable to enable automated installation "AUTO_Install_Enable=1" in dietpi.txt. This will now enable a completely automated installation, with no user inputs. This feature requires a v126 image or higher, v126+ images will be available at a later date.
Bug fixes:
DietPi-Software | Gogs: Resolved an issue where missing binary ssh-keygen would cause gogs service to fail: https://github.com/Fourdee/DietPi/issues/442. OpenSSH needs to be installed.
DietPi-Config | Resolved a sed pattern match issue with LCD panel and /boot/cmdline.txt on RPi. Thanks to K-Plan: https://github.com/Fourdee/DietPi/issues/439
DietPi-Config | Odroid firmware updates now run apt-get dist-upgrade. Previously, apt-get upgrade did not fully upgrade the kernel and image: https://github.com/Fourdee/DietPi/issues/449
General | Odroid C2: Resolved issues with broken sound on ALSA. This is due to a kernel update that removes the need for the existing "workaround" asound.conf. Many thanks to "Takenover83" for providing the fix: https://github.com/Fourdee/DietPi/issues/447
General | Odroid C2: Resolved issues with Kodi crashing when viewing the systeminfo: https://github.com/Fourdee/DietPi/issues/446
-----------------------------------------------------------------------------------------------------------
v125 - Hotfix
(23/07/16)
Bug fixes:
General | Daily FSTRIM has been disabled. I believe this may the cause of corrupt file systems reported by some users. Until this can be proven stable, this feature will be disabled.
-----------------------------------------------------------------------------------------------------------
v124
(23/07/16)
Changes / Improvements / Optimizations:
DietPi-Software | (NEW) Syncthing: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=2363#p2363
DietPi-Software | WiFi Hotspot: Compiled and updated ARM binaries to hostapd 2.5. DietPi now also checks for RTL8188C* devices, and if needed, installs the patched binary that enables functional rtl driver: https://github.com/Fourdee/DietPi/issues/434
DietPi-Software | Emby: FFmpeg is now required by Emby server and will now be automatically installed. Many thanks to Wolf for letting us know: https://github.com/Fourdee/DietPi/issues/436
General | check_connection script timeout increased to 10 (from 7) seconds, 2 retry: https://github.com/Fourdee/DietPi/issues/432
Bug fixes:
DietPi-Config | WiFi: Resolved an issue where WiFi country codes were not being applied sucessfully: https://github.com/Fourdee/DietPi/issues/431
DietPi-Config | LCD Panel: Removed waveshare32 option for Odroid C2 as its not functional.
General | Improved detection for RPi hardware revision codes and descriptions.
-----------------------------------------------------------------------------------------------------------
v123
(17/07/16)
New Device:
DietPi for BananaPi Pro (Lemaker) is now available: http://dietpi.com/phpbb/viewtopic.php?f=8&t=534&p=2324#p2324. Many thanks to Mattia for testing the image, and, his assistance in requesting Lemaker to send a dev sample board. Legend :)
New Feature:
DietPi-Config > Display Options | Added support for changing LCD panels (currently: Waveshare32 and Odroid-Cloudshell) based on your SBC device. Both work great with DietPi-Cloudshell stats display: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&start=20#p204. Waveshare32 installation also supports X11 desktops with touch input: https://github.com/Fourdee/DietPi/issues/409#issuecomment-232729020. Personal thanks to K-plan for sending me a waveshare32 and assisting with its implementation.
Changes / Improvements / Optimizations:
DietPi-Config | Added support for changing Pine A64 screen resolutions.
DietPi-Config | Wi-Fi scan now properly captures weird SSID names. Many thanks to Stickerpants for this fix: https://github.com/Fourdee/DietPi/pull/419
DietPi-Software | (NEW) qBitTorrent: Lightweight and fast (C++) BitTorrent server with web interface, is now available for installation: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&start=70#p2272 As always, DietPi will optimize the bittorrent settings based on your device, memory and CPU cores.
DietPi-Software | PiHole: Installation updated to latest version. You can now control whitelist and blacklist entries from the web interface.
DietPi-Software | RPi-Monitor: Added USB drive stats (if available) to web interface. Many thanks to Rich for implementing this: https://github.com/Fourdee/DietPi/issues/410
DietPi-Software | Kodi: libnfs4 is now installed along side Kodi to allow NFS support.
DietPi-Software | Complete overhaul and improvements to the optimizations that get applied to all BitTorrent server software. We now check for gigabit devices, cache size based on share of total memory, max connections and upload slots based on hardware capabilities and device model.
DietPi-Software | NetData: Installation has been updated to latest version (1.2.0): https://github.com/Fourdee/DietPi/issues/300
DietPi-Software | WiFi Hotspot: Installation option is now available for all SBCs.
DietPi-Notify | New program with a goal to display more information on what DietPi is doing, and, if a failure or success occurred. I will continue to improve this and add it to all DietPi scripts/programs over time.
General | ARMbian based images (OPi PC, BPi M2+ and BPi Pro) now have access to the ARMbian repo. This enables kernel/image/module updates through apt-get for the devices.
Bug fixes:
DietPi-Software | HiFi: Resolved an issue where volume control did not function. MPD will now use the internal software mixer by default. This allows working volume control on all hardware.
DietPi-Software | PiHole: Resolved a warning of "file not found" when running gravity.sh. Many thanks to K-Plan: https://github.com/Fourdee/DietPi/issues/311#issuecomment-230177287
DietPi-Software | WebIOPi: Build-essential is now installed automatically with this program. Prevents a failed compile and installation due to missing gcc packages.
DietPi-Software | WebIOPi: Is now disabled for RPi 3+ devices: https://github.com/Fourdee/DietPi/issues/412
DietPi-Software | PhpMyAdmin: Resolved an issue where a Lighttpd installation, did not create the symlink to /var/www/phpmyadmin.
DietPi-Software | MATE: Resolved an issue with no sound output on Odroid C2: https://github.com/Fourdee/DietPi/issues/415
DietPi-Cloudshell | Resolved an issue where running with $1 2 (skip intro) would not run program. Thanks to K-Plan for spotting this: https://github.com/Fourdee/DietPi/issues/411
General | Resolved an issue where running 'sudo dietpi-command' would result in 'command not found'. Many thanks to StickerPants for his help on this one: https://github.com/Fourdee/DietPi/issues/424
-----------------------------------------------------------------------------------------------------------
v122
(30/06/16)
Hotfix to prevent incorrect boot.ini patch on C1/XU4 devices.
-----------------------------------------------------------------------------------------------------------
v121
(30/06/16)
Changes / Improvements / Optimizations:
DietPi-Software | Added DietPi installation option for Gogs: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&start=70#p2187
DietPi-Software | Added DietPi installation option for XFCE Desktop: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=2203#p2203
DietPi-Software | PiHole will automatically update the adlist on a weekly basis via '/etc/cron.weekly/pihole_adlist_update': https://github.com/Fourdee/DietPi/issues/311
DietPi-Config | You can now configure GPU/RAM memory split for Odroid C2. Headless option will free up 300~MB of memory.
DietPi-Uninstall | Will now stop services prior to uninstalling, then restart them once finished. This should ensure uninstalled program processes, are not left running in memory.
General | DietPi will TRIM all capable drives on your system, on a daily basis. This should recover lost performance on SSD/Flash/NAND based devices that support TRIM. Many thanks to John for bringing this to my attention: http://dietpi.com/phpbb/viewtopic.php?f=9&t=493&p=2161#p2142
General | Odroid C2 no longer has a Beta status.
Bug fixes:
DietPi-Cleaner | Resolved an issue with whiptail title not being reset in some menus.
DietPi-Software | Resolved various issues with Mate desktop. Many thanks to K-plan for the reports and fixes: https://github.com/Fourdee/DietPi/issues/388
DietPi-Software | Resolved an issue where WiFi Hotspot would not install when using Pine A64 with addon WiFi board: https://github.com/Fourdee/DietPi/issues/401
DietPi-Software | Resolved an issue where Kodi would not start on Odroid C2: https://github.com/Fourdee/DietPi/issues/399. Many thanks to Meveric for updating me on C2 GPU driver development and packages for the fbdev > X11 kodi change.
DietPi-Software | Resolved an issue where MineOS installation was missing rsync package. Many thanks to Zone22: https://github.com/Fourdee/DietPi/issues/403
DietPi-Config | Resolved an issue where changing resolutions on XU4 and C1 did not correctly apply 'vout_mode' modes.
DietPi-Uninstall | Resolved an issue where shairport-sync would not uninstall on ARM64 devices.
DietPi-Uninstall | Resolved an issue where uninstalling Desktop LXDE would not completely uninstall all LXDE packages.
DietPi-Ramdisk | When creating the ramdisk, DietPi will set unix line endings to core files in /boot/ that users may edit prior to running DietPi. This resolves users saving the file with dos line endings, that may prevent other DietPi scripts from functioning correctly: https://github.com/Fourdee/DietPi/issues/390
-----------------------------------------------------------------------------------------------------------
v120
(24/06/16)
Important Information:
Raspberry Pi Wheezy | Support for Raspberry Pi Wheezy has now finished. I have uploaded a final Wheezy DietPi image which users must install if they want to continue using Wheezy. Please see here for more information: http://dietpi.com/phpbb/viewtopic.php?f=9&t=432
Image Downloads | All DietPi image downloads have been updated to v120. This includes all firmware/kernel/modules updates where applicable. http://dietpi.com/download
Changes / Improvements / Optimizations:
DietPi-Software > User Data | You can now setup a dedicated USB drive at any stage, on the fly : https://github.com/Fourdee/DietPi/issues/377
DietPi-Software > User Data | When changing user data location, DietPi will automatically move your existing data and setup required symlinks.
DietPi-Software > User Data | You can now force Flash or USB drive user data locations on the fly, disabling the automatic setting.
DietPi-Software > User Data | /mnt/dietpi_userdata will now always point to your user data location, even if its custom.
DietPi-Software | Added DietPi installation option for Mate Desktop: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&start=60#p2073 . Many thanks to Xenformation (JK) for his contributions on this.
DietPi-Software | Added DietPi installation option for GNUstep Desktop: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&start=60#p2072 . Many thanks to Xenformation (JK) for his contributions on this.
DietPi-Software | Added DietPi installation option for NoMachine: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&start=60#p2071 . Many thanks to Xenformation (JK) for his contributions on this.
DietPi-Software | Added DietPi installation option for XRDP: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&start=70#p2074 . Many thanks to Xenformation (JK) for his contributions on this.
DietPi-Software | Added DietPi installation option for QuiteRSS: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&start=70#p2075 . Many thanks to Xenformation (JK) for his contributions on this.
DietPi-Software | Added DietPi installation option for Cuberite (C++ Minecraft Server with web interface): http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=2069#p2068
DietPi-Software | Added DietPi installation option for MineOS (Java Minecraft Servers with web interface): http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=2069#p2069
DietPi-Software | FBturbo is now installed along with XSERVERXORG for Pine 64. Should improve 2D (eg: window) performance: https://github.com/Fourdee/DietPi/issues/380#issuecomment-226512966
DietPi-Software | HiFi (MPD + YMPD) is now available for ARM64 devices (eg: Odroid C2/Pine A64).
DietPi-Config | You can now set your country code in "network options: adapters" menu, when running WiFi in hotspot mode (eg: dietpi-software > WiFi Hotspot installation). This will allow for channels 12/13 in some countries (eg: EU), and, increased power output (range) for the hotspot.
DietPi-Config | RPi 3 internal WiFi is now disabled by default to save resources on new installs. It will automatically be enabled by DietPi if required.
DietPi-Config | RPi 3 internal Bluetooth is now disabled by default to save resources on new installs. It can be enabled in the advanced menu.
DietPi-Config | RPi 3 increased thermal limit from 65c to 75c. This should reduce the chance of users seeing the heat warning icon on-screen, whilst keeping the device below the 85c official thermal limit used in Raspbian: https://github.com/Fourdee/DietPi/issues/356#issuecomment-223282185
DietPi-Config | cfg80211 wifi module is now disabled by default to save resources on new installs. It will automatically be enabled by DietPi if required.
DietPi-Config | bluetooth module is now disabled by default to save resources on new installs. It can be enabled in the advanced menu.
DietPi-Config | Serial console is now disabled for all DietPi images (where possible): https://github.com/Fourdee/DietPi/issues/343#issuecomment-226946848
DietPi-Config | Corrected typos. Many thanks to Erkan-Yilmaz for spotting these: https://github.com/Fourdee/DietPi/pull/381
DietPi-Cloudshell | Added a feature which allows users to specify start and end times, where DietPi-Cloudshell will power off the screen and disable processing: https://github.com/Fourdee/DietPi/issues/379
DietPi-Backup | Now shows the most recent and successful backup date in main menu.
DietPi-Sync | Now shows the most recent and successful sync date in main menu.
Bug fixes:
DietPi-Banner | Resolved an issue where delayed DHCP offers would not provide the IP address during boot: https://github.com/Fourdee/DietPi/issues/350#issuecomment-223273610
General | DietPi desktop items icon will now show correctly.
DietPi-Automation | Updated missing software automation entries in dietpi.txt. Many thanks for K-plan for his input on this: https://github.com/Fourdee/DietPi/issues/374
DietPi-Software | Resolved an issue where Transmission would not start the web interface during boot (:9091), when using DHCP: https://github.com/Fourdee/DietPi/issues/350
DietPi-Software | Resolved an issue where VIFM and MTRTINY would not be flagged as installed, after the installation. Many thanks to K-plan for spotting this one: https://github.com/Fourdee/DietPi/issues/373 | https://github.com/Fourdee/DietPi/issues/374#issuecomment-225436379
DietPi-Software | Kodi has been disabled for Pine64 (non-functional) whilst we wait for working mali/mali_drm driver: https://github.com/Fourdee/DietPi/issues/380
DietPi-Config | Resolved an issue where the RPi3 internal wifi would still be active after being disabled: https://github.com/Fourdee/DietPi/issues/376 Many thanks to K-plan for reporting this.
DietPi-Backup | Resolved an issue where search results, did not provide the most recent and successful backup date.
DietPi-Sync | Now contains the correct program name in the backtitle.
-----------------------------------------------------------------------------------------------------------
v119
(01/06/16)
Important Info:
UserData Locations | As of this release, the default user data directory is now /mnt/dietpi_userdata, unless, you have set "dietpi_userdata_basedirectory=/Something/Else" in dietpi.txt. A symlink will be automatically generated to your USB drive, if installed. The new location will be active for any new software you install with DietPi-Software. All existing software will continue to use the previous locations. This allows us to simplify the online documentation and user experience: https://github.com/Fourdee/DietPi/issues/334#issuecomment-222503304
Odroid C2 | Your system will install the latest kernel and boot.ini file. This is required for your system to be functional after the latest kernel update. As the /DietPi/boot.ini file is being overwritten, users may wish to make a note of their existing settings, prior to updating: https://github.com/Fourdee/DietPi/issues/366
New Device:
DietPi for BananaPi M2+ image is now available. Built with ARM build tools: http://dietpi.com/phpbb/viewtopic.php?f=8&t=431
DietPi for XenServer x64 image is now available. Many thanks to Xenformation for implementing the image: https://github.com/Fourdee/DietPi/issues/309
Changes / Improvements / Optimizations:
DietPi-Software | Added DietPi installation option for Plex Media Server: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=1949#p1949
DietPi-Software | Added DietPi installation option for VNC 4 Server. Many thanks to Rob for his input and code on this: https://github.com/Fourdee/DietPi/pull/344
DietPi-Software | Pihole installation has been updated to latest version.
DietPi-Software | Resolved broken Shairport-Sync installation for ARM64 devices: https://github.com/Fourdee/DietPi/issues/369
DietPi-Config | You can now enable/disable serial console from the advanced menu.
DietPi-Config | Added support for Odroid HiFi Shield Plus in soundcard options: https://github.com/Fourdee/DietPi/issues/365
DietPi-Config | Added support for rpi-bcm2835-UltraHQ. This is an experimental driver for the onboard analogue sound on the RPi. Requires kernel 4.4 (rpi-update): https://github.com/Fourdee/DietPi/issues/360
DietPi-Autostart | VNC servers (if installed) will now automatically start during boot, regardless of your autostart option. The service name is "vncserver": https://github.com/Fourdee/DietPi/issues/255#issuecomment-220954537
DietPi-Cam | Has been updated to RPi Web Cam interface 6.1.6. Now uses the internal motion engine and is fully functional: https://github.com/Fourdee/DietPi/issues/120
DietPi-Services | Will now show you the name of each service that is applied, and if successful. Also added some funky colours, for visual eye candy (no honestly, it rocks)
General | Odroid C2 image download updated to latest DietPi version.
Bug fixes:
DietPi-Software | Resolved an issue where LetsEncrypt would fail to install. This was due to LetsEncrypt recently changing their name to Certbot: https://github.com/Fourdee/DietPi/issues/348
DietPi-Software | Resolved an issue where Transmission service was being started before network is up. Existing installations will be patched: https://github.com/Fourdee/DietPi/issues/350
DietPi-Software | Resolved an issue where Tightvnc server would not run on arm64. VNC4SERVER is now offered as a working alternative, whilst we wait for the Jessie repo package to be updated with a fix: https://github.com/Fourdee/DietPi/issues/255. Many thanks to Rob for his input and code on this.
DietPi-Cloudshell | Resolved an issue where the Network usage scene would generate an error. This would occur if the network device was not ready, when we scraped netstat: https://github.com/Fourdee/DietPi/issues/355. Many thanks to Erik for finding this one!
-----------------------------------------------------------------------------------------------------------
v118
(17/05/16)
New Device:
DietPi for Pine A64 is now available: http://dietpi.com/phpbb/viewtopic.php?f=8&t=420. Many thanks to Rhkean for his excellent work to make this possible.
Important Information
OPi PC Security Exploit | Found by the ARMbian devs: https://github.com/Fourdee/DietPi/issues/312, this security exploit allows any process to get root permissions. We have created a new DietPi OPi PC image, based on ARMbian which disables the kernel exploit. It is highly recommended that all OPi PC users, download and install the updated image to be protected: http://dietpi.com/#five
Changes / Improvements / Optimizations:
DietPi-Software | Added DietPi optimized installation for Emby server: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=1789#p1789
DietPi-Software | Added DietPi optimized installation for OpenBazaar server: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&start=60#p1796
DietPi-Software | WiFi/Tor HotSpot on RPi 3 (internal BCM wifi) will now default to Wireless N (150mbit) during installation. Previously Wireless G (54mbit).
DietPi-Software | Subsonic is now split into 2 installation options. Version 5 and 6: https://github.com/Fourdee/DietPi/issues/330
DietPi-Update | Added GITFORKOWNER to aid in testing new releases on different forks
DietPi-Config | You can now set the WiFi country code. This will enable channels and power ratings allowed in your country.
DietPi-Config | Cleaned up the WiFi/Ethernet adapters menu. Static IP options will only show when the user changes the mode.
rpi_boardinfo / DietPi-Banner | Will now display the revision code for the user on unknown RPi devices.
Bug fixes:
DietPi-Software | Resolved an issue where the .installed file would generate an error, due to a unexpected character: https://github.com/Fourdee/DietPi/issues/322
DietPi-Software | Prevention of Lighttpd + PhpMyAdmin apt-get errors during installations. Users must install LLMP/LLAP prior to PhpMyAdmin
Odroid-XU4 | corrected typo in boot_xu4.ini file: https://github.com/Fourdee/DietPi/issues/314
dietpi-set_soundcard | Now applies dtparm=audio= setting in config.txt for RPi. Required for >= 4.4 kernel: https://github.com/Fourdee/DietPi/issues/327
-----------------------------------------------------------------------------------------------------------
v117
(01/05/16)
New Device:
DietPi image for VirtualBox (x64) is now available: http://dietpi.com/phpbb/viewtopic.php?f=8&t=390&p=1683#p1683. Many thanks to Xenformation (JK) for implementing this image.
Changes / Improvements / Optimizations:
DietPi-Software | Added DietPi optimized installation for Mumble VoIP server: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=1691#p1691
DietPi-Config | Added display resolution profiles for Odroid VU7+.
DietPi-BugReport | Max filesize limit of bug report uploads capped at 10MB.
General | All fuzon.co.uk links have now been replaced with dietpi.com. This completes the recent server move: https://github.com/Fourdee/DietPi/issues/294
General | Begin script optimizations. This will most likely extend over the next several releases.
Networking | allow-hotplug has now been rolled out as default for all DietPi systems. Previously, this was set to auto. This basically means you can psychically unplug/plug the device on the fly, without the need for restarting the networking service: https://github.com/Fourdee/DietPi/issues/305
Bug fixes:
DietPi-Config | Resolved an issue where IP details would not show on WiFi, when using both adapters at the same time, and setting wlan static: https://github.com/Fourdee/DietPi/issues/273#issuecomment-213951519
DietPi-Software | Resolved an issue where Oracle Java would fail to install: https://github.com/Fourdee/DietPi/issues/298
DietPi-Software | Resolved an issue where WiFi hotspot would not function on the Odroid C2. arm64 binary has been compiled with RTL drivers enabled: https://github.com/Fourdee/DietPi/issues/303
DietPi-Set_Soundcard | Resolved an issue where changing addon RPi soundcards failed to enable the chosen card.
DietPi-Update | Resolved an issue where the server version would return "invalid": https://github.com/Fourdee/DietPi/issues/301
DietPi-Software/Config | Resolved an issue where noip would not run on Odroid C2: https://github.com/Fourdee/DietPi/issues/302
General | Resolved an issue with WPA-PSK wireless connections failing to connect on the Odroid XU4.
Networking | Resolved an issue where unplugging eth would also kill any active wlan connections. Many thanks to K-plan for his assistance on this one: https://github.com/Fourdee/DietPi/issues/273#issuecomment-215996025.
-----------------------------------------------------------------------------------------------------------
v116
(19/04/16)
Changes / Improvements / Optimizations:
Images | All DietPi image downloads (excluding Wheezy) have been updated to v115 (v116 after first run update).
DietPi.com | Web hosting is now provided by MyVirtualServer.com: https://github.com/Fourdee/DietPi/issues/288
DietPi-Software | Added DietPi optimized installation for NetData. A slick and feature-rich system stats monitor with web interface: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&start=60#p1611
DietPi-Software | Updated Wiring Pi installation to latest. This adds support for RPi 3: https://github.com/Fourdee/DietPi/issues/270
DietPi-Software | Screen blanking is now disabled during "First run update" and "During installations". This will only affect tty0 (main screen): https://github.com/Fourdee/DietPi/issues/277
DietPi-Config | Added ability to configure and apply system-wide proxy settings: https://github.com/Fourdee/DietPi/issues/214
DietPi-Config | Now supports enabling and configuring both Ethernet and WiFi adapters at the same time. Previously, enabling one adapter disabled the other.
DietPi-Config | When setting Static DNS settings, a menu will now appear with a list of the most known DNS servers. You can either select one of the entries listed, or manually enter your DNS server.
DietPi-Config | Networking Option has been split into 2 new menus. "Network Options: Adapters" and "Network Options: NAS/Misc".
DietPi-Backup | Added NFS/NFS4 as supported filesystem types. Don't get excited, Rsync over NFS is extremely slow, especially on the 1st run (cp is quicker).
DietPi-Banner | Will now also show your IP address: https://github.com/Fourdee/DietPi/issues/284
Bug fixes:
DietPi-Cloudshell | Network usage scene: Resolved a integer error caused by a leading zero in $(date), which effected daily usage stats: https://github.com/Fourdee/DietPi/issues/272
DietPi-Software | Resolved an issue where NODEJS was not being set to "installed" after installation.
DietPi-Software | Resolved an issue where NODEJS would not install on Odroid C2. We have compiled a ARM64.deb package and will be used in new installations: https://github.com/Fourdee/DietPi/issues/276#issuecomment-209900955
General | Resolved an issue where WiFi WPA connections were unable to connect on the Odroid C1.
General | Resolved various issues with non-English system Locale when using English based parsing throughout DietPi scripts: https://github.com/Fourdee/DietPi/issues/291
DietPi-Apt_Get_Update | Will now ignore waiting for (and killing) NTPD if ntpd_update_mode=0 (disabled) or ntpd_update_mode=4 (daemon): https://github.com/Fourdee/DietPi/issues/289
-----------------------------------------------------------------------------------------------------------
v115
(04/04/16)
Changes / Improvements / Optimizations:
DietPi-Software | Removed dependencies on Apache stacks, allowing all DietPi-Software web-based applications to use either lighttpd, nginx or apache2 stacks: https://github.com/Fourdee/DietPi/issues/205
DietPi-Software (Webserver preference system) | You can now select a preferred webserver type (Apache2/Nginx/Lighttpd), prior to installing any webserver based software. When you select any software for installation that requires a webserver, your preferred webserver choice will be automatically installed: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=1549#p1549
DietPi-Software (Webserver preference system) | Lighttpd is the default webserver stack to be installed when any software in DietPi-Software requires a webserver stack. You can change this using the webserver preference option in the DietPi-Software menu. If you have any existing webserver stacks installed, your preference will be automatically set to what you have installed at the time.
Bug fixes:
OPI PC | Community vcore/freq (.fex/script.bin) patch will be applied (created by Thomas Kaiser). This resolves known issues with stability and excess heat on the Loboris image (which DietPi is based on). Screen resolution support in DietPi-Config is no longer available: http://www.orangepi.org/orangepibbsen/forum.php?mod=viewthread&tid=785&fromuid=185718
DietPi-Uninstall | Resolved an issue where WEBSERVER_LIGHTTPD would not appear when installed.
DietPi-Software | Resolved an issue where FFMpeg would fail to install on RPi 2/3.