Compare commits

..

No commits in common. "46cadcb8e588c4aa05a727cff5821f704b9ecc31" and "7930fbce49be19e34c86ea48d2ffa8a22006389c" have entirely different histories.

6 changed files with 23 additions and 55 deletions

View File

@ -11,39 +11,6 @@ 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.2", "version": "1.74.1",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "traxxx", "name": "traxxx",
"version": "1.74.2", "version": "1.74.1",
"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,6 +29,7 @@ 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,
babes,
bangbros,
blowpass,
boobpedia,
brazzers,
ddfnetwork,
digitalplayground,
evilangel, evilangel,
wicked,
mofos,
realitykings,
digitalplayground,
brazzers,
fakehub, fakehub,
freeones, babes,
freeonesLegacy,
iconmale,
julesjordan,
kellymadison,
legalporno,
men,
metrohd, metrohd,
milehighmedia, milehighmedia,
mofos, iconmale,
naughtyamerica,
pornhub,
realitykings,
transangels, transangels,
wicked, men,
xempire, xempire,
blowpass,
julesjordan,
naughtyamerica,
boobpedia,
legalporno,
kellymadison,
bangbros,
pornhub,
freeones,
freeonesLegacy,
ddfnetwork,
}, },
}; };

View File

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