Open
Description
Feature description
Currently, the news feed URL is hardcoded:
#define FEED_URL "https://feed.qgis.org/"
The idea is to get it from the settings and access it in the code like:
QgsSettings settings;
settings.setValue( QStringLiteral( "Windows/WelcomePage/FeedUrl" )
By default, the URL will be: "https://feed.qgis.org/"
. Maybe an array can be an option to aggregate many feeds.
Questions are:
- Is-it a good idea ?
- If yes, what is the best settings key place ?
Dev needs:
- Replace de
FEED_URL
with the settings value in the qgswelcomepage.cpp. - Add the feed default value in the settings.
Additional context
No response