REW Beta Release REW API beta releases

when change with the cursor up down key the measurement, the time of the waterfall value cursor stay not the same(i did not move it). is it possible that time stay the same to compare easy how much db diffrence. see the example of 2 mm nearfield measure of the focal back and focal side and bassport. on all measures you see when time is diffrent. and btw here you can see how worse case resonances speakers have, because nobody test that.

back measure.jpg


focal side measure.jpg


bass port.jpg
 
Huge thanks to John for REW!
Found a font issue in the Simplified Chinese UI on macOS 26 (JRE 11) — some Latin letters/digits render as blanks (e.g. SOUTHPARK → OUTH ARK). Cause and a working fix in the slides below.
hopefully useful for an official change.

REW中文显示问题.001.jpeg

REW中文显示问题.002.jpeg

REW中文显示问题.003.jpeg



Bash:
#!/bin/bash
# Fix dropped Latin glyphs in REW's Simplified Chinese UI (macOS).
# Save this file as UTF-8 (it contains a CJK font name).
set -euo pipefail

JAR="/Applications/REW/RoomEQ_Wizard_obf.jar"     # adjust if your path differs
THEMES=(DBLaf DBLightLaf FlatDarkLaf FlatLaf FlatLightLaf)
FONT='defaultFont = "苹方-简", "PingFang SC", "Hiragino Sans GB"'

# 1) One-time backup
[ -f "$JAR.orig.bak" ] || cp "$JAR" "$JAR.orig.bak"

# 2) Inject defaultFont into each FlatLaf theme, then repackage
WORK="$(mktemp -d)"; cd "$WORK"
unzip -o "$JAR" 'roomeqwizard/themes/*.properties' >/dev/null
for t in "${THEMES[@]}"; do
  printf '\n%s\n' "$FONT" >> "roomeqwizard/themes/$t.properties"
done
zip "$JAR" roomeqwizard/themes/*.properties >/dev/null
cd - >/dev/null; rm -rf "$WORK"

echo "Done. Fully quit REW (Cmd-Q) and relaunch."
echo "Revert: cp \"$JAR.orig.bak\" \"$JAR\""
 
Back
Top