IMDb plugin + downloader: parse IMDb alternative titles and use to match
[cinaest] / src / imdb / plaintext-downloader-interface.vala
index bdacd6d..af7eae3 100644 (file)
@@ -1,14 +1,15 @@
 using GLib;
 
-[DBus (name = "org.maemo.garage.cinaest.Downloader", signals = ("progress", "description_changed"))]
+[DBus (name = "org.maemo.cinaest.Downloader", signals = ("progress", "description_changed"))]
 public interface IMDbDownloader {
-       public const string DBUS_SERVICE = "org.maemo.garage.cinaest.IMDb";
-       public const string DBUS_OBJECT = "/org/maemo/garage/cinaest/imdb";
-       public const string DBUS_IFACE = "org.maemo.garage.cinaest.Downloader";
+       public const string DBUS_SERVICE = "org.maemo.cinaest.IMDb";
+       public const string DBUS_OBJECT = "/org/maemo/cinaest/imdb";
+       public const string DBUS_IFACE = "org.maemo.cinaest.Downloader";
        public const int MOVIES = 0x1;
        public const int GENRES = 0x2;
        public const int RATINGS = 0x4;
-       public const int PLOTS = 0x8;
+       public const int AKAS = 0x4;
+       public const int PLOTS = 0x10;
        public const int SERIES = 0x100;
        public const int TV = 0x200;
        public const int VIDEO = 0x400;