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 @@
Download
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
-[![GitHub release](https://img.shields.io/github/release/organization/youtube-music-next.svg?style=for-the-badge&logo=youtube-music)](https://github.com/organization/youtube-music-next/releases/) -[![GitHub license](https://img.shields.io/github/license/organization/youtube-music-next.svg?style=for-the-badge)](https://github.com/organization/youtube-music-next/blob/master/LICENSE) -[![eslint code style](https://img.shields.io/badge/code_style-eslint-5ed9c7.svg?style=for-the-badge)](https://github.com/organization/youtube-music-next/blob/master/.eslintrc.js) -[![Build status](https://img.shields.io/github/actions/workflow/status/organization/youtube-music-next/build.yml?branch=custom-version&style=for-the-badge&logo=youtube-music)](https://github.com/organization/youtube-music-next/releases/) -[![Known Vulnerabilities](https://img.shields.io/snyk/vulnerabilities/github/organization/youtube-music-next?style=for-the-badge)](https://snyk.io/test/github/organization/youtube-music-next) -[![GitHub All Releases](https://img.shields.io/github/downloads/organization/youtube-music-next/total?style=for-the-badge&logo=youtube-music)](https://github.com/organization/youtube-music-next/releases/) +[![GitHub release](https://img.shields.io/github/release/th-ch/youtube-music.svg?style=for-the-badge&logo=youtube-music)](https://github.com/th-ch/youtube-music/releases/) +[![GitHub license](https://img.shields.io/github/license/th-ch/youtube-music.svg?style=for-the-badge)](https://github.com/th-ch/youtube-music/blob/master/LICENSE) +[![eslint code style](https://img.shields.io/badge/code_style-eslint-5ed9c7.svg?style=for-the-badge)](https://github.com/th-ch/youtube-music/blob/master/.eslintrc.js) +[![Build status](https://img.shields.io/github/actions/workflow/status/th-ch/youtube-music/build.yml?branch=master&style=for-the-badge&logo=youtube-music)](https://GitHub.com/th-ch/youtube-music/releases/) +[![Known Vulnerabilities](https://img.shields.io/snyk/vulnerabilities/github/th-ch/youtube-music?style=for-the-badge)](https://snyk.io/test/github/th-ch/youtube-music) +[![GitHub All Releases](https://img.shields.io/github/downloads/th-ch/youtube-music/total?style=for-the-badge&logo=youtube-music)](https://GitHub.com/th-ch/youtube-music/releases/) [![AUR](https://img.shields.io/aur/version/youtube-music-bin?color=blueviolet&style=for-the-badge&logo=youtube-music)](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', ], });