Skip to content

Commit

Permalink
Minor edits
Browse files Browse the repository at this point in the history
  • Loading branch information
lanly-dev committed Oct 10, 2020
1 parent 20a546a commit 52c8487
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ 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

## [1.4.0] - October 2020
- 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)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"version": "1.4.0",
"publisher": "lanly-dev",
"engines": {
"vscode": "^1.49.0"
"vscode": "^1.50.0"
},
"extensionKind": [
"ui"
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 52c8487

Please sign in to comment.