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,

5
assets/img/clock2.svg Normal file
View File

@@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>clock2</title>
<path d="M16 0c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zM20.586 23.414l-6.586-6.586v-8.828h4v7.172l5.414 5.414-2.829 2.829z"></path>
</svg>

After

Width:  |  Height:  |  Size: 321 B

5
assets/img/stopwatch.svg Normal file
View File

@@ -0,0 +1,5 @@
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>stopwatch</title>
<path d="M16 6.038v-2.038h4v-2c0-1.105-0.895-2-2-2h-6c-1.105 0-2 0.895-2 2v2h4v2.038c-6.712 0.511-12 6.119-12 12.962 0 7.18 5.82 13 13 13s13-5.82 13-13c0-6.843-5.288-12.451-12-12.962zM22.071 26.071c-1.889 1.889-4.4 2.929-7.071 2.929s-5.182-1.040-7.071-2.929c-1.889-1.889-2.929-4.4-2.929-7.071s1.040-5.182 2.929-7.071c1.814-1.814 4.201-2.844 6.754-2.923l-0.677 9.813c-0.058 0.822 0.389 1.181 0.995 1.181s1.053-0.36 0.995-1.181l-0.677-9.813c2.552 0.079 4.94 1.11 6.754 2.923 1.889 1.889 2.929 4.4 2.929 7.071s-1.040 5.182-2.929 7.071z"></path>
</svg>

After

Width:  |  Height:  |  Size: 705 B