diff --git a/data/feed.json b/data/feed.json index 7962bc9ae..d53aef389 100644 --- a/data/feed.json +++ b/data/feed.json @@ -5,6 +5,6 @@ "title": "We Need Your Feedback on QGIS Documentation!", "image": "https://feed.qgis.org/media/feedimages/2024/11/20/docs-survey.jpg", "content": "

We're running a short, anonymous QGIS Documentation User Survey to gather feedback and improve our manuals, guides, and resources. Whether you're a beginner or an experienced user, your input will help us make the documentation better for everyone. The survey will remain open until December 20th.

\r\n

Please take a moment to share your thoughts!

\r\n

Take the survey by double-clicking this entry.

\r\n

Thank you for your time and support!

", - "url": "https://docs.google.com/forms/d/e/1FAIpQLSc69ojhNcnm_qWB5TOkwA_WZsn-IA0eKVzdk3dHoH7JCKm6vQ/viewform", + "url": "https://feed.qgis.org/89", "sticky": false } \ No newline at end of file diff --git a/fetch_feeds.py b/fetch_feeds.py index d11ff9a6f..366ba627f 100755 --- a/fetch_feeds.py +++ b/fetch_feeds.py @@ -199,6 +199,7 @@ def fetch_first_feed_entry(): if feed_data and len(feed_data) > 0: first_entry = feed_data[0] + first_entry['url'] = f"https://feed.qgis.org/{first_entry['pk']}" os.makedirs(os.path.dirname(feed_file_path), exist_ok=True) with open(feed_file_path, "w", encoding="utf-8") as f: json.dump(first_entry, f, ensure_ascii=False, indent=4)