Skip to content

Commit

Permalink
v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
9001 committed Sep 9, 2021
1 parent 633b1f0 commit ca6ec9c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion copyparty/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# coding: utf-8

VERSION = (1, 0, 1)
VERSION = (1, 0, 2)
CODENAME = "sufficient"
BUILD_DT = (2021, 9, 9)

Expand Down
10 changes: 5 additions & 5 deletions copyparty/web/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -1091,7 +1091,7 @@ var audio_eq = (function () {
})();
console.log('eq cali: ' + r.cali);

var mp = r.cali < 1.05;
var e1 = r.cali < 1.05;

var cfg = [ // hz, q, g
[31.25 * 0.88, 0, 1.4], // shelf
Expand All @@ -1103,10 +1103,10 @@ var audio_eq = (function () {
[1000, 0.9, 1.1],
[2000, 0.9, 1.105],
[4000, 0.88, 1.05],
[8000 * 1.006, 0.73, mp ? 1.24 : 1.2],
[16000 * 0.89, 0.7, mp ? 1.26 : 1.2], // peak
[16000 * 1.13, 0.82, mp ? 1.09 : 0.75], // peak
[16000 * 1.205, 0, mp ? 1.9 : 1.85] // shelf
[8000 * 1.006, 0.73, e1 ? 1.24 : 1.2],
[16000 * 0.89, 0.7, e1 ? 1.26 : 1.2], // peak
[16000 * 1.13, 0.82, e1 ? 1.09 : 0.75], // peak
[16000 * 1.205, 0, e1 ? 1.9 : 1.85] // shelf
];

try {
Expand Down

0 comments on commit ca6ec9c

Please sign in to comment.