maintenace release

This commit is contained in:
Squidly271 2022-03-13 13:19:19 -04:00
parent 73fb2643aa
commit 93eb59ebb8
4 changed files with 17 additions and 5 deletions

View File

@ -2,8 +2,8 @@
<!DOCTYPE PLUGIN [ <!DOCTYPE PLUGIN [
<!ENTITY name "community.applications"> <!ENTITY name "community.applications">
<!ENTITY author "Andrew Zawadzki"> <!ENTITY author "Andrew Zawadzki">
<!ENTITY version "2022.03.06"> <!ENTITY version "2022.03.13">
<!ENTITY md5 "fc0f1665f429ce6b765afd463bd140f2"> <!ENTITY md5 "3c61b4f0ce29fea08e08b597ab805db6">
<!ENTITY launch "Apps"> <!ENTITY launch "Apps">
<!ENTITY plugdir "/usr/local/emhttp/plugins/&name;"> <!ENTITY plugdir "/usr/local/emhttp/plugins/&name;">
<!ENTITY github "Squidly271/community.applications"> <!ENTITY github "Squidly271/community.applications">
@ -13,6 +13,18 @@
<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"> <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> <CHANGES>
###2022.03.13
- Maintenance Release
- Fixed: Cancelling a plugin installation from the card if there was a warning popup would disable the search box
- Fixed: On occasion the warning popup could have corrupted text
- Fixed: Installed Version was appearing on sidebar if plugin wasn't installed
- Added: Show current plugin version of non-installed plugins
- Fixed: Max per page was appearing on Credits and Stats pages
- Fixed: Very old CA installations could display -1 as max per page
- Fixed: Very old CA installations could crash on the home page
- Added: Flag on the app cards if an update is available for them
- Fixed: On the card it was possible for Actions to still display Install Update if the app was updated within the previous 2 hours and the update was already installed
###2022.03.06 ###2022.03.06
- Added: Checkmark indicating currently selected Max Per Page on dropdown - Added: Checkmark indicating currently selected Max Per Page on dropdown
- Added: Identify apps in a dockerHub search that currently exist within Apps as a template (must install via templates) - Added: Identify apps in a dockerHub search that currently exist within Apps as a template (must install via templates)

View File

@ -20,4 +20,4 @@ da3b4f9b73c5c3bf65be6c42d68b51f9 ./scripts/showStatistics.php
34554a56611dfe625889c82afd5138de ./scripts/updatePluginSupport.php 34554a56611dfe625889c82afd5138de ./scripts/updatePluginSupport.php
62494acd8ae889cf55688a22852eadb0 ./skins/Narrow/css.php 62494acd8ae889cf55688a22852eadb0 ./skins/Narrow/css.php
639c5146c5880a617fe15f603b1cffa3 ./skins/Narrow/skin.html 639c5146c5880a617fe15f603b1cffa3 ./skins/Narrow/skin.html
9ddbed3bf1868da36b2e1258be66859d ./skins/Narrow/skin.php 854e2ac5ff0f25fb454eaf6f4df38766 ./skins/Narrow/skin.php

View File

@ -126,9 +126,9 @@ function my_display_apps($file,$pageNumber=1,$selectedApps=false,$startup=false)
} }
if ( $caSettings['defaultReinstall'] == "true" ) { if ( $caSettings['defaultReinstall'] == "true" ) {
if ( $template['BranchID'] ) if ( $template['BranchID'] )
$actionsContext[] = array("icon"=>"ca_fa-install","text"=>tr("Install second instance"),"action"=>"displayTags('{$template['ID']}',true,'".str_replace(" ","&#32",htmlspecialchars($installComment))."','".portsUsed($template)."');"); $actionsContext[] = array("icon"=>"ca_fa-install","text"=>tr("Install second instance"),"action"=>"displayTags('{$template['ID']}',true,'".str_replace(" ","&#32;",htmlspecialchars($installComment))."','".portsUsed($template)."');");
else else
$actionsContext[] = array("icon"=>"ca_fa-install","text"=>tr("Install second instance"),"action"=>"popupInstallXML('".addslashes($template['Path'])."','second','".str_replace(" ","&#32",htmlspecialchars($installComment))."','".portsUsed($template)."');"); $actionsContext[] = array("icon"=>"ca_fa-install","text"=>tr("Install second instance"),"action"=>"popupInstallXML('".addslashes($template['Path'])."','second','".str_replace(" ","&#32;",htmlspecialchars($installComment))."','".portsUsed($template)."');");
} }
$actionsContext[] = array("icon"=>"ca_fa-edit","text"=>tr("Edit"),"action"=>"popupInstallXML('".addslashes($info[$ind]['template'])."','edit');"); $actionsContext[] = array("icon"=>"ca_fa-edit","text"=>tr("Edit"),"action"=>"popupInstallXML('".addslashes($info[$ind]['template'])."','edit');");
$actionsContext[] = array("divider"=>true); $actionsContext[] = array("divider"=>true);