flaviotordini / musique

Perfectâ„¢ desktop music player
http://flavio.tordini.org/musique
GNU General Public License v3.0
140 stars 18 forks source link

fix: compatibility with TagLib 2.0 #54

Closed letsfindaway closed 8 months ago

letsfindaway commented 8 months ago

This PR provides compatibility with TagLib 2.0 by changing from a previously deprecated API to the already available replacement.

The new API type and function have been added to TagLib with version 1.10 on 04.12.2015. The change to the new API therefore does not break building musique with any TagLib version >= 1.10.

The missing include for iostream led to a compile error on openSUSE Leap 15.5. It may depend on the environment whether this is necessary, but it is anyway good practice to include this explicitly when it is used in the compile unit.

closes #53

flaviotordini commented 8 months ago

Thanks!