diff --git a/archive/community.applications-2017.09.12.txz b/archive/community.applications-2017.09.12.txz new file mode 100644 index 00000000..fdf55d84 Binary files /dev/null and b/archive/community.applications-2017.09.12.txz differ diff --git a/plugins/community.applications.plg b/plugins/community.applications.plg index 09e49a38..c440828e 100644 --- a/plugins/community.applications.plg +++ b/plugins/community.applications.plg @@ -13,9 +13,10 @@ -###2017.09.09 +###2017.09.12 +- Added: App info popup now has link to go directly to docker hub page for application - Fixed: Prevent possibility of duplicate app appearing in app of the day. -- Fixed: Previously, app of the day would return errors if unRaid CSS and window width support horizontal resolution greater than 5700 pixels. +- Enhanced: Previously, app of the day would return errors if unRaid CSS and window width support horizontal resolution greater than 5700 pixels. - Fixed: If multiple browser tabs opened to apps tab, detect if app database is out of sync between windows and update tab accordingly. - Changed: Allow moderation to whitelist an application without appfeed update diff --git a/source/community.applications/usr/local/emhttp/plugins/community.applications/include/helpers.php b/source/community.applications/usr/local/emhttp/plugins/community.applications/include/helpers.php index 3e2fe84c..f79bacd1 100644 --- a/source/community.applications/usr/local/emhttp/plugins/community.applications/include/helpers.php +++ b/source/community.applications/usr/local/emhttp/plugins/community.applications/include/helpers.php @@ -641,7 +641,6 @@ function filterMatch($filter,$searchArray) { # Used to update the last time synced to keep browsers up to date # # # ################################################################### - function updateSyncTime($updateSyncFlag) { global $communityPaths; diff --git a/source/community.applications/usr/local/emhttp/plugins/community.applications/scripts/showDesc.php b/source/community.applications/usr/local/emhttp/plugins/community.applications/scripts/showDesc.php index 85566bf6..72d51ecb 100644 --- a/source/community.applications/usr/local/emhttp/plugins/community.applications/scripts/showDesc.php +++ b/source/community.applications/usr/local/emhttp/plugins/community.applications/scripts/showDesc.php @@ -97,11 +97,16 @@ $templateDescription .= ($template['Beta'] == "true") ? "
"; +if ( ! $template['Plugin'] ) { + $repository = explode(":",$template['Repository']); + $official = ( count(explode("/",$repository[0])) == 1 ) ? "_" : "r"; + $templateDescription .= "$colorDockerHub: {$repository[0]}"; +} $templateDescription .= "$colorRepository: $color"; -$templateDescription .= $template['Forum'] ? "".$template['RepoName']."" : "{$template['RepoName']}"; +$templateDescription .= $template['Forum'] ? "".$template['RepoName']."" : "{$template['RepoName']}"; if ( $template['Profile'] ) { $profileDescription = $template['Plugin'] ? "Author" : "Maintainer"; - $templateDescription .= "    ($profileDescription Profile)"; + $templateDescription .= "    ($profileDescription Profile)"; } $templateDescription .= ""; $templateDescription .= ($template['Private'] == "true") ? "Private Repository" : "";