improve copykitku patch hook

This commit is contained in:
Laura Liberda 2021-02-26 14:27:42 +01:00 committed by Dominika
parent 0b84ab95e5
commit 1250d58b96

View file

@ -4,16 +4,18 @@
module.exports = function patchHook(patchContent) {
[
[/(?:youtube-|yt-?)dl\.org/g, 'haruhi.download'],
[/youtube_dl/g, 'haruhi_dl'],
[/youtube-dl/g, 'haruhi-dl'],
[/youtubedl/g, 'haruhidl'],
[/YoutubeDL/g, 'HaruhiDL'],
[/ytdl/g, 'hdl'],
[/(?:youtube-|yt-?)dl\.org/g, 'haruhi.download'],
[/yt-dl/g, 'h-dl'],
[/ydl/g, 'hdl'],
// prevent from linking to non-existent repository
[/github\.com\/ytdl-org\/haruhi-dl/g, 'github.com/ytdl-org/youtube-dl'],
[/github\.com\/rg3\/haruhi-dl/g, 'github.com/ytdl-org/youtube-dl'],
// prevent changing the smuggle URLs (for compatibility with ytdl)
[/__haruhidl_smuggle/g, '__youtubedl_smuggle'],
].forEach(([regex, replacement]) => patchContent = patchContent.replace(regex, replacement));