From 52c84874d488297be2654b890fdb1c87c4781b39 Mon Sep 17 00:00:00 2001 From: lanly_dev Date: Fri, 9 Oct 2020 23:32:22 -0700 Subject: [PATCH] Minor edits --- CHANGELOG.md | 6 +++--- README.md | 4 ++-- package.json | 8 ++++---- src/browser.ts | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8c471f..65bbbfd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to the "LetMePlayTheMusic" extension will be documented in t Check [Keep a Changelog](http://keepachangelog.com) for recommendations on how to structure this file. ### TODO -- Extention setting scope +- Extention settings scope - I18n? - Site English version issue @@ -13,8 +13,8 @@ Check [Keep a Changelog](http://keepachangelog.com) for recommendations on how t - Add key shortcuts [#7](https://github.com/lanly-dev/VSCode-LMPTM/issues/7) - Add seek 5s forward/backward key shortcuts for Youtube [#8](https://github.com/lanly-dev/VSCode-LMPTM/issues/8) - Add support for Youtube Music -- Add startPages settings -- +- Add startPages setting +- 11 files, 128.26KB, 1.50.0 ## [1.3.0] - February 2020 - Add [ignoreDisableSync](https://github.com/puppeteer/puppeteer/blob/0b1777e73cb1e83ece9e09b7b51d11b798def06f/lib/Launcher.js#L277) setting [#3](https://github.com/lanly-dev/VSCode-LMPTM/issues/3#issuecomment-572180371), [#5](https://github.com/lanly-dev/VSCode-LMPTM/issues/5) diff --git a/README.md b/README.md index 71d8199..20f00bb 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Extra [use case](https://github.com/lanly-dev/VSCode-LMPTM/issues/8#issuecomment ## Features -Supports Soundcloud, Spotify, Youtube and Youtube Music +Supports SoundCloud, Spotify, Youtube and Youtube Music ## Requirements @@ -33,7 +33,7 @@ Required Chromium-based browser ## Known Issues - Work only with English version of the supported music sites - Does not work with Opera browser -- Won't be able to login Youtube and Spotify(email method) +- Won't be able to login Youtube and SoundCLoud(email method) ## Release Notes diff --git a/package.json b/package.json index 60e9343..0df0128 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "version": "1.4.0", "publisher": "lanly-dev", "engines": { - "vscode": "^1.49.0" + "vscode": "^1.50.0" }, "extensionKind": [ "ui" @@ -112,11 +112,11 @@ "@types/node": "^14.11.8", "@types/puppeteer-core": "^2.0.0", "@types/shelljs": "^0.8.8", - "@types/vscode": "^1.49.0", + "@types/vscode": "^1.50.0", "@typescript-eslint/eslint-plugin": "^4.4.0", "@typescript-eslint/parser": "^4.4.0", - "copy-webpack-plugin": "^6.2.0", - "eslint": "^7.10.0", + "copy-webpack-plugin": "^6.2.1", + "eslint": "^7.11.0", "shelljs": "^0.8.4", "terser": "^5.3.4", "ts-loader": "^8.0.4", diff --git a/src/browser.ts b/src/browser.ts index 9dd78ff..bffa979 100644 --- a/src/browser.ts +++ b/src/browser.ts @@ -6,7 +6,7 @@ import * as vscode from 'vscode' import { Buttons } from './buttons' import { WhichChrome } from './whichChrome' -const seekMsg = 'Seeking backward/forward is only work for Youtube video' +const seekMsg = 'Seeking backward/forward function is only work for Youtube videos' export class Browser { public static activeBrowser: Browser | undefined