Merge pull request #1570 from Materialious/update/1.16.20

Update/1.16.20
This commit is contained in:
Ward
2026-03-14 12:46:02 +13:00
committed by GitHub
8 changed files with 24 additions and 17 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ android {
applicationId "us.materialio.app"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 236
versionName "1.16.19"
versionCode 237
versionName "1.16.20"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
@@ -78,7 +78,11 @@
<release version="1.16.19" date="2026-3-13">
<release version="1.16.20" date="2026-3-14">
<url>https://github.com/Materialious/Materialious/releases/tag/1.16.20</url>
</release>
<release version="1.16.19" date="2026-3-13">
<url>https://github.com/Materialious/Materialious/releases/tag/1.16.19</url>
</release>
<release version="1.16.18" date="2026-3-11">
+5 -5
View File
@@ -1,12 +1,12 @@
{
"name": "Materialious",
"version": "1.16.17",
"version": "1.16.19",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "Materialious",
"version": "1.16.17",
"version": "1.16.19",
"license": "MIT",
"dependencies": {
"@capacitor-community/electron": "^5.0.0",
@@ -6414,9 +6414,9 @@
}
},
"node_modules/undici": {
"version": "7.22.0",
"resolved": "https://registry.npmjs.org/undici/-/undici-7.22.0.tgz",
"integrity": "sha512-RqslV2Us5BrllB+JeiZnK4peryVTndy9Dnqq62S3yYRRTj0tFQCwEniUy2167skdGOy3vqRzEvl1Dm4sV2ReDg==",
"version": "7.24.1",
"resolved": "https://registry.npmjs.org/undici/-/undici-7.24.1.tgz",
"integrity": "sha512-5xoBibbmnjlcR3jdqtY2Lnx7WbrD/tHlT01TmvqZUFVc9Q1w4+j5hbnapTqbcXITMH1ovjq/W7BkqBilHiVAaA==",
"license": "MIT",
"engines": {
"node": ">=20.18.1"
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "Materialious",
"version": "1.16.19",
"version": "1.16.20",
"description": "Modern material design for YouTube and Invidious.",
"author": {
"name": "Ward Pearce",
+5 -5
View File
@@ -1,12 +1,12 @@
{
"name": "materialious",
"version": "1.16.18",
"version": "1.16.20",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "materialious",
"version": "1.16.18",
"version": "1.16.20",
"hasInstallScript": true,
"dependencies": {
"@capacitor-community/electron": "^5.0.1",
@@ -18091,9 +18091,9 @@
"license": "MIT"
},
"node_modules/undici": {
"version": "7.22.0",
"resolved": "https://registry.npmjs.org/undici/-/undici-7.22.0.tgz",
"integrity": "sha512-RqslV2Us5BrllB+JeiZnK4peryVTndy9Dnqq62S3yYRRTj0tFQCwEniUy2167skdGOy3vqRzEvl1Dm4sV2ReDg==",
"version": "7.24.1",
"resolved": "https://registry.npmjs.org/undici/-/undici-7.24.1.tgz",
"integrity": "sha512-5xoBibbmnjlcR3jdqtY2Lnx7WbrD/tHlT01TmvqZUFVc9Q1w4+j5hbnapTqbcXITMH1ovjq/W7BkqBilHiVAaA==",
"license": "MIT",
"engines": {
"node": ">=20.18.1"
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "materialious",
"version": "1.16.19",
"version": "1.16.20",
"private": true,
"scripts": {
"dev": "npm run patch:github && vite dev",
@@ -359,7 +359,10 @@
{/if}
</div>
{#if !sideways}
<button onclick={() => (thumbnailActionsVisible = true)} class="transparent circle">
<button
onclick={() => (thumbnailActionsVisible = !thumbnailActionsVisible)}
class="transparent circle"
>
<i>more_vert</i>
</button>
{/if}
+1 -1
View File
@@ -3,7 +3,7 @@ import os
import re
from datetime import datetime
LATEST_VERSION = "1.16.19"
LATEST_VERSION = "1.16.20"
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")