From c48ead4f32c8105cc98cc2a8760b414eebb84c36 Mon Sep 17 00:00:00 2001 From: Stef Tervelde Date: Fri, 10 Jan 2025 18:21:37 +0100 Subject: [PATCH 1/2] Update ContributionListing.java --- app/src/processing/app/contrib/ContributionListing.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/processing/app/contrib/ContributionListing.java b/app/src/processing/app/contrib/ContributionListing.java index fb1bc6a298..aa623cb118 100644 --- a/app/src/processing/app/contrib/ContributionListing.java +++ b/app/src/processing/app/contrib/ContributionListing.java @@ -44,7 +44,7 @@ public class ContributionListing { * Stable URL that will redirect to wherever the file is hosted. * Changed to use https in 4.0 beta 8 (returns same data). */ - static final String LISTING_URL = "https://download.processing.org/contribs"; + static final String LISTING_URL = "https://contributions.processing.org/contribs.txt"; static final String LOCAL_FILENAME = "contribs.txt"; /** Location of the listing file on disk, will be read and written. */ From 644e3457c4284a9dedc0950e277a83bfd3ebaafa Mon Sep 17 00:00:00 2001 From: Stef Tervelde Date: Fri, 10 Jan 2025 18:40:44 +0100 Subject: [PATCH 2/2] Update ContributionListing.java We need to target the POST request at the redirect instead of the direct file --- app/src/processing/app/contrib/ContributionListing.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/processing/app/contrib/ContributionListing.java b/app/src/processing/app/contrib/ContributionListing.java index aa623cb118..dbc1be11b5 100644 --- a/app/src/processing/app/contrib/ContributionListing.java +++ b/app/src/processing/app/contrib/ContributionListing.java @@ -44,7 +44,7 @@ public class ContributionListing { * Stable URL that will redirect to wherever the file is hosted. * Changed to use https in 4.0 beta 8 (returns same data). */ - static final String LISTING_URL = "https://contributions.processing.org/contribs.txt"; + static final String LISTING_URL = "https://contributions.processing.org/contribs"; static final String LOCAL_FILENAME = "contribs.txt"; /** Location of the listing file on disk, will be read and written. */