Added Mike Adriano scraper (True Anal, All Anal, Swallowed, Nympho). Updated README.

This commit is contained in:
2019-11-09 01:22:50 +01:00
parent 9f0a48f581
commit e9277028e2
16 changed files with 547 additions and 74 deletions

View File

@@ -78,11 +78,14 @@
</template>
<a
v-if="release.network.url"
:href="release.network.url"
target="_blank"
rel="noopener noreferrer"
class="network-link"
>{{ release.network.name }}</a>:
>{{ release.network.name }}:</a>
<span v-else>{{ release.network.name }}:</span>
<a
:href="release.site.url"
@@ -92,6 +95,20 @@
>{{ release.site.name }}</a>
</span>
<p
v-if="release.duration"
class="row duration"
>
<Icon icon="stopwatch" />
<span
class="duration-segment"
v-if="release.duration >= 3600"
>{{ Math.floor(release.duration / 3600) }}:</span>
<span class="duration-segment">{{ Math.floor((release.duration % 3600) / 60).toString().padStart(2, '0') }}:</span>
<span class="duration-segment">{{ (release.duration % 60).toString().padStart(2, '0') }}</span>
</p>
<p
v-if="release.description"
class="row description"
@@ -214,6 +231,7 @@ export default {
margin: 0 0 .5rem 0;
.icon {
width: 1rem;
fill: $shadow-strong;
margin: 0 .5rem 0 0;
}
@@ -236,6 +254,14 @@ export default {
}
}
.duration {
font-size: 0;
}
.duration-segment {
font-size: 1rem;
}
.date-link,
.site-link,
.network-link,