Fix #63 desktop/mobile layout; hide Updates tab on Android; dim inline task tokens in the editor

This commit is contained in:
Yuri Karamian
2026-06-23 13:52:26 +02:00
parent eeea16531a
commit 56dc0eefd7
3 changed files with 65 additions and 3 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
<script lang="ts">
import { onMount } from 'svelte';
import '../app.css';
import { theme, appConfig, activeNote, activeNotePath, installType, platformIsMobile, checkForUpdate, checkForUpdateMobile, isManagedInstall } from '$lib/stores/app';
import { theme, appConfig, activeNote, activeNotePath, installType, platformIsMobile, checkForUpdate, isManagedInstall } from '$lib/stores/app';
import { openFile, openUrl, readNote, getInstallType, isMobilePlatform } from '$lib/api';
import { get } from 'svelte/store';
import { darkThemes, isMobile, isAndroid } from '$lib/platform';
@@ -95,7 +95,7 @@
isMobilePlatform().then((m) => platformIsMobile.set(m)).catch(() => {});
if (isMobile) {
installType.set('android');
checkForUpdateMobile();
// Android updates come from the F-droid repo / Obtainium, so no in-app update check.
} else {
getInstallType().then(t => {
installType.set(t);