soiz1 commited on
Commit
8762264
·
verified ·
1 Parent(s): 0c7c488

Create src/addons/addons/waveform-chunk-size/_manifest_entry.js

Browse files
src/addons/addons/waveform-chunk-size/_manifest_entry.js ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* generated by pull.js */
2
+ const manifest = {
3
+ "noTranslations": true,
4
+ "name": "High-quality sound editor waveform",
5
+ "description": "Makes the quality of the sound editor's waveform preview configurable, at the cost of performance.",
6
+ "credits": [
7
+ {
8
+ "name": "JeremyGamer13"
9
+ },
10
+ {
11
+ "name": "SharkPool-SP",
12
+ "link": "https://github.com/SharkPool-SP"
13
+ },
14
+ ],
15
+ "userscripts": [
16
+ {
17
+ "url": "userscript.js"
18
+ }
19
+ ],
20
+ "info": [
21
+ {
22
+ "text": "Lower numbers means more samples are used to make the waveform, which may impact performance to the point of crashing the editor.",
23
+ "id": "qualityWarning"
24
+ }
25
+ ],
26
+ "settings": [
27
+ {
28
+ "name": "Use every (n)th sample",
29
+ "id": "quality",
30
+ "type": "integer",
31
+ "min": 1,
32
+ "max": Number.MAX_SAFE_INTEGER,
33
+ "default": 64
34
+ }
35
+ ],
36
+ "dynamicEnable": true,
37
+ "dynamicDisable": true,
38
+ "enabledByDefault": false,
39
+ "tags": [
40
+ "new"
41
+ ]
42
+ };
43
+ export default manifest;