0.2.4 fixes track added date preservation during acquire, adds browser_set_cookies for setting cookie flags, and stabilizes the browser_open method under its new name _browse.
What’s New
Fix: Track Added Date Preserved After Acquire
Acquiring a track no longer overwrites its Added date. Previously, completing an acquire would reset the timestamp to the current time, making it impossible to keep an accurate record of when a track was originally added to your library. The date is now preserved through the full acquire lifecycle.
Plugin Method: browser_set_cookies
Plugins can now inject cookies into the embedded browser using the new browser_set_cookies method. This is practical for setting flags like preferred language. Pass a list of cookie objects and they will be applied before the next browser request.
Stabilized: browser_open → _browse
The browser_open plugin method has been promoted and renamed to _browse. This is now the stable API for opening a URL in the embedded browser from a plugin. The old browser_open is now obsolete — update any custom plugins accordingly.
Update is available now through the app.
— The Kombiner Team