update copyright

This commit is contained in:
Squidly271 2021-12-31 08:55:22 -05:00
parent baac7e600f
commit f9eca8fb6e
20 changed files with 36 additions and 52 deletions

Binary file not shown.

View File

@ -7,7 +7,7 @@ Code="e942"
<?
###############################################################
# #
# Community Applications copyright 2015-2021, Andrew Zawadzki #
# Community Applications copyright 2015-2022, Andrew Zawadzki #
# Licenced under GPLv2 #
# #
###############################################################

View File

@ -4,7 +4,7 @@ Link='nav-user'
<?
###############################################################
# #
# Community Applications copyright 2015-2021, Andrew Zawadzki #
# Community Applications copyright 2015-2022, Andrew Zawadzki #
# Licenced under GPLv2 #
# #
###############################################################

View File

@ -1,24 +1,24 @@
ccf3f1ccdb4858de411bb3ed93eca7ab ./Apps.page
83b3f89cd42e8601c7c217d5b4889c81 ./CA_notices.page
18ded5848ac35ffae0e8e0fc8ed3c512 ./ca_settings.page
ced7886f83dd7f77fcfbe9a214d35513 ./Apps.page
4e55f7483b661af21a25b677179baffe ./CA_notices.page
c7c6da0a4a4a7ac33f387ea178319bae ./ca_settings.page
ed2883d6c44c19304c431079596a1731 ./default.cfg
3074017521ca2512e5c9990b1a9f864d ./include/exec.php
96ca7bc670ede6df1e170eaff98a7af9 ./include/helpers.php
95709ae0ed53e2889a93849a69b37892 ./include/paths.php
abbcf04ea5f8780a9b7f1d392ea1e09c ./include/exec.php
ba637f473f4f768f4c878d50a7ebc4cb ./include/helpers.php
6f6f06e53087215df34c98bc3f1e531c ./include/paths.php
532fffdf939594c143e679da02bd841e ./javascript/libraries.js
b398273cf7daa62ab00d2de2336ca25f ./README.md
717f49d6faabd7e1d7cf0940beb5cd5e ./scripts/checkForUpdates.php
1e2b902321d4bb7efe0d0b78c8130a73 ./scripts/installMulti.php
2242d19776185c3f99e4dbc8bdc3a8d9 ./scripts/installMultiPlugin.php
79f3093f42415484944e6aa2863ee30a ./scripts/checkForUpdates.php
d9cdbe7f3d974ff8d71a1f34d83f6e6e ./scripts/installMulti.php
be74e770cdc8938200fc29580be4e3a1 ./scripts/installMultiPlugin.php
524afab04ca930f59117a846f819fb2f ./scripts/installPluginUpdate.sh
92028dcc61f62158cbc7064e6143d287 ./scripts/installUpdate.php
f1e435bc2543dd7a9f6495fbc2533f2b ./scripts/installUpdate.php
5846421e95b475e1156c3f68164ccc4f ./scripts/languageInstall.sh
c0b2c395a14863960438e4622f20f6ff ./scripts/notices.php
430966e5646376b62905b63a30de7102 ./scripts/PluginAPI.php
9c7608a4a2cf279c8a2af88960e1642d ./scripts/pluginInstall.php
e3dc9ed23036a09d69d5cd5c3111751e ./scripts/showStatistics.php
d4770cba925e913500e0085b79267d3e ./scripts/notices.php
c9503c1e9a5e96c0f6023ecfdf4ffe7e ./scripts/PluginAPI.php
a1401a0bed89c182b69f0c7508282c1f ./scripts/pluginInstall.php
36556fb8fcd17118600d3d226c50567d ./scripts/showStatistics.php
4425f8fd4ef662a7dc65cee01de3e419 ./scripts/updatePLG.sh
2bd671daecaf01549f8cc0202cb184b3 ./scripts/updatePluginSupport.php
e847d17faa1276c97ce3702f57ac56ea ./skins/Narrow/css.php
cfa1511913f794c8c5980460dfcdf049 ./skins/Narrow/skin.html
1612dbb7b05d8d48e61b43c24e506659 ./skins/Narrow/skin.php
34554a56611dfe625889c82afd5138de ./scripts/updatePluginSupport.php
dec0ef21fb5bd704cd319e0a059a11ba ./skins/Narrow/css.php
7d827147dc8ede3d518b2cacae1d385b ./skins/Narrow/skin.html
c17045b3c6cb427757f612e40f062f9b ./skins/Narrow/skin.php

View File

@ -5,7 +5,7 @@ Icon="users"
<?
###############################################################
# #
# Community Applications copyright 2015-2021, Andrew Zawadzki #
# Community Applications copyright 2015-2022, Andrew Zawadzki #
# Licenced under GPLv2 #
# #
###############################################################

View File

@ -1,7 +1,7 @@
<?PHP
###############################################################
# #
# Community Applications copyright 2015-2021, Andrew Zawadzki #
# Community Applications copyright 2015-2022, Andrew Zawadzki #
# Licenced under GPLv2 #
# #
###############################################################

View File

@ -1,7 +1,7 @@
<?PHP
###############################################################
# #
# Community Applications copyright 2015-2021, Andrew Zawadzki #
# Community Applications copyright 2015-2022, Andrew Zawadzki #
# Licenced under GPLv2 #
# #
###############################################################
@ -411,23 +411,7 @@ function checkInstalledPlugin($template) {
if ( ! $dupeList[$pluginName] ) return true;
return strtolower(trim(plugin("pluginURL","/var/log/plugins/$pluginName"))) == strtolower(trim($template['PluginURL']));
}
#################################
# Checks if an app is installed #
#################################
function appInstalled($template,$info) {
if ($template['Plugin'])
return checkInstalledPlugin($template);
if ($test['Language'])
return is_dir("/usr/local/emhttp/languages/lang-{$template['LanguagePack']}");
$name = $template['Name'];
$selected = $info[$name]['template'];
$tmpRepo = strpos($template['Repository'],":") ? $template['Repository'] : "{$template['Repository']}:latest";
if ( ! strpos($tmpRepo,"/") )
$tmpRepo = "library/$tmpRepo";
return $selected ? ($tmpRepo == $info[$name]['repository']) : false;
}
###########################################################
# Returns a string with only alphanumeric characters only #
###########################################################

View File

@ -1,7 +1,7 @@
<?PHP
###############################################################
# #
# Community Applications copyright 2015-2021, Andrew Zawadzki #
# Community Applications copyright 2015-2022, Andrew Zawadzki #
# Licenced under GPLv2 #
# #
###############################################################

View File

@ -1,7 +1,7 @@
<?PHP
###############################################################
# #
# Community Applications copyright 2015-2021, Andrew Zawadzki #
# Community Applications copyright 2015-2022, Andrew Zawadzki #
# Licenced under GPLv2 #
# #
###############################################################

View File

@ -2,7 +2,7 @@
<?
###############################################################
# #
# Community Applications copyright 2015-2021, Andrew Zawadzki #
# Community Applications copyright 2015-2022, Andrew Zawadzki #
# Licenced under GPLv2 #
# #
###############################################################

View File

@ -1,7 +1,7 @@
<?PHP
###############################################################
# #
# Community Applications copyright 2015-2021, Andrew Zawadzki #
# Community Applications copyright 2015-2022, Andrew Zawadzki #
# Licenced under GPLv2 #
# #
###############################################################

View File

@ -2,7 +2,7 @@
<?
###############################################################
# #
# Community Applications copyright 2015-2021, Andrew Zawadzki #
# Community Applications copyright 2015-2022, Andrew Zawadzki #
# Licenced under GPLv2 #
# #
###############################################################

View File

@ -1,7 +1,7 @@
<?
###############################################################
# #
# Community Applications copyright 2015-2021, Andrew Zawadzki #
# Community Applications copyright 2015-2022, Andrew Zawadzki #
# Licenced under GPLv2 #
# #
###############################################################

View File

@ -1,7 +1,7 @@
<?PHP
###############################################################
# #
# Community Applications copyright 2015-2021, Andrew Zawadzki #
# Community Applications copyright 2015-2022, Andrew Zawadzki #
# Licenced under GPLv2 #
# #
###############################################################

View File

@ -2,7 +2,7 @@
<?
###############################################################
# #
# Community Applications copyright 2015-2021, Andrew Zawadzki #
# Community Applications copyright 2015-2022, Andrew Zawadzki #
# Licenced under GPLv2 #
# #
###############################################################

View File

@ -1,7 +1,7 @@
<?PHP
###############################################################
# #
# Community Applications copyright 2015-2021, Andrew Zawadzki #
# Community Applications copyright 2015-2022, Andrew Zawadzki #
# Licenced under GPLv2 #
# #
###############################################################

View File

@ -2,7 +2,7 @@
<?PHP
###############################################################
# #
# Community Applications copyright 2015-2021, Andrew Zawadzki #
# Community Applications copyright 2015-2022, Andrew Zawadzki #
# Licenced under GPLv2 #
# #
###############################################################

View File

@ -1,7 +1,7 @@
<?php
###############################################################
# #
# Community Applications copyright 2015-2021, Andrew Zawadzki #
# Community Applications copyright 2015-2022, Andrew Zawadzki #
# Licenced under GPLv2 #
# #
###############################################################

View File

@ -74,6 +74,6 @@
<div class='ca_center ca_creditheader'><?tr("Additional Libraries");?></div>
<div class='ca_center ca_credit'>Awesomeplete (Lea Verou)<br>Chart.js (various)<br>chartjs-plugin-trendline (Marcus Alsterfjord)<br>XML2Array/Array2XML (Miles Johnson)<br>sprintf.js (Alexandru Mărășteanu) (&lt; Unraid 6.10 only)<br>Magnific-Popup (Dmitry Semenov)</div>
<br>
<div class='ca_center ca_italic'><font size='1rem;'><?tr("Copyright");?> &copy; 2015-2021 Andrew Zawadzki</font></div>
<div class='ca_center ca_italic'><font size='1rem;'><?tr("Copyright");?> &copy; 2015-2022 Andrew Zawadzki</font></div>
</div>
</span>

View File

@ -1,7 +1,7 @@
<?PHP
###############################################################
# #
# Community Applications copyright 2015-2021, Andrew Zawadzki #
# Community Applications copyright 2015-2022, Andrew Zawadzki #
# Licenced under GPLv2 #
# #
###############################################################