Latest Media Handler v2.4.X.000 (4 Viewers)

ajs

Development Group
  • Team MediaPortal
  • February 29, 2008
    15,750
    10,728
    Kyiv
    Home Country
    Ukraine Ukraine
    @catavolt
    Do not forget the #latestMediaHandler......latest.enabled if this property is not equal to true, then plug the fields are empty. And do not show the window with the latest. :D
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    15,750
    10,728
    Kyiv
    Home Country
    Ukraine Ukraine
    LatestMediaHandler 2.3.0.47 Beta.3
    + Add ability change latests view mode for TV Series (Latests Episodes, Latests Seasons, Latests Series)
    + Language file updated
    + Fix for thumbnails file name
    + Add skin property - #latestMediaHandler.tvseries.latest.mode - episodes, seasons, series
    + Add skin property - #latestMediaHandler.tvseries.latest.type
    + Add jump to Now Playing when music play start
     

    Attachments

    • LatestMediaHandler.2.3.0.47.Beta.3.zip
      230.4 KB
    • de.xml
      5.8 KB
    • en.xml
      5.9 KB
    • ru.xml
      6.5 KB

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    15,750
    10,728
    Kyiv
    Home Country
    Ukraine Ukraine
    @wizard123
    For standart TV Recording i see: :cool:
    Code:
        [TableColumn("idRecording", NotNull = true), PrimaryKey(AutoGenerated = true)] private int idRecording;
        [TableColumn("idChannel", NotNull = true), ForeignKey("Channel", "idChannel")] private int idChannel;
        [TableColumn("idSchedule", NotNull = true), ForeignKey("Schedule", "idSchedule")] private int idSchedule;
        [TableColumn("isRecording", NotNull = false)] private bool isRecording;
        [TableColumn("startTime", NotNull = true)] private DateTime startTime;
        [TableColumn("endTime", NotNull = true)] private DateTime endTime;
        [TableColumn("title", NotNull = true)] private string title;
        [TableColumn("description", NotNull = true)] private string description;
        [TableColumn("genre", NotNull = true)] private string genre;
        [TableColumn("fileName", NotNull = true)] private string fileName;
        [TableColumn("keepUntil", NotNull = true)] private int keepUntil;
        [TableColumn("keepUntilDate", NotNull = true)] private DateTime keepUntilDate;
        [TableColumn("timesWatched", NotNull = true)] private int timesWatched;
        [TableColumn("idServer", NotNull = true), ForeignKey("Server", "idServer")] private int idServer;
        // stores the last position - to make resume possible
        [TableColumn("stopTime", NotNull = true)] private int stopTime;
        [TableColumn("episodeName", NotNull = true)] private string episodeName;
        [TableColumn("seriesNum", NotNull = true)] private string seriesNum;
        [TableColumn("episodeNum", NotNull = true)] private string episodeNum;
        [TableColumn("episodePart", NotNull = true)] private string episodePart;
    Which fields are you interested in?
    Where to look for and ArgusTV and ForTheRecord, I do not know. :(
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    15,750
    10,728
    Kyiv
    Home Country
    Ukraine Ukraine
    Also Album Artist Bio when available
    If I can add here:
    SQL:
    SELECT strAlbumArtist, strAlbum, strFileType, MAX(dateAdded) as dateAdded, CAST(ROUND(AVG(iTimesPlayed)) AS INTEGER) as iTimesPlayed, MAX(dateLastPlayed) as dateLastPlayed, "+
                                     "GROUP_CONCAT(strGenre,'|') as strGenre, GROUP_CONCAT(strPath,'|') as strPath "+
                              "FROM tracks "+
                              "GROUP BY strAlbumArtist, strAlbum, strFileType "+
                              "ORDER BY {0} DESC LIMIT {1};
    I add it. :D:coffee:
     

    Users who are viewing this thread

    Top Bottom