use SYSTEM > UPDATE when connected to wifi!
norns 2.4.5
- NEW levels: allow +6db, show unity on mix menu @tehn
- NEW params: remember last used pset @tehn
- NEW params: enable mapping of binary types @infinitedigits
- FIX softcut: don’t clamp record offset @zebra
- FIX menu: playmode lock bug @tehn
- FIX engine: deinit cleanup @tehn @zebra
- FIX musicutil: revert rendering of sharps @tehn
- FIX tape: create dir if user deleted it @zebra
extra gain
levels for output, input, monitor, engine, softcut, and tape now allow +6db gain.
note that it’s now easier to overload your outputs and also amplify unwanted noise, so be conscious of your gain structure. on the MIX page unity (0db) is indicated with a dash (and you can see the exact value on the PARAMS > LEVELS page… not that holding down K3 will give you fine control over E3 adjustments).
remember last paramset
the system now remembers the last used paramset for each script independently (stored in the scripts’ data folder). to use this functionality, the script needs to load the default paramset in init():
-- no args means read last-used pset
params:read()
-- the last-used number is saved in dust/data/(SCRIPT)/pset-last.txt
-- makes sense to put this at the end of your init!
function init()
print("welcome")
-- add params here!
params:read()
end
“last used” means last paramset saved or loaded via the param menu.
deprecated
for scripting, mix is deprecated. please address parameters for mixer
(output_level, input_level, monitor_level, engine_level, softcut_level, tape_level), eg:
params:set('output_level', value)
params:delta('monitor_level', delta)
params:get('tape_level')
update
we’re now up to 201115 given a few hotfixes for this version. thank you for your patience.