roll back 6.8 compatibility
parent
921be0bdca
commit
11dbed26ba
Binary file not shown.
|
@ -10,9 +10,14 @@
|
|||
<!ENTITY pluginURL "https://raw.githubusercontent.com/&github;/master/plugins/&name;.plg">
|
||||
]>
|
||||
|
||||
<PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;" min="6.8.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>
|
||||
###2021.10.21
|
||||
- Changed / Fixed: Rendering speed at startup, page transitions etc
|
||||
- Fixee: Uninstalling from a category woulen't highlight Installed Apps after finish.
|
||||
- Fixed: Uninstalling from either the docker or plugin subsection of installed apps would highlight Installed Apps after uninstall
|
||||
|
||||
###2021.10.19
|
||||
- Changed: Drop limit of displayed apps on home page from 25 to 7 / 10 depending upon settings
|
||||
- Added: Ability to display descriptions by default on the cards. (Go to CA's Settings page)
|
||||
|
@ -1705,11 +1710,11 @@ THIS IS A REQUIRED UPDATE
|
|||
<?
|
||||
$version = parse_ini_file("/etc/unraid-version");
|
||||
|
||||
if ( version_compare($version['version'],"6.8.0", "<") )
|
||||
if ( version_compare($version['version'],"6.9.0", "<") )
|
||||
{
|
||||
echo "********************************************************************\n";
|
||||
echo "\n";
|
||||
echo "Community Applications Requires unRaid version 6.8.0 or greater to run\n";
|
||||
echo "Community Applications Requires unRaid version 6.9.0 or greater to run\n";
|
||||
echo "\n";
|
||||
echo "********************************************************************\n";
|
||||
exit(1);
|
||||
|
|
|
@ -1148,10 +1148,12 @@ function uninstallDocker(application,humanName) {
|
|||
post({action:'uninstall_docker',application:application,noSpinner:true},function(result) {
|
||||
myCloseAlert();
|
||||
enableSearch();
|
||||
$(".caMenuItem").removeClass("selectedMenu");
|
||||
var menuItem = $.find(".caMenuItem[data-category='installed_apps']");
|
||||
$(menuItem).addClass("selectedMenu");
|
||||
|
||||
if ( $(".selectedMenu").data("category") !== "inst_docker" && $(".selectedMenu").data("category") !== "inst_plugin") {
|
||||
$(".caMenuItem").removeClass("selectedMenu");
|
||||
var menuItem = $.find(".caMenuItem[data-category='installed_apps']");
|
||||
$(menuItem).addClass("selectedMenu");
|
||||
$(menuItem).next().show("slow");
|
||||
}
|
||||
previousApps(true,false,data.previousAppsSection);
|
||||
});
|
||||
} else {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
0617ae7ed4011e05bef9cd6cac85dd5b ./Apps.page
|
||||
2468ebb77d77d23bbab55cef613714b2 ./Apps.page
|
||||
83b3f89cd42e8601c7c217d5b4889c81 ./CA_notices.page
|
||||
7ee0b23dbd92ed55f611360a983f9565 ./ca_settings.page
|
||||
993c0dff1a44225d5070cada0d805f75 ./default.cfg
|
||||
|
|
Loading…
Reference in New Issue