Better profile pic resolution

This commit is contained in:
Pablo Ferreiro 2022-11-26 22:25:48 +01:00
parent 49fcc79f15
commit ce5c9e016b
No known key found for this signature in database
GPG key ID: 41FBCE65B779FA24
5 changed files with 8 additions and 8 deletions

View file

@ -1,7 +1,7 @@
{
"name": "pablouser1/proxitok",
"description": "An alternative frontend for TikTok",
"version": "2.4.3.2",
"version": "2.4.3.3",
"license": "AGPL-3.0-or-later",
"type": "project",
"authors": [

2
composer.lock generated
View file

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "79c77d98109f2c4346e1d4c8523b7be0",
"content-hash": "8100904920dbc589a80f80dd56cd6faf",
"packages": [
{
"name": "bramus/router",

View file

@ -3,7 +3,7 @@
<article class="media">
<figure class="media-left">
<p class="image is-64x64">
<img src="{url_stream($item->author->avatarThumb)}" />
<img class="is-rounded" src="{url_stream($item->author->avatarThumb)}" />
</p>
</figure>
<div class="media-content">

View file

@ -3,9 +3,9 @@
{var $has_rss = true}
{block header}
{if $data->info->detail->profileThumb !== ''}
<figure class="figure is-96x96">
<img src="{url_stream($data->info->detail->profileThumb)}" />
{if $data->info->detail->profileLarger !== ''}
<figure class="image is-inline-block is-128x128">
<img class="is-rounded" src="{url_stream($data->info->detail->profileLarger)}" />
</figure>
{/if}
<p class="title">{$data->info->detail->title}</p>

View file

@ -3,8 +3,8 @@
{var $has_rss = true}
{block header}
<figure class="figure is-96x96">
<img src="{url_stream($data->info->detail->avatarThumb)}" />
<figure class="image is-inline-block is-128x128">
<img class="is-rounded" src="{url_stream($data->info->detail->avatarLarger)}" />
</figure>
<p class="title">{$data->info->detail->uniqueId}</p>
<p class="subtitle">{include '../components/rss.latte'}</p>