2323 *
2424 * Not every OS supports `MPRIS`. Use [const@Clapper.HAVE_MPRIS] macro
2525 * to check if Clapper API was compiled with this feature.
26+ *
27+ * Deprecated: 0.10: Use MPRIS from `clapper-enhancers` repo instead.
2628 */
2729
2830#include "clapper-mpris.h"
@@ -1346,6 +1348,8 @@ clapper_mpris_property_changed (ClapperFeature *feature, GParamSpec *pspec)
13461348 * Creates a new #ClapperMpris instance.
13471349 *
13481350 * Returns: (transfer full): a new #ClapperMpris instance.
1351+ *
1352+ * Deprecated: 0.10: Use MPRIS from `clapper-enhancers` repo instead.
13491353 */
13501354ClapperMpris *
13511355clapper_mpris_new (const gchar * own_name , const gchar * identity ,
@@ -1376,6 +1380,8 @@ clapper_mpris_new (const gchar *own_name, const gchar *identity,
13761380 *
13771381 * You probably want to keep this disabled if your application
13781382 * is supposed to manage what is played now and not MPRIS client.
1383+ *
1384+ * Deprecated: 0.10: Use MPRIS from `clapper-enhancers` repo instead.
13791385 */
13801386void
13811387clapper_mpris_set_queue_controllable (ClapperMpris * self , gboolean controllable )
@@ -1397,6 +1403,8 @@ clapper_mpris_set_queue_controllable (ClapperMpris *self, gboolean controllable)
13971403 * Get whether remote `MPRIS` clients can control [class@Clapper.Queue].
13981404 *
13991405 * Returns: %TRUE if control over #ClapperQueue is allowed, %FALSE otherwise.
1406+ *
1407+ * Deprecated: 0.10: Use MPRIS from `clapper-enhancers` repo instead.
14001408 */
14011409gboolean
14021410clapper_mpris_get_queue_controllable (ClapperMpris * self )
@@ -1412,6 +1420,8 @@ clapper_mpris_get_queue_controllable (ClapperMpris *self)
14121420 * @art_url: (nullable): an art URL
14131421 *
14141422 * Set fallback artwork to show when media does not provide one.
1423+ *
1424+ * Deprecated: 0.10: Use MPRIS from `clapper-enhancers` repo instead.
14151425 */
14161426void
14171427clapper_mpris_set_fallback_art_url (ClapperMpris * self , const gchar * art_url )
@@ -1435,6 +1445,8 @@ clapper_mpris_set_fallback_art_url (ClapperMpris *self, const gchar *art_url)
14351445 * Get fallback art URL earlier set by user.
14361446 *
14371447 * Returns: (transfer full) (nullable): fallback art URL.
1448+ *
1449+ * Deprecated: 0.10: Use MPRIS from `clapper-enhancers` repo instead.
14381450 */
14391451gchar *
14401452clapper_mpris_get_fallback_art_url (ClapperMpris * self )
@@ -1611,6 +1623,8 @@ clapper_mpris_class_init (ClapperMprisClass *klass)
16111623 * Each #ClapperMpris instance running on the same system must have an unique name.
16121624 *
16131625 * Example: "org.mpris.MediaPlayer2.MyPlayer.instance123"
1626+ *
1627+ * Deprecated: 0.10: Use MPRIS from `clapper-enhancers` repo instead.
16141628 */
16151629 param_specs [PROP_OWN_NAME ] = g_param_spec_string ("own-name" ,
16161630 NULL , NULL , NULL ,
@@ -1622,6 +1636,8 @@ clapper_mpris_class_init (ClapperMprisClass *klass)
16221636 * A friendly name to identify the media player.
16231637 *
16241638 * Example: "My Player"
1639+ *
1640+ * Deprecated: 0.10: Use MPRIS from `clapper-enhancers` repo instead.
16251641 */
16261642 param_specs [PROP_IDENTITY ] = g_param_spec_string ("identity" ,
16271643 NULL , NULL , NULL ,
@@ -1631,6 +1647,8 @@ clapper_mpris_class_init (ClapperMprisClass *klass)
16311647 * ClapperMpris:desktop-entry:
16321648 *
16331649 * The basename of an installed .desktop file with the ".desktop" extension stripped.
1650+ *
1651+ * Deprecated: 0.10: Use MPRIS from `clapper-enhancers` repo instead.
16341652 */
16351653 param_specs [PROP_DESKTOP_ENTRY ] = g_param_spec_string ("desktop-entry" ,
16361654 NULL , NULL , NULL ,
@@ -1640,6 +1658,8 @@ clapper_mpris_class_init (ClapperMprisClass *klass)
16401658 * ClapperMpris:queue-controllable:
16411659 *
16421660 * Whether remote MPRIS clients can control #ClapperQueue.
1661+ *
1662+ * Deprecated: 0.10: Use MPRIS from `clapper-enhancers` repo instead.
16431663 */
16441664 param_specs [PROP_QUEUE_CONTROLLABLE ] = g_param_spec_boolean ("queue-controllable" ,
16451665 NULL , NULL , DEFAULT_QUEUE_CONTROLLABLE ,
@@ -1649,6 +1669,8 @@ clapper_mpris_class_init (ClapperMprisClass *klass)
16491669 * ClapperMpris:fallback-art-url:
16501670 *
16511671 * Fallback artwork to show when media does not provide one.
1672+ *
1673+ * Deprecated: 0.10: Use MPRIS from `clapper-enhancers` repo instead.
16521674 */
16531675 param_specs [PROP_FALLBACK_ART_URL ] = g_param_spec_string ("fallback-art-url" ,
16541676 NULL , NULL , NULL ,
0 commit comments