Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/client_updater_server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallexzander <allexzander@users.noreply.github.com>2022-08-19 18:07:02 +0300
committerGitHub <noreply@github.com>2022-08-19 18:07:02 +0300
commit941f1febe0be30ff13e41060f5a606d17a23dfd9 (patch)
tree49c20a3d796c6fd2141e27ba4d8a37159b63bfa3
parent84222a02954de64fcd255a2eff7e914c8f6f9071 (diff)
parent27b952a0b6f7a1459e3e962cd93b8a7b35154ea1 (diff)
Merge pull request #93 from nextcloud/fixMacBetaUpdate
Use internal RC/beta to compare version, but version name for rest
-rw-r--r--config/config.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/config/config.php b/config/config.php
index e32a6a0..7ee8727 100644
--- a/config/config.php
+++ b/config/config.php
@@ -25,6 +25,7 @@ $stableReleaseDate = '2022-08-02 18:00';
$stableVersion = '3.5.4';
$betaReleaseDate = '2022-08-15 18:00';
+$betaVersionInternal = '3.5.81';
$betaVersion = '3.6.0-rc1';
$stableVersionString = 'Nextcloud Client ' . $stableVersion;
@@ -91,19 +92,19 @@ return [
'beta' => [
'release' => $betaReleaseDate,
'linux' => [
- 'version' => $betaVersion,
+ 'version' => $betaVersionInternal,
'versionstring' => $betaVersionString,
'downloadurl' => $beta_linux_url . 'Nextcloud-' . $betaVersion . '-x64.AppImage',
'web' => 'https://nextcloud.com/install',
],
'win32' => [
- 'version' => $betaVersion,
+ 'version' => $betaVersionInternal,
'versionstring' => $betaVersionString,
'downloadurl' => $beta_windows_url . 'Nextcloud-' . $betaVersion . $windows_suffix,
'web' => 'https://nextcloud.com/install',
],
'macos' => [
- 'version' => $betaVersion,
+ 'version' => $betaVersionInternal,
'versionstring' => $betaVersionString,
'downloadurl' => $beta_mac_url . 'Nextcloud-' . $betaVersion . '.pkg',
'web' => 'https://nextcloud.com/install',