Skip to content

Commit 3896bc7

Browse files
committed
Update README
1 parent 8d73772 commit 3896bc7

File tree

6 files changed

+28
-10
lines changed

6 files changed

+28
-10
lines changed

.gitignore

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
*.mp3
33
*.ogg
44
*.vsix
5-
icon/res
6-
media
7-
node_modules
5+
icon/res/
6+
node_modules/
87
package-lock.json
9-
src/ref
8+
ref/

.vscodeignore

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
**/*.map
22
**/.eslintrc.json
33
**/jsconfig.json
4+
.eslintignore
5+
.eslintrc.json
46
.git
57
.gitignore
6-
.vscode-test/
78
.vscode/
89
*.mp3
910
*.ogg
1011
icon/res/
12+
jsconfig.json
1113
package-lock
14+
ref/
1215
test/
13-
vsc-extension-quickstart.md
16+
vsc-extension-quickstart.md
17+
webpack.config.js

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,9 @@ All notable changes to the "Spectrogram" extension will be documented in this fi
33

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

6+
## [1.0.1] - September 2019
7+
- Fixed path issue for other OS platforms
8+
- Set VS Code version requirement to 1.40 - Wait for VS Code to update to newer Chrome version
9+
610
## [1.0.0] - May 2019
711
- Initial release

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,21 @@ Limited to mp3
1111

1212
## Release Notes
1313

14+
### 1.0.1
15+
16+
Fixed path issue other OS platforms (tested on MacOS and Ubuntu)
17+
18+
#### Note
19+
Pumped up the VS Code requirement to 1.40 due to Web Audio API bug, probably from Chrome
20+
- Just right after the 1st release, the Web Audio API stops working on 1.30 to 1.39 of VS code (VS code 1.38 stable build is on Electron 4 | Chrome 69)
21+
- The extension is working (except the pause/resume function - API bug again) on VS code exploration build 1.37 with ELectron 6 | Chrome 76
22+
- This extension will not be working for a while 😥
23+
1424
### 1.0.0
1525

1626
Initial release of Spectrogram
1727

1828
### References
29+
https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API
1930
https://github.com/mdn/webaudio-examples/blob/master/audiocontext-states/index.html
2031
https://wbrickner.wordpress.com/2016/09/27/awesome-js-html-spectrogram/

jsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"node_modules",
1212
"src/bundle.js",
1313
"src/controller.js",
14-
"src/ref"
14+
"ref"
1515
]
1616
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
"name": "spectrogram",
33
"displayName": "Spectrogram",
44
"description": "Realtime Spectrogram",
5-
"version": "1.0.0",
5+
"version": "1.0.1",
66
"publisher": "lanly-dev",
77
"engines": {
8-
"vscode": "^1.38.0"
8+
"vscode": "^1.40.0"
99
},
1010
"categories": [
1111
"Other"
@@ -51,6 +51,6 @@
5151
},
5252
"repository": {
5353
"type": "git",
54-
"url": "https://github.com/lanly-dev/VSCode-Spectrogram"
54+
"url": "https://github.com/lanly-dev/VSCode-Spectrogram.git"
5555
}
5656
}

0 commit comments

Comments
 (0)