traxxx/config/default.js

44 lines
869 B
JavaScript
Raw Normal View History

'use strict';
module.exports = {
include: [
'xempire',
'julesjordan',
'pervcity',
],
columns: [
{
value: 'date',
format: 'MMM DD, YYYY',
width: 14,
},
{
value: 'site',
width: 20,
},
{
value: 'title',
width: 60,
},
{
value: 'actors',
width: 40,
},
{
value: 'rating',
width: 20,
},
],
filename: {
dateFormat: 'DD-MM-YYYY',
actorsJoin: ', ',
slash: '_',
subpatterns: {
siteName: '{siteName} - ',
sceneDate: ', {sceneDate}',
sceneId: ' {sceneId}',
},
pattern: '{siteName}{sceneTitle} ({sceneActors}{sceneDate}{sceneId})',
},
};