diff --git a/archive/community.applications-2017.09.22.txz b/archive/community.applications-2017.09.22.txz index b07da8e6..35894103 100644 Binary files a/archive/community.applications-2017.09.22.txz and b/archive/community.applications-2017.09.22.txz differ diff --git a/plugins/community.applications.plg b/plugins/community.applications.plg index f4e3b620..e429bb91 100644 --- a/plugins/community.applications.plg +++ b/plugins/community.applications.plg @@ -2,8 +2,8 @@ - - + + @@ -13,6 +13,12 @@ +###2017.09.22 +- Fixed: Correctly handle duplicate named plugins within Installed / Previously Installed sections +- Changed: Relocate data files from docker.img to RAM to handle some edge-cases +- Changed: Don't show applications within New / Updated section if date modified is in the future +- Code cleanup, and minor changes to Stats section + ###2017.09.13 - Changed: Clicking Repository from popup will now search for applications contained within the repository - Added: App info popup now has link to go directly to docker hub page for application diff --git a/source/community.applications/usr/local/emhttp/plugins/community.applications/include/exec.php b/source/community.applications/usr/local/emhttp/plugins/community.applications/include/exec.php index 3299ae99..ee9b4fa1 100644 --- a/source/community.applications/usr/local/emhttp/plugins/community.applications/include/exec.php +++ b/source/community.applications/usr/local/emhttp/plugins/community.applications/include/exec.php @@ -1959,8 +1959,8 @@ case 'statistics': } $color = ""; - echo "

Community Applications
"; - echo "
Application Feed Statistics


"; + echo "

Community Applications
"; + echo "
Application Feed Statistics


"; echo ""; echo ""; echo ""; @@ -1975,6 +1975,12 @@ case 'statistics': echo ""; echo ""; echo ""; + $totalCA = exec("du -h -s /usr/local/emhttp/plugins/community.applications/"); + $totalTmp = exec(" du -h -s /tmp/community.applications/"); + $memCA = explode("\t",$totalCA); + $memTmp = explode("\t",$totalTmp); + echo ""; + echo "
{$color}Application List Current As Of$color$updateTime
{$color}Total Number Of Templates$color{$statistics['totalApplications']}
{$color}Total Number Of Deprecated Applications$color{$statistics['totalDeprecated']}
{$color}Total Number Of Moderation Entries$color{$statistics['totalModeration']}
{$color}Applications without any support thread:$color{$statistics['NoSupport']}
{$color}Memory Usage (CA / DataFiles){$memCA[0]} / {$memTmp[0]}
"; echo "
"; echo "
Ensuring only safe applications are present is a full time job

";