diff --git a/docs/index.html b/docs/index.html
index b3a863e6..9ad69381 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -102,7 +102,7 @@
diff --git a/index.ts b/index.ts
index 1617eb68..9feed247 100644
--- a/index.ts
+++ b/index.ts
@@ -514,7 +514,7 @@ app.on('ready', () => {
}, 2000);
autoUpdater.on('update-available', () => {
const downloadLink
- = 'https://github.com/organization/youtube-music-next/releases/latest';
+ = 'https://github.com/th-ch/youtube-music/releases/latest';
const dialogOptions: Electron.MessageBoxOptions = {
type: 'info',
buttons: ['OK', 'Download', 'Disable updates'],
diff --git a/package.json b/package.json
index bb84b187..07e5058b 100644
--- a/package.json
+++ b/package.json
@@ -1,15 +1,15 @@
{
"name": "youtube-music",
"productName": "YouTube Music",
- "version": "2.1.0",
+ "version": "1.20.0",
"description": "YouTube Music Desktop App - including custom plugins",
"main": "./dist/index.js",
"license": "MIT",
- "repository": "organization/youtube-music-next",
+ "repository": "th-ch/youtube-music",
"author": {
- "name": "organization",
- "email": "organization@users.noreply.github.com",
- "url": "https://github.com/organization/youtube-music-next"
+ "name": "th-ch",
+ "email": "th-ch@users.noreply.github.com",
+ "url": "https://github.com/th-ch/youtube-music"
},
"build": {
"appId": "com.github.th-ch.youtube-music",
diff --git a/readme.md b/readme.md
index aaf6a4b6..a5d6f1ad 100644
--- a/readme.md
+++ b/readme.md
@@ -1,13 +1,13 @@
-# YouTube Music Next
+# YouTube Music
-[](https://github.com/organization/youtube-music-next/releases/)
-[](https://github.com/organization/youtube-music-next/blob/master/LICENSE)
-[](https://github.com/organization/youtube-music-next/blob/master/.eslintrc.js)
-[](https://github.com/organization/youtube-music-next/releases/)
-[](https://snyk.io/test/github/organization/youtube-music-next)
-[](https://github.com/organization/youtube-music-next/releases/)
+[](https://github.com/th-ch/youtube-music/releases/)
+[](https://github.com/th-ch/youtube-music/blob/master/LICENSE)
+[](https://github.com/th-ch/youtube-music/blob/master/.eslintrc.js)
+[](https://GitHub.com/th-ch/youtube-music/releases/)
+[](https://snyk.io/test/github/th-ch/youtube-music)
+[](https://GitHub.com/th-ch/youtube-music/releases/)
[](https://aur.archlinux.org/packages/youtube-music-bin)
@@ -28,7 +28,7 @@
## Download
-You can check out the [latest release](https://github.com/organization/youtube-music-next/releases/latest) to quickly find the
+You can check out the [latest release](https://github.com/th-ch/youtube-music/releases/latest) to quickly find the
latest version.
### Arch Linux
diff --git a/renovate.json b/renovate.json
deleted file mode 100644
index dfa57b93..00000000
--- a/renovate.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "$schema": "https://docs.renovatebot.com/renovate-schema.json",
- "extends": [
- "config:base"
- ],
- "labels": ["Type: Dependency"],
- "packageRules": [
- {
- "matchUpdateTypes": ["minor", "patch"],
- "matchCurrentVersion": "!/^0/",
- "automerge": true
- }
- ]
-}
diff --git a/tests/index.test.mjs b/tests/index.test.js
similarity index 73%
rename from tests/index.test.mjs
rename to tests/index.test.js
index ab4a34d6..a08da6dc 100644
--- a/tests/index.test.mjs
+++ b/tests/index.test.js
@@ -1,11 +1,11 @@
-import path from 'node:path';
-import { fileURLToPath } from 'node:url';
-import { _electron as electron } from 'playwright';
-import { expect, test } from '@playwright/test';
+const path = require('node:path');
+
+const { _electron: electron } = require('playwright');
+const { test, expect } = require('@playwright/test');
process.env.NODE_ENV = 'test';
-const appPath = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..');
+const appPath = path.resolve(__dirname, '..');
test('YouTube Music App - With default settings, app is launched and visible', async () => {
const app = await electron.launch({
@@ -16,7 +16,6 @@ test('YouTube Music App - With default settings, app is launched and visible', a
'--disable-gpu',
'--whitelisted-ips=',
'--disable-dev-shm-usage',
- 'dist/index.js',
],
});