Compare commits
12 Commits
eae9ee3cbe
...
2758b90019
Author | SHA1 | Date |
---|---|---|
|
2758b90019 | |
|
9a61d2305c | |
|
71c884fe48 | |
|
9a183c7ffb | |
|
60485751e2 | |
|
4e559f63e3 | |
|
1b407254a7 | |
|
0b86def315 | |
|
6633ce78d0 | |
|
54df9d0c78 | |
|
980efbc93d | |
|
711a9441a6 |
|
@ -73,7 +73,19 @@
|
|||
<span class="birthdate">{{ formatDate(actor.dateOfBirth, 'MMMM D, YYYY') }}<span
|
||||
v-if="!actor.dateOfDeath"
|
||||
class="age"
|
||||
>{{ actor.age }}</span></span>
|
||||
>{{ actor.ageFromBirth }}</span></span>
|
||||
</li>
|
||||
|
||||
<li
|
||||
v-else-if="actor.age && !actor.dateOfDeath"
|
||||
class="bio-item"
|
||||
>
|
||||
<dfn class="bio-label"><Icon icon="cake" />Age</dfn>
|
||||
|
||||
<span
|
||||
v-tooltip="'Exact date of birth or age unknown'"
|
||||
class="birthdate"
|
||||
>> {{ actor.age }}</span>
|
||||
</li>
|
||||
|
||||
<li
|
||||
|
|
|
@ -71,9 +71,15 @@
|
|||
>{{ actor.ageAtDeath }}</span>
|
||||
|
||||
<span
|
||||
v-else-if="actor.age"
|
||||
v-else-if="actor.ageFromBirth"
|
||||
v-tooltip="`Born on ${formatDate(actor.dateOfBirth, 'MMMM D, YYYY')}`"
|
||||
class="age-now"
|
||||
>{{ actor.ageFromBirth }}</span>
|
||||
|
||||
<span
|
||||
v-else-if="actor.age"
|
||||
v-tooltip="`At least ${actor.age}`"
|
||||
class="age-now"
|
||||
>{{ actor.age }}</span>
|
||||
|
||||
<span
|
||||
|
|
|
@ -100,6 +100,7 @@ async function mounted() {
|
|||
'fake-cum',
|
||||
],
|
||||
toys: [
|
||||
'toys',
|
||||
'toy-anal',
|
||||
'toy-dp',
|
||||
'double-dildo',
|
||||
|
@ -114,11 +115,13 @@ async function mounted() {
|
|||
'schoolgirl',
|
||||
'nurse',
|
||||
'maid',
|
||||
'nun',
|
||||
],
|
||||
fetish: [
|
||||
'bdsm',
|
||||
'femdom',
|
||||
'bondage',
|
||||
'latex',
|
||||
'blindfold',
|
||||
],
|
||||
extreme: [
|
||||
|
|
|
@ -40,6 +40,7 @@ function initActorActions(store, router) {
|
|||
dateOfBirth
|
||||
dateOfDeath
|
||||
age
|
||||
ageFromBirth
|
||||
ageAtDeath
|
||||
ethnicity
|
||||
cup
|
||||
|
@ -279,6 +280,7 @@ function initActorActions(store, router) {
|
|||
name
|
||||
slug
|
||||
age
|
||||
ageFromBirth
|
||||
ageAtDeath
|
||||
dateOfBirth
|
||||
dateOfDeath
|
||||
|
|
|
@ -166,6 +166,7 @@ module.exports = {
|
|||
'hitzefrei',
|
||||
'porncz',
|
||||
'czechav',
|
||||
'littlecapricedreams',
|
||||
'gangbangcreampie',
|
||||
'gloryholesecrets',
|
||||
'aziani',
|
||||
|
|
|
@ -156,7 +156,8 @@ exports.up = knex => Promise.resolve()
|
|||
|
||||
table.integer('parent_id', 12)
|
||||
.references('id')
|
||||
.inTable('entities');
|
||||
.inTable('entities')
|
||||
.index();
|
||||
|
||||
table.text('name');
|
||||
table.text('slug', 32);
|
||||
|
@ -252,6 +253,7 @@ exports.up = knex => Promise.resolve()
|
|||
|
||||
table.date('date_of_birth');
|
||||
table.date('date_of_death');
|
||||
table.integer('age', 3);
|
||||
|
||||
table.text('gender', 18);
|
||||
table.text('description');
|
||||
|
@ -330,6 +332,7 @@ exports.up = knex => Promise.resolve()
|
|||
|
||||
table.date('date_of_birth');
|
||||
table.date('date_of_death');
|
||||
table.integer('age', 3);
|
||||
|
||||
table.text('description');
|
||||
table.text('description_hash');
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.142.2",
|
||||
"version": "1.143.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.142.2",
|
||||
"version": "1.143.0",
|
||||
"description": "All the latest porn releases in one place",
|
||||
"main": "src/app.js",
|
||||
"scripts": {
|
||||
|
|
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 47 KiB |
After Width: | Height: | Size: 8.3 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 8.3 KiB |
After Width: | Height: | Size: 8.6 KiB |
After Width: | Height: | Size: 79 KiB |
After Width: | Height: | Size: 87 KiB |
After Width: | Height: | Size: 99 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 69 KiB |
After Width: | Height: | Size: 58 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 87 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 74 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 9.9 KiB |
After Width: | Height: | Size: 9.9 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 21 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 76 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 291 KiB |
After Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 356 KiB |
After Width: | Height: | Size: 6.1 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 872 KiB |
After Width: | Height: | Size: 4.5 MiB |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 6.9 KiB |
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 5.9 MiB |
After Width: | Height: | Size: 471 KiB |
After Width: | Height: | Size: 640 KiB |
After Width: | Height: | Size: 1.8 MiB |
After Width: | Height: | Size: 5.5 MiB |
Before Width: | Height: | Size: 252 KiB After Width: | Height: | Size: 4.9 MiB |
After Width: | Height: | Size: 252 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 6.0 KiB |
After Width: | Height: | Size: 9.9 KiB |
After Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 6.4 KiB After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 6.4 KiB |
After Width: | Height: | Size: 5.7 MiB |
After Width: | Height: | Size: 550 KiB |
After Width: | Height: | Size: 839 KiB |
After Width: | Height: | Size: 3.0 MiB |
After Width: | Height: | Size: 3.9 MiB |
After Width: | Height: | Size: 6.5 MiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 52 KiB |
After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 412 KiB |