Merge branch 'buymeacoffee' into 'master'

insert_funding_yml_donation_links: update lfx link and add polar

See merge request fdroid/fdroidserver!1469
This commit is contained in:
linsui 2024-04-10 10:59:08 +00:00
commit 3ba0891de1
1 changed files with 7 additions and 2 deletions

View File

@ -872,10 +872,10 @@ def insert_funding_yml_donation_links(apps):
if s:
app['Donate'] = s
break
elif k == 'community_bridge':
elif k in ('community_bridge', 'lfx_crowdfunding'):
s = sanitize_funding_yml_name(v)
if s:
app['Donate'] = 'https://funding.communitybridge.org/projects/' + s
app['Donate'] = 'https://crowdfunding.lfx.linuxfoundation.org/projects/' + s
break
elif k == 'github':
s = sanitize_funding_yml_name(v)
@ -902,6 +902,11 @@ def insert_funding_yml_donation_links(apps):
if s:
app['Donate'] = 'https://www.buymeacoffee.com/' + s
break
elif k == 'polar':
s = sanitize_funding_yml_name(v)
if s:
app['Donate'] = 'https://polar.sh/' + s
break
def copy_triple_t_store_metadata(apps):