mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 07:20:29 +03:00
Add "Changelog:" metadata field.
This commit is contained in:
parent
d1cf1c37b4
commit
b1ec8cc47a
6 changed files with 39 additions and 2 deletions
|
|
@ -74,6 +74,14 @@ regex_warnings = {
|
|||
(re.compile(r'.*[^sS]://gitorious\.org/.*'),
|
||||
"gitorious URLs should always use https:// not http://"),
|
||||
],
|
||||
'Changelog': [
|
||||
(re.compile(r'.*[^sS]://code\.google\.com/.*'),
|
||||
"code.google.com URLs should always use https:// not http://"),
|
||||
(re.compile(r'.*[^sS]://github\.com/.*'),
|
||||
"github URLs should always use https:// not http://"),
|
||||
(re.compile(r'.*[^sS]://gitorious\.org/.*'),
|
||||
"gitorious URLs should always use https:// not http://"),
|
||||
],
|
||||
'License': [
|
||||
(re.compile(r'^(|None|Unknown)$'),
|
||||
"No license specified"),
|
||||
|
|
@ -119,6 +127,10 @@ regex_pedantic = {
|
|||
(re.compile(r'.*github\.com/[^/]+/[^/]+/issues/.*'),
|
||||
"/issues is often enough on its own"),
|
||||
],
|
||||
'Changelog': [
|
||||
(re.compile(r'.*commit.*', re.IGNORECASE),
|
||||
"Not every commit log is suitable as change log"),
|
||||
],
|
||||
'Summary': [
|
||||
(re.compile(r'.*\b(free software|open source)\b.*', re.IGNORECASE),
|
||||
"No need to specify that the app is Free Software"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue