Skip to content

Commit

Permalink
Update doc 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lanly-dev committed Dec 29, 2019
1 parent e801056 commit 9ecfa45
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 7 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,19 @@ 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.

## [1.2.0] - December 2019
### Added
- Add browser execuatble file setting [#3](https://github.com/lanly-dev/VSCode-LMPTM/issues/3)
- Add Incognito/Private mode setting
- Add [User Data Directory](https://chromium.googlesource.com/chromium/src/+/master/docs/user_data_dir.md) setting [#4](https://github.com/lanly-dev/VSCode-LMPTM/issues/4)
- 11 files, 192KB, 1.41.0

## [1.1.0] - October 2019
### Added
- Use [Adblocker](https://github.com/cliqz-oss/adblocker/tree/master/packages/adblocker-puppeteer)
- Improve extension package size with [Webpack](https://webpack.js.org/) from 4.98MB (v1.0.0) to 226.1KB (v1.1.0)
- 11 files, 226.28KB, 1.39.0

## [1.0.0] - August 2019
- Initial release
- Initial release
- 2117 files, 5.09MB, 1.35.0
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,26 @@ Supports Soundcloud, Spotify and Youtube

## Requirements

Required Chrome or Chromium browser
Required Chromium-based browser

## Extension Settings

None
* `lmptm.browserPath`: Specifies custom browser executable file path.
* `lmptm.incognitoMode`: Specifies whether to launch browser in incognito/private mode.
* `lmptm.userData`: Specifies if the extension could store browser's user data, if enabled, user data directory setting is required.
* `lmptm.userDataDirectory`: Specifies [user data directory](https://chromium.googlesource.com/chromium/src/+/master/docs/user_data_dir.md), this will be ignored if **User Data** setting disabled.

## Known Issues

Errors may pop up (mostly happen in console) or functioning incorrectly if navigating too fast

## Release Notes

### 1.2.0
- Able to launch other Chromium-based browsers
- Able to launch browser in Incognito/Private mode
- Able to save user profile through [user data directory](https://chromium.googlesource.com/chromium/src/+/master/docs/user_data_dir.md)

### 1.1.0
- Use adblocker
- Tiny extension size
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"displayName": "Let Me Play The Music",
"description": "Control playback from the popular music sites",
"homepage": "https://github.com/lanly-dev/VSCode-LMPTM",
"version": "1.1.0",
"version": "1.2.0",
"publisher": "lanly-dev",
"engines": {
"vscode": "^1.39.0"
"vscode": "^1.41.0"
},
"extensionKind": [
"ui"
Expand Down Expand Up @@ -44,12 +44,12 @@
"lmptm.incognitoMode": {
"type": "boolean",
"default": true,
"markdownDescription": "Specifies whether to make browser in incognito/private mode."
"markdownDescription": "Specifies whether to launch browser in incognito/private mode."
},
"lmptm.userData": {
"type": "boolean",
"default": false,
"markdownDescription": "Specifies if the extension could store browser's user-data."
"markdownDescription": "Specifies if the extension could store browser's user data, if enabled, user data directory setting is required"
},
"lmptm.userDataDirectory": {
"type": "string",
Expand Down

0 comments on commit 9ecfa45

Please sign in to comment.