Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian 1e089f731a 0.42.20 2026-01-22 19:42:15 +01:00
DebaucheryLibrarian c026988a7b Filter Woodman photos from actor page. 2026-01-22 19:42:12 +01:00
3 changed files with 5 additions and 4 deletions

4
package-lock.json generated
View File

@ -1,11 +1,11 @@
{
"name": "traxxx-web",
"version": "0.42.19",
"version": "0.42.20",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "0.42.19",
"version": "0.42.20",
"dependencies": {
"@brillout/json-serializer": "^0.5.8",
"@dicebear/collection": "^7.0.5",

View File

@ -87,7 +87,7 @@
"overrides": {
"vite": "$vite"
},
"version": "0.42.19",
"version": "0.42.20",
"imports": {
"#/*": "./*.js"
}

View File

@ -93,7 +93,8 @@ const { actor } = pageProps;
const domain = routeParams.domain;
const photos = actor.photos.filter((photo) => photo.entropy > 5.5);
const badCredits = ['Pierre Woodman']; // consistently horrible photos
const photos = actor.photos.filter((photo) => photo.entropy > 5.5 && !badCredits.includes(photo.credit));
</script>
<style scoped>