Update README and Changelog

This commit is contained in:
Jonas Kvinge 2019-07-26 20:52:47 +02:00
parent cf33df1339
commit 705c12e8da
2 changed files with 10 additions and 7 deletions

View File

@ -38,6 +38,10 @@ Unreleased:
* Removed older devicekit udisks backend * Removed older devicekit udisks backend
* Using iconv to replace non-ascii characters when organising files * Using iconv to replace non-ascii characters when organising files
* Fixed IPod support when listed from UDisks2 * 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: Version 0.5.5:

View File

@ -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: 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) * [POSIX thread (pthread) libraries](http://www.yolinux.com/TUTORIALS/LinuxTutorialPosixThreads.html)
* [CMake and Make tools](https://cmake.org/) * [CMake and Make tools](https://cmake.org/)
* [GCC](https://gcc.gnu.org/) or [clang](https://clang.llvm.org/) compiler * [GCC](https://gcc.gnu.org/) or [clang](https://clang.llvm.org/) compiler
* [Protobuf library and compiler](https://developers.google.com/protocol-buffers/) * [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 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/) * [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) * [SQLite3](https://www.sqlite.org)
* [TagLib 1.11.1 or higher](http://taglib.org/)
* [Chromaprint library](https://acoustid.org/chromaprint) * [Chromaprint library](https://acoustid.org/chromaprint)
* [ALSA library (linux)](https://www.alsa-project.org/) * [ALSA library (linux)](https://www.alsa-project.org/)
* [DBus (linux)](https://www.freedesktop.org/wiki/Software/dbus/) * [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: ### Compile and install:
mkdir strawberry-build cd strawberry
cd strawberry-build mkdir build && cd build
cmake ../strawberry cmake ..
make -j8 make -j4
sudo make install sudo make install
(dont change to the source directory, if you created the build directory inside the source directory type: cmake .. instead). (dont change to the source directory, if you created the build directory inside the source directory type: cmake .. instead).