musikcube/CHANGELOG.txt

1629 lines
63 KiB
Plaintext
Raw Normal View History

2020-11-17 06:37:19 +00:00
0.96.0
* improved input latency, especially related to mouse events.
--------------------------------------------------------------------------------
2020-11-09 08:31:35 +00:00
0.95.0
* added support for searching by regex; press `M-m` in track or filter views to
toggle between regex and legacy searching. while regex is enabled, the search
box will have a blue (instead of red) border.
* relaxed search to ignore accents. for example: 'À', 'Á`, 'Â`, etc are all
considered equivalent to the english 'A', and vice versa.
* fixed a bug where remote library ports greater than 32767 caused the app to
crash.
2020-11-09 08:31:35 +00:00
--------------------------------------------------------------------------------
2020-07-27 05:55:28 +00:00
0.94.0
* added support for remote libraries (i.e connecting to a musikcube app or
daemon running on a different machine) to the terminal client:
- updated nearly all queries against the database in the app to be
asynchronous. this was not necessary before because most local DB queries
are extremely fast; however, when queries are sent over the network that may
not be the case. there are still a small handful of queries made on the UI
thread, but all of the really egregious ones have been fixed.
- added a new `ISerializableQuery` interface that defines how a query can be
serialized and deserialized. all queries now implement this interface.
- defined a new `SendRawQuery` method to `IMetadataProxy` that is used by the
server to send serialized queries to `musikcore`, and then respond with
serialized results to the calling client.
- added `WebSocketClient` that is used to connect to a `musikcube` server and
authenticate. it takes serialized queries from the client and sends them to
the server, then parses responses and unpacks the serialized result.
- added a new `RemoteLibrary` implementation of `ILibrary`. it serializes
queries and sends them to the server via `WebSocketClient`. once complete,
`WebSocketClient` hands the serialized result back to `RemoteLibrary`, which
then deserializes the result into the original query and notifies the caller.
- added `MasterLibrary` in the same vein as `MasterTransport`. it's more a
less a `pimpl` that allows us to switch the selected library under the hood
without a majority of the app knowing or caring.
- revamped the settings screen to allow selecting between local and remote
libraries.
- added a new screen that is displayed when a remote library is disconnected,
and shows some diagnostic information.
- added a new banner on the top of the app when connected to a remote library.
- added buffering states to Stream/Transport/PlaybackService and friends.
- updated the transport window to display buffering status when appropriate.
* fixed a number of bugs in `cursespp` related to nested layout focusing.
* fixed buggy visibility change events in `cursespp::Window` and removed old
hacked-up code that was working around the problems in the app layer.
* fixed a handful of `KeyPress()` propagation bugs across the app.
* found and fixed a handful of bugs in `HttpDataStream` that have been laying
dormant, waiting to be exercised.
* fixed bugs related to `LruDiskCache` parsing and pruning.
* fixed potential memory leaks in GmeDataStream and OpenMptDataStream
* fixed some weird edge-casey command bar focus issues.
* finally renamed `src/core` to `src/musikcore`
* added a ja_JP locale (trackiss)
2020-11-01 19:15:49 +00:00
* updated ru_RU locale (adem4ik)
* fixed a bug where on-demand mp3 transcoding wasn't working properly. (other
formats were fine)
* rearranged the settings window to ensure everything fits properly in an 80x24
terminal
* fixed some bugs in `MessageQueue` by now requiring explicit `IMessageTarget`
registration and unregistration for all messages. there was a small time
window (read: race condition) where it was possible to attempt to dispatch
messages to a destroyed target.
* fixed a handful of components that were running their initial queries twice
or more as they were being initialized.
* updated copyright date across all source files
* upgraded a number of tools and dependencies:
- migrated to VS2019 for Windows musikcube builds
- migrated to Android Studio 4.1 for musikdroid builds
- upgraded `websocketpp` and `json.hpp` and moved them out of `src/plugins`
and into `src/3rdparty` so they can be used by the main app.
- upgraded to boost 1.74.0
- upgraded to openssl 1.1.1h
2020-07-27 05:55:28 +00:00
* fixed a bug in the indexer that could prevent custom sources from getting
interrupted correctly.
* fixed a bug in libmicrothttpd version detection.
* fixed a bug where switching to a different output device while paused would
cause playback to resume.
* moved all shell scripts to their own subdirectory so they don't pollute the
root.
* fixed an old bug in `LocalLibrary` that could cause query result callbacks
to fire twice.
* added the ability to limit the number of simultaneous audio transcoders in
the server.
* added support for Ubuntu Groovy
* various other minor fixes that were exposed by making queries asynchronous by
default.
2020-07-27 05:55:28 +00:00
--------------------------------------------------------------------------------
2020-07-12 01:28:46 +00:00
0.93.1
server:
* fixed compile error on some platforms caused by updated libmicrohttpd APIs
--------------------------------------------------------------------------------
0.93.0
musikcube:
* added a new decoder based on `libopenmpt` to support playing mod/tracker
files.
* fixed a bug when browsing directories that contain entries from custom
2020-07-11 06:31:14 +00:00
`IndexerSource` plugins.
* fixed directory scanning bugs related to NFS (and potentially other
filesystem) volumes.
2020-07-11 06:31:14 +00:00
* fixed a nasty race condition in the MPRIS plugin that could cause the app to
crash on certain events.
* compile against the source version of taglib to get a number of important
bug fixes that haven't been released yet.
* fixed a memory leak in the GME plugin when aborting a directory scan
* fixed a bug that could cause advanced setting integer values to not save
properly.
* reduced Indexer log spew.
* removed more unnecessary boost cruft in the Indexer
* fixed an Indexer bug that could result in tracks not getting added to the
library.
* fixed a bug where the Indexer couldn't always be interrupted while scanning.
2020-07-12 00:18:32 +00:00
* upgraded snap from core18 to core20.
2020-07-11 06:31:14 +00:00
musikdroid:
* upgrade to Android Studio 4.0 and related tooling
--------------------------------------------------------------------------------
2020-05-26 02:38:41 +00:00
0.92.1
server:
* fixed a bug where HTTP authentication was not functioning properly and could
allow unauthenticated clients to download tracks.
--------------------------------------------------------------------------------
2020-05-25 05:15:38 +00:00
0.92.0
musikcube:
* fixed bug in the ffmpeg decoder where
* added three new hotkeys:
- `M-P`: start playback from the top of the current list of tracks
- `]`: jump to the next group in the current track list
- `[`: jump to the previous group in the current track list
* added the ability to disable terminal title upgrades in `advanced settings`
* updated ru_RU localization (adem4ik)
* optimized png files (adem4ik)
* added zn_CN localization (Siheyuan98)
* fixed a bug where binary stripping was broken for out of tree builds
* added the ability to disable binary stripping via DISABLE_STRIP=true flag
* fixed `archive-win.sh` to use unix line endings
2020-05-25 05:15:38 +00:00
musikdroid:
* fixed a bug when downloading tracks without metadata, or metadata that
contains invalid path characters.
* fixed a bug where track downloads may get corrupted, and/or assigned an
incorrect file extension
2020-05-25 07:11:29 +00:00
* fixed a bug where FLAC decoding would crash the app
2020-05-25 05:15:38 +00:00
* upgraded to the latest version of Android Studio
* upgraded various dependencies
server:
* added new `X-musikcube-File-Extension` HTTP response header that clients can
use as a hint when naming downloaded files.
2020-05-25 05:15:38 +00:00
--------------------------------------------------------------------------------
2020-04-12 19:56:52 +00:00
0.90.1
(windows-only release)
musikcube:
* fixed crash in win32 server caused by an incorrectly-compiled zlib
--------------------------------------------------------------------------------
0.90.0
musikcube:
* included a new `musikcube-cmd.exe` binary that can be run from a standard
command-line session in Windows, including cmd.exe, PowerShell, Windows
Terminal, or ConEmu.
* added an OpenBSD port (castagnini)
* added the ability to build as a `snap` package.
* fixed build issues for platforms with ncurses and tinfo split (tobbez)
* fixed an issue where percent signs in the transport weren't getting properly
escaped (the-eater)
* fixed an issue where we may not properly detect UTF8 terminals in some cases
* added true color support for macOS Terminal.app (previously was only
supported in iTerm)
* fixed a handful of directory browsing bugs reported by (pcapiod)
* fixed a bug where we weren't always properly reporting track metadata in the
MPRIS plugin.
* added a way to add an `audd.io` API key, if you have one, to fetch lyrics
* updated session data to be stored in its own config file
* merged upstream PDCurses changes to fix a handful of minor bugs and better
support Windows Terminal
* fixed a couple null pointer dereferences, and a couple instances where we
were using variables before they were initialized (detected with valgrind)
* fixed some weird redraw issues on some platforms with ncurses 6.2
* fixed some bugs where we weren't always compiling the MPRIS plugin for our
binary packages
2020-04-12 04:15:54 +00:00
* fixed a number of ALSA and PulseAudio bugs when devices are not available
or there is resource contention
musikcore:
* added a very basic C API for interacting with the SDK. see `musikcore_c.h`
and the companion project `core_c_demo`.
* fixed an old bug in the `indexer` that would report an incorrect updated file
count.
* added the ability to build a standalone `musikcore.dll` on Windows that can
be used with the new C API for easy integration with other languages or
environments.
* fixed a bug where we may crash when playing 0-length files.
* fixed an old bug where playback state would get out of sync if the user seeked
while paused.
* cleaned up SDK constants
musikdroid:
* updated crash report tracking to use Firebase Crashlytics
* upgraded ExoPlayer
* upgrade to Android Studio 3.6
server:
* tweaked the threading model to better support multiple concurrent connections
* fixed a bug where we may attempt to transcode the same file multiple times
simultaneously; now if there's a transcode for a shared resource in progress
we'll just wait until the original operation completes
--------------------------------------------------------------------------------
0.83.0
musikcube:
* #309: fixed a minor CMake configuration bug that could cause some formats
(e.g. `opus`) to not get recognized on some platforms (e.g. `linux`).
--------------------------------------------------------------------------------
0.82.0
musikcube:
* Fixed a small bug that could cause dialogs to get partially obscured on
certain versions of curses.
--------------------------------------------------------------------------------
0.81.0
musikcube:
* Added an `advanced setting` to hide the star rating column
musikcore:
* #308: audio decoding doesn't work with older versions of `ffmpeg`
* #307: database initialization issue (hectorm)
* #304: Updated `ru_RU` localization (adem4ik)
--------------------------------------------------------------------------------
0.80.0
musikcube:
* Added `zh_CN` localization (Siheyuan98)
* Fixed #287: Window size not properly restored in Windows build
* Fixed #276: Added the ability to rate tracks via `r` shortcut in all track
list views.
* Fixed #260: Added the ability to sort track list results via `^S"` in search
and browse views
* Fixed #173: Show song artist and title in the terminal titlebar
* Fixed #299: Windows drives disappear in directory browser after checking/
unchecking "show dotfiles" option.
* Fixed #257: Added an option to hide the command bar when not in command mode
* Backported `SchemaOverlay` from upstream `cursespp` and use it in
`PluginsOverlay`.
* Added an `advanced settings` to the settings view and re-arranged things a
bit.
musikcore:
* Fixed #290: A brand new transcoder implementation powered by ffmpeg that
supports `ogg`, `opus`, `aac`, `flac`, `wavepack`, and `wma` files. `mp3`
transcoding is still handled by `libmp3lame`.
* Fixed a bug in `FfmpegDecoder` that could result in a pre-mature / incorrect
`EOF` error.
* Fixed #294: we weren't properly querying the local DB for lyrics.
* Fixed #293: bug parsing disc number in AAC files.
* Fixed #298: bug decoding APE files. changes also include a complete refactor
and overhaul of the `FfmpegDecoder` plugin to use modern, non-deprecated
ffmpeg APIs.
* Fixed #160: added support for WAV and AIF files.
* Fixed #133: properly label and sort blank / empty category names as
`[unknown]` and ensure they are returned at the bottom of their respective
lists.
musikdroid:
* Allow for transcoder format selection in `musikdroid`'s settings screen.
(Part of #290)
* Upgraded `musikdroid` to use the latest stable Android Studio and other
dependencies (ExoPlayer, AndroidX, etc), plus a bunch of compiler warning
fixes.
* Fixed #296: notification not dismissed on stopping playback on some devices
running Android 10
--------------------------------------------------------------------------------
0.70.1
musikcube:
* new MPRIS plugin for controlling playback on Linux (brunosmmm)
* 64-bit binaries for Windows (note: Milkdrop only supports 32-bit)
* ru_RU update (adem4ik)
* it_IT update (alexpovel)
* chocolately install instructions (majkinetor)
* FreeBSD install instructions (0mp)
* Dependency upgrades on Windows (libcurl, PDCurses, libogg, LAME, ffmpeg)
* A couple small tweaks / fixes to widget focus behavior
2019-10-27 05:12:21 +00:00
* Raspberry Pi 4 support
* Debian Buster support
* Ubuntu Eoan support
musikdroid:
* Code cleanup and refactors with clearer names for major subsystems
* Dependency upgrades and migration to AndroidX
--------------------------------------------------------------------------------
0.65.2
musikcube:
* updated `ru_RU` locale (adem4ik)
musikcore:
* renamed some classes:
* `ISimpleDataProvider` -> `IMetadataProxy`
* `LocalSimpleDataProvider` -> `LocalMetadataProxy`
musikdroid:
* renamed some classes:
* `IDataProvider` -> `IMetadataProxy`
* `RemoteDataProvider` -> `RemoteMetadataProxy`
* `DataProviderMixin` -> `MetadataProxyMixin`
--------------------------------------------------------------------------------
2019-06-17 01:55:41 +00:00
0.65.1
musikcube:
* manually patched `websocketpp` to fix boost 1.70 compatibility. this allows
us to compile on macOS again. for more information, see here:
https://github.com/zaphoyd/websocketpp/pull/814
--------------------------------------------------------------------------------
2019-04-02 07:07:49 +00:00
0.65.0
2019-04-08 06:17:33 +00:00
musikcube:
* added lyrics support (powered by audd.io)! access lyrics for the currently
playing song by pressing ^L.
* removed vcredist runtime requirement on windows
* added support for Ubuntu Disco
* added support for Fedora 30
2019-04-02 07:07:49 +00:00
2019-04-08 06:17:33 +00:00
musikdroid:
* added a new "offline" tab to the browse screen
* moved settings and other overflow options to the left side of the main
screen's toolbar.
2019-04-02 07:07:49 +00:00
* added settings > advanced > diagnostics screen to show app runtime, wakelock
acquisition time and status, and service status.
* added a "download" option for song rows -- this can be used to download songs
for ringtones, or for playback in offline players.
2019-04-02 07:07:49 +00:00
* added the ability to seek playback on secondary screens
* removed some old settings that are no longer useful
2019-04-02 07:07:49 +00:00
* updated to AndroidX
--------------------------------------------------------------------------------
0.64.1
2019-03-30 05:22:15 +00:00
win32 and android only release
musikcube:
* fixed a bug where notification tray icon wasn't getting set properly.
2019-03-30 05:22:15 +00:00
musikdroid:
* work around android platform bug where, on some devices, pressing pause
on a headset, followed by resume within a couple seconds, will not work
properly.
--------------------------------------------------------------------------------
0.64.0
musikcube:
* migrated *nix data directory from $HOME/.musikcube to $HOME/.config/musikcube
2019-03-17 22:40:03 +00:00
* fixed a bug in the Windows build where non-Latin character input was not
working properly in all cases.
* added a search "hint" in filter and category library views
2019-03-30 05:22:15 +00:00
* fixed some super old bugs related to global focus tracking in cursespp
* fixed cursespp::TextInput::SetHint()
* redirect stderr output to ~/.config/musikcube/stderr.txt instead of /dev/null.
bonus: works on win32 now, too.
* merged upstream PDCurses into our own custom fork (win32 only)
2019-03-16 23:56:55 +00:00
* updated ru_RU translation (adem4ik)
2019-03-17 22:40:03 +00:00
* fixed the `gruvbox_dark` theme's focused text input color
2019-03-16 23:56:55 +00:00
musikdroid:
* fixed a crash when trying to randomize a play queue of exactly 2 tracks.
--------------------------------------------------------------------------------
0.63.0
musikcube:
* fixed a bug in `pulseout` where we were unable to recover from restarting the
`pulseaudio` daemon without restarting the app (or switching output plugins)
* fixed bug where `opus` files with an `ogg` extension weren't being detected
propertly. added scaffolding for fixing this for other formats in the future.
* fixed a Win32 file permission bug in `gmedecoder`
* fixed FreeBSD user agent when performing update check
* updated ru_RU translation (adem4ik)
* fixed a missing sndio #include (Kistelini)
musikdroid:
* changed general music browse experience to be tab-based with with modern
scrolling behaviors. this results in fewer clicks to find music and more
screen real estate.
2019-02-18 22:43:28 +00:00
* fixed elusive bug that would cause lock screen controls to stop functioning
sometimes, on some devices.
* massive cleanup and refactor to old code, making it more modular and easier
to compose.
--------------------------------------------------------------------------------
2019-01-25 18:02:03 +00:00
0.62.2
2019-01-25 17:34:01 +00:00
macOS only release.
musikcube:
2019-01-25 18:02:03 +00:00
* added missing `gnutls` dependency to project for homebrew builds
* compile `libmicrohttpd` from source for binary distributions on macOS
2019-01-25 17:34:01 +00:00
--------------------------------------------------------------------------------
2019-01-20 02:13:47 +00:00
0.62.0
musikcube:
* fixed a crash in `CoreAudioOut` when parsing unnamed output devices
(Porco-Rosso)
* fixed a crash in `macosmediakeys` initialization (Porco-Rosso)
* fixed a bug where long path names could crash on Linux systems (the-eater)
2019-01-24 01:23:54 +00:00
* removed bash dependency from wrapper scripts (hectorm)
musikcubed:
* added `--foreground` command line argument that instructions the daemon to
not not `fork()`, and run in the foreground instead.
2019-01-20 02:13:47 +00:00
--------------------------------------------------------------------------------
0.61.0
musikcube:
* added chiptunes support via Game_Music_Emu! supported formats include: vgm,
gym, spc, sap, nsfe, nsf, ay, gbs, hes, and kss
* added `macmediakeys` plugin; macOS users can play/pause/resume/skip tracks
using the media keys on the keyboard.
* substantially improved metadata indexing performance for large collections
* ensure all utf8 strings are sanitized immediately before inserting them into
the database. this wasn't being done properly before, and could lead to weird
crashes when trying to display metadata.
* added the ability to disable album artist -> artist metadata fallback.
set `DisableAlbumArtistFallback` to `false` in `~/.settings.json` (the-eater)
* many additional small indexer bug fixes
musikcore:
* added the concept of "infinite" streams
sdk:
* `IIndexerSource::Scan()` now receives a list of source paths
* added `IIndexerSource::NeedsTrackScan()`. implementations may override this
and return false to provide a hint to the indexer engine that the plugin
does not need to receive a callback to update each individual track
* added `IIndexerWriter::CommitProgress()`. by default the indexer creates and
commits a single transaction per source; plugins can manually commit progress
using this method.
* added `IIndexerWriter::GetLastModifiedTime()` so plugins can query the last
modified date for a track by `externalId`.
--------------------------------------------------------------------------------
0.60.2
FreeBSD only release.
musikcube:
* *finally* fixed the FreeBSD scrollbar crasher. yeesh.
* fixed a bug in the `sndio` output plugin that may cause the first few buffers
of audio data to be discarded when manually changing tracks.
--------------------------------------------------------------------------------
0.60.1
musikcube:
* fixed m4a playback
* added support for aac and alac playback
2019-01-02 06:37:17 +00:00
* refactored `sndio` output to be more resilient against buggy drivers
* added support for ALSA in FreeBSD via `-DENABLE_ALSA=true` CMake switch.
musikdroid:
2019-01-02 06:37:17 +00:00
* fixed crash on startup on some versions of Android. ugh.
--------------------------------------------------------------------------------
2018-12-27 02:10:36 +00:00
0.60.0
musikcube:
* added an equalizer! press `ctrl+e` to activate and configure.
* removed most default decoder plugins and replaced them with one powered by
`ffmpeg`. this adds support for `opus`, `wavepack`, `musepack` and
`windows media audio` files.
* added a new `enable transparency support` in settings that can be enabled by
users who have a terminal with a transparent/translucent background.
* added the ability to customize the key used to quit the app. it is currently
not exposed in the ui, but it can be changed by editing
`~/.musikcube/settings.json` and updating the `AppQuitKey`.
* scrapped and re-implemented the debug log viewer, accessible via `ctrl+~`
2018-12-28 22:26:58 +00:00
* added feodra 29 support. (dvdmuckle)
2018-12-27 02:10:36 +00:00
* fixed configuration script bugs that were causing breakage in FreeBSD
2018-12-28 22:15:03 +00:00
* improved indexer speed by not re-extracting album art if it has already
been extracted for the album the track belongs to.
2018-12-27 02:10:36 +00:00
* migrated to non-bundled `taglib` for macOS and most Linux distributions
2018-12-28 22:26:58 +00:00
* fixed a ton of minor ui bugs.
* updated win32 dependencies: libressl, libcurl, libboost, and pdcurses.
2018-12-27 02:10:36 +00:00
musikdroid:
2018-12-28 22:26:58 +00:00
* updated to compile against the latest tooling.
* added the ability to change equalizer settings on the server from the
`remote management` screen.
2018-12-29 07:20:33 +00:00
* added the ability to specify title ellipsis mode (beginning/middle/end).
2018-12-28 22:26:58 +00:00
server:
* added `get_equalizer_settings` and `set_equalizer_settings`.
2018-12-27 02:10:36 +00:00
sdk:
* added a new `IDebug` interface plugins can request via `SetDebug` to write
log information to the standard location, just like the rest of the app.
2018-12-28 22:26:58 +00:00
* added `ITagStore::ContainsThumbnail()`.
2018-12-27 02:10:36 +00:00
--------------------------------------------------------------------------------
2018-08-26 00:02:09 +00:00
0.51.0
musikcube:
* added a new "gruvbox" theme (https://github.com/morhetz/gruvbox)
* added the ability to graphically configure plugin properties via new SDK
`ISchema` interface.
* added the ability to right click entries to display their context menu
* updated the Russian translation (adem4ik)
* fixed a bug where shutdown may be delayed while the indexer is running
* fixed a couple strings that were not properly localized
* fixed a bug that could cause overlays to not always properly disappear
* fixed a bug in the win32 milkdrop distribution where the preferred default
font wasn't getting included
musikdroid:
* updated to compile against Android Studio 3.1.4
server:
* fixed a crash while querying play queue tracks that have b`een removed from
2018-08-26 00:02:09 +00:00
the library.
sdk:
* added the ability for plugins to provide configuration schemas that can be
configured by the user in the gui. see `sdk/ISchema.h`
--------------------------------------------------------------------------------
2018-06-10 05:47:49 +00:00
0.50.0
musikcube:
* added last.fm scrobbling support (settings > last.fm)
* added a built-in hotkey viewer and editor (settings > key bindings)
* added basic mouse handling support -- click / double click / mouse wheel
works mostly the way you'd expect
* added an Italian translation (anonik9900)
* added a Russian translation (adem4ik)
* added a "proportional seek" functionality (benterris)
* fixed a bug where the "Source Code Pro" font was not being included in the
win32 build with milkdrop.
* added support for Ubuntu Bionic
* added support for Fedora 28
* added windows theme support so the menu bar draws nicer
* updated PDCurses (windows build)
2018-06-10 06:32:03 +00:00
* retired binary distribution for Raspbian Jessie (Stretch still supported!)
2018-06-10 05:47:49 +00:00
musikdroid:
* fixed a handful of random crashes that showed up in fabric.io
server:
* fixed a bug where the same playback overview may be broadcast multiple
times.
* fixed a bug where `set_volume` was not returning a response
* fixed a couple bugs where negative limits may be returned
sdk:
* added a simple HttpClient wrapper around libcurl that can be used by plugins
--------------------------------------------------------------------------------
2018-02-18 23:47:20 +00:00
0.42.0
musikcube:
* added the ability to browse by directory! add music directories to the list
of `indexed paths` in the settings screen, then press `d` in browse view to
browse.
* added a new setting to save session on exit. when enabled, musikcube will
remember the last selected view and the current playback context, and restore
everything on next app start.
2018-02-19 21:03:15 +00:00
* better first-run experience for new Windows users:
- included "Source Code Pro Medium" font, and use it by default.
- updated the default font size to be a bit larger.
- hid the main menu bar with "Font" and "Paste" buttons; this functionality
is still available by clicking the musikcube icon in the upper left portion
of the window.
2018-02-18 23:47:20 +00:00
* added scrollbar support to ListOverlay
2018-02-20 07:48:55 +00:00
musikdroid:
* added the ability to automatically transfer playback from mobile to server
when headset (or bluetooth device) is disconnected.
2018-02-18 23:47:20 +00:00
--------------------------------------------------------------------------------
2018-01-29 17:32:28 +00:00
0.40.0
musikcube:
* `^R` now displays an indexer dialog that allows the user to choose between a
quick scan and full metadata rebuild.
* made checkboxes prettier.
* fixed playlist track numbers -- they should always be sequential, not pulled
from metadata.
musikcubed:
* `NEW!`: run musikcube as a daemon on macOS, Linux and BSD.
musikdroid:
* added remote server configuration! users can now change output drivers and
devices, ReplayGain and preamp settings, transport type, and schedule the
metadata indexer from `musikdroid`. see: toolbar menu > remote management.
* promoted `playlists` to main screen, and moved the `play queue` button to
stand out a bit more.
* added the ability to query albums by extended metadata categories, including
"composer", "producer", "year" and more. see: toolbar menu > categories.
* removed legacy playback engines. only `ExoPlayer Gapless` is supported now.
* show a warning if the server is running an older api version.
* fixed a crash when streaming play queue contains one file, and "random" is on.
musikcore:
* added the following functionality to IEnvironment:
- query output devices and drivers
- select the system's default output device and driver
- re-index and re-build library metadata
- get/set preamp and ReplayGain settings
- get/set transport type (gapless, crossfade)
* switching output devices, transport, and ReplayGain settings no longer
abruptly stop playback. there may generally be a short pause, but playback
will continue where it left off.
* removed `musikglue` project. move functionalilty into `musikcore`.
* bumped sdk version to 14
server:
* messages for new IEnvironment updates (see above)
- `run_indexer`
- `list_output_drivers`
- `set_default_output_driver`
- `get_gain_settings`
- `set_gain_settings`
- `get_transport_type`
- `set_transport_type`
* play queue snapshotting; remote clients can use this functionality to help
transfer playback context from server to client.
- `snapshot_play_queue`
- `invalidate_play_queue_snapshot`
- `play_snapshot_tracks`
* all messages that start playback can now be passed a `time` parameter, which
will seek initial playback to the specified time (in seconds).
* `query_play_queue_tracks` now accepts an optional parameter called `type`;
2018-12-27 02:10:36 +00:00
allowed values are `live` (default) and `snapshot`.
2018-01-29 17:32:28 +00:00
* bumped api version to 14
--------------------------------------------------------------------------------
0.35.0
infastructure:
* automated Linux builds via CircleCI! (dvdmuckle)
musikcube:
* added ReplayGain support. settings > replay gain to configure. when support
is active, and ReplayGain is applied, a green "RG" symbol will appear in
the transport view next to the volume slider.
* added initial support for FreeBSD using sndio. big thanks to gregf for the
support and troubleshooting.
2018-01-12 06:34:27 +00:00
* added scroll indicators to list windows (disabled on FreeBSD for now)
* exposed extended metadata -- browse by new fields like year, composer,
language, etc. press `6` in library > browse view.
* fixed a couple bugs in the metadata indexer -- extended metadata properties
were not always getting scanned and stored properly.
* fixed build paths so app can be built against MacPorts. (reynhout)
* fixed a bug where themes were getting clobbered after every reinstall on some
platforms. users can now put their custom themes in `~/.musikcube/themes`.
* made overlay title text alignment consistent across (center horizontal).
musikcore:
* database and query updates to support track, category, and album queries
with multiple predicates. (e.g. all artists with composer=X AND year=Y).
* new `sndio` output plugin. this is the default output for FreeBSD, and is
optional (disabled by default) on Linux.
* new `ffmpeg_decoder` plugin. not enabled by default, but will probably
eventually replace nomad, ogg, mp4, and flac plugins.
server:
* api support for multi-predicate queries.
musikdroid:
* fixed bug where non-transcoded audio would not always play properly.
--------------------------------------------------------------------------------
0.31.0
musikcube:
* added support for Ubuntu Artsy
* added preliminary audio encoders (MP3, OGG/Vorbis)
* fixed and exposed album-level artwork. previously it was track-only.
musikdroid:
2018-12-27 02:10:36 +00:00
* gapless playback (for supported media)! enable in settings > playback
engine > "ExoPlayer Gapless (experimental)"
* playlist create / rename / update / delete support
* album art is now displayed in album rows when browsing
2018-12-27 02:10:36 +00:00
* context menus on most screens with the ability to switch between related
content (e.g. albums by this artist, artists in this genre, etc)
* added a simple "spotlight" tutorial for new users that explains switching
between remote and streaming playback modes.
* major refactor to the entire code base, including the following:
- a brand new data layer interface based on RxJava. this should position
the app for lots of new, fun stuff in the future.
- a new dependency injection implementation
- a view component layer for sharing functionality across screens
* updated Glide from v3 -> v4
* updated to Android Studio 3.0.1 and related tooling
2017-12-04 20:28:04 +00:00
* fixed notification icon color
sdk:
* removed all Destroy() methods, standardized on Release() across the board
* added the following to ISimpleDataProvider:
- QueryCategoryWithPredicate()
- SavePlaylistWithIds()
- SavePlaylistWithExternalIds()
- SavePlaylistWithTrackList()
- AppendToPlaylistWithIds()
- AppendToPlaylistWithExternalIds()
- AppendToPlaylistWithTrackList()
- RemoveTracksFromPlaylist()
- RenamePlaylist()
- DeletePlaylist()
* added new interfaces:
- IValue
- IEncoder
- IEncoderFactory
* removed interfaces:
- IRetainedTrack
- IRetainedTrackWriter
* renamed interfaces
- IMetadataMap -> IMap
- IMetadataMapList -> IMapList
- IMetadataReader -> ITagReader
- ITrackWriter -> ITagStore
- IMetadataValue -> IValue
- IMetadataValueList -> IValueList
server:
* renamed project from `websocket_remote` to `server`, and promoted to a
top-level component in the workspace
* added correct LAME headers after transcoding to fix gapless playback of
encoded files.
* added the following messages to the websocket server:
- save_playlist
- rename_playlist
- delete_playlist
- append_to_playlist
2018-12-27 02:10:36 +00:00
- remove_tracks_from_playlist
- query_tracks_by_external_ids
* renamed the following track fields:
- visual_genre_id -> genre_id
- visual_artist_id -> artist_id
* added the ability to query album art by id
* fixed HttpServer to ignore non-GET verbs
* added "predicated category queries", i.e. "all the albums for this artist" or
"all the artists in this genre", etc.
* added "artist" and "artistId" to album response (previously it was only
return "albumArtist" and "albumArtistId")
* fixed bugs related to HTTP "Range" header parsing and generation
* fixed a bug in the websocket functionality that was returning invalid
"invalid_request" responses... yeah.
--------------------------------------------------------------------------------
2017-09-20 04:52:21 +00:00
0.26.0
* added the ability to rebind UP, DOWN, LEFT, RIGHT, PAGE_UP, PAGE_DOWN, END and
HOME keys to allow for VIM-style key bindings
* fixed a focus related bug when switching between main views
--------------------------------------------------------------------------------
2017-09-09 04:03:37 +00:00
0.25.2
musikcube:
* upgraded to a new version of the windows sdk (10.0.15063.0)
* added some missing checks in WideCharToMultiByte (and MultiByteToWideChar)
that could result in access violations on windows
* added a hidden setting for enabling indexer logging (set IndexerLogEnabled in
settings.json)
musikdroid:
* added the ability to rename connection presets
* fixed a crash in SystemService related to unregistered intents
* upgraded to android studio beta 5
--------------------------------------------------------------------------------
2017-08-25 02:33:14 +00:00
0.25.1
musikcube:
2018-12-27 02:10:36 +00:00
* fixed a bug in FlacDecoder::Exhausted that was causing issues with the
2017-08-25 02:33:14 +00:00
server's transcoder.
--------------------------------------------------------------------------------
2017-08-25 00:46:37 +00:00
0.25.0
musikcube:
* fixed a crash in the m4a decoder
* updated some linux dependencies
* added a build for raspbian stretch
musikdroid:
* fixed playback notification so it works properly with Android O
* updated settings ui to include a way to save and load connections
* fixed a couple random crashes that surfaced in fabric
* removed android-specific dagger cruft; just use vanilla dagger
* updated support library and build tooling versions
--------------------------------------------------------------------------------
2017-08-14 04:39:21 +00:00
0.24.0
musikcube:
* added the ability for the user to select the output device (i.e. soundcard
or port) audio will be rendered to. previously we always used the system's
default device.
* fixed some transcoder and cdda bugs that prevented streaming cd audio to
remote (e.g. android) clients.
* fixed a (potential) memory leak in the indexer when extracting album artwork
* matthiaskrgr pointed out some memory leaks, and KTRosenberg fixed them.
musikdroid:
* fixed (potential) crash when trying to display the update check dialog.
low-level:
* fixed a bug in CddaDataStream where the active reader would not have exclusive
access to the output device.
* added new SDK interfaces for enumerating audio devices that are available to
output drivers.
--------------------------------------------------------------------------------
0.23.0
musikcube:
* fixed album artist support for FLAC, OGG, and M4A files. users with existing
2017-08-14 04:39:21 +00:00
libraries that are having problems should re-import their files.
* fixed CDDB lookup for mixed-mode discs in Windows
* fixed a bug in the low-level audio processing that could leak memory until
2017-08-14 04:39:21 +00:00
the playing track completed
* allow M-ENTER to also activate the context menu for album header rows.
(ENTER still works as well)
* fixed the NullOut plugin -- it was not taking channel count into account when
2017-08-14 04:39:21 +00:00
calculating buffer duration
* added support for Manjaro Linux
musikdroid:
* fixed a crash in SystemService::onStartCommand where the Intent's "action"
2017-08-14 04:39:21 +00:00
was not being null-checked.
* suppressed a strange crash related to the Room library not initializing the
2017-08-14 04:39:21 +00:00
database properly
--------------------------------------------------------------------------------
0.22.0
musikcube:
* fixed compile issues and startup crashes on Fedora, ArchLinux and openSUSE
* fixed a bug where playback speed may be incorrect for audio files that do
not have exactly two channels.
* fixed a crash that could occur in the WASAPI output plugin for audio streams
with very low sampling rates
* fixed crash when parsing "TCOP" id3v2 tag (ilitirit-za)
* fixed double-wide character truncation and ellipsizing (stephanwilliams)
* added a new setting to disable startup update checks
* sync'd PDCurses with the upstream repo
musikdroid:
* fixed a couple (relatively obscure) crashes
* updated build environment to Android Studio Canary 8 with Support Libraries
26.0.0 (final)
low-level:
* fixed the way we define C++ flags in CMakeLists.txt so it works across more
platforms, e.g. FreeBSD (geier)
* fixed GetApplicationDirectory() null termination error (mkilgore)
* updated the way we calculate audio buffer sizes and counts to ensure there
is always enough headroom for audio with very low sampling rates
* updated the mpg123 decoder so it compiles and runs again against the latest
version of the library and musikcube sdk.
--------------------------------------------------------------------------------
2017-07-22 18:57:06 +00:00
0.21.1
2018-12-27 02:10:36 +00:00
* updated a few of the symbols used for drawing things like dropdowns and
2017-07-22 18:57:06 +00:00
checkmarks so they work with a wider variety of fonts
--------------------------------------------------------------------------------
2017-07-20 01:35:09 +00:00
0.21.0
* musikbox binary renamed to musikcube. build scripts, documentation, website
and everything else updated accordingly.
--------------------------------------------------------------------------------
0.20.2
2017-07-19 04:47:20 +00:00
* "add tracks", "add category", and "select playlist" context menus now remember
the last selected item for 60 seconds. this makes adding multiple things to
2018-12-27 02:10:36 +00:00
the same playlist (or play queue) much easier.
2017-07-19 04:47:20 +00:00
* fixed startup crash on older versions of macos
--------------------------------------------------------------------------------
2017-07-20 01:35:09 +00:00
0.20.1
* arrow keys can now select items in the shortcuts window while focused.
--------------------------------------------------------------------------------
0.20.0
* added play queue "hot-swap". you can now swap a different list of tracks
into an active play queue without disrupting playback. if the hot-swap
2018-12-27 02:10:36 +00:00
action finds the playing track in the new list, it'll be automatically
selected as the active track. focus a tracklist and press `M-a` to hot-swap.
* fixed a bug that was causing extended track metadata to be parsed incorrectly
examples include bitrate, channels, lyrics, etc.
* fixed a bug where the category list view may jump around a bit during the
indexing process.
--------------------------------------------------------------------------------
0.19.2
* start the metadata indexer immediately after adding or removing paths from
the settings view. this functionality was previously disabled due to
performance issues and a bug with the indexer. these problems have all been
addressed.
--------------------------------------------------------------------------------
2017-07-06 05:21:18 +00:00
0.19.1
* re-introduced the multi-threaded indexer! this makes metadata scanning quite
a bit faster on some systems
* fixed a bug where the selected item in browse view may change during the
indexing process if more music is added to the library
--------------------------------------------------------------------------------
2017-07-05 05:51:41 +00:00
0.19.0
* fixed a bug where the wrong (or multiple) items may be highlighted in browse
view if they all have the same name
* fixed a bug where seeking while paused wouldn't update the ui properly in
some cases, leaving the paused animation running while audio was playing
--------------------------------------------------------------------------------
0.18.0
user-facing:
* added first-class support for browse playlists:
- press `5` in library browse view to switch to playlists
- press `M-r` to rename the selected playlist
- press `M-s` to save the selected playlist
- highlight the left pane, and press `DEL` (`BACKSPACE` on macos) to delete
the selected playlist
- press `M-up` (`CTRL-UP` on macos) to move the selected track up
- press `M-down` (`CTRL-DOWN` on macos) to move the selected track down
- highlight the right pane, and press `DEL` (`BACKSPACE` on macos) to delete
the selected track from the playlist
* added view titles in library browse mode, now playing, and search views
* added auto-update check functionality to notify users when a new version is
available. also added manual update check to settings
* rearranged some items on the settings screen
2017-06-29 06:20:07 +00:00
* removed "playback mode" from musikdroid settings screen. we have a quick
toggle now!
low-level:
* ported musikdroid to kotlin. goodbye, java.
--------------------------------------------------------------------------------
0.17.2
user-facing:
2018-12-27 02:10:36 +00:00
* fixed a bug where usernames with non-latin characters may cause the
`websocket_remote` and `httpdatastream` plugins to crash during startup.
2018-12-27 02:10:36 +00:00
* fixed startup issues on windows computers that do not have the visual c++ 14
runtime installed.
--------------------------------------------------------------------------------
0.17.0
* added code to win32 build that ensures only a single instance is running
* fixed auto-dpi scaling in windows so `musikbox` displays properly out of the
box on high dpi (4k) displays
2018-12-27 02:10:36 +00:00
* added the ability to browse and play cached tracks in `musikdroid` while
offline.
* fixed a bug that was preventing the transcoder cache from functioning properly
2017-06-18 01:46:17 +00:00
* integrated `fabric.io` into `musikdroid` for crash reporting
* added new "empty" and "offline" view states to all screens in `musikdroid`
* fixed a couple `musikdroid` crashes in playback-related code
low-level:
* updated to boost 1.64.0
* started converting some `musikdroid` sources to `kotlin`
* added missing `track_num` field to track resources in `websocket_remote`
* fixed local cache filename generation in `musikdroid`
--------------------------------------------------------------------------------
2017-06-05 02:12:25 +00:00
0.16.0
user-facing:
* added a toggle in the `musikdroid` toolbar for quickly switching between
remote and streaming mode
* removed volume and seek buttons; replaced with a seekbar, current and
total time indicators.
* revamped loading indicators to be less jarring
low-level:
* integrated with a customized version of the `AndroidVideoCache` library to
2018-12-27 02:10:36 +00:00
(hopefully) improve caching reliability.
2017-06-05 02:12:25 +00:00
* improved battery usage in `musikdroid`'s `SystemService`
* fixed bug where `websocket_remote` was not letting clients know when seeking
has occurred.
* deliberately under-estimate calculated `Content-Length` header when doing
on-demand transcoding. http clients seem to be more ok with this, as compared
to over-estimating.
* fixed a bug where `websocket_remote` audio server would incorrectly return a
216 status instead of a 200, confusing clients
--------------------------------------------------------------------------------
0.15.0
user-facing:
2017-06-05 02:12:25 +00:00
* added `server settings` configuration panel to the settings screen
* added `minimize to tray` and `start minimized` options to the windows build
* a handful of small `musikdroid` bug fixes, mostly related to audio focus
and ducking.
* documented the `websocket_remote` api on the wiki
low-level:
2017-06-05 02:12:25 +00:00
* added authentication support to the the `websocket_remote` audio server
* found and fixed a handful of missing `websocket_remote` metadata responses
* added the ability to hot-reload plugins
* modified `IPlugin` -- every plugin must now supply a unique `guid`
* fixed a bug in Transcoder if the number of cache files was set to 0
* fixed a number of bugs that could result in undefined behavior or crashes if
views are drawn outside of their parents (or screen) bounds
* fixed a bug where input fields may stop drawing properly if the value entered
by the user exceeds the window bounds
--------------------------------------------------------------------------------
2017-05-20 02:57:53 +00:00
0.14.0
user-facing:
* `musikdroid` enhancements:
- `pause` when headphones are disconnected
- `double tap` headset button to go to next track
- `triple tap` headset button to go to prev track
- added album art to lock screen controls
- added the ability to control streaming disk cache size
* `websocket_remote` plugin:
- added Cache-Control headers to responses
2018-12-27 02:10:36 +00:00
* `core`:
- found a really bad bug in the way we handle tracks in playlists. the fix
2017-05-20 02:57:53 +00:00
requires a rebuild of the tracks metadata, which will clear playlists, but
ensures this will never happen again in the future.
low-level:
2018-12-27 02:10:36 +00:00
* cleaned up more SDK interfaces, removed support for uint64 and uint32 types,
2017-05-20 02:57:53 +00:00
only support int64 and int32.
* fixed bugs in playlist track handling; playlist contents can now survive track
table rebuilds!
--------------------------------------------------------------------------------
2017-05-08 05:36:28 +00:00
0.13.0
user-facing:
* added on-demand audio transcoding (downsampling) to the http server. users
can configure transcoding in the `musikdroid` client.
* fixed a bug in album id handling to properly support multiple albums with the
same name by different artists (this was only half working before).
* added ssl support to the `musikdroid` client, and instructions on the wiki
for enabling ssl on the server-side.
* added `buffering` indicators to `musikdroid`.
low-level:
* added missing IBuffer::Destroy method, and added IEnvironment::GetBuffer so
plugins can decode audio data.
--------------------------------------------------------------------------------
0.12.1
user-facing:
* huge update to `musikdroid` -- it is now able to stream music from any
`musikbox` installation! see settings > playback mode.
* added cddb (actually, freedb) lookup for audio CDs
* added new "add to beginning of play queue" and "play album" context menu
options
low-level:
* fixed database upsert logic to be faster and more reliable
--------------------------------------------------------------------------------
2017-04-21 06:41:44 +00:00
0.12.0
user-facing:
* fixed bug where "sync on startup" was not working properly
* fixed musikdroid bug where ui may get drawn in a weird state if the playing
track has an empty album name.
* fixed a bug in CddaIndexerSource that may cause tracks to linger in the
library longer than they should if the drive letter changed.
2018-12-27 02:10:36 +00:00
* added an http server to the `websocket_remote` plugin to serve audio data.
2017-04-21 06:41:44 +00:00
this completes most work required to support external, thin clients.
metadata can be queried via websocket, audio streamed over http. powered by
2018-12-27 02:10:36 +00:00
libmicrohttpd.
2017-04-21 06:41:44 +00:00
low-level:
* added HttpDataStream! finally! uses libcurl and libressl. audio data can now
be played over http/https!
* performance optimizations to metadata indexing -- drop indexes before a full
2018-12-27 02:10:36 +00:00
resync, then re-add them after.
2017-04-21 06:41:44 +00:00
* playlist tracks are now stored by external ids! this means tracks added from
third party indexer sources can be added to playlists and persisted across
2018-12-27 02:10:36 +00:00
rescans.
2017-04-21 06:41:44 +00:00
* IIndexerSources can be interrupted, and failed sources can have their changes
rolled back.
* upgraded to Windows 10 SDK and VS141 tooling
--------------------------------------------------------------------------------
2017-04-04 14:32:50 +00:00
0.11.0
user-facing:
* added a new cd playback plugin based on new infrastructure. audio cds will
be detected and added to the library as [audio cd] and can be played like
any other tracks. (note: win32 only for now)
* added the ability to toggle between seek and scrub playback modes
* fixed a couple localized strings
* fixed a bug that could cause the currently selected item in the play queue
to jump around or be incorrect.
low-level:
* added IIndexerSource interface: plugins will be able to implement this
interface to add tracks to the library that will be indexed and
maintained like all other tracks
* added IIndexerWriter interface: IIndexerSource plugins will use this
interface to add/remove/update track info with the main app
* added IIndexerNotifier: interface used to notify the app that it needs
to be re-indexed.
* added "source_id" , "external_id", and "visible" column to the tracks
table, with appropriate indexes.
* fixed a really old indexer bug where the reported number of file scanned
was not accurate. Strange this wasn't noticed before.
* added "SetIndexerNotifier" injection method
* fixed a bug in TrackMetadataQuery -- it was unnecessarily relying upon
the paths table, which was causing query errors when the table was
empty.
* use a cache for local file paths instead of requiring an async round
trip when adding/removing
* remove use of manual "ANALYZE", it was causing strange performance
degradation issues. Instead, move to a set of PRAGMAs that instructs
sqlite to run these optimizations when necessary.
* updated ::GetInt32 and ::GetUint32 return types to be explicit as to play
more nicely with clang -- may as well, we're updating the SDK version
anyway.
* added a simple capabilities model to the playback infrastructure. This
is used to detect whether or not streams can be prefetched. For example,
CDDA cannot because of seek times while playing tracks.
--------------------------------------------------------------------------------
2017-03-27 17:30:45 +00:00
0.10.2
* fixed clang 7.3 compile error (macOS mavericks should work again)
--------------------------------------------------------------------------------
2017-03-23 00:08:21 +00:00
0.10.1
user-facing:
* added the ability to select album name headers in track lists. doing so will
bring up a context menu with the ability to jump to the album or enqueue the
album's tracks for playback. this also had a nice side effect of making
scrolling more fluid!
* added jumping to album/artist/genre to the selected track context menu
2017-03-23 00:08:21 +00:00
* fixed a really old bug that could cause lists to automatically scroll to weird
places if the window or view is resized
* directory browser now remembers which directories were previously selected,
making up navigation in the settings view smoother
2017-03-23 00:08:21 +00:00
* added a "list_header_highlighted_background" and
"list_header_highlighted_foreground" color theme variables
* tweaked the win32 icon so it looks a bit better on the taskbar
2017-03-23 00:08:21 +00:00
low-level:
* added "broadcast" message support to IMessageQueue and implementers. allows
for pub/sub like functionality
* added some new SDK interface methods to ITrack and IMetadataMap for retrieving
values other than strings (uint64, int64, uint32, int32, double)
* added localization support for "dimensions". this allows for per-locale sizing
of ui components
2017-03-23 00:08:21 +00:00
* fixed some old bugs in Window.cpp that could cause visibility changed
notifications to be raised unnecessarily
* added a custom PDCurses/win32a patch to further reduce CPU load and context
switching while draining the message pump
2017-03-23 00:08:21 +00:00
--------------------------------------------------------------------------------
2017-03-19 01:03:05 +00:00
0.10.0
* added GeekShadow's fr_FR locale
* fixed a bug in locale loading
* fixed a bug in nomad decoder if file load fails
* updated `Player` <-> `Stream` interaction so it's possible to interrupt long,
blocking reads (e.g. if an http stream loader existed)
--------------------------------------------------------------------------------
0.9.5
* added localization support
* added support for user-defined themes (solarized dark and light included as
examples)
* patched PDCurses/win32a to support the standard *nix 256 color palette
--------------------------------------------------------------------------------
2017-03-11 03:57:41 +00:00
0.9.4
2018-12-27 02:10:36 +00:00
* added a "syncing metadata" banner that is displayed while the indexer is
2017-03-11 03:57:41 +00:00
scanning metadata
* added a "sync metadata on startup" option to the settings view
* moved the hotkey tester to its own dedicated dialog to free up some valuable
screen real estate in the settings view
2018-12-27 02:10:36 +00:00
* fixed `PulseOut` plugin volume adjustment to work better across a wider
2017-03-11 03:57:41 +00:00
range of audio cards. this should also improve crossfade quality
* fixed a very old bug that was sometimes causing delayed redraws or flickering
during layout in complex views
--------------------------------------------------------------------------------
0.9.3
win32 only release:
* updated `WASAPI` output plugin to disable endpoint routing by default. it
causes a crash in some rare cases that i don't seem to be able to work
around. i see similar crashes in firefox and some other apps that use this
feature.
* updated `DirectSound` output volume adjustment to be as close to the `WASAPI`
`WaveOut` plugins as possible
* changed compiler optimizations to favor fast code, instead of small code,
plus a few other small tweaks to (hopefully) improve performance.
--------------------------------------------------------------------------------
2017-03-01 15:06:51 +00:00
0.9.2
* added an icon to the windows and android builds (not great, but better than
nothing!)
* fixed a bug in the `nomad` (mp3) plugin where sample rate wasn't being
handled appropriately. songs were sometimes playing too fast or slow.
2017-03-04 21:44:00 +00:00
* fixed a bug in the websockets plugin for certain metadata in locales that
use commas instead of periods for decimal points
2017-03-01 15:06:51 +00:00
* added compression support to the `websocket_remote` plugin and the
`musikdroid` android app
* fixed a crash when trying to manipulate an empty play queue in specific
contexts
* fixed the win32 global volume up / volume down hotkeys to be consistent with
the main app and `websocket_remote` behavior.
* changed data directory from "~/.mC2" to "~/.musikcube". the app will
automatically perform this rename on startup.
2017-03-01 15:06:51 +00:00
--------------------------------------------------------------------------------
2017-02-24 19:05:57 +00:00
0.9.1
* added an app icon on win32 and android builds
2017-02-24 19:05:57 +00:00
* added proper support for using and switching between different audio sample
formats. 24/192k works across all platforms now.
* fixed `DirectSoundOut` pause to work properly again
* added support for statically linking dependencies. for now we can supply
macOS binaries that don't require homebrew! let's try to keep it that way.
* updated some defaults -- rescan metadata on startup by default, and restrict
to two processing threads.
* fixed a crash when trying to change tracks in an empty playlist queue
2017-02-24 19:05:57 +00:00
--------------------------------------------------------------------------------
0.9.0
user-facing:
* added new `musikdroid` android remote control! super userful with a Raspberry
2018-12-27 02:10:36 +00:00
Pi. run musikbox in the background and control it from your phone.
* added a new `websocket_remote` plugin that allows any client capable of
communciating with websockets the ability to control playback and query
metadata!
* added settings UI for enabling/disabling plugins within the app!
2017-02-19 05:04:51 +00:00
* added more granular volume control when adjusting below 10%
* fixed a crash on shutdown while in track search view
low-level:
* added new sdk interfaces:
- `ISimpleDataProvider`: can be used to query tracks, albums, artists, genres
- `IMetadataValue` and `IMetadataValueList`: lists of metadata values and ids
- `IMetadataMap` and `IMetadataMapList`: maps of values for resource ids
- `IPreferences` for reading and writing preferences
* updated sdk interfaces:
- `ITrack`: added `getId()`
- `IPlaybackService`: the ability to modify or replace the play queue
- `ITrackList`: added const correctness
- renamed `IMetadataWriter` to `ITrackWriter`
* added the ability for plugins to register to receive `IPreferences` and
`ISimpleDataProvider` interfaces via `SetPreferences()` and
`SetSimpleDataProvider`, respectively. see `websocket_remote` for an example
2018-12-27 02:10:36 +00:00
* fixed up `PluginFactory` to store and provide more metadata about plugins
when querying them.
* fixed a deadlock in `PlaybackService` when changing tracks from
`IPlaybackRemote` plugins.
* fixed another WASAPI audio endpoint routing bug
* fixed some win32 project settings to allow profile guided optimizations (was
broken for some plugins)
* fixed 'deprecated' compiler warnings on macOS
* seed the random number generator at startup
--------------------------------------------------------------------------------
2017-01-23 01:29:04 +00:00
0.8.0
user-facing:
* added support for Raspberry Pi running Raspbian!
* added preliminary support for playlist editing. all editing is currently
in the play queue view.
- `ALT+s`: save the current play queue to a named playlist
- `ALT+l`: load a previously saved playlist
- `ALT+x`: delete a playlist
- `ALT+r`: rename a playlist
2017-01-23 01:29:04 +00:00
* added the ability to delete (BACKSPACE on mac, DEL on win32/linux) and reorder
(ALT+UP/ALT+DOWN win32/mac, CTRL+UP/CTRL+DOWN linux ) selected items in the
play queue.
* added better color fallback for non-mutable 256 termianl color palettes
* added the ability to enqueue selected tracks, albums, artists, or other
resources to the play queue by pressing ALT+ENTER.
* fixed a crash when trying to play a track that has been removed from the
database
2017-01-28 19:47:17 +00:00
* fixed (maybe) an impossible-to-reproduce bug in PulseAudio where the output
volume was not getting properly initialized
* removed "esc focuses shortcut bar" setting. no longer useful.
low-level:
2017-01-23 01:29:04 +00:00
* fixed cursespp child view coordinates to be relative to their parents
* cleaned up global focus model in cursespp
* added IPlaybackService::GetPlayingTrack() to get an IRetainedTrack pointer
to the currently playing track; bumped SdkVersion to 2.
2017-01-23 01:29:04 +00:00
--------------------------------------------------------------------------------
0.7.3
reduce CPU usage during playback in macOS CoreAudioOut
include the null output plugin in macOS and Linux builds.
--------------------------------------------------------------------------------
2017-01-13 05:17:56 +00:00
0.7.2
mostly performance and architecture changes:
* created new 'src/glue' package that contains code that can be optionally
included and reused by other applications, but is too high-level for
src/core
* cpu reduction and code simplification in 'Stream' and 'Player'
* cpu reduction in 'MessageQueue'
* reduced locking in 'Player' and 'MessageQueue'
* tweaked music library interface to optionally deliver results to a specified
'IMessageQueue'
* moved 'PlaybackService' and 'TrackList' into 'core'
* optimized floating point sample scaling in the 'nomad' mp3 decoder
* reduced cpu overhead when redrawing the transport view
* added bare-bones, 'proof of concept' win32 application that includes 'core'
and 'glue' to present a very basic music player in just a few lines of code.
2017-01-14 20:06:01 +00:00
* added a NullOut, an output plugin that doesn't write to the sound card. useful
for development and testing purposes.
2017-01-13 05:17:56 +00:00
bug fixes:
* fixed default output plugin selection logic
* fixed a crash in WASAPI stream routing
--------------------------------------------------------------------------------
0.7.1
user-facing:
* fixed the flac decoder. oops.
2018-12-27 02:10:36 +00:00
* changed focus behavior in search view -- pressing return in the edit field
2017-01-13 05:17:56 +00:00
will now focus the tracklist after starting playback
* added sdk and plugin versioning. the plugin loader will only load plugins
with a supported version.
low-level
* removed pre-buffering code from Player, let Stream worry about that
* moved from boost to std for most threading (boost still used in the indexer)
* removed some unused boost dependencies from CMakeLists.txt
* various small optimizations to help reduce CPU overhead in MessageQueue and
Player.
--------------------------------------------------------------------------------
0.7.0
a big release with lots of changes to low-level machinery.
user-facing:
2018-12-27 02:10:36 +00:00
* added a new "crossfade" playback mode that can be used instead of "gapless".
users can change this functionality in the settings view.
2018-12-27 02:10:36 +00:00
* fixed audio artifacts in WasapiOut and DirectSoundOut when pausing and
resuming playback multiple times very quickly.
* fixed a really bad bug where dialogs could not be easily dismissed in some
cases. this included the first-run dialog! yikes.
low-level:
* added Latency() and Drain() methods to the IOutput interface
* reduced CPU load in some output plugins by being less aggressive about keeping
the output buffers 100% full all the time. 75%+ fill rate should be
sufficient.
* generalized MessageQueue and moved it out of app, and into core so it can be
reused for other functionality (e.g. crossfading)
2018-12-27 02:10:36 +00:00
* added support for "mix points" in Player -- get a callback as soon as a
specific playback position is hit!
* fixed DirectSoundOut to fall back to software mixing if hardware mixing is
unavailable
2018-12-27 02:10:36 +00:00
* fixed DirectSoundOut to start playback immediately, instead of sometimes
requiring the buffer to be completely full
--------------------------------------------------------------------------------
0.6.2
* added a DirectSound output plugin for the win32 build.
--------------------------------------------------------------------------------
0.6.1
* replaced mpg123 decoder with MAD. gapless playback for a much wider variety of
mp3s!
* optimized indexing process by maintaining an in-memory database id cache. uses
a bit more memory (temporarily, during indexing) but improves indexing speed.
--------------------------------------------------------------------------------
0.6.0
* added the ability to have multiple output plugins, and the ability switch
between them in settings
* added a new default output plugin for win32 (WASAPI) and linux (PulseAudio)
* changed a bunch of low-level ui code to substantially reduce layout passes and
redraws
* made a few small changes to the main ui, including basic listview headers if
the window grows large enough
--------------------------------------------------------------------------------
0.5.0
user-facing:
* remember volume and repeat settings across app launches
* improved visualizer quality
* reduced download size by a couple megabytes
low-level:
2018-12-27 02:10:36 +00:00
* optimized Stream and Player communication. more direct, less locking. no more
weird deferred cleanup
* removed fftw3 dependency in favor of kiss_fft. much smaller download now
2018-12-27 02:10:36 +00:00
* added a proper windowing algorithm to audio samples before they are handed to
the fft process
2018-12-27 02:10:36 +00:00
* fixed audio de-interleaving issue which lead to funky fft results in some
cases
* included a new spectrum visualizer sample called GdiVis (win32 only for now)
* overhauled some parts of the audio engine to ensure buffer size is consistent
during playback. this makes visualization quality better, and should make it
easier to integrate with things like JACK and PulseAudio.
--------------------------------------------------------------------------------
0.4.1
* fixed the transport readout to be more legible
* fixed a crash in NowPlayingLayout when the window became too small
* improved the IPlaybackService and IPlaybackRemote interfaces, and introduced a
new IRetainedTrack type.
* upgraded build environment to visual studio 2017
--------------------------------------------------------------------------------
0.4.0
* updated transport focus behavior to be less confusing -- it was previously too
easy to accidentally focus the transport.
* added mute functionality. focus the volume control and press enter or just
press m while browsing your library.
2018-12-27 02:10:36 +00:00
* added new IPlaybackRemote and IPlaybackService sdk interfaces to support
writing plugins that can control playback and be notified of playback events.
--------------------------------------------------------------------------------
0.3.5
* various small visualizer-related fixes.
--------------------------------------------------------------------------------
0.3.4
2018-12-27 02:10:36 +00:00
* visualizer support! press v to show the picker! a couple samples (Milkdrop2
and projectM) are included below. unzip these to your musikbox\plugins
directory.
* fixed a nasty unicode conversion bug.
* various other small fixes
--------------------------------------------------------------------------------
0.2.2
2018-12-27 02:10:36 +00:00
* small improvements to the transport view, including the display of the volume
percentage next to the volume slider.
--------------------------------------------------------------------------------
0.2.1
2017-02-19 05:04:51 +00:00
* initial "public" release