Compare commits

...

2 Commits

Author SHA1 Message Date
ThePendulum 46cadcb8e5 1.74.2 2020-02-01 03:03:01 +01:00
ThePendulum abf9893f9d Fixed web server plugins. 2020-02-01 03:02:58 +01:00
6 changed files with 57 additions and 25 deletions

View File

@ -11,6 +11,39 @@ module.exports = {
}, },
// include: [], // include: [],
// exclude: [], // exclude: [],
profiles: [
[
'evilangel',
'xempire',
'blowpass',
'wicked',
],
[
'realitykings',
'mofos',
'babes',
'digitalplayground',
'fakehub',
'milehighmedia',
'wicked',
'iconmale',
'men',
'metrohd',
'transangels',
],
'21sextury',
'brazzers',
'julesjordan',
'naughtyamerica',
'legalporno',
'kellymadison',
'bangbros',
'ddfnetwork',
'boobpedia',
'pornhub',
'freeones',
'freeonesLegacy',
],
fetchAfter: [1, 'week'], fetchAfter: [1, 'week'],
media: { media: {
path: './media', path: './media',

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "traxxx", "name": "traxxx",
"version": "1.74.1", "version": "1.74.2",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "traxxx", "name": "traxxx",
"version": "1.74.1", "version": "1.74.2",
"description": "All the latest porn releases in one place", "description": "All the latest porn releases in one place",
"main": "src/app.js", "main": "src/app.js",
"scripts": { "scripts": {

View File

@ -29,7 +29,6 @@ async function fetchUpcoming(site) {
return scrapeAll(res.body.toString(), site); return scrapeAll(res.body.toString(), site);
} }
module.exports = { module.exports = {
fetchLatest, fetchLatest,
fetchProfile, fetchProfile,

View File

@ -87,30 +87,30 @@ module.exports = {
actors: { actors: {
// ordered by data priority // ordered by data priority
'21sextury': twentyonesextury, '21sextury': twentyonesextury,
evilangel,
wicked,
mofos,
realitykings,
digitalplayground,
brazzers,
fakehub,
babes, babes,
metrohd,
milehighmedia,
iconmale,
transangels,
men,
xempire,
blowpass,
julesjordan,
naughtyamerica,
boobpedia,
legalporno,
kellymadison,
bangbros, bangbros,
pornhub, blowpass,
boobpedia,
brazzers,
ddfnetwork,
digitalplayground,
evilangel,
fakehub,
freeones, freeones,
freeonesLegacy, freeonesLegacy,
ddfnetwork, iconmale,
julesjordan,
kellymadison,
legalporno,
men,
metrohd,
milehighmedia,
mofos,
naughtyamerica,
pornhub,
realitykings,
transangels,
wicked,
xempire,
}, },
}; };

View File

@ -7,5 +7,5 @@ const SitePlugins = require('./sites');
module.exports = { module.exports = {
ActorPlugins, ActorPlugins,
SitePlugins, SitePlugins,
// ReleasePlugins, ReleasePlugins: [],
}; };