speaker-calibration 2.2.209 → 2.2.211
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitignore +81 -0
- package/dist/main.js +1223 -1223
- package/dist/main.js.LICENSE.txt +118 -118
- package/package.json +1 -1
- package/src/tasks/audioCalibrator.js +19 -4
- package/src/tasks/combination/combination.js +35 -20
- package/.github/workflows/update-phrases.yml +0 -37
- package/makefile +0 -74
package/.gitignore
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# Ignore files without extentions
|
|
2
|
+
*
|
|
3
|
+
!/**/
|
|
4
|
+
!*.*
|
|
5
|
+
# don't ignore dist/Procfile
|
|
6
|
+
!dist/Procfile
|
|
7
|
+
|
|
8
|
+
# ignore all files starting with . or ~
|
|
9
|
+
.*
|
|
10
|
+
~*
|
|
11
|
+
|
|
12
|
+
# ignore node/grunt dependency directories
|
|
13
|
+
node_modules/
|
|
14
|
+
dist/node_modules/
|
|
15
|
+
|
|
16
|
+
# ignore composer vendor directory
|
|
17
|
+
/vendor
|
|
18
|
+
|
|
19
|
+
# ignore components loaded via Bower
|
|
20
|
+
/bower_components
|
|
21
|
+
|
|
22
|
+
# ignore jekyll build directory
|
|
23
|
+
/_site
|
|
24
|
+
|
|
25
|
+
# ignore OS generated files
|
|
26
|
+
ehthumbs.db
|
|
27
|
+
Thumbs.db
|
|
28
|
+
|
|
29
|
+
# ignore Editor files
|
|
30
|
+
*.sublime-project
|
|
31
|
+
*.sublime-workspace
|
|
32
|
+
*.komodoproject
|
|
33
|
+
|
|
34
|
+
# ignore log files and databases
|
|
35
|
+
*.log
|
|
36
|
+
*.sql
|
|
37
|
+
*.sqlite
|
|
38
|
+
|
|
39
|
+
# ignore compiled files
|
|
40
|
+
*.com
|
|
41
|
+
*.class
|
|
42
|
+
*.dll
|
|
43
|
+
*.exe
|
|
44
|
+
*.o
|
|
45
|
+
*.so
|
|
46
|
+
|
|
47
|
+
# ignore packaged files
|
|
48
|
+
*.7z
|
|
49
|
+
*.dmg
|
|
50
|
+
*.gz
|
|
51
|
+
*.iso
|
|
52
|
+
*.jar
|
|
53
|
+
*.rar
|
|
54
|
+
*.tar
|
|
55
|
+
*.zip
|
|
56
|
+
|
|
57
|
+
# ignore private/secret files
|
|
58
|
+
*.der
|
|
59
|
+
*.key
|
|
60
|
+
*.pem
|
|
61
|
+
|
|
62
|
+
# ingnore CSV files
|
|
63
|
+
*.csv
|
|
64
|
+
|
|
65
|
+
# ignore library files
|
|
66
|
+
kfr-master
|
|
67
|
+
kissfft
|
|
68
|
+
|
|
69
|
+
# --------------------------------------------------------
|
|
70
|
+
# BEGIN Explictly Allowed Files (i.e. do NOT ignore these)
|
|
71
|
+
# --------------------------------------------------------
|
|
72
|
+
|
|
73
|
+
# track these files, if they exist
|
|
74
|
+
!.gitignore
|
|
75
|
+
!.editorconfig
|
|
76
|
+
!.phpcs.xml.dist
|
|
77
|
+
!.env.example
|
|
78
|
+
!.eslintrc.json
|
|
79
|
+
!.prettierrc
|
|
80
|
+
!.eslintignore
|
|
81
|
+
!.prettierignore
|