Compare commits
8 Commits
a9c1a91571
...
3d86e52b25
Author | SHA1 | Date |
---|---|---|
|
3d86e52b25 | |
|
f38233053e | |
|
99a4751c20 | |
|
013e85cf2a | |
|
7c856c267d | |
|
8aefb8eddb | |
|
3f843cc0fc | |
|
566c20ea7e |
|
@ -3,6 +3,8 @@
|
||||||
<div class="content-inner">
|
<div class="content-inner">
|
||||||
<h1 class="heading">Stats</h1>
|
<h1 class="heading">Stats</h1>
|
||||||
|
|
||||||
|
<span class="version">traxxx {{ version }}</span>
|
||||||
|
|
||||||
<dl class="stat-table">
|
<dl class="stat-table">
|
||||||
<div class="stat-row">
|
<div class="stat-row">
|
||||||
<dt class="stat-label">Networks</dt>
|
<dt class="stat-label">Networks</dt>
|
||||||
|
@ -44,6 +46,8 @@ async function mounted() {
|
||||||
this.totalActors = stats.totalActors;
|
this.totalActors = stats.totalActors;
|
||||||
this.totalNetworks = stats.totalNetworks;
|
this.totalNetworks = stats.totalNetworks;
|
||||||
this.totalChannels = stats.totalChannels;
|
this.totalChannels = stats.totalChannels;
|
||||||
|
|
||||||
|
this.version = VERSION; // eslint-disable-line no-undef
|
||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|
|
@ -43,9 +43,8 @@ async function mounted() {
|
||||||
'teen',
|
'teen',
|
||||||
'milf',
|
'milf',
|
||||||
'blowjob',
|
'blowjob',
|
||||||
'orgy',
|
|
||||||
'gangbang',
|
|
||||||
'dp',
|
'dp',
|
||||||
|
'gangbang',
|
||||||
'facial',
|
'facial',
|
||||||
'creampie',
|
'creampie',
|
||||||
'squirting',
|
'squirting',
|
||||||
|
@ -65,30 +64,44 @@ async function mounted() {
|
||||||
],
|
],
|
||||||
oral: [
|
oral: [
|
||||||
'blowjob',
|
'blowjob',
|
||||||
'deepthroat',
|
|
||||||
'facefucking',
|
|
||||||
'double-blowjob',
|
|
||||||
'blowbang',
|
|
||||||
'pussy-eating',
|
'pussy-eating',
|
||||||
'ass-eating',
|
'ass-eating',
|
||||||
|
'69',
|
||||||
|
'double-blowjob',
|
||||||
|
'deepthroat',
|
||||||
|
'facefucking',
|
||||||
'atm',
|
'atm',
|
||||||
],
|
],
|
||||||
|
group: [
|
||||||
|
'mfm',
|
||||||
|
'mff',
|
||||||
|
'orgy',
|
||||||
|
'gangbang',
|
||||||
|
'blowbang',
|
||||||
|
],
|
||||||
|
manual: [
|
||||||
|
'handjob',
|
||||||
|
'fingering',
|
||||||
|
'anal-fingering',
|
||||||
|
'titty-fucking',
|
||||||
|
],
|
||||||
cumshot: [
|
cumshot: [
|
||||||
'facial',
|
'facial',
|
||||||
'bukkake',
|
|
||||||
'creampie',
|
'creampie',
|
||||||
'anal-creampie',
|
|
||||||
'cum-in-mouth',
|
'cum-in-mouth',
|
||||||
'oral-creampie',
|
'cum-on-boobs',
|
||||||
'cum-on-butt',
|
'cum-on-butt',
|
||||||
|
'cum-on-pussy',
|
||||||
|
'anal-creampie',
|
||||||
|
'oral-creampie',
|
||||||
|
'bukkake',
|
||||||
],
|
],
|
||||||
extreme: [
|
toys: [
|
||||||
'airtight',
|
'toy-anal',
|
||||||
'dap',
|
'toy-dp',
|
||||||
'dvp',
|
'double-dildo',
|
||||||
'da-tp',
|
'double-dildo-blowjob',
|
||||||
'dv-tp',
|
'double-dildo-anal',
|
||||||
'tap',
|
|
||||||
],
|
],
|
||||||
roleplay: [
|
roleplay: [
|
||||||
'family',
|
'family',
|
||||||
|
@ -99,18 +112,24 @@ async function mounted() {
|
||||||
],
|
],
|
||||||
fetish: [
|
fetish: [
|
||||||
'bdsm',
|
'bdsm',
|
||||||
'bondage',
|
|
||||||
'femdom',
|
'femdom',
|
||||||
|
'bondage',
|
||||||
|
'blindfold',
|
||||||
],
|
],
|
||||||
toys: [
|
extreme: [
|
||||||
'anal-toys',
|
'dp',
|
||||||
'double-dildo',
|
'airtight',
|
||||||
'double-dildo-blowjob',
|
'dap',
|
||||||
|
'dvp',
|
||||||
|
'da-tp',
|
||||||
|
'dv-tp',
|
||||||
|
'tap',
|
||||||
],
|
],
|
||||||
misc: [
|
misc: [
|
||||||
'gaping',
|
'gaping',
|
||||||
'squirting',
|
'squirting',
|
||||||
'oil',
|
'oil',
|
||||||
|
'bts',
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -154,18 +173,24 @@ export default {
|
||||||
|
|
||||||
.tiles {
|
.tiles {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fill, minmax(23rem, .33fr));
|
grid-template-columns: repeat(auto-fill, minmax(20rem, .33fr));
|
||||||
grid-gap: 1rem;
|
grid-gap: 1rem;
|
||||||
margin: 0 0 1.5rem 0;
|
margin: 0 0 1.5rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.heading {
|
.heading {
|
||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
|
padding: 0 0 0 .5rem;
|
||||||
|
margin: 2rem 0 1rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.category:first-child .heading {
|
||||||
|
margin: .5rem 0 1rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media(max-width: $breakpoint3) {
|
@media(max-width: $breakpoint3) {
|
||||||
.tiles {
|
.tiles {
|
||||||
grid-template-columns: repeat(auto-fill, minmax(20rem, .5fr));
|
grid-template-columns: repeat(auto-fill, minmax(18rem, .5fr));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.135.9",
|
"version": "1.136.0",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.135.9",
|
"version": "1.136.0",
|
||||||
"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": {
|
||||||
|
|
After Width: | Height: | Size: 1.5 MiB |
After Width: | Height: | Size: 846 KiB |
After Width: | Height: | Size: 7.8 KiB |
After Width: | Height: | Size: 6.7 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 111 KiB After Width: | Height: | Size: 6.6 MiB |
After Width: | Height: | Size: 111 KiB |
After Width: | Height: | Size: 1.5 MiB |
After Width: | Height: | Size: 1.5 MiB |
After Width: | Height: | Size: 1.5 MiB |
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 8.7 KiB |
After Width: | Height: | Size: 8.4 KiB |
After Width: | Height: | Size: 7.8 KiB |
After Width: | Height: | Size: 7.8 KiB |
After Width: | Height: | Size: 7.1 KiB |
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 992 KiB |
After Width: | Height: | Size: 774 KiB |
After Width: | Height: | Size: 1.2 MiB |
After Width: | Height: | Size: 5.8 KiB |
After Width: | Height: | Size: 5.4 KiB |
After Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 2.0 MiB |
After Width: | Height: | Size: 7.2 KiB |
After Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 339 KiB |
After Width: | Height: | Size: 445 KiB |
After Width: | Height: | Size: 7.1 KiB |
After Width: | Height: | Size: 7.0 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 676 KiB |
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 613 KiB |
After Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 407 KiB |
After Width: | Height: | Size: 9.4 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 187 KiB |
After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 360 KiB |
After Width: | Height: | Size: 7.7 KiB |
After Width: | Height: | Size: 7.9 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 189 KiB After Width: | Height: | Size: 938 KiB |
After Width: | Height: | Size: 1.0 MiB |
After Width: | Height: | Size: 638 KiB |
After Width: | Height: | Size: 831 KiB |
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 8.0 KiB |
After Width: | Height: | Size: 7.9 KiB |
After Width: | Height: | Size: 6.7 KiB |
After Width: | Height: | Size: 7.1 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 183 KiB |
After Width: | Height: | Size: 2.5 MiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 7.1 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 242 KiB |
After Width: | Height: | Size: 5.7 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 1.5 MiB |
After Width: | Height: | Size: 1.3 MiB |
After Width: | Height: | Size: 8.1 KiB |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 35 KiB |