1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-10 00:05:42 +02:00

Mobile: Resolves #10360: Make most plugins default to being desktop-only (#10376)

This commit is contained in:
Henry Heino
2024-04-27 03:43:25 -07:00
committed by GitHub
parent 034e568d26
commit 03617eb8a7
8 changed files with 64 additions and 9 deletions

View File

@ -1,10 +1,15 @@
import { AppType } from '../../../../models/Setting';
import getDefaultPlatforms from './getDefaultPlatforms';
import { ManifestSlice } from './types';
// Returns false if the platform isn't supported at all,
const minVersionForPlatform = (appPlatform: AppType, manifest: ManifestSlice): string|false => {
const platforms = manifest.platforms ?? [];
// If platforms is not specified (or empty), default to supporting all platforms.
let platforms = manifest.platforms;
if (!platforms || platforms.length === 0) {
platforms = getDefaultPlatforms(manifest.id);
}
const supported = platforms.length === 0 || platforms.includes(appPlatform);
if (!supported) {
return false;