Compare commits
2 Commits
bc5693e44a
...
2158550091
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2158550091 | ||
|
|
68ddc8cb78 |
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.250.26",
|
"version": "1.250.27",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.250.26",
|
"version": "1.250.27",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@aws-sdk/client-s3": "^3.458.0",
|
"@aws-sdk/client-s3": "^3.458.0",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.250.26",
|
"version": "1.250.27",
|
||||||
"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": {
|
||||||
|
|||||||
@@ -554,6 +554,11 @@ const affiliates = [
|
|||||||
url: 'https://www.g2fame.com/tabooheat/go.php?pr=8&su=2&si=552&ad=277470&pa=index&ar=&buffer=',
|
url: 'https://www.g2fame.com/tabooheat/go.php?pr=8&su=2&si=552&ad=277470&pa=index&ar=&buffer=',
|
||||||
comment: 'per signup',
|
comment: 'per signup',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
channel: 'wicked',
|
||||||
|
url: 'https://www.g2fame.com/wicked/go.php?pr=8&su=2&si=371&ad=277470&pa=index&ar=&buffer=',
|
||||||
|
comment: 'per signup',
|
||||||
|
},
|
||||||
// gamma > independent channels
|
// gamma > independent channels
|
||||||
{
|
{
|
||||||
channel: 'biphoria',
|
channel: 'biphoria',
|
||||||
|
|||||||
@@ -92,8 +92,10 @@ async function init() {
|
|||||||
const fileTags = tags.slice(0, 4).join('_');
|
const fileTags = tags.slice(0, 4).join('_');
|
||||||
const fileActors = banner.SceneActors?.slice(0, 2).map((actor) => slugify(actor, '_')).join('_');
|
const fileActors = banner.SceneActors?.slice(0, 2).map((actor) => slugify(actor, '_')).join('_');
|
||||||
|
|
||||||
// actors and tags are unreliable and describe entire scene, not banner, don't include by default
|
// tags are unreliable and describe entire scene, not banner, don't include by default
|
||||||
const filename = `${channel}_${banner.Width}_${banner.Height}_${fileActors && argv.actors?.[0] !== false ? fileActors : banner.MediaID}${fileTags && argv.tags ? `-${fileTags}` : ''}.${banner.MediaExt}`;
|
const segments = [channel, banner.Width, banner.Height, banner.MediaID, argv.actors?.[0] !== false && fileActors].filter(Boolean);
|
||||||
|
const filename = `${segments.join('_')}${argv.tags && argv.tags ? `-${fileTags}` : ''}.${banner.MediaExt || 'jpg'}`;
|
||||||
|
|
||||||
const filepath = `/tmp/gamma/${channel}/${filename}`;
|
const filepath = `/tmp/gamma/${channel}/${filename}`;
|
||||||
|
|
||||||
if (argv.inspect) {
|
if (argv.inspect) {
|
||||||
|
|||||||
Reference in New Issue
Block a user