From ae3c9c055214653750af386f63bd0e7241ea98d7 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 6 Oct 2020 16:35:07 +0200 Subject: [PATCH] change make_current_version_link to default to False This is semi-broken and barely used, it should be off by default for 2.0. --- CHANGELOG.md | 1 + fdroidserver/common.py | 2 +- tests/run-tests | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e34660ad..3c4f69a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ### Removed * removed support for txt and json metadata ([!772](https://gitlab.com/fdroid/fdroidserver/-/merge_requests/772)) +* `make_current_version_link` is now off by default ## [1.1.4] - 2019-08-15 ### Fixed diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 2cdf0098..677baf04 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -124,7 +124,7 @@ default_config = { 'sync_from_local_copy_dir': False, 'allow_disabled_algorithms': False, 'per_app_repos': False, - 'make_current_version_link': True, + 'make_current_version_link': False, 'current_version_name_source': 'Name', 'deploy_process_logs': False, 'update_stats': False, diff --git a/tests/run-tests b/tests/run-tests index 5a5cc232..66b00ed7 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -165,6 +165,7 @@ if which zipalign || ls -1 $ANDROID_HOME/build-tools/*/zipalign; then cd $REPOROOT cp $WORKSPACE/tests/keystore.jks $REPOROOT/ $fdroid init --keystore keystore.jks --repo-keyalias=sova + echo 'make_current_version_link = True' >> config.py echo 'keystorepass = "r9aquRHYoI8+dYz6jKrLntQ5/NJNASFBacJh7Jv2BlI="' >> config.py echo 'keypass = "r9aquRHYoI8+dYz6jKrLntQ5/NJNASFBacJh7Jv2BlI="' >> config.py echo 'keydname = "CN=Birdman, OU=Cell, O=Alcatraz, L=Alcatraz, S=California, C=US"' >> config.py