forked from MichaIng/DietPi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.txt
2133 lines (1713 loc) · 188 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
v159
(10/11/17)
Image Modifications:
VMWare | Updated to Debian Stretch: https://github.com/Fourdee/DietPi/issues/1219
VirtualBox | Updated to Debian Stretch, many thanks @MichaIng: https://github.com/Fourdee/DietPi/issues/1219
RPi | Updated to Debian Stretch: https://github.com/Fourdee/DietPi/issues/475
Changes / Improvements / Optimizations:
General | Odroid XU3/4 images updated: Includes kernel support for EMMC 5.1 (thanks Meveric): https://github.com/Fourdee/DietPi/issues/1252
General | DietPi RPi kernel: Updated to 4.9.62.
General | DietPi RPi kernel: Will no longer re-install, if the current version is already at latest.
General | Added farenheit readouts for cpu_info and dietpi-config. For those "over the pond" :D : http://dietpi.com/phpbb/viewtopic.php?f=12&t=2516&p=9772#p9772
General | Sparky SBC: Kernel update to add support for USB 1.1 DACs, thanks @sudeep. This must be enabled manually, if using a USB 1.1 DAC, as this breaks Allo WiFi dongle. Edit "/DietPi/uEnv.txt" and change the value "aotg.aotg1_speed=1" (from "0"), then reboot.
General | We now define a default LD_LIBRARY_PATH for all systems, exported from /etc/bash.bashrc: https://github.com/Fourdee/DietPi/issues/475#issuecomment-350380744
DietPi-Services | Run "dietpi-services help" to see a full list of updated commands: Added support for "enable" and "disable". "disable" will stop and disable the service and prevent it from running, "enable" will enable and start the service. EG: "dietpi-services disable cron", will prevent Cron from starting. Added support for start/stop/restart a single service (eg: dietpi-services stop apache2). This is basically a symlink to systemD: https://github.com/Fourdee/DietPi/issues/1114
DietPi-Config | WiFi: Now uses the wpa_supplicant.conf method to setup WiFi connections. WEP is no longer supported by DietPi in this mode. WPA-PSK/WPA2-PSK and OPEN hosts supported: https://github.com/Fourdee/DietPi/issues/1262
DietPi-Backup | "Full Backup" Mode is now the default for fresh DietPi installations. This is mainly due to MySQL data now being in the DietPi userdata directory.
DietPi-Config | Tools > Benchmarks: Added ability to benchmark CPU performance based on bash + integer: https://github.com/Fourdee/DietPi/issues/1253#issuecomment-346881878
DietPi-Config | Time sync modes: NTP is now uninstalled when SystemD timedatectl is enabled. Reinstalled on demand. Timedatectl pool servers are now also set: https://github.com/Fourdee/DietPi/issues/1208#issuecomment-343762480
DietPi-Software | First run setup, now logged to /etc/dietpi/logs/dietpi-firstrun-setup.log.
DietPi-Software | APT log: Moved to /etc/dietpi/logs/dietpi-software_apt.log, to prevent RAMlog clearing log during automated installations.
DietPi-Software | MPD (Stretch): Install updated to 0.20.11. Also supports native DSD playback (thanks to @sudeep and PJotr), when "Native" output freq/bit is set: https://github.com/Fourdee/DietPi/issues/1236
DietPi-Software | moOde: MPD now installed via pre-built binaries. Will reduce install time: https://github.com/Fourdee/DietPi/issues/1223#issuecomment-345265290
DietPi-Software | Nextcloud: Correct database access issue for MariaDB + minor fixes: https://github.com/Fourdee/DietPi/pull/1242
DietPi-Software | ownCloud: Installation fixed, respecting different distro repos: https://github.com/Fourdee/DietPi/pull/1243
DietPi-Software | MPD (inc YMPD/O!MPD): Default data directory is now "/mnt", this will include all USB drives and network locations: https://github.com/Fourdee/DietPi/issues/1202
DietPi-Software | Mopidy: Default data directory is now "/mnt", this will include all USB drives and network locations.
DietPi-Software | Syncthing: Installation updated to version 0.14.40, for new installations only. Removal of inotify (now included in main syncthing): https://github.com/Fourdee/DietPi/issues/1260
DietPi-Software | Node-Red: Symlink created during install from ~/.node-red to DietPi user data dir: https://github.com/Fourdee/DietPi/issues/1256
DietPi-Software | YMPD: Fixed Stretch installation + Now available for all CPU archs + Upgraded to SystemD service: https://github.com/Fourdee/DietPi/issues/475
DietPi-Software | Gitea: Install updated to 1.3.1 (for new installations only). Added support for ARMv8. Now installed to /mnt/dietpi_userdata/gitea, runs as dietpi user: https://github.com/Fourdee/DietPi/issues/686 http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=9863#p9863
Bug Fixes:
DietPi-Automation | Resolved an issue where SSH server choice, was not installing selected choice: https://github.com/Fourdee/DietPi/issues/1122
DietPi-Config | Nvidia driver: nouveau now disabled by default on x86_64, fix for 750Ti and possibily other Nvidia chipsets (thanks dubyazero): https://github.com/Fourdee/DietPi/issues/1244
DietPi-Config | RPi Stretch: Resolved an issue with onboard Wifi failing to scan: https://github.com/Fourdee/DietPi/issues/1262
DietPi-Config | RAM Benchmark: Resolved an issue where devices without /tmp mounted to tmpfs would fail the test. We now check for this mount, prior to allowing the test to run: https://github.com/Fourdee/DietPi/issues/1130#issuecomment-350114298
DietPi-Software | Pi-Hole: Resolved various issues with this installation. DietPi will now also detect a failed Pi-Hole script exit and flag as not installed. : https://github.com/Fourdee/DietPi/issues/1282#issuecomment-350490524
DietPi-Software | Redis: Minor un/installation/activation fixes of PHP module (Thanks to @MichaIng) : https://github.com/Fourdee/DietPi/pull/1249
DietPi-Software | moOde: Resolved an issue where dietpi-drive_manager mounted drives, would not be available in the libary: https://github.com/Fourdee/DietPi/issues/1223#issuecomment-346708298
DietPi-Software | PHP: Solve 'upload_tmp_dir' issue, if PHP service uses 'PrivateTmp': https://github.com/Fourdee/DietPi/issues/1144
DietPi-Software | Syncthing: Resolved a permissions issue with self program updates: https://github.com/Fourdee/DietPi/issues/1260
DietPi-Software | Home Assistant: Resolved an issue with ARMv8 installation, where Python build would fail due to lack of build-essential: https://github.com/Fourdee/DietPi/issues/1255
DietPi-Software | MPD: Corrected various uninstallation issues.
DietPi-Software | APT Removal: Resolved an issue in Stretch, where held packages were not being removed: https://github.com/Fourdee/DietPi/issues/475
DietPi-Software | FFMPEG: Resolved inability to install on XU4 Jessie: https://github.com/Fourdee/DietPi/issues/1273
DietPi-Software | Chromium (RPi Stretch): Resolved installation + desktop icon symlink: https://github.com/Fourdee/DietPi/issues/475#issuecomment-350111359
DietPi-Software | Resolved an issue where dietpi permissions were not being set correctly, for symlinked userdata dir.
DietPi-Update | Resolved an issue where .update_available file would still exist in no network situations: https://github.com/Fourdee/DietPi/issues/1258
Patch_File | Auto swapfile generation no longer run twice (mostly for pre v150 images): https://github.com/Fourdee/DietPi/issues/1257
Allo Web Interface v4:
MPD: Native DSD playback support, when "Native" output freq/bit is set in MPD settings page: https://github.com/Fourdee/DietPi/issues/1241
MPD: Default data directory is now "/mnt", this will include all USB drives and network locations.
SQUEEZELITE: Added ability to set native DSD output modes. Please note, success of selected output mode is limited to DAC and kernel capabilities. We have verified Combo 384 with u32le output mode on Sparky SBC + USB Bridge: https://github.com/Fourdee/DietPi/issues/1237#issuecomment-348241209
O!MPD: Updated to 1.03. Please make sure to update your library (Settings > Update), to rescan the new "/mnt" location which includes all networked and USB drives. Depending on your additional storage setup, the rescan may take 5-30 minutes.
RPi Image: Has been updated to Debian Stretch. This offers peformance improvements in the web interface, and newer ALSA libs. Previous installations are still supported. To upgrade, please write the new image. Upgrading to Stretch is not a requirement: http://dietpi.com/phpbb/viewtopic.php?f=8&t=2317&p=8869#p8869
Sparky SBC: We have remove the WiFi Hotspot installation by default, this is to avoid majority users having to remove this software title, before WiFi can be configured via terminal access. To reinstall this software, please connect the WiFi dongle, then run "dietpi-software install 60" via terminal.
-----------------------------------------------------------------------------------------------------------
v158
(12/11/17)
Changes / Improvements / Optimizations:
DietPi-Services | status: Improved this command to highlight working and detail failed services. Failed services will also be listed. 'dietpi-services status': https://github.com/Fourdee/DietPi/issues/1230
DietPi-Software | Google AIY: Now available for installation: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=9486#p9486
DietPi-Software | moOde: Initial pass adding into DietPi: https://github.com/Fourdee/DietPi/issues/1223
DietPi-Software | Gitea: Now available for installation. Many thanks to @techdabbler for contributing this addition: https://github.com/Fourdee/DietPi/issues/686
DietPi-Software | Squeezelite recompiled with -DDSD, now supports DSD and DoP audio playback: https://github.com/Fourdee/DietPi/issues/1210
DietPi-Sotware | AudioPhonics Pi-SPC: Now available for installation. Power control module which lets you physically power off system using a button: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=9359#p9359
DietPi-Software | Raspotify: Now available for installation. Spotify Connect client for the Raspberry Pi (and other ARMv6/v7 devices) that Just Works™: http://dietpi.com/phpbb/viewtopic.php?f=8&t=5&p=9368#p9368
DietPi-Software | Sabnzbd: Updated to 2.3.1 for new installations only. Thanks @Invictaz : https://github.com/Fourdee/DietPi/issues/865#issuecomment-340282019
DietPi-Set_Software | Improved useradd/userdel functions. Please see sourcecode for details.
Bug Fixes:
General | Sparky SBC: Applied latest kernel (USB + ETH) stability patches, which will resolve loss of connection, audio device and URB errors. Thanks @Sudeep.
General | Fixed kill-ssh-user-sessions-before-network.service, to prevent it always generating an error.
DietPi-Config | Corrected descriptions for Auto swapfile size, and, Ondemand as recommended CPU gov. Thanks @k-plan : https://github.com/Fourdee/DietPi/issues/1205
DietPi-Config | NAS: Resolved an issue where samba client share names, which contained spaces, would cause the mount the fail: https://github.com/Fourdee/DietPi/issues/1201
DietPi-Config | Rock64: Resolved an issue with incorrect card/device indexs for HDMI/3.5mm, thanks @BryanSmithDev : https://github.com/Fourdee/DietPi/issues/1102
DietPi-Set_Hardware | Soundcard: When setting USB-DAC, and it fails detection, the soundcard will be reset to 'none'.
DietPi-Set_Software | DietPi User: Resolved an issue where /etc/sudoers was being incorrectly written with additional \.
DietPi-Software | Uninstalling DietPi-Cam, will no longer remove the motion package, shared with Motioneye, thanks @vilhelmp: https://github.com/Fourdee/DietPi/issues/1194
DietPi-Software | Resolved an issue with Emby server (ARMv7/ARMv8) failing to install, due to missing packages not available in Debian repo: https://github.com/Fourdee/DietPi/issues/1150
DietPi-Software | Resolved an issue with 404 and Owncloud: https://github.com/Fourdee/DietPi/issues/1225
DietPi-Software | Resolved an issue with Home Assistant on Native PC failing. Many thanks to @sytone : https://github.com/Fourdee/DietPi/issues/1145
Allo Web Interface v3:
Roon | Resolved an issue where Roon was not generating unique IDs, resulting in multiple devices on the same network, having issues with Roon Core detection.
Squeezelite | Now supports DSD and DoP audio playback: https://github.com/Fourdee/DietPi/issues/1210
General | Added ability to set S24_3 bit depth modes for Shairport-sync and Squeezelite. Required by some DACs
-----------------------------------------------------------------------------------------------------------
v157
(19/10/17)
Images:
Rock64 | Image updated to Release Candidate. Existing users should replace their installation with the latest image: https://github.com/Fourdee/DietPi/issues/1102#issuecomment-336475062
Changes / Improvements / Optimizations:
General | Ondemand is now the default CPU governor for all devices. Previously Interactive, which is not available in mainline Linux kernel. "Ondemand" has been set for all system in this patch, please revert to another CPU gov as needed.
General | Improved notifications for when DietPi is installing system with automated flags.
General | DietPi RPi Kernel: Updated to 4.9.52
General | RPi Stretch: Updated, matching official release of 2017-09-07-raspbian-stretch-lite
General | DietPi-Automation: "AUTO_Global_Password=" in "dietpi.txt" will also be applied to the "dietpi" user account. Please note this will only take effect on v157 and higher DietPi images, due to "boot" script requiring an update: https://github.com/Fourdee/DietPi/issues/1134
DietPi-Update | Added logging for updates > /etc/dietpi/logs/dietpi-update.log
DietPi-LetsEncrypt | Added support for Nginx on Stretch. Many thanks to @Bridouz for contributing this: https://github.com/Fourdee/DietPi/pull/1166
DietPi-Software | Apache2 + NextCloud: Various optimizations. For new installations only. Many thanks to @MichaIng for this contribution: https://github.com/Fourdee/DietPi/issues/1067
DietPi-Software | Allo Web Interface: Hidden from software list for now, please use pre-made images: http://dietpi.com/phpbb/viewtopic.php?f=8&t=2317#p8868
DietPi-Software | Roon Bridge: Now available for x86_64 systems.
DietPi-Software | Stretch: TightVNC now disabled as replaced by TigerVNC/VNC4.
DietPi-Software | Minio: Now available for installation. Object storage server with Amazon S3 compatible API. Many thanks to @techdabbler for contributing this addition! https://github.com/Fourdee/DietPi/pull/1152
DietPi-Software | Sabnzbd: Updated to 2.3.0 for new installations only. Thanks @hydrouk
DietPi-Software | Shairport-sync: Updated to 3.1.2.
DietPi-Software | FuguHub: Now available for install. Many thanks to @techdabbler for contributing this: https://github.com/Fourdee/DietPi/pull/1168
DietPi-Software | Docker: Now available for install. Many thanks to @techdabbler for contributing this: https://github.com/Fourdee/DietPi/pull/1169
DietPi-Software | MPD: Enabled for x86_64
DietPi-Software | Gmrender: Now available for installation. DLNA audio render/endpoint: https://github.com/Fourdee/DietPi/issues/1183
DietPi-Software | Nukkit: Now available for installation. Minecraft PE server. Many thanks to @techdabbler for contributing this: https://github.com/Fourdee/DietPi/pull/1190
Bug fixes:
General | Rock64: Resolved incorrect CPU temp readouts: https://github.com/Fourdee/DietPi/issues/1102#issuecomment-336475062
DietPi-Config | Resolved syntax issues with wifi_disable_powersave.service
DietPi-Drive_Manager | Resolved an issue where "Read Only" drives would incorrectly be displayed as "Disabled".
DietPi-Services | PHP7-FPM service now correctly controlled.
DietPi-Software | Stretch: VNC4Server, resolved various issues with tigervnc that prevented successful installation and operation. Disabled "localhost" only by default. TigerVNC packages now removed correctly during uninstall.
DietPi-Software | Shairport-sync (Stretch): Resolved an issue where dep libssl1.0.0 is no longer available from Debian Stretch repo. Causing the process to fail.
DietPi-Software | MotionEye (Stretch): Resolved failed installation, thanks @MichaIng for the repo hint: https://github.com/Fourdee/DietPi/issues/1155#issue-259888197
DietPi-Software | OctoPrint: Resolved an issue where changing update branches would result in git failure. This fix only applies to fresh installs of the software: https://github.com/Fourdee/DietPi/issues/1112
DietPi-Software | Squeezelite: Resolved failed installation with x86_64 devices.
Allo Web Interface Changes:
NB: All software has been reinstalled. User set freq/bit options, and service states will be reset to default. Please change these options as needed.
GENERAL: Gmrender (DLNA audio render) and Squeezelite installed by default: https://github.com/Fourdee/DietPi/issues/1183
GENERAL: Resolved issues with some services failing to start, once previously disabled.
MAIN PAGE: Reworked layout.
-----------------------------------------------------------------------------------------------------------
v156
(22/09/17)
Changes / Improvements / Optimizations:
General | ASUS TB: Updated image. Includes latest kernel and matches current 2.0.1 TinkerOS image.
DietPi-Config | Performance > CPU: Added support for setting minimum CPU frequencies. Many thanks to @Filhype for contributing this feature!: https://github.com/Fourdee/DietPi/pull/1148
DietPi-Config | WiFi: Added support for connecting to open networks (no encryption), by using a empty passkey. Many thanks to Helmut for this!
DietPi-Drive_Manager | We have reviewed "Mystic Meg's" claims that it is possible to psychically unmount drives. Our team has personally tested this claim, and, we can confirm this is simply not the case. Either that, or our "Chinatown" crystal ball is not fully functional. Therefore, we have deemed it necessary that users must "physically" remove drives, instead of attempting to achieve it with their minds alone. This also applies to keyboards. Thanks John!
DietPi-Software | Syncthing: Updated to latest version (v0.14.35). For new installations only. Many thanks to @joaofl for contributing this: https://github.com/Fourdee/DietPi/pull/1103
DietPi-Software | Syncthing: Now uses the DietPi user data directory and dietpi user account. For new installations only. Many thanks to @joaofl for contributing this: https://github.com/Fourdee/DietPi/pull/1103
Bug fixes:
General | Sparky SBC: Kernel updated to resolve issue with slow playback under 44KHz/16bit PCM, and, playback failure in MPD when changing tracks. Many thanks @sudeep.
General | ASUS TB: Default CPU gov is now "ondemand". This resolves issues with USB DAC noise and general system instability: https://github.com/Fourdee/DietPi/issues/1141
DietPi-Software | MPD: Resolved an issue where MPD dependencies are not flagged as installed, causing removal during "apt-get autoremove": https://github.com/Fourdee/DietPi/issues/1140
DietPi-Software | O!MPD: Resolved an issue where OMPD would fail to generate the SQL DB in Debian Stretch.
DietPi-Update | Resolved an issue where DNS could be lost, preventing updates if PiHole is installed. This is due to us stopping the service prior to updates. PiHole service is now restarted during updates: https://github.com/Fourdee/DietPi/issues/1138
-----------------------------------------------------------------------------------------------------------
v155
(02/09/17)
New Image:
Rock64 | Now available for beta testing: https://github.com/Fourdee/DietPi/issues/1102#issuecomment-325131437
Changes / Improvements / Optimizations:
General | RPi: Kernel updated to 4.9.40. Includes improved driver support for Allo Piano and DiGi One: https://github.com/raspberrypi/linux/pull/2149
General | dietpi.txt: Added an dev option to force a resize + expansion on rootfs partition for next boot (fs_force_resize=1)
General | RT kernel for RPi is now available, can be installed with "/DietPi/dietpi/func/dietpi-set_hardware kernel dietpi_rpi_rt"
General | Reworked the disabled modules for Sparky. Disables touchscreen and GPU modules (thanks @sudeep).
General | Sparky Image updated to Stretch, includes kernel update for DSD256/512 support.
DietPi-Config | Networking > WiFi: Added a feature which will monitor the Wifi connection and automatically reconnect, if the gateway is unavailable (eg: connection drop): https://github.com/Fourdee/DietPi/issues/1074
DietPi-Software | Home Assistant: Now available for installation. Many thanks to @sytone for adding this: https://github.com/Fourdee/DietPi/pull/1087
DietPi-Software | Sabnzbd: Updated to 2.1.0 for new installations only: https://github.com/Fourdee/DietPi/issues/865#issuecomment-319110395
DietPi-Software | Kodi: Now installs avahi-daemon by default: http://dietpi.com/phpbb/viewtopic.php?f=11&t=2148&p=8323#p8316
DietPi-Software | sabnzbd: Updated to latest version (2.2.1), existing installations will need to uninstall/reinstall to update: https://github.com/Fourdee/DietPi/issues/865#issuecomment-325454351
Bug fixes:
General | Auto Swapfile generation: Size is now set to "2048 - total memory" to prevent out of memory errors during Koel installations and in general. "1024 - total RAM" was previous. All systems will have swapfile regenerated during this patch, you can change this afterwards in dietpi-config > advanced options: https://github.com/Fourdee/DietPi/issues/1126
General | (Odroid C2): Resolved an issue where APT would fail to continue, due to deb-multimedia removing ARMv8 (ARM64) packages: https://github.com/Fourdee/DietPi/issues/1096
General | Fix error log on disabled IPv6 (thanks @MichaIng): https://github.com/Fourdee/DietPi/pull/1120/
DietPi-AutoStart | Resolved an issue where OPi devices would fail to execute selected autostart option: https://github.com/Fourdee/DietPi/issues/1109
DietPi-BugReport | Increased max upload size from 50MB to 80MB: https://github.com/Fourdee/DietPi/issues/1086#issuecomment-317724186
DietPi-Config | Corrected firmware upgrade code for OrangePi devices: http://dietpi.com/phpbb/viewtopic.php?f=11&t=2149&p=8295#p8295
DietPi-Software | Mumble/MurMur: Resolved an issue where superuser password was not being set during installation: http://dietpi.com/phpbb/viewtopic.php?f=11&t=2024#p8084
DietPi-Software | Tondio: Resolved an issue where the installation would fail due to lack of libjpeg8 packages, on Debian repos. Packages now hosted on dietpi.com: https://github.com/Fourdee/DietPi/issues/1101
DietPi-Software | Sparky SBC: WiFi Hotspot now triggers the RTL driver during install. This is hard coded, to configure for the official Allo WiFi dongle.
DietPi-Software | Mopidy: Resolved an issue where the libary would fail to update. Many thanks to Sciamano: http://dietpi.com/phpbb/viewtopic.php?f=11&t=2112
DietPi-Software | Emby: Resolved an issue where unavailable libjpeg8 packages from Jessie/Stretch, would cause this installation to fail: https://github.com/Fourdee/DietPi/issues/1128#issuecomment-326743471
-----------------------------------------------------------------------------------------------------------
v154
(23/07/17)
Changes / Improvements / Optimizations:
General | Native PC: i386 apt support added by default.
DietPi-Config | Audio > Soundcard (Native PC) | Added ability to select from available soundcards on system: https://github.com/Fourdee/DietPi/issues/1053#issuecomment-313922101
DietPi-Config | Networking Options NAS/MISC: Added ability to change NTPD servers: https://github.com/Fourdee/DietPi/issues/1049
DietPi-Config | Display > Resolution: Added ability to set SDTV modes for Raspberry Pi: https://github.com/Fourdee/DietPi/issues/1058
DietPi-Config | Display > Resolution: Added ability to change overscan values for Raspberry Pi, once overscan is enabled: https://github.com/Fourdee/DietPi/issues/1058
DietPi-Software | Avahi-Daemon (additional Linux software): Now available for installation. Provides hostname broadcasting, supported by MacOSX and PC clients with Bonjour service: https://github.com/Fourdee/DietPi/issues/1030
DietPi-Software | OctoPrint: Now available for installation. 3D printing with web interface: https://github.com/Fourdee/DietPi/issues/854
DietPi-Software | RoonServer: Now available for installation. x86_64 native PC only: https://github.com/Fourdee/DietPi/issues/1060
DietPi-Software | Nvidia driver: Now also installs i386 OpenGL.
DietPi-Software | HTPC Manager: Now available for installation. Many thanks to @sytone for implementing the software!: https://github.com/Fourdee/DietPi/pull/1083
DietPi-Software | Steam: Now available for installation (Native PC only): https://github.com/Fourdee/DietPi/issues/1062
DietPi-Software | OpenBazaar: Updated service to SystemD (openbazaar.service).
Bug fixes:
General | RPi Stretch: /etc/apt/sources.list.d/raspi.list now uses correct stretch repo. Many thanks to @MichaIng for the fix: https://github.com/Fourdee/DietPi/issues/1077
DietPi-Config | Audio Options: DietPi-JustBoom option will now show when alsa-utils in installed. Many thanks to Jaikumar.
DietPi-Config | Waveshare 32 LCD panel: Now functional with current 4.9 kernel. X11 is not functional at this time: https://github.com/Fourdee/DietPi/issues/1048
DietPi-Launcher | DietPi-JustBoom and DietPi-Cloudshell options, will now show when alsa-utils in installed.
DietPi-Process_Tool | Added OpenBazaar to the list.
DietPi-Software | Emby: Resolved an issue where this software title would fail to install. Many thanks to @DncrJim for the report: https://github.com/Fourdee/DietPi/issues/1059
DietPi-Software | Emby: Is now disabled for ARMv8, due to lack of libjpeg8 debian packages in available repos: https://github.com/Fourdee/DietPi/issues/1059#issuecomment-313661959
-----------------------------------------------------------------------------------------------------------
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.