Merge pull request #633 from Materialious/update/1.6.4

Improved mobile settings
This commit is contained in:
Ward
2024-10-09 10:39:24 +13:00
committed by GitHub
6 changed files with 36 additions and 6 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ android {
applicationId "us.materialio.app"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 54
versionName "1.6.3"
versionCode 55
versionName "1.6.4"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "Materialious",
"version": "1.6.3",
"version": "1.6.4",
"description": "Modern material design for Invidious.",
"author": {
"name": "Ward Pearce",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "materialious",
"version": "1.6.3",
"version": "1.6.4",
"private": true,
"scripts": {
"dev": "vite dev",
+7 -1
View File
@@ -113,7 +113,7 @@
</nav>
<div>
<nav class="tabbed small scroll">
<nav class="tabbed small">
<a class:active={activeTab === 'interface'} on:click={() => (activeTab = 'interface')}>
<i>grid_view</i>
<span>{$_('layout.interface')}</span>
@@ -728,4 +728,10 @@
.tabbed {
overflow-y: hidden;
}
@media screen and (max-width: 650px) {
dialog {
padding: 0;
}
}
</style>
+24
View File
@@ -78,3 +78,27 @@ main.root {
display: none !important;
}
}
@media screen and (max-width: 1030px) {
nav.tabbed {
display: flex !important;
flex-direction: column !important;
gap: 0 !important;
flex: 0 !important;
margin-bottom: 1em !important;
align-items: start !important;
padding: 1em 0 !important;
}
nav.tabbed>a {
font-size: 1.5rem !important;
padding: .5em .3em !important;
border-radius: 3em !important;
margin-bottom: .5em;
}
nav.tabbed.small {
block-size: 100% !important;
border-radius: 0 !important;
}
}
+1 -1
View File
@@ -5,7 +5,7 @@ import json
import os
import re
LATEST_VERSION = "1.6.3"
LATEST_VERSION = "1.6.4"
WORKING_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "materialious")
ROOT_PACKAGE = os.path.join(WORKING_DIR, "package.json")