This commit is contained in:
Squidly271 2023-05-07 09:51:38 -04:00
parent 0bca325dd8
commit 4da2c89812
4 changed files with 6 additions and 6 deletions

View File

@ -2,8 +2,8 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "community.applications">
<!ENTITY author "Andrew Zawadzki">
<!ENTITY version "2023.05.07">
<!ENTITY md5 "8a2f8fe28ba548d0cff806133a177010">
<!ENTITY version "2023.05.07a">
<!ENTITY md5 "873351b428a0a1cc8e5f4227cb2a6177">
<!ENTITY launch "Apps">
<!ENTITY plugdir "/usr/local/emhttp/plugins/&name;">
<!ENTITY github "Squidly271/community.applications">
@ -20,6 +20,7 @@
- Fixed: A spotlighted app that had a description that needed a readmore couldn't easily be expanded to read the entire description on the sidebar
- Added: Support for magic mouse gesture or mouse wheel left/right to change pages
- Added: Link to Registry on the support dropdown from the card
- Regression Error: Action Centre would never show up
###2023.04.26b
- 6.9.2 Compatibility

View File

@ -2,7 +2,7 @@
106b521c1feebda4d7b3f558cc016cda ./CA_notices.page
39053aadf8ec0771de1e2c2dd47e9058 ./ca_settings.page
01ed7990078dee7cecfeda9a4e49377e ./default.cfg
433232dcb984130cbd51a3c331dc94e4 ./include/exec.php
638f22a3dfc75940b2caa27c3e612e28 ./include/exec.php
6315b71595f089a310861ef2e1954d84 ./include/helpers.php
3f6ae4c4fef3077dd2ca45117f780846 ./include/paths.php
532fffdf939594c143e679da02bd841e ./javascript/libraries.js

View File

@ -2380,8 +2380,8 @@ function enableActionCentre() {
} else {
$dockerUpdateStatus = [];
}
$info = getAllInfo();
$info = getAllInfo();
# $info contains all installed containers
# now correlate that to a template;
# this section handles containers that have not been renamed from the appfeed
@ -2417,8 +2417,7 @@ function enableActionCentre() {
}
if ( $runningflag ) {
$tmpRepo = strpos($o['Repository'],":") ? $o['Repository'] : $o['Repository'].":latest";
$tmpRepo = strpos($tmpRepo,"/") ?: "library/$tmpRepo";
$tmpRepo = strpos($tmpRepo,"/") ? $tmpRepo : "library/$tmpRepo";
if ( $tmpRepo ) {
if ( isset($dockerUpdateStatus[$tmpRepo]['status']) && $dockerUpdateStatus[$tmpRepo]['status'] == "false" )
$o['actionCentre'] = true;