Merge pull request #1140 from Materialious/update/1.10.16

Update/1.10.16
This commit is contained in:
Ward
2025-10-15 23:02:04 +13:00
committed by GitHub
15 changed files with 38 additions and 37 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 356 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 KiB

+2 -2
View File
@@ -7,8 +7,8 @@ android {
applicationId "us.materialio.app"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 156
versionName "1.10.15"
versionCode 157
versionName "1.10.16"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
+18 -21
View File
@@ -42,11 +42,23 @@
<screenshots>
<screenshot type="default">
<caption>Popular videos</caption>
<image>https://raw.githubusercontent.com/Materialious/Materialious/7abde6b429d49196d3964ee0a3361712a1a4b4c2/previews/home-preview.png</image>
<image>https://raw.githubusercontent.com/Materialious/Materialious/4baa7b897a46d4e71aaca7d322e4f7dafc870a33/previews/home-preview.png</image>
</screenshot>
<screenshot>
<caption>Watching a video</caption>
<image>https://raw.githubusercontent.com/Materialious/Materialious/7abde6b429d49196d3964ee0a3361712a1a4b4c2/previews/player-preview.png</image>
<image>https://raw.githubusercontent.com/Materialious/Materialious/4baa7b897a46d4e71aaca7d322e4f7dafc870a33/previews/player-preview.png</image>
</screenshot>
<screenshot>
<caption>Modifying settings</caption>
<image>https://raw.githubusercontent.com/Materialious/Materialious/4baa7b897a46d4e71aaca7d322e4f7dafc870a33/previews/setting-preview.png</image>
</screenshot>
<screenshot>
<caption>Browsing a channel</caption>
<image>https://raw.githubusercontent.com/Materialious/Materialious/4baa7b897a46d4e71aaca7d322e4f7dafc870a33/previews/channel-preview.png</image>
</screenshot>
<screenshot>
<caption>Browsing a playlist</caption>
<image>https://raw.githubusercontent.com/Materialious/Materialious/4baa7b897a46d4e71aaca7d322e4f7dafc870a33/previews/playlist-preview.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1">
@@ -55,25 +67,10 @@
<content_attribute id="social-contacts">intense</content_attribute>
</content_rating>
<releases>
<release version="1.10.15" date="2025-10-15">
<release version="1.10.16" date="2025-10-15">
<url>https://github.com/Materialious/Materialious/releases/tag/1.10.16</url>
</release>
<release version="1.10.15" date="2025-10-15">
<url>https://github.com/Materialious/Materialious/releases/tag/1.10.15</url>
</release>
<release version="1.10.14" date="2025-10-08">
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "Materialious",
"version": "1.10.15",
"version": "1.10.16",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "Materialious",
"version": "1.10.15",
"version": "1.10.16",
"license": "MIT",
"dependencies": {
"@capacitor-community/electron": "^5.0.0",
+2 -3
View File
@@ -1,6 +1,6 @@
{
"name": "Materialious",
"version": "1.10.15",
"version": "1.10.16",
"description": "Modern material design for Invidious.",
"author": {
"name": "Ward Pearce",
@@ -24,7 +24,6 @@
"dependencies": {
"@capacitor-community/electron": "^5.0.0",
"bgutils-js": "^3.2.0",
"capacitor-nodejs": "https://github.com/hampoelz/capacitor-nodejs/releases/download/v1.0.0-beta.9/capacitor-nodejs.tgz",
"chokidar": "~4.0.3",
"electron-is-dev": "~2.0.0",
"electron-serve": "~3.0.0",
@@ -44,4 +43,4 @@
"capacitor",
"electron"
]
}
}
@@ -1,6 +1,4 @@
/* eslint-disable @typescript-eslint/no-var-requires */
const CapacitorNodejs = require('../../../node_modules/capacitor-nodejs/electron/dist/plugin.js');
module.exports = {
CapacitorNodejs,
}
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "materialious",
"version": "1.10.15",
"version": "1.10.16",
"private": true,
"scripts": {
"dev": "vite dev",
@@ -70,4 +70,4 @@
"svelte-persisted-store": "^0.12.0",
"youtubei.js": "^15.1.1"
}
}
}
@@ -97,11 +97,11 @@
<menu style="width: 100%;" data-ui="#tab-menu" id="tab-menu">
{#each tabs as tab, _}
<li
data-ui="#tab-menu"
onclick={() => {
activeTab = tab.id;
}}
role="presentation"
data-ui="#tab-menu"
>
<i>{tab.icon}</i>
<span>{tab.label}</span>
+2 -1
View File
@@ -45,8 +45,9 @@ dialog {
@media screen and (max-width: 1000px) {
menu.mobile {
position: fixed !important;
top: 20% !important;
top: 10% !important;
width: 100% !important;
z-index: 99999;
}
main.root {
@@ -631,12 +631,18 @@
align-items: flex-start;
flex-direction: column;
}
}
@media screen and (max-width: 1000px) {
.video-actions > div {
margin-top: 1em;
}
nav.group {
flex-direction: column;
}
nav.group button {
border-radius: 0.5rem !important;
}
}
@media screen and (max-width: 1646px) {
+1 -1
View File
@@ -3,7 +3,7 @@ import os
import re
from datetime import datetime
LATEST_VERSION = "1.10.15"
LATEST_VERSION = "1.10.16"
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")