Skip to content
Commits on Source (6)
0.40.3
======
Tracker3:
- Fix deadlock on start-up
- Use the correct graph name for Videos
All contributors to this release:
- Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
- Jens Georg <mail@jensge.org>
- Quentin PAGÈS <pages_quentin@hotmail.com>
0.40.2
======
......
......@@ -40,7 +40,7 @@
{
"type" : "git",
"url" : "https://gitlab.gnome.org/GNOME/gssdp.git/",
"branch" : "master"
"branch" : "gssdp-1.4"
}
]
},
......@@ -51,7 +51,7 @@
{
"type" : "git",
"url" : "https://gitlab.gnome.org/GNOME/gupnp.git/",
"branch" : "master"
"branch" : "gupnp-1.4"
}
]
},
......
project('rygel', 'vala', 'c', version : '0.40.2', meson_version : '>= 0.55.0')
project('rygel', 'vala', 'c', version : '0.40.3', meson_version : '>= 0.55.0')
vala = meson.get_compiler('vala')
# Check for the required vala version
......
......@@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: rygel master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/rygel/issues\n"
"POT-Creation-Date: 2020-12-27 17:59+0000\n"
"PO-Revision-Date: 2021-08-11 21:47+0200\n"
"POT-Creation-Date: 2021-08-11 19:48+0000\n"
"PO-Revision-Date: 2021-10-08 10:11+0200\n"
"Last-Translator: Quentin PAGÈS\n"
"Language-Team: Tot En Òc\n"
"Language: oc\n"
......@@ -246,7 +246,7 @@ msgstr ""
#: src/librygel-core/rygel-cmdline-config.vala:100
msgid "Shut down remote Rygel reference"
msgstr "Éteindre la referéncia extèrna de Rygel"
msgstr "Atudar la referéncia extèrna de Rygel"
#: src/librygel-core/rygel-cmdline-config.vala:102
msgid "Replace currently running instance of Rygel"
......
......@@ -34,15 +34,15 @@ public class Rygel.Tracker.RootContainer : Rygel.SimpleContainer {
public static Sparql.Connection connection;
static construct {
try {
RootContainer.connection = Sparql.Connection.bus_new (TRACKER_SERVICE, null);
} catch (Error err) {
error ("Failed to connect to tracker: %s", err.message);
public RootContainer (string title) {
if (RootContainer.connection == null) {
try {
RootContainer.connection = Sparql.Connection.bus_new (TRACKER_SERVICE, null);
} catch (Error err) {
error ("Failed to connect to tracker: %s", err.message);
}
}
}
public RootContainer (string title) {
base.root (title);
if (this.get_bool_config_without_error ("share-music")) {
......
......@@ -42,7 +42,7 @@ public class Rygel.Tracker.VideoItemFactory : ItemFactory {
private const string CATEGORY = "nmm:Video";
private const string CATEGORY_IRI = "http://www.tracker-project.org/" +
"temp/nmm#Video";
private const string GRAPH = "tracker:Videos";
private const string GRAPH = "tracker:Video";
public VideoItemFactory () {
var upload_folder = Environment.get_user_special_dir
......