feat(synced-lyrics): Musixmatch (#3261)

This commit is contained in:
Angelos Bouklis
2025-06-30 16:37:01 +03:00
committed by GitHub
parent 89479a5045
commit eae4e952f5
7 changed files with 356 additions and 14 deletions

View File

@ -4,13 +4,14 @@ import { t } from '@/i18n';
import { menu } from './menu';
import { renderer } from './renderer';
import { backend } from './backend';
import type { SyncedLyricsPluginConfig } from './types';
export default createPlugin({
name: () => t('plugins.synced-lyrics.name'),
description: () => t('plugins.synced-lyrics.description'),
authors: ['Non0reo', 'ArjixWasTaken', 'KimJammer'],
authors: ['Non0reo', 'ArjixWasTaken', 'KimJammer', 'Strvm'],
restartNeeded: true,
addedVersion: '3.5.X',
config: {
@ -25,5 +26,6 @@ export default createPlugin({
menu,
renderer,
backend,
stylesheets: [style],
});