From 00bb06448dd679a16d2979822af22007f9eb8c52 Mon Sep 17 00:00:00 2001 From: uimaxbai <61615730+uimaxbai@users.noreply.github.com> Date: Thu, 23 Apr 2026 20:28:27 +0100 Subject: [PATCH] Replace old tidal-uptime workers.dev URLs with geeked.wtf Co-Authored-By: Claude Sonnet 4.6 --- INSTANCES.md | 3 +-- functions/album/[id].js | 3 +-- functions/artist/[id].js | 3 +-- functions/playlist/[id].js | 3 +-- functions/track/[id].js | 3 +-- js/storage.js | 3 +-- 6 files changed, 6 insertions(+), 12 deletions(-) diff --git a/INSTANCES.md b/INSTANCES.md index 3fac04f..3ffdf16 100644 --- a/INSTANCES.md +++ b/INSTANCES.md @@ -24,8 +24,7 @@ PLEASE do not use any rehost of monochrome and complain to us about features not Monochrome uses the Hi-Fi API under the hood. Live, up-to-date status trackers (which return JSON) can be found below: -- [https://tidal-uptime.jiffy-puffs-1j.workers.dev](https://tidal-uptime.jiffy-puffs-1j.workers.dev/) -- [https://tidal-uptime.props-76styles.workers.dev](https://tidal-uptime.props-76styles.workers.dev/) +- [https://tidal-uptime.geeked.wtf](https://tidal-uptime.geeked.wtf) These are available API endpoints that can be used with Monochrome or other Hi-Fi based applications: diff --git a/functions/album/[id].js b/functions/album/[id].js index ccdd72f..1547b17 100644 --- a/functions/album/[id].js +++ b/functions/album/[id].js @@ -48,8 +48,7 @@ class TidalAPI { class ServerAPI { constructor() { this.INSTANCES_URLS = [ - 'https://tidal-uptime.jiffy-puffs-1j.workers.dev/', - 'https://tidal-uptime.props-76styles.workers.dev/', + 'https://tidal-uptime.geeked.wtf', ]; this.apiInstances = null; } diff --git a/functions/artist/[id].js b/functions/artist/[id].js index e910f09..915d9c7 100644 --- a/functions/artist/[id].js +++ b/functions/artist/[id].js @@ -48,8 +48,7 @@ class TidalAPI { class ServerAPI { constructor() { this.INSTANCES_URLS = [ - 'https://tidal-uptime.jiffy-puffs-1j.workers.dev/', - 'https://tidal-uptime.props-76styles.workers.dev/', + 'https://tidal-uptime.geeked.wtf', ]; this.apiInstances = null; } diff --git a/functions/playlist/[id].js b/functions/playlist/[id].js index 15fe6f6..673c1d2 100644 --- a/functions/playlist/[id].js +++ b/functions/playlist/[id].js @@ -48,8 +48,7 @@ class TidalAPI { class ServerAPI { constructor() { this.INSTANCES_URLS = [ - 'https://tidal-uptime.jiffy-puffs-1j.workers.dev/', - 'https://tidal-uptime.props-76styles.workers.dev/', + 'https://tidal-uptime.geeked.wtf', ]; this.apiInstances = null; } diff --git a/functions/track/[id].js b/functions/track/[id].js index 68162fe..9939ddf 100644 --- a/functions/track/[id].js +++ b/functions/track/[id].js @@ -70,8 +70,7 @@ class TidalAPI { class ServerAPI { constructor() { this.INSTANCES_URLS = [ - 'https://tidal-uptime.jiffy-puffs-1j.workers.dev/', - 'https://tidal-uptime.props-76styles.workers.dev/', + 'https://tidal-uptime.geeked.wtf', ]; this.apiInstances = null; } diff --git a/js/storage.js b/js/storage.js index 9841afb..1097cf0 100644 --- a/js/storage.js +++ b/js/storage.js @@ -5,8 +5,7 @@ import { SVG_RIGHT_ARROW } from './icons'; export const apiSettings = { STORAGE_KEY: 'monochrome-api-instances-v9', INSTANCES_URLS: [ - 'https://tidal-uptime.jiffy-puffs-1j.workers.dev/', - 'https://tidal-uptime.props-76styles.workers.dev/', + 'https://tidal-uptime.geeked.wtf', ], defaultInstances: { api: [], streaming: [] }, userInstances: null,