Skip to content

Commit 9ecfa45

Browse files
committed
Update doc 1.2.0
1 parent e801056 commit 9ecfa45

3 files changed

Lines changed: 23 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,19 @@ All notable changes to the "LetMePlayTheMusic" extension will be documented in t
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7+
## [1.2.0] - December 2019
8+
### Added
9+
- Add browser execuatble file setting [#3](https://github.com/lanly-dev/VSCode-LMPTM/issues/3)
10+
- Add Incognito/Private mode setting
11+
- 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)
12+
- 11 files, 192KB, 1.41.0
713

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

1320
## [1.0.0] - August 2019
14-
- Initial release
21+
- Initial release
22+
- 2117 files, 5.09MB, 1.35.0

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,26 @@ Supports Soundcloud, Spotify and Youtube
1717

1818
## Requirements
1919

20-
Required Chrome or Chromium browser
20+
Required Chromium-based browser
2121

2222
## Extension Settings
2323

24-
None
24+
* `lmptm.browserPath`: Specifies custom browser executable file path.
25+
* `lmptm.incognitoMode`: Specifies whether to launch browser in incognito/private mode.
26+
* `lmptm.userData`: Specifies if the extension could store browser's user data, if enabled, user data directory setting is required.
27+
* `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.
2528

2629
## Known Issues
2730

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

3033
## Release Notes
3134

35+
### 1.2.0
36+
- Able to launch other Chromium-based browsers
37+
- Able to launch browser in Incognito/Private mode
38+
- Able to save user profile through [user data directory](https://chromium.googlesource.com/chromium/src/+/master/docs/user_data_dir.md)
39+
3240
### 1.1.0
3341
- Use adblocker
3442
- Tiny extension size

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"displayName": "Let Me Play The Music",
44
"description": "Control playback from the popular music sites",
55
"homepage": "https://github.com/lanly-dev/VSCode-LMPTM",
6-
"version": "1.1.0",
6+
"version": "1.2.0",
77
"publisher": "lanly-dev",
88
"engines": {
9-
"vscode": "^1.39.0"
9+
"vscode": "^1.41.0"
1010
},
1111
"extensionKind": [
1212
"ui"
@@ -44,12 +44,12 @@
4444
"lmptm.incognitoMode": {
4545
"type": "boolean",
4646
"default": true,
47-
"markdownDescription": "Specifies whether to make browser in incognito/private mode."
47+
"markdownDescription": "Specifies whether to launch browser in incognito/private mode."
4848
},
4949
"lmptm.userData": {
5050
"type": "boolean",
5151
"default": false,
52-
"markdownDescription": "Specifies if the extension could store browser's user-data."
52+
"markdownDescription": "Specifies if the extension could store browser's user data, if enabled, user data directory setting is required"
5353
},
5454
"lmptm.userDataDirectory": {
5555
"type": "string",

0 commit comments

Comments
 (0)