Remove history indication from plugins index

This commit is contained in:
Kovid Goyal 2020-11-25 21:18:03 +05:30
parent a529c4a5b1
commit 59e471503e
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -448,7 +448,6 @@ def plugin_to_index(plugin, count):
'Version: <b>%s</b>' % escape('.'.join(map(str, plugin['version']))),
'Released: <b>%s</b>' % escape(released),
'Author: %s' % escape(plugin['author']),
'History: %s' % escape('Yes' if plugin['history'] else 'No'),
'calibre: %s' % escape('.'.join(map(str, plugin['minimum_calibre_version']))),
'Platforms: %s' % escape(', '.join(sorted(plugin['supported_platforms']) or ['all'])),
]