mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Divide ratings by 2 when used in a template.
This commit is contained in:
parent
b9d90ec8e1
commit
5312b49d85
@ -625,6 +625,8 @@ class Metadata(object):
|
|||||||
res = res + ' [%s]'%self.format_series_index()
|
res = res + ' [%s]'%self.format_series_index()
|
||||||
elif datatype == 'datetime':
|
elif datatype == 'datetime':
|
||||||
res = format_date(res, fmeta['display'].get('date_format','dd MMM yyyy'))
|
res = format_date(res, fmeta['display'].get('date_format','dd MMM yyyy'))
|
||||||
|
elif datatype == 'rating':
|
||||||
|
res = res/2
|
||||||
return (name, unicode(res), orig_res, fmeta)
|
return (name, unicode(res), orig_res, fmeta)
|
||||||
|
|
||||||
return (None, None, None, None)
|
return (None, None, None, None)
|
||||||
|
@ -198,7 +198,6 @@ def get_components(template, mi, id, timefmt='%b %Y', length=250,
|
|||||||
for key in custom_metadata:
|
for key in custom_metadata:
|
||||||
if key in format_args:
|
if key in format_args:
|
||||||
cm = custom_metadata[key]
|
cm = custom_metadata[key]
|
||||||
## TODO: NEWMETA: should ratings be divided by 2? The standard rating isn't...
|
|
||||||
if cm['datatype'] == 'series':
|
if cm['datatype'] == 'series':
|
||||||
format_args[key] = title_sort(format_args[key], order=tsorder)
|
format_args[key] = title_sort(format_args[key], order=tsorder)
|
||||||
if key+'_index' in format_args:
|
if key+'_index' in format_args:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user