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:
authorMatthieu Gallien <matthieu_gallien@yahoo.fr>2022-05-18 14:32:42 +0300
committerGitHub <noreply@github.com>2022-05-18 14:32:42 +0300
commite27af2fca469611205041c9d129a0114b59fc8b3 (patch)
treeb6136a99fb6788f3a4fc6b4c9d6f5c5ca952f5ad
parent5ad7727c8f19c27ed04e2dbefa1a1e8b086d338e (diff)
parentb44844a16446222a67af58f08cd1c14fac94ec06 (diff)
Merge pull request #84 from nextcloud/shortInstallURL
With our new webpage we only can link to the install page
-rw-r--r--config/config.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/config/config.php b/config/config.php
index 953009a..b13234f 100644
--- a/config/config.php
+++ b/config/config.php
@@ -70,19 +70,19 @@ return [
'version' => $stableVersion,
'versionstring' => $stableVersionString,
'downloadurl' => $stable_linux_url . 'Nextcloud-' . $stableVersion . '-x64.AppImage',
- 'web' => 'https://nextcloud.com/install/?pk_campaign=clientupdate#install-clients',
+ 'web' => 'https://nextcloud.com/install',
],
'win32' => [
'version' => $stableVersion,
'versionstring' => $stableVersionString,
'downloadurl' => $stable_windows_url . 'Nextcloud-' . $stableVersion . $windows_suffix,
- 'web' => 'https://nextcloud.com/install/?pk_campaign=clientupdate#install-clients',
+ 'web' => 'https://nextcloud.com/install',
],
'macos' => [
'version' => $stableVersion,
'versionstring' => $stableVersionString,
'downloadurl' => $stable_mac_url . 'Nextcloud-' . $stableVersion . '.pkg',
- 'web' => 'https://nextcloud.com/install/?pk_campaign=clientupdate#install-clients',
+ 'web' => 'https://nextcloud.com/install',
"sparkleDownloadUrl" => $stable_mac_url . 'Nextcloud-' . $stableVersion . '.pkg.tbz',
"signature" => "VjVCAmZ2PtX3P0bo2R7GWJf2eKcxwQvcswA1oly1SpcOeHu8nt9Rfo20Hbl+JIz4vIo1aIZHWKwiXU2CtrjrBw==",
"length" => 62917216
@@ -94,19 +94,19 @@ return [
'version' => $betaVersion,
'versionstring' => $betaVersionString,
'downloadurl' => $beta_linux_url . 'Nextcloud-' . $betaVersion . '-x64.AppImage',
- 'web' => 'https://nextcloud.com/install/?pk_campaign=clientupdate#install-clients',
+ 'web' => 'https://nextcloud.com/install',
],
'win32' => [
'version' => $betaVersion,
'versionstring' => $betaVersionString,
'downloadurl' => $beta_windows_url . 'Nextcloud-' . $betaVersion . $windows_suffix,
- 'web' => 'https://nextcloud.com/install/?pk_campaign=clientupdate#install-clients',
+ 'web' => 'https://nextcloud.com/install',
],
'macos' => [
'version' => $betaVersion,
'versionstring' => $betaVersionString,
'downloadurl' => $beta_mac_url . 'Nextcloud-' . $betaVersion . '.pkg',
- 'web' => 'https://nextcloud.com/install/?pk_campaign=clientupdate#install-clients',
+ 'web' => 'https://nextcloud.com/install',
],
]
]