Updated update notification system
Made NOTIFY_UPDATES=all and NOTIFY_UPDATES=major use the same version source file to prevent GitHub API limit from being reached.
This commit is contained in:
parent
9a99d858e0
commit
0e257ef8ab
|
@ -2,7 +2,11 @@
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
if (env('JOIN_BETA') === true) {
|
||||||
$Vgit = file_get_contents("https://julianprieber.github.io/littlelink-custom/version.json");
|
$Vgit = file_get_contents("https://julianprieber.github.io/littlelink-custom/version.json");
|
||||||
|
} else {
|
||||||
|
$Vgit = '0';
|
||||||
|
}
|
||||||
|
|
||||||
if ($Vgit > $Vlocal) {
|
if ($Vgit > $Vlocal) {
|
||||||
$userver = 'https://update.littlelink-custom.com/';
|
$userver = 'https://update.littlelink-custom.com/';
|
||||||
|
|
|
@ -194,7 +194,7 @@ if ($url1sb->successful() or $url2sb->successful()) {
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
<! –– #### begin update detection #### ––>
|
<! –– #### begin update detection #### ––>
|
||||||
@if(env('NOTIFY_UPDATES') == 'all' or env('NOTIFY_UPDATES') == 'true')
|
@if(env('NOTIFY_UPDATES') == 'old')
|
||||||
<! –– Checks if file version.json exists to continue (without this PHP will throw ErrorException ) ––>
|
<! –– Checks if file version.json exists to continue (without this PHP will throw ErrorException ) ––>
|
||||||
@if(file_exists(base_path("version.json")))
|
@if(file_exists(base_path("version.json")))
|
||||||
|
|
||||||
|
@ -213,7 +213,7 @@ if ($url1sb->successful() or $url2sb->successful()) {
|
||||||
<a style="color:#007bff" class="nav-link" href="{{ url('update') }}" title="Click here to learn more about how to update">An update is available</a>
|
<a style="color:#007bff" class="nav-link" href="{{ url('update') }}" title="Click here to learn more about how to update">An update is available</a>
|
||||||
@endif
|
@endif
|
||||||
@endif
|
@endif
|
||||||
@elseif(env('NOTIFY_UPDATES') == 'major')
|
@else
|
||||||
<?php // Checks if URL exists
|
<?php // Checks if URL exists
|
||||||
try {
|
try {
|
||||||
function URL_exists(string $url): bool
|
function URL_exists(string $url): bool
|
||||||
|
|
Loading…
Reference in New Issue