This commit is contained in:
Squidly271 2022-11-11 06:21:40 -05:00
parent 430201b548
commit c39e25e5d8
4 changed files with 9 additions and 3 deletions

Binary file not shown.

View File

@ -2,8 +2,8 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "community.applications">
<!ENTITY author "Andrew Zawadzki">
<!ENTITY version "2022.10.16">
<!ENTITY md5 "822dc35ab3b2aea186bbe4647fddc0ac">
<!ENTITY version "2022.11.11">
<!ENTITY md5 "6d39d3a0dd0ad3831c9d724d1432a7bf">
<!ENTITY launch "Apps">
<!ENTITY plugdir "/usr/local/emhttp/plugins/&name;">
<!ENTITY github "Squidly271/community.applications">
@ -13,6 +13,10 @@
<PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;" min="6.9.0" support="https://lime-technology.com/forums/topic/38582-plug-in-community-applications/" icon="users">
<CHANGES>
###2022.11.11
- Fixed: Loading sidebar on Papermerge twice would exhaust memory
- Fixed: Uncategorized applications would not appear within "Other" category
###2022.10.16
- Fixed: Check for updates (via Installed Apps) also checked for OS updates
- Enhanced: Update plugin support URLs (if necessary) whenever application feed downloaded

View File

@ -22,4 +22,4 @@ da3b4f9b73c5c3bf65be6c42d68b51f9 ./scripts/showStatistics.php
34554a56611dfe625889c82afd5138de ./scripts/updatePluginSupport.php
25bdaed6f62ac73f9ef7c3ce0c125ef7 ./skins/Narrow/css.php
7eb021a105e2f7a15675ec8a14e6f05e ./skins/Narrow/skin.html
ba00c880d85ee82edea4260aa54bfab4 ./skins/Narrow/skin.php
0e60030b86d25fd60e8b416bf0929558 ./skins/Narrow/skin.php

View File

@ -507,6 +507,7 @@ function getPopupDescriptionSkin($appNumber) {
return;
}
$template = $file[$index];
unset($file); // not needed anymore and takes up a ton of space
}
$currentServer = file_get_contents($caPaths['currentServer']);
@ -564,6 +565,7 @@ function getPopupDescriptionSkin($appNumber) {
$allTrends = array_unique(array_column($allApps,"trending"));
rsort($allTrends);
$trendRank = array_search($template['trending'],$allTrends) + 1;
unset($allApps); // not needed anymore and takes up a ton of space
}
$template['Category'] = categoryList($template['Category'],true);
$template['Icon'] = $template['Icon'] ? $template['Icon'] : "/plugins/dynamix.docker.manager/images/question.png";