diff --git a/Changelog b/Changelog index d9cff5f5..f0ee2762 100644 --- a/Changelog +++ b/Changelog @@ -38,6 +38,10 @@ Unreleased: * Removed older devicekit udisks backend * Using iconv to replace non-ascii characters when organising files * Fixed IPod support when listed from UDisks2 + * Fixed memory leaks when establishing database connections and in database backup. + * Fixed dangling database connections when loading collection, playlists and devices. + * Fixed closing and deleting backends to free memory and database connections on exit. + * Fixed dangling pointers causing crashes when loading new album covers in collection. Version 0.5.5: diff --git a/README.md b/README.md index 137a3f28..51ee44d6 100644 --- a/README.md +++ b/README.md @@ -34,16 +34,15 @@ It has so far been tested to work on Linux, OpenBSD, macOS and Windows. To build Strawberry from source you need the following installed on your system with the additional development packages/headers: -* [GLib, GIO and GObject](https://developer.gnome.org/glib/) +* [GLib](https://developer.gnome.org/glib/) * [POSIX thread (pthread) libraries](http://www.yolinux.com/TUTORIALS/LinuxTutorialPosixThreads.html) * [CMake and Make tools](https://cmake.org/) * [GCC](https://gcc.gnu.org/) or [clang](https://clang.llvm.org/) compiler * [Protobuf library and compiler](https://developers.google.com/protocol-buffers/) -* [Boost development headers](https://www.boost.org/) +* [Boost](https://www.boost.org/) * [Qt 5 with components Core, Gui, Widgets, Concurrent, Network and Sql](https://www.qt.io/) * [Qt 5 components X11Extras and DBus for Linux/BSD, MacExtras for macOS and WinExtras for Windows](https://www.qt.io/) * [SQLite3](https://www.sqlite.org) -* [TagLib 1.11.1 or higher](http://taglib.org/) * [Chromaprint library](https://acoustid.org/chromaprint) * [ALSA library (linux)](https://www.alsa-project.org/) * [DBus (linux)](https://www.freedesktop.org/wiki/Software/dbus/) @@ -70,10 +69,10 @@ You should also install the gstreamer plugins base and good, and optionally bad ### Compile and install: - mkdir strawberry-build - cd strawberry-build - cmake ../strawberry - make -j8 + cd strawberry + mkdir build && cd build + cmake .. + make -j4 sudo make install (dont change to the source directory, if you created the build directory inside the source directory type: cmake .. instead).