Improve thumbnail cropping

This commit is contained in:
WardPearce
2026-02-12 18:11:23 +13:00
parent 475cdad34f
commit 65e895d020
7 changed files with 15 additions and 11 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ android {
applicationId "us.materialio.app"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 204
versionName "1.14.0"
versionCode 205
versionName "1.14.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
@@ -103,7 +103,11 @@
<release version="1.14.0" date="2026-2-11">
<release version="1.14.1" date="2026-2-12">
<url>https://github.com/Materialious/Materialious/releases/tag/1.14.1</url>
</release>
<release version="1.14.0" date="2026-2-11">
<url>https://github.com/Materialious/Materialious/releases/tag/1.14.0</url>
</release>
<release version="1.13.19" date="2026-2-11">
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "Materialious",
"version": "1.14.0",
"version": "1.14.1",
"description": "Modern material design for YouTube and Invidious.",
"author": {
"name": "Ward Pearce",
@@ -45,4 +45,4 @@
"capacitor",
"electron"
]
}
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "materialious",
"version": "1.14.0",
"version": "1.14.1",
"private": true,
"scripts": {
"dev": "npm run patch:github && vite dev",
@@ -270,10 +270,10 @@
width: 100%;
height: 100%;
object-fit: cover;
clip-path: inset(30px 0 30px 0);
clip-path: inset(40px 0 40px 0);
display: block;
transform: translateY(-30px);
margin-bottom: -60px;
transform: translateY(-40px);
margin-bottom: -80px;
}
.thumbnail {
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -3,7 +3,7 @@ import os
import re
from datetime import datetime
LATEST_VERSION = "1.14.0"
LATEST_VERSION = "1.14.1"
RELEASE_DATE = datetime.now().strftime("%Y-%-m-%d") # Format: YYYY-M-D
WORKING_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "materialious")