From 6ed5f6bbc81a433c8ea49ccb2835112aa3879c52 Mon Sep 17 00:00:00 2001 From: Lauren Liberda Date: Mon, 5 Apr 2021 02:44:06 +0200 Subject: [PATCH] copykitku: get ready for merging other fork changes --- devscripts/copykitku-patch-hook.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/devscripts/copykitku-patch-hook.js b/devscripts/copykitku-patch-hook.js index bf35386df..dca40ff73 100644 --- a/devscripts/copykitku-patch-hook.js +++ b/devscripts/copykitku-patch-hook.js @@ -5,6 +5,17 @@ module.exports = function patchHook(patchContent) { [ [/(?:youtube-|yt-?)dl\.org/g, 'haruhi.download'], + + // fork: https://github.com/blackjack4494/yt-dlc + [/youtube_dlc/g, 'haruhi_dl'], + [/youtube-dlc/g, 'haruhi-dl'], + [/ytdlc/g, 'hdl'], + [/yt-dlc/g, 'hdl'], + // fork: https://github.com/yt-dlp/yt-dlp + [/yt_dlp/g, 'haruhi_dl'], + [/yt-dlp/g, 'haruhi-dl'], + [/ytdlp/g, 'hdl'], + [/youtube_dl/g, 'haruhi_dl'], [/youtube-dl/g, 'haruhi-dl'], [/youtubedl/g, 'haruhidl'], @@ -16,6 +27,8 @@ module.exports = function patchHook(patchContent) { // prevent from linking to non-existent repository [/github\.com\/(?:yt|h)dl-org\/haruhi-dl/g, 'github.com/ytdl-org/youtube-dl'], [/github\.com\/rg3\/haruhi-dl/g, 'github.com/ytdl-org/youtube-dl'], + [/github\.com\/blackjack4494\/hdl/g, 'github.com/blackjack4494/yt-dlc'], + [/github\.com\/hdl\/hdl/g, 'github.com/yt-dlp/yt-dlp'], // prevent changing the smuggle URLs (for compatibility with ytdl) [/__haruhidl_smuggle/g, '__youtubedl_smuggle'], ].forEach(([regex, replacement]) => patchContent = patchContent.replace(regex, replacement));