mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-10 10:11:46 +00:00
- Display only the main artist. - Display the title in its original language without romanization. - fix #3358 - fix #3641
61 lines
1.7 KiB
TypeScript
61 lines
1.7 KiB
TypeScript
import { StatusDisplayType } from 'discord-api-types/v10';
|
|
|
|
import { createPlugin } from '@/utils';
|
|
import { backend } from './main';
|
|
import { onMenu } from './menu';
|
|
import { t } from '@/i18n';
|
|
|
|
export type DiscordPluginConfig = {
|
|
enabled: boolean;
|
|
/**
|
|
* If enabled, will try to reconnect to discord every 5 seconds after disconnecting or failing to connect
|
|
*
|
|
* @default true
|
|
*/
|
|
autoReconnect: boolean;
|
|
/**
|
|
* If enabled, the discord rich presence gets cleared when music paused after the time specified below
|
|
*/
|
|
activityTimeoutEnabled: boolean;
|
|
/**
|
|
* The time in milliseconds after which the discord rich presence gets cleared when music paused
|
|
*
|
|
* @default 10 * 60 * 1000 (10 minutes)
|
|
*/
|
|
activityTimeoutTime: number;
|
|
/**
|
|
* Add a "Play on YouTube Music" button to rich presence
|
|
*/
|
|
playOnYouTubeMusic: boolean;
|
|
/**
|
|
* Hide the "View App On GitHub" button in the rich presence
|
|
*/
|
|
hideGitHubButton: boolean;
|
|
/**
|
|
* Hide the "duration left" in the rich presence
|
|
*/
|
|
hideDurationLeft: boolean;
|
|
/**
|
|
* Controls which field is displayed in the Discord status text
|
|
*/
|
|
statusDisplayType: (typeof StatusDisplayType)[keyof typeof StatusDisplayType];
|
|
};
|
|
|
|
export default createPlugin({
|
|
name: () => t('plugins.discord.name'),
|
|
description: () => t('plugins.discord.description'),
|
|
restartNeeded: false,
|
|
config: {
|
|
enabled: false,
|
|
autoReconnect: true,
|
|
activityTimeoutEnabled: true,
|
|
activityTimeoutTime: 10 * 60 * 1000,
|
|
playOnYouTubeMusic: true,
|
|
hideGitHubButton: false,
|
|
hideDurationLeft: false,
|
|
statusDisplayType: StatusDisplayType.Details,
|
|
} as DiscordPluginConfig,
|
|
menu: onMenu,
|
|
backend,
|
|
});
|