Reply to thread

Hi All


I have made some modifications to handling of episodeNumber in TVGuide, MiniTvGuide, RecordedTV and Record


- The episode number i displayed in () after the Title in the TVGuide,MiniGuide, RecordedTV and Record

  In Record one can see the epsiodeNumber so that the same show i not recorded twice.


- Recordings are group under Title and displayed with episodenumber


- The episodeNumber and seriesNumber are saved in the TAG for recordings if recording should be imported later

[CODE]<?xml version="1.0" encoding="UTF-8"?>

<tags>

  <tag>

    <SimpleTag>

      <name>TITLE</name>

      <value>Kylie's All Time Top 40 </value>

    </SimpleTag>

    <SimpleTag>

      <name>COMMENT</name>

      <value>Pop/rockVi fejrer Kylies 40 års fødselsdag med en nedtælling af hendes 40 bedste hits.

rock/pop</value>

    </SimpleTag>

    <SimpleTag>

      <name>GENRE</name>

      <value>rock/pop</value>

    </SimpleTag>

    <SimpleTag>

      <name>CHANNEL_NAME</name>

      <value>VH1</value>

    </SimpleTag>

    <SimpleTag>

      <name>EPISODENUM</name>

      <value>1</value>

    </SimpleTag>

    <SimpleTag>

      <name>SERIESNUM</name>

      <value></value>

    </SimpleTag>

  </tag>

</tags>[/CODE]


- Added edisodeNum and seriesNum to table Recordings


- Modified parsing of episodeNum in XMLTVimport to not discard bad formated episodenumbers (EX: part 1 of 3)


- Modified VirtualDirectory to not display extensions for disc-images (*.iso)


patch for latest svn 22029


Top Bottom