admin/server: use the 'release' branch as reference for latest release version number detection
- ref. https://github.com/shaarli/Shaarli/issues/1961
This commit is contained in:
parent
062698c123
commit
625235787e
2 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ public function index(Request $request, Response $response): Response
|
||||||
$releaseUrl = ApplicationUtils::$GITHUB_URL . '/releases/';
|
$releaseUrl = ApplicationUtils::$GITHUB_URL . '/releases/';
|
||||||
if ($this->container->conf->get('updates.check_updates', true)) {
|
if ($this->container->conf->get('updates.check_updates', true)) {
|
||||||
$latestVersion = 'v' . ApplicationUtils::getVersion(
|
$latestVersion = 'v' . ApplicationUtils::getVersion(
|
||||||
ApplicationUtils::$GIT_RAW_URL . '/latest/' . ApplicationUtils::$VERSION_FILE
|
ApplicationUtils::$GIT_RAW_URL . '/release/' . ApplicationUtils::$VERSION_FILE
|
||||||
);
|
);
|
||||||
$releaseUrl .= 'tag/' . $latestVersion;
|
$releaseUrl .= 'tag/' . $latestVersion;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -438,7 +438,7 @@ public function updateMethodCheckUpdateRemoteBranch()
|
||||||
|
|
||||||
// Get latest branch major version digit
|
// Get latest branch major version digit
|
||||||
$latestVersion = ApplicationUtils::getLatestGitVersionCode(
|
$latestVersion = ApplicationUtils::getLatestGitVersionCode(
|
||||||
'https://raw.githubusercontent.com/shaarli/Shaarli/latest/shaarli_version.php',
|
'https://raw.githubusercontent.com/shaarli/Shaarli/release/shaarli_version.php',
|
||||||
5
|
5
|
||||||
);
|
);
|
||||||
if (preg_match('/(\d+)\.\d+$/', $latestVersion, $matches) === false) {
|
if (preg_match('/(\d+)\.\d+$/', $latestVersion, $matches) === false) {
|
||||||
|
|
Loading…
Reference in a new issue