mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 02:31:45 +00:00
feat: prepare the fork for merging
This commit is contained in:
@ -102,7 +102,7 @@
|
||||
<div class="hero-cta">
|
||||
<a
|
||||
class="button button-primary button-wide-mobile"
|
||||
href="https://github.com/organization/youtube-music-next/releases/latest"
|
||||
href="https://github.com/th-ch/youtube-music/releases/latest"
|
||||
>Download</a
|
||||
>
|
||||
</div>
|
||||
|
||||
2
index.ts
2
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'],
|
||||
|
||||
10
package.json
10
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",
|
||||
|
||||
16
readme.md
16
readme.md
@ -1,13 +1,13 @@
|
||||
# YouTube Music Next
|
||||
# YouTube Music
|
||||
|
||||
<div align="center">
|
||||
|
||||
[](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)
|
||||
|
||||
</div>
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -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',
|
||||
],
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user