Fix video options being cut off
This commit is contained in:
@@ -7,8 +7,8 @@ android {
|
||||
applicationId "us.materialio.app"
|
||||
minSdkVersion rootProject.ext.minSdkVersion
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
versionCode 100
|
||||
versionName "1.7.18"
|
||||
versionCode 101
|
||||
versionName "1.7.19"
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
aaptOptions {
|
||||
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
|
||||
|
||||
@@ -61,7 +61,11 @@
|
||||
|
||||
|
||||
|
||||
<release version="1.7.18" date="2025-4-04">
|
||||
|
||||
<release version="1.7.19" date="2025-4-04">
|
||||
<url>https://github.com/Materialious/Materialious/releases/tag/1.7.19</url>
|
||||
</release>
|
||||
<release version="1.7.18" date="2025-4-04">
|
||||
<url>https://github.com/Materialious/Materialious/releases/tag/1.7.18</url>
|
||||
</release>
|
||||
<release version="1.7.17" date="2025-4-02">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Materialious",
|
||||
"version": "1.7.18",
|
||||
"version": "1.7.19",
|
||||
"description": "Modern material design for Invidious.",
|
||||
"author": {
|
||||
"name": "Ward Pearce",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "materialious",
|
||||
"version": "1.7.18",
|
||||
"version": "1.7.19",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite dev",
|
||||
|
||||
@@ -156,7 +156,7 @@
|
||||
'playback_rate',
|
||||
'loop',
|
||||
'language',
|
||||
'save_video_frame',
|
||||
Capacitor.getPlatform() === 'android' ? '' : 'save_video_frame',
|
||||
'statistics'
|
||||
],
|
||||
enableTooltips: true
|
||||
|
||||
@@ -140,10 +140,8 @@
|
||||
|
||||
.youtube-theme .shaka-overflow-menu,
|
||||
.youtube-theme .shaka-settings-menu {
|
||||
border-radius: 2px;
|
||||
border-radius: 0.25em;
|
||||
background: var(--surface-dim);
|
||||
text-shadow: 0 0 2px rgb(0 0 0%);
|
||||
-webkit-transition: opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
|
||||
transition: opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
|
||||
right: 10px;
|
||||
bottom: 50px;
|
||||
@@ -298,4 +296,12 @@
|
||||
font-size: 25px;
|
||||
-webkit-transition: font-size 0.1s cubic-bezier(0, 0, 0.2, 1);
|
||||
transition: font-size 0.1s cubic-bezier(0, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
@media screen and (max-width: 650px) {
|
||||
.youtube-theme .shaka-overflow-menu,
|
||||
.youtube-theme .shaka-settings-menu {
|
||||
top: 10px;
|
||||
position: absolute;
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -3,7 +3,7 @@ import os
|
||||
import re
|
||||
from datetime import datetime
|
||||
|
||||
LATEST_VERSION = "1.7.18"
|
||||
LATEST_VERSION = "1.7.19"
|
||||
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")
|
||||
|
||||
Reference in New Issue
Block a user