mirror of
https://github.com/unraid/webgui.git
synced 2026-01-17 15:10:02 -06:00
Version 6.3.3 2017-03-30
This commit is contained in:
@@ -4,8 +4,8 @@
|
||||
<!ENTITY name "dynamix">
|
||||
<!ENTITY author "Bergware">
|
||||
<!ENTITY branch "master">
|
||||
<!ENTITY version "2017.02.16"> <!-- Intended new version of Dynamix webGUI -->
|
||||
<!ENTITY unRAID "6.3.2"> <!-- Change to new unRAID version when issued together -->
|
||||
<!ENTITY version "2017.03.30"> <!-- Intended new version of Dynamix webGUI -->
|
||||
<!ENTITY unRAID "6.3.3"> <!-- Change to new unRAID version when issued together -->
|
||||
<!ENTITY pluginURL "https://raw.github.com/limetech/webgui/&branch;/plugins/&name;/&name;.plg">
|
||||
]>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<!DOCTYPE PLUGIN [
|
||||
<!ENTITY name "unRAIDServer">
|
||||
<!ENTITY author "LimeTech">
|
||||
<!ENTITY version "6.3.2">
|
||||
<!ENTITY version "6.3.3">
|
||||
<!ENTITY pluginURL "https://raw.github.com/limetech/&name;/master/&name;.plg">
|
||||
|
||||
<!ENTITY category "stable">
|
||||
@@ -24,6 +24,48 @@
|
||||
unRAID Server OS Change Log
|
||||
===========================
|
||||
|
||||
Version 6.3.3 2017-03-30
|
||||
------------------------
|
||||
|
||||
Base distro:
|
||||
|
||||
- reiserfsprogs: version 3.6.24 (downgrade to address reiserfsck regression)
|
||||
- samba: version 4.5.7 (CVE-2017-2619)
|
||||
|
||||
Linux kernel:
|
||||
|
||||
- version 4.9.19
|
||||
- added CONFIG_BLK_DEV_PCIESSD_MTIP32XX: Block Device Driver for Micron PCIe SSDs (user request)
|
||||
|
||||
Management:
|
||||
|
||||
- emhttp: get rid of SO_LINGER on connection socket
|
||||
- emhttp: override array autostart if safe boot mode
|
||||
- emhttp: silence "Transport endpoint is not connected" messages
|
||||
- emhttp: btrfs cache pool set to raid1 only on new pool creation
|
||||
- syslinux: include "unRAID OS GUI Safe Mode (no plugins)" boot option
|
||||
- update hwdata/{pci.ids,usb.ids,oui.txt,manuf.txt}
|
||||
- update_cron: generate system cron table only from installed plugins
|
||||
- webGui: Ignore mover log entries in color coding
|
||||
- webGui: Fixed wrong reference to Display Settings in Main page
|
||||
- webGui: Fixed: missing creating of eth10 settings page
|
||||
- webGui: Add in links to dashboard
|
||||
- webGui: SweetAlert bugfixes
|
||||
- webGui: Add tooltipster to dynamix and add a tooltip in DiskIO toggle at /Main
|
||||
- webGui: Fixed DNS server assignment when changing VLANs
|
||||
- webGui: Fixed DNS server assignment follows IP address assignment
|
||||
- webGui: Fixed incorrect display of BTRFS check for non-btrfs disks. Removed unused buttons.
|
||||
- webGui: Fixed missing csrf token and code optimizations in SMART report generation
|
||||
- webGui: Cleanup unused parameters when saving configuration files
|
||||
- webGui: Disk read/write IO in background daemon
|
||||
- webGui: Remove the old temp .plg file on remove
|
||||
- webGui: Remove href bookmarks on anchor elements
|
||||
- webGui: Provide control to initiate btrfs balance on btrfs-formatted array devices and single cache device.
|
||||
- webGui: Remove preset btrfs balance options; btrfs-raid1 is default only for initial creation of multi-device pool.
|
||||
- webGui: DeviceInfo shows all check/balance/scrub operations but greyed out depending on arry started state
|
||||
- webGui: Add lscpu output to diagnositics
|
||||
- webGui: toggling acs override will now apply to all boot options in syslinux.cfg
|
||||
|
||||
Version 6.3.2 2017-02-16
|
||||
------------------------
|
||||
|
||||
@@ -491,6 +533,12 @@ fi
|
||||
if [ "${version:0:2}" == "6." ]; then
|
||||
echo "**REBOOT REQUIRED!**" > /usr/local/emhttp/plugins/&name;/README.md
|
||||
fi
|
||||
# if unRaid-6.3 ensure GUI Safe Mode syslinux option exists
|
||||
if [ "${version:0:3}" == "6.3" ]; then
|
||||
if ! grep -q 'initrd=/bzroot,/bzroot-gui unraidsafemode' /boot/syslinux/syslinux.cfg &> /dev/null ; then
|
||||
sed -i 's|label Memtest86+|label unRAID OS GUI Safe Mode (no plugins)\r\n kernel /bzimage\r\n append initrd=/bzroot,/bzroot-gui unraidsafemode\r\nlabel Memtest86+|g' /boot/syslinux/syslinux.cfg &> /dev/null
|
||||
fi
|
||||
fi
|
||||
# when upgrading any version prior to 6.2
|
||||
if [ "${version:0:3}" \< "6.2" ]; then
|
||||
if ! grep -q '/bzroot-gui' /boot/syslinux/syslinux.cfg &> /dev/null ; then
|
||||
|
||||
Reference in New Issue
Block a user