mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2024-11-22 13:32:42 +01:00
- More Discord options:
- Added the ability to hide the current song from the discord activity and display a custom text instead - Added the ability to customize the text that is shown when no song is playing - Discord now reacts to pausing/unpausing events - Refactored media info updates so it only updates the required info, fixes #342, #306 - Added 5.9.0 logs/versions/migrations
This commit is contained in:
parent
e37b2f99cc
commit
b11dbbd6d8
@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [5.9.0]
|
||||||
|
|
||||||
|
- More Discord options:
|
||||||
|
- Added the ability to hide the current song from the discord activity and display a custom text instead
|
||||||
|
- Added the ability to customize the text that is shown when no song is playing
|
||||||
|
- Discord now reacts to pausing/unpausing events
|
||||||
|
- Refactored media info updates so it only updates the required info, fixes #342, #306
|
||||||
|
- Added 5.9.0 logs/versions/migrations
|
||||||
|
|
||||||
## [5.8.0]
|
## [5.8.0]
|
||||||
|
|
||||||
- Updated Electron to 28.1.1 (fixes [325](https://github.com/Mastermindzh/tidal-hifi/issues/325))
|
- Updated Electron to 28.1.1 (fixes [325](https://github.com/Mastermindzh/tidal-hifi/issues/325))
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "tidal-hifi",
|
"name": "tidal-hifi",
|
||||||
"version": "5.8.0",
|
"version": "5.9.0",
|
||||||
"description": "Tidal on Electron with widevine(hifi) support",
|
"description": "Tidal on Electron with widevine(hifi) support",
|
||||||
"main": "ts-dist/main.js",
|
"main": "ts-dist/main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -26,7 +26,7 @@ export const settings = {
|
|||||||
includeTimestamps: "discord.includeTimestamps",
|
includeTimestamps: "discord.includeTimestamps",
|
||||||
showSong: "discord.showSong",
|
showSong: "discord.showSong",
|
||||||
idleText: "discord.idleText",
|
idleText: "discord.idleText",
|
||||||
listeningText: "discord.listeningText",
|
usingText: "discord.usingText",
|
||||||
},
|
},
|
||||||
ListenBrainz: {
|
ListenBrainz: {
|
||||||
root: "ListenBrainz",
|
root: "ListenBrainz",
|
||||||
|
@ -57,7 +57,7 @@ let adBlock: HTMLInputElement,
|
|||||||
discord_button_text: HTMLInputElement,
|
discord_button_text: HTMLInputElement,
|
||||||
discord_show_song: HTMLInputElement,
|
discord_show_song: HTMLInputElement,
|
||||||
discord_idle_text: HTMLInputElement,
|
discord_idle_text: HTMLInputElement,
|
||||||
discord_listening_text: HTMLInputElement;
|
discord_using_text: HTMLInputElement;
|
||||||
|
|
||||||
addCustomCss(app);
|
addCustomCss(app);
|
||||||
|
|
||||||
@ -148,7 +148,7 @@ function refreshSettings() {
|
|||||||
discord_button_text.value = settingsStore.get(settings.discord.buttonText);
|
discord_button_text.value = settingsStore.get(settings.discord.buttonText);
|
||||||
discord_show_song.checked = settingsStore.get(settings.discord.showSong);
|
discord_show_song.checked = settingsStore.get(settings.discord.showSong);
|
||||||
discord_idle_text.value = settingsStore.get(settings.discord.idleText);
|
discord_idle_text.value = settingsStore.get(settings.discord.idleText);
|
||||||
discord_listening_text.value = settingsStore.get(settings.discord.listeningText);
|
discord_using_text.value = settingsStore.get(settings.discord.usingText);
|
||||||
|
|
||||||
// set state of all switches with additional settings
|
// set state of all switches with additional settings
|
||||||
Object.values(switchesWithSettings).forEach((settingSwitch) => {
|
Object.values(switchesWithSettings).forEach((settingSwitch) => {
|
||||||
@ -263,7 +263,7 @@ window.addEventListener("DOMContentLoaded", () => {
|
|||||||
listenbrainz_delay = get("listenbrainz_delay");
|
listenbrainz_delay = get("listenbrainz_delay");
|
||||||
discord_button_text = get("discord_button_text");
|
discord_button_text = get("discord_button_text");
|
||||||
discord_show_song = get("discord_show_song");
|
discord_show_song = get("discord_show_song");
|
||||||
discord_listening_text = get("discord_listening_text");
|
discord_using_text = get("discord_using_text");
|
||||||
discord_idle_text = get("discord_idle_text")
|
discord_idle_text = get("discord_idle_text")
|
||||||
|
|
||||||
refreshSettings();
|
refreshSettings();
|
||||||
@ -301,5 +301,5 @@ window.addEventListener("DOMContentLoaded", () => {
|
|||||||
addInputListener(discord_button_text, settings.discord.buttonText);
|
addInputListener(discord_button_text, settings.discord.buttonText);
|
||||||
addInputListener(discord_show_song, settings.discord.showSong, switchesWithSettings.discord_show_song);
|
addInputListener(discord_show_song, settings.discord.showSong, switchesWithSettings.discord_show_song);
|
||||||
addInputListener(discord_idle_text, settings.discord.idleText);
|
addInputListener(discord_idle_text, settings.discord.idleText);
|
||||||
addInputListener(discord_listening_text, settings.discord.listeningText);
|
addInputListener(discord_using_text, settings.discord.usingText);
|
||||||
});
|
});
|
||||||
|
@ -227,9 +227,9 @@
|
|||||||
|
|
||||||
<div class="group__option" class="hidden">
|
<div class="group__option" class="hidden">
|
||||||
<div class="group__description">
|
<div class="group__description">
|
||||||
<h4>Listening Text</h4>
|
<h4>Using Tidal Text</h4>
|
||||||
<p>The text displayed on Discord's rich presence while listening to a song.</p>
|
<p>The text displayed on Discord's rich presence while "showSong" is turned off</p>
|
||||||
<input id="discord_listening_text" type="text" class="text-input" name="discord_listening_text" />
|
<input id="discord_using_text" type="text" class="text-input" name="discord_using_text" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -432,7 +432,7 @@
|
|||||||
<img alt="tidal icon" class="about-section__icon" src="./icon.png" />
|
<img alt="tidal icon" class="about-section__icon" src="./icon.png" />
|
||||||
<h4>TIDAL Hi-Fi</h4>
|
<h4>TIDAL Hi-Fi</h4>
|
||||||
<div class="about-section__version">
|
<div class="about-section__version">
|
||||||
<a href="https://github.com/Mastermindzh/tidal-hifi/releases/tag/5.8.0">5.8.0</a>
|
<a href="https://github.com/Mastermindzh/tidal-hifi/releases/tag/5.9.0">5.9.0</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="about-section__links">
|
<div class="about-section__links">
|
||||||
<a href="https://github.com/mastermindzh/tidal-hifi/" class="about-section__button">Github <i
|
<a href="https://github.com/mastermindzh/tidal-hifi/" class="about-section__button">Github <i
|
||||||
|
@ -26,6 +26,8 @@ let player: Player;
|
|||||||
let currentPlayStatus = MediaStatus.paused;
|
let currentPlayStatus = MediaStatus.paused;
|
||||||
let currentListenBrainzDelayId: ReturnType<typeof setTimeout>;
|
let currentListenBrainzDelayId: ReturnType<typeof setTimeout>;
|
||||||
let scrobbleWaitingForDelay = false;
|
let scrobbleWaitingForDelay = false;
|
||||||
|
let wasJustPausedOrResumed = false;
|
||||||
|
let currentMediaInfo: Options;
|
||||||
|
|
||||||
const elements = {
|
const elements = {
|
||||||
play: '*[data-test="play"]',
|
play: '*[data-test="play"]',
|
||||||
@ -182,6 +184,7 @@ function getUpdateFrequency() {
|
|||||||
* Play or pause the current song
|
* Play or pause the current song
|
||||||
*/
|
*/
|
||||||
function playPause() {
|
function playPause() {
|
||||||
|
wasJustPausedOrResumed = true;
|
||||||
const play = elements.get("play");
|
const play = elements.get("play");
|
||||||
|
|
||||||
if (play) {
|
if (play) {
|
||||||
@ -301,6 +304,8 @@ function addIPCEventListeners() {
|
|||||||
ipcRenderer.on("globalEvent", (_event, args) => {
|
ipcRenderer.on("globalEvent", (_event, args) => {
|
||||||
switch (args) {
|
switch (args) {
|
||||||
case globalEvents.playPause:
|
case globalEvents.playPause:
|
||||||
|
case globalEvents.play:
|
||||||
|
case globalEvents.pause:
|
||||||
playPause();
|
playPause();
|
||||||
break;
|
break;
|
||||||
case globalEvents.next:
|
case globalEvents.next:
|
||||||
@ -309,12 +314,6 @@ function addIPCEventListeners() {
|
|||||||
case globalEvents.previous:
|
case globalEvents.previous:
|
||||||
elements.click("previous");
|
elements.click("previous");
|
||||||
break;
|
break;
|
||||||
case globalEvents.play:
|
|
||||||
elements.click("play");
|
|
||||||
break;
|
|
||||||
case globalEvents.pause:
|
|
||||||
elements.click("pause");
|
|
||||||
break;
|
|
||||||
case globalEvents.toggleFavorite:
|
case globalEvents.toggleFavorite:
|
||||||
elements.click("favorite");
|
elements.click("favorite");
|
||||||
break;
|
break;
|
||||||
@ -357,6 +356,7 @@ function convertDuration(duration: string) {
|
|||||||
*/
|
*/
|
||||||
function updateMediaInfo(options: Options, notify: boolean) {
|
function updateMediaInfo(options: Options, notify: boolean) {
|
||||||
if (options) {
|
if (options) {
|
||||||
|
currentMediaInfo = options;
|
||||||
ipcRenderer.send(globalEvents.updateInfo, options);
|
ipcRenderer.send(globalEvents.updateInfo, options);
|
||||||
if (settingsStore.get(settings.notifications) && notify) {
|
if (settingsStore.get(settings.notifications) && notify) {
|
||||||
new Notification({ title: options.title, body: options.artists, icon: options.icon }).show();
|
new Notification({ title: options.title, body: options.artists, icon: options.icon }).show();
|
||||||
@ -510,13 +510,20 @@ setInterval(function () {
|
|||||||
const title = elements.getText("title");
|
const title = elements.getText("title");
|
||||||
const artistsArray = elements.getArtistsArray();
|
const artistsArray = elements.getArtistsArray();
|
||||||
const artistsString = elements.getArtistsString(artistsArray);
|
const artistsString = elements.getArtistsString(artistsArray);
|
||||||
|
const songDashArtistTitle = `${title} - ${artistsString}`;
|
||||||
|
const titleOrArtistsChanged = currentSong !== songDashArtistTitle;
|
||||||
|
const current = elements.getText("current");
|
||||||
|
const currentStatus = getCurrentlyPlayingStatus();
|
||||||
|
|
||||||
|
// update info if song changed or was just paused/resumed
|
||||||
|
if (titleOrArtistsChanged || wasJustPausedOrResumed) {
|
||||||
|
if (wasJustPausedOrResumed) {
|
||||||
|
wasJustPausedOrResumed = false;
|
||||||
|
}
|
||||||
skipArtistsIfFoundInSkippedArtistsList(artistsArray);
|
skipArtistsIfFoundInSkippedArtistsList(artistsArray);
|
||||||
|
|
||||||
const album = elements.getAlbumName();
|
const album = elements.getAlbumName();
|
||||||
const current = elements.getText("current");
|
|
||||||
const duration = elements.getText("duration");
|
const duration = elements.getText("duration");
|
||||||
const songDashArtistTitle = `${title} - ${artistsString}`;
|
|
||||||
const currentStatus = getCurrentlyPlayingStatus();
|
|
||||||
const options = {
|
const options = {
|
||||||
title,
|
title,
|
||||||
artists: artistsString,
|
artists: artistsString,
|
||||||
@ -531,8 +538,6 @@ setInterval(function () {
|
|||||||
favorite: elements.isFavorite(),
|
favorite: elements.isFavorite(),
|
||||||
};
|
};
|
||||||
|
|
||||||
const titleOrArtistsChanged = currentSong !== songDashArtistTitle;
|
|
||||||
|
|
||||||
// update title, url and play info with new info
|
// update title, url and play info with new info
|
||||||
setTitle(songDashArtistTitle);
|
setTitle(songDashArtistTitle);
|
||||||
getTrackURL();
|
getTrackURL();
|
||||||
@ -564,6 +569,10 @@ setInterval(function () {
|
|||||||
updateMediaSession(options);
|
updateMediaSession(options);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
} else {
|
||||||
|
// just update the time
|
||||||
|
updateMediaInfo({ ...currentMediaInfo, ...{ current } }, false);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* automatically skip a song if the artists are found in the list of artists to skip
|
* automatically skip a song if the artists are found in the list of artists to skip
|
||||||
|
@ -22,33 +22,44 @@ const observer = () => {
|
|||||||
rpc.setActivity(getActivity());
|
rpc.setActivity(getActivity());
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
const getActivity = (): Presence | undefined => {
|
|
||||||
const presence: Presence | undefined = {
|
const defaultPresence = {
|
||||||
largeImageKey: "tidal-hifi-icon",
|
largeImageKey: "tidal-hifi-icon",
|
||||||
largeImageText: `TIDAL Hi-Fi ${app.getVersion()}`,
|
largeImageText: `TIDAL Hi-Fi ${app.getVersion()}`,
|
||||||
instance: false,
|
instance: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const getActivity = (): Presence => {
|
||||||
|
const presence: Presence = { ...defaultPresence };
|
||||||
|
|
||||||
if (mediaInfo.status === MediaStatus.paused) {
|
if (mediaInfo.status === MediaStatus.paused) {
|
||||||
presence.details = settingsStore.get<string, string>(settings.discord.idleText) ?? "Browsing Tidal";
|
presence.details =
|
||||||
|
settingsStore.get<string, string>(settings.discord.idleText) ?? "Browsing Tidal";
|
||||||
} else {
|
} else {
|
||||||
const showSong = settingsStore.get<string, boolean>(settings.discord.showSong) ?? false;
|
const showSong = settingsStore.get<string, boolean>(settings.discord.showSong) ?? false;
|
||||||
if (showSong) {
|
if (showSong) {
|
||||||
|
const { includeTimestamps, detailsPrefix, buttonText } = getFromStore();
|
||||||
|
includeTimeStamps(includeTimestamps);
|
||||||
|
setPresenceFromMediaInfo(detailsPrefix, buttonText);
|
||||||
|
} else {
|
||||||
|
presence.details =
|
||||||
|
settingsStore.get<string, string>(settings.discord.usingText) ?? "Playing media on TIDAL";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return presence;
|
||||||
|
|
||||||
|
function getFromStore() {
|
||||||
const includeTimestamps =
|
const includeTimestamps =
|
||||||
settingsStore.get<string, boolean>(settings.discord.includeTimestamps) ?? true;
|
settingsStore.get<string, boolean>(settings.discord.includeTimestamps) ?? true;
|
||||||
|
const detailsPrefix =
|
||||||
|
settingsStore.get<string, string>(settings.discord.detailsPrefix) ?? "Listening to ";
|
||||||
|
const buttonText =
|
||||||
|
settingsStore.get<string, string>(settings.discord.buttonText) ?? "Play on TIDAL";
|
||||||
|
|
||||||
if (includeTimestamps) {
|
return { includeTimestamps, detailsPrefix, buttonText };
|
||||||
const currentSeconds = timeToSeconds(mediaInfo.current.split(":"));
|
|
||||||
const durationSeconds = timeToSeconds(mediaInfo.duration.split(":"));
|
|
||||||
const date = new Date();
|
|
||||||
const now = (date.getTime() / 1000) | 0;
|
|
||||||
const remaining = date.setSeconds(date.getSeconds() + (durationSeconds - currentSeconds));
|
|
||||||
presence.startTimestamp = now;
|
|
||||||
presence.endTimestamp = remaining;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const detailsPrefix = settingsStore.get<string, string>(settings.discord.detailsPrefix) ?? "Listening to ";
|
function setPresenceFromMediaInfo(detailsPrefix: any, buttonText: any) {
|
||||||
const buttonText = settingsStore.get<string, string>(settings.discord.buttonText) ?? "Play on TIDAL";
|
|
||||||
|
|
||||||
if (mediaInfo.url) {
|
if (mediaInfo.url) {
|
||||||
presence.details = `${detailsPrefix}${mediaInfo.title}`;
|
presence.details = `${detailsPrefix}${mediaInfo.title}`;
|
||||||
presence.state = mediaInfo.artists ? mediaInfo.artists : "unknown artist(s)";
|
presence.state = mediaInfo.artists ? mediaInfo.artists : "unknown artist(s)";
|
||||||
@ -61,11 +72,19 @@ const getActivity = (): Presence | undefined => {
|
|||||||
presence.details = `Watching ${mediaInfo.title}`;
|
presence.details = `Watching ${mediaInfo.title}`;
|
||||||
presence.state = mediaInfo.artists;
|
presence.state = mediaInfo.artists;
|
||||||
}
|
}
|
||||||
} else {
|
}
|
||||||
presence.details = settingsStore.get<string, string>(settings.discord.listeningText) ?? "Listening Tidal";
|
|
||||||
|
function includeTimeStamps(includeTimestamps: any) {
|
||||||
|
if (includeTimestamps) {
|
||||||
|
const currentSeconds = timeToSeconds(mediaInfo.current.split(":"));
|
||||||
|
const durationSeconds = timeToSeconds(mediaInfo.duration.split(":"));
|
||||||
|
const date = new Date();
|
||||||
|
const now = (date.getTime() / 1000) | 0;
|
||||||
|
const remaining = date.setSeconds(date.getSeconds() + (durationSeconds - currentSeconds));
|
||||||
|
presence.startTimestamp = now;
|
||||||
|
presence.endTimestamp = remaining;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return presence;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -5,6 +5,25 @@ import path from "path";
|
|||||||
import { settings } from "../constants/settings";
|
import { settings } from "../constants/settings";
|
||||||
|
|
||||||
let settingsWindow: BrowserWindow;
|
let settingsWindow: BrowserWindow;
|
||||||
|
/**
|
||||||
|
* Build a migration step for several settings.
|
||||||
|
* All settings will be checked and set to the default if non-existent.
|
||||||
|
* @param version
|
||||||
|
* @param migrationStore
|
||||||
|
* @param options
|
||||||
|
*/
|
||||||
|
const buildMigration = (
|
||||||
|
version: string,
|
||||||
|
migrationStore: { get: (str: string) => string; set: (str: string, val: unknown) => void },
|
||||||
|
options: Array<{ key: string; value: unknown }>
|
||||||
|
) => {
|
||||||
|
console.log(`running migrations for ${version}`);
|
||||||
|
options.forEach(({ key, value }) => {
|
||||||
|
const valueToSet = migrationStore.get(key) ?? value;
|
||||||
|
console.log(` - setting ${key} to ${value}`);
|
||||||
|
migrationStore.set(key, valueToSet);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
export const settingsStore = new Store({
|
export const settingsStore = new Store({
|
||||||
defaults: {
|
defaults: {
|
||||||
@ -19,12 +38,12 @@ export const settingsStore = new Store({
|
|||||||
enableCustomHotkeys: false,
|
enableCustomHotkeys: false,
|
||||||
enableDiscord: false,
|
enableDiscord: false,
|
||||||
discord: {
|
discord: {
|
||||||
showSong: false,
|
showSong: true,
|
||||||
idleText: "Browsing Tidal",
|
idleText: "Browsing Tidal",
|
||||||
listeningText: "Listening Tidal",
|
usingText: "Playing media on TIDAL",
|
||||||
|
includeTimestamps: true,
|
||||||
detailsPrefix: "Listening to ",
|
detailsPrefix: "Listening to ",
|
||||||
buttonText: "Play on Tidal",
|
buttonText: "Play on Tidal",
|
||||||
includeTimestamps: true,
|
|
||||||
},
|
},
|
||||||
ListenBrainz: {
|
ListenBrainz: {
|
||||||
enabled: false,
|
enabled: false,
|
||||||
@ -72,6 +91,16 @@ export const settingsStore = new Store({
|
|||||||
migrationStore.get(settings.discord.includeTimestamps) ?? true
|
migrationStore.get(settings.discord.includeTimestamps) ?? true
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
"5.9.0": (migrationStore) => {
|
||||||
|
buildMigration("5.9.0", migrationStore, [
|
||||||
|
{ key: settings.discord.showSong, value: "true" },
|
||||||
|
{ key: settings.discord.idleText, value: "Browsing Tidal" },
|
||||||
|
{
|
||||||
|
key: settings.discord.usingText,
|
||||||
|
value: "Playing media on TIDAL",
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user