Compare commits
No commits in common. "95ed67b1feea31f6b06f3d66d94adadae86a5969" and "5afd86a932e3dd9c3cbbd9815a9f96d1f17cd5f4" have entirely different histories.
95ed67b1fe
...
5afd86a932
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.99.2",
|
"version": "1.99.1",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.99.2",
|
"version": "1.99.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": {
|
||||||
|
|
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 8.1 KiB |
Before Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 12 KiB |
|
@ -3694,69 +3694,6 @@ const sites = [
|
||||||
url: 'https://baeb.com',
|
url: 'https://baeb.com',
|
||||||
network: 'pornpros',
|
network: 'pornpros',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: 'MILF Humiliation',
|
|
||||||
slug: 'milfhumiliation',
|
|
||||||
url: 'https://milfhumiliation.com',
|
|
||||||
network: 'pornpros',
|
|
||||||
tags: ['milf'],
|
|
||||||
scrape: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Humiliated',
|
|
||||||
slug: 'humiliated',
|
|
||||||
url: 'https://humiliated.com',
|
|
||||||
network: 'pornpros',
|
|
||||||
scrape: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Flexible Positions',
|
|
||||||
slug: 'flexiblepositions',
|
|
||||||
url: 'https://flexiblepositions.com',
|
|
||||||
network: 'pornpros',
|
|
||||||
parameters: {
|
|
||||||
network: true,
|
|
||||||
},
|
|
||||||
scrape: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Public Violations',
|
|
||||||
slug: 'publicviolations',
|
|
||||||
url: 'https://publicviolations.com',
|
|
||||||
network: 'pornpros',
|
|
||||||
parameters: {
|
|
||||||
network: true,
|
|
||||||
},
|
|
||||||
scrape: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Amateur Violations',
|
|
||||||
slug: 'amateurviolations',
|
|
||||||
url: 'https://amateurviolations.com',
|
|
||||||
network: 'pornpros',
|
|
||||||
scrape: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Squirt Disgrace',
|
|
||||||
slug: 'squirtdisgrace',
|
|
||||||
url: 'https://squirtdisgrace.com',
|
|
||||||
network: 'pornpros',
|
|
||||||
scrape: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Cum Disgrace',
|
|
||||||
slug: 'cumdisgrace',
|
|
||||||
url: 'https://cumdisgrace.com',
|
|
||||||
network: 'pornpros',
|
|
||||||
scrape: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'College Teens',
|
|
||||||
slug: 'collegeteens',
|
|
||||||
network: 'pornpros',
|
|
||||||
scrape: false,
|
|
||||||
show: false,
|
|
||||||
},
|
|
||||||
// PRIVATE
|
// PRIVATE
|
||||||
{
|
{
|
||||||
slug: 'analintroductions',
|
slug: 'analintroductions',
|
||||||
|
|
|
@ -408,6 +408,11 @@ async function scrapeActors(actorNames) {
|
||||||
|
|
||||||
const profile = await mergeProfiles(profiles, actorEntry);
|
const profile = await mergeProfiles(profiles, actorEntry);
|
||||||
|
|
||||||
|
if (argv.inspect) {
|
||||||
|
console.log(profile);
|
||||||
|
logger.info(`Found ${profile.releases.length} releases for ${actorName}`);
|
||||||
|
}
|
||||||
|
|
||||||
if (profile === null) {
|
if (profile === null) {
|
||||||
logger.warn(`Could not find profile for actor '${actorName}'`);
|
logger.warn(`Could not find profile for actor '${actorName}'`);
|
||||||
|
|
||||||
|
@ -418,11 +423,6 @@ async function scrapeActors(actorNames) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (argv.inspect) {
|
|
||||||
console.log(profile);
|
|
||||||
logger.info(`Found ${profile.releases.length} releases for ${actorName}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (argv.save) {
|
if (argv.save) {
|
||||||
if (actorEntry && profile) {
|
if (actorEntry && profile) {
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
|
|