mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-07 07:50:28 +03:00
Don't use the commits feed as a changelog link in import
If it's often not a replacement for a proper changelog, do not advise its usage.
This commit is contained in:
parent
4b59f913f1
commit
beb17ad84a
2 changed files with 0 additions and 8 deletions
|
|
@ -128,7 +128,6 @@ def main():
|
|||
# Figure out what kind of project it is...
|
||||
projecttype = None
|
||||
issuetracker = None
|
||||
changelog = None
|
||||
license = None
|
||||
website = url # by default, we might override it
|
||||
if url.startswith('git://'):
|
||||
|
|
@ -144,7 +143,6 @@ def main():
|
|||
sourcecode = url
|
||||
issuetracker = url + '/issues'
|
||||
website = ""
|
||||
changelog = url + '/commits'
|
||||
elif url.startswith('https://gitlab.com/'):
|
||||
projecttype = 'gitlab'
|
||||
repo = url
|
||||
|
|
@ -288,8 +286,6 @@ def main():
|
|||
app['Source Code'] = sourcecode
|
||||
if issuetracker:
|
||||
app['Issue Tracker'] = issuetracker
|
||||
if changelog:
|
||||
app['Changelog'] = changelog
|
||||
if license:
|
||||
app['License'] = license
|
||||
app['Repo Type'] = repotype
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue