Skip to content

Commit 47b3038

Browse files
committed
Update doc
1 parent d1f976b commit 47b3038

File tree

4 files changed

+54
-18
lines changed

4 files changed

+54
-18
lines changed

CHANGELOG.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,39 @@ 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+
## [Future Works]
7+
- Generate spectrogram faster than real time
8+
- Playing effect provided by Web Audio API
9+
- Playback time slider
10+
- More colors
11+
- Support more audio formats
12+
- [Display duration on treeview](https://code.visualstudio.com/api/extension-guides/tree-view#view-actions)
13+
- Minimize package size --> [blocked that cause by Pugjs](https://github.com/pugjs/pug/issues/2889#issuecomment-456477196) due to its Uglify.js dependency.
14+
- Switch back [suspend/resume](https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/AudioContext) instead using start/stop --> blocked that cause by Chrome? since Firefox works fine
15+
- Realtime input mode
16+
17+
## [1.1.0] - December 2019
18+
- Remove Semantic
19+
- Update CSS
20+
- Display duration
21+
- Minor bugfixes
22+
- Switch method suspend/resume --> start/stop []
23+
- 3524 files, 4.33MB
24+
625
## [1.0.1] - September 2019
726
- Fixed path issue for other OS platforms
827
- Set VS Code version requirement to 1.40 - Wait for VS Code to update to newer Chrome version
28+
- 6723 files, 10.2MB
929

1030
## [1.0.0] - May 2019
11-
- Initial release
31+
- Initial release
32+
- 6725 files, 10.2MB
33+
34+
### References
35+
```
36+
https://stackoverflow.com/a/37770048/7526434
37+
https://stackoverflow.com/a/18562855/7526434
38+
https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API
39+
https://github.com/mdn/webaudio-examples/blob/master/audiocontext-states/index.html
40+
https://wbrickner.wordpress.com/2016/09/27/awesome-js-html-spectrogram/
41+
```

README.md

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,36 @@
44

55
This is an extension that play and display spectrogram of mp3 audio files.
66

7-
![](images/spec-sc1.PNG)
7+
![](images/spec-sc2.PNG)
88

99
## Known Issues
10-
Limited to mp3
10+
- Limited to mp3
11+
- Only works with [VS Code - exploration](https://github.com/microsoft/vscode/issues/76069)
1112

1213
## Release Notes
1314

14-
### 1.0.1
15+
### 1.1.0
16+
- Improve UI
17+
- Fixed pause/resume
18+
- Fixed minor bugs
19+
- Refactor code
20+
21+
Note:
22+
```
23+
- Still, this extension is only working in exploration build, tested on 1.41 E7|C78 😥
24+
- Not so sure why it doesn't work in stable/insider build on E6|C76 according to 1.0.1 note 🤔
25+
```
1526

27+
### 1.0.1
1628
Fixed path issue other OS platforms (tested on MacOS and Ubuntu)
1729

18-
#### Note
30+
Note:
31+
```
1932
Pumped up the VS Code requirement to 1.40 due to Web Audio API bug, probably from Chrome
2033
- 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)
2134
- The extension is working (except the pause/resume function - API bug again) on VS code exploration build 1.37 with ELectron 6 | Chrome 76
2235
- This extension will not be working for a while 😥
36+
```
2337

2438
### 1.0.0
25-
2639
Initial release of Spectrogram
27-
28-
### References
29-
https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API
30-
https://github.com/mdn/webaudio-examples/blob/master/audiocontext-states/index.html
31-
https://wbrickner.wordpress.com/2016/09/27/awesome-js-html-spectrogram/

images/spec-sc2.PNG

479 KB
Loading

package.json

Lines changed: 5 additions & 7 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.1",
5+
"version": "1.1.0",
66
"publisher": "lanly-dev",
77
"engines": {
8-
"vscode": "^1.40.0"
8+
"vscode": "^1.41.0"
99
},
1010
"categories": [
1111
"Other"
@@ -29,12 +29,10 @@
2929
]
3030
}
3131
},
32-
"scripts": {
33-
"test": "node ./test/runTest.js"
34-
},
32+
"scripts": {},
3533
"devDependencies": {
36-
"@types/node": "^12.12.14",
37-
"@types/vscode": "^1.40.0",
34+
"@types/node": "^12.12.17",
35+
"@types/vscode": "^1.41.0",
3836
"eslint": "^6.7.2",
3937
"webpack": "^4.41.2",
4038
"webpack-cli": "^3.3.10"

0 commit comments

Comments
 (0)