Skip to content
This repository has been archived by the owner on Apr 15, 2023. It is now read-only.

Commit

Permalink
[mythtv-cmyth] Release v1.9.14
Browse files Browse the repository at this point in the history
  • Loading branch information
fetzerch committed Jan 15, 2014
1 parent 9021115 commit cd21e85
Show file tree
Hide file tree
Showing 55 changed files with 6,241 additions and 181 deletions.
14 changes: 13 additions & 1 deletion addons/pvr.mythtv.cmyth/Makefile.am
Expand Up @@ -33,4 +33,16 @@ libmythtvcmyth_addon_la_SOURCES = src/client.cpp \
src/cppmyth/MythRecordingRule.cpp \
src/cppmyth/MythTimestamp.cpp \
src/cppmyth/MythEPGInfo.cpp \
src/cppmyth/MythScheduleManager.cpp
src/cppmyth/MythScheduleManager.cpp \
src/demux.cpp \
src/demuxer/debug.cpp \
src/demuxer/elementaryStream.cpp \
src/demuxer/tsDemuxer.cpp \
src/demuxer/bitstream.cpp \
src/demuxer/ES_MPEGVideo.cpp \
src/demuxer/ES_MPEGAudio.cpp \
src/demuxer/ES_h264.cpp \
src/demuxer/ES_AAC.cpp \
src/demuxer/ES_AC3.cpp \
src/demuxer/ES_Subtitle.cpp \
src/demuxer/ES_Teletext.cpp
2 changes: 1 addition & 1 deletion addons/pvr.mythtv.cmyth/addon/addon.xml.in
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.mythtv.cmyth"
version="1.9.13"
version="1.9.14"
name="MythTV cmyth PVR Client"
provider-name="Christian Fetzer, Jean-Luc Barrière, Tonny Petersen">
<requires>
Expand Down
13 changes: 13 additions & 0 deletions addons/pvr.mythtv.cmyth/addon/changelog.txt
@@ -1,3 +1,16 @@
v1.9.14
- Added demuxer (optional)
- Improved timeshifting (GetPlayingTime, GetBufferStart/EndTime)
- Faster channel switching
- Added possibility to start backend using Wake-on-LAN
- Added client actions
- Toogle visibility of recordings that are in state 'Not recording'
- Create special recording rules (series recording)
- Fixed compatibility with MythTV 0.27 backend
- Fixed channel icon download
- Fixed schedule management
- Fixed recognizing merged channels

v1.9.13
- add timeshift buffer functions

Expand Down
Expand Up @@ -66,6 +66,10 @@ msgctxt "#30011"
msgid "Prefer Live TV and cancel conflicting recording"
msgstr ""

msgctxt "#30012"
msgid "MythTV Backend Ethernet address (WOL)"
msgstr ""

msgctxt "#30019"
msgid "General"
msgstr ""
Expand Down Expand Up @@ -126,6 +130,14 @@ msgctxt "#30049"
msgid "Recording template"
msgstr ""

msgctxt "#30050"
msgid "Advanced"
msgstr ""

msgctxt "#30052"
msgid "Enable demuxing MPEG-TS"
msgstr ""

# Systeminformation labels
msgctxt "#30100"
msgid "Protocol version: %i - Database version: %i"
Expand Down Expand Up @@ -172,6 +184,18 @@ msgctxt "#30309"
msgid "Not recording"
msgstr ""

msgctxt "#30310"
msgid "Enabled"
msgstr ""

msgctxt "#30311"
msgid "Disabled"
msgstr ""

msgctxt "#30312"
msgid "No broadcast found"
msgstr ""

# Menu Hooks
msgctxt "#30411"
msgid "Delete and re-record"
Expand All @@ -180,3 +204,27 @@ msgstr ""
msgctxt "#30412"
msgid "Keep LiveTV recording"
msgstr ""

msgctxt "#30421"
msgid "Show/hide rules with status 'Not Recording'"
msgstr ""

msgctxt "#30431"
msgid "Record all showings (this channel)"
msgstr ""

msgctxt "#30432"
msgid "Record this showing every week"
msgstr ""

msgctxt "#30433"
msgid "Record this showing every day"
msgstr ""

msgctxt "#30434"
msgid "Record one showing (all channels)"
msgstr ""

msgctxt "#30435"
msgid "Record all new episodes (this channel)"
msgstr ""
4 changes: 4 additions & 0 deletions addons/pvr.mythtv.cmyth/addon/resources/settings.xml
Expand Up @@ -8,6 +8,7 @@
<setting id="db_name" type="text" label="30004" default="mythconverg" />
<setting id="db_host" type="text" visible="false" />
<setting id="db_port" type="number" option="int" visible="false" default="3306" />
<setting id="host_ether" type="text" label="30012" default="" />
<setting id="extradebug" type="bool" label="30005" default="false" />
<setting id="livetv" type="bool" label="30006" default="true" />
<setting id="livetv_priority" type="bool" label="30007" default="true" />
Expand All @@ -26,4 +27,7 @@
<setting id="rec_autorunjob3" type="bool" label="30031" enable="eq(-9,0)" default="false" />
<setting id="rec_autorunjob4" type="bool" label="30032" enable="eq(-10,0)" default="false" />
</category>
<category label="30050">
<setting id="demuxing" type="bool" label="30052" default="false" />
</category>
</settings>
Expand Up @@ -26,6 +26,18 @@
<ClCompile Include="..\..\src\cppmyth\MythStorageGroupFile.cpp" />
<ClCompile Include="..\..\src\cppmyth\MythSignal.cpp" />
<ClCompile Include="..\..\src\cppmyth\MythTimestamp.cpp" />
<ClCompile Include="..\..\src\demux.cpp" />
<ClCompile Include="..\..\src\demuxer\bitstream.cpp" />
<ClCompile Include="..\..\src\demuxer\debug.cpp" />
<ClCompile Include="..\..\src\demuxer\elementaryStream.cpp" />
<ClCompile Include="..\..\src\demuxer\ES_AAC.cpp" />
<ClCompile Include="..\..\src\demuxer\ES_AC3.cpp" />
<ClCompile Include="..\..\src\demuxer\ES_h264.cpp" />
<ClCompile Include="..\..\src\demuxer\ES_MPEGAudio.cpp" />
<ClCompile Include="..\..\src\demuxer\ES_MPEGVideo.cpp" />
<ClCompile Include="..\..\src\demuxer\ES_Subtitle.cpp" />
<ClCompile Include="..\..\src\demuxer\ES_Teletext.cpp" />
<ClCompile Include="..\..\src\demuxer\tsDemuxer.cpp" />
<ClCompile Include="..\..\src\fileOps.cpp" />
<ClCompile Include="..\..\src\pvrclient-mythtv.cpp" />
</ItemGroup>
Expand All @@ -47,6 +59,21 @@
<ClInclude Include="..\..\src\cppmyth\MythStorageGroupFile.h" />
<ClInclude Include="..\..\src\cppmyth\MythSignal.h" />
<ClInclude Include="..\..\src\cppmyth\MythTimestamp.h" />
<ClInclude Include="..\..\src\demux.h" />
<ClInclude Include="..\..\src\demuxer\bitstream.h" />
<ClInclude Include="..\..\src\demuxer\common.h" />
<ClInclude Include="..\..\src\demuxer\debug.h" />
<ClInclude Include="..\..\src\demuxer\elementaryStream.h" />
<ClInclude Include="..\..\src\demuxer\ES_AAC.h" />
<ClInclude Include="..\..\src\demuxer\ES_AC3.h" />
<ClInclude Include="..\..\src\demuxer\ES_h264.h" />
<ClInclude Include="..\..\src\demuxer\ES_MPEGAudio.h" />
<ClInclude Include="..\..\src\demuxer\ES_MPEGVideo.h" />
<ClInclude Include="..\..\src\demuxer\ES_Subtitle.h" />
<ClInclude Include="..\..\src\demuxer\ES_Teletext.h" />
<ClInclude Include="..\..\src\demuxer\tsDemuxer.h" />
<ClInclude Include="..\..\src\demuxer\tsPacket.h" />
<ClInclude Include="..\..\src\demuxer\tsTable.h" />
<ClInclude Include="..\..\src\fileOps.h" />
<ClInclude Include="..\..\src\pvrclient-mythtv.h" />
<ClInclude Include="..\..\src\tools.h" />
Expand Down
Expand Up @@ -44,6 +44,40 @@
<ClCompile Include="..\..\src\cppmyth\MythScheduleManager.cpp">
<Filter>cppmyth</Filter>
</ClCompile>
<ClCompile Include="..\..\src\demuxer\elementaryStream.cpp">
<Filter>demuxer</Filter>
</ClCompile>
<ClCompile Include="..\..\src\demuxer\ES_AAC.cpp">
<Filter>demuxer</Filter>
</ClCompile>
<ClCompile Include="..\..\src\demuxer\ES_AC3.cpp">
<Filter>demuxer</Filter>
</ClCompile>
<ClCompile Include="..\..\src\demuxer\ES_h264.cpp">
<Filter>demuxer</Filter>
</ClCompile>
<ClCompile Include="..\..\src\demuxer\ES_MPEGAudio.cpp">
<Filter>demuxer</Filter>
</ClCompile>
<ClCompile Include="..\..\src\demuxer\ES_MPEGVideo.cpp">
<Filter>demuxer</Filter>
</ClCompile>
<ClCompile Include="..\..\src\demuxer\ES_Subtitle.cpp">
<Filter>demuxer</Filter>
</ClCompile>
<ClCompile Include="..\..\src\demuxer\ES_Teletext.cpp">
<Filter>demuxer</Filter>
</ClCompile>
<ClCompile Include="..\..\src\demuxer\tsDemuxer.cpp">
<Filter>demuxer</Filter>
</ClCompile>
<ClCompile Include="..\..\src\demuxer\bitstream.cpp">
<Filter>demuxer</Filter>
</ClCompile>
<ClCompile Include="..\..\src\demux.cpp" />
<ClCompile Include="..\..\src\demuxer\debug.cpp">
<Filter>demuxer</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\src\client.h" />
Expand Down Expand Up @@ -94,6 +128,49 @@
<ClInclude Include="..\..\src\cppmyth\MythScheduleManager.h">
<Filter>cppmyth</Filter>
</ClInclude>
<ClInclude Include="..\..\src\demuxer\ES_Teletext.h">
<Filter>demuxer</Filter>
</ClInclude>
<ClInclude Include="..\..\src\demuxer\elementaryStream.h">
<Filter>demuxer</Filter>
</ClInclude>
<ClInclude Include="..\..\src\demuxer\ES_AAC.h">
<Filter>demuxer</Filter>
</ClInclude>
<ClInclude Include="..\..\src\demuxer\ES_AC3.h">
<Filter>demuxer</Filter>
</ClInclude>
<ClInclude Include="..\..\src\demuxer\ES_h264.h">
<Filter>demuxer</Filter>
</ClInclude>
<ClInclude Include="..\..\src\demuxer\ES_MPEGAudio.h">
<Filter>demuxer</Filter>
</ClInclude>
<ClInclude Include="..\..\src\demuxer\ES_MPEGVideo.h">
<Filter>demuxer</Filter>
</ClInclude>
<ClInclude Include="..\..\src\demuxer\ES_Subtitle.h">
<Filter>demuxer</Filter>
</ClInclude>
<ClInclude Include="..\..\src\demuxer\tsDemuxer.h">
<Filter>demuxer</Filter>
</ClInclude>
<ClInclude Include="..\..\src\demuxer\tsPacket.h">
<Filter>demuxer</Filter>
</ClInclude>
<ClInclude Include="..\..\src\demuxer\tsTable.h">
<Filter>demuxer</Filter>
</ClInclude>
<ClInclude Include="..\..\src\demuxer\bitstream.h">
<Filter>demuxer</Filter>
</ClInclude>
<ClInclude Include="..\..\src\demuxer\common.h">
<Filter>demuxer</Filter>
</ClInclude>
<ClInclude Include="..\..\src\demux.h" />
<ClInclude Include="..\..\src\demuxer\debug.h">
<Filter>demuxer</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<Filter Include="cppmyth">
Expand All @@ -111,6 +188,9 @@
<Filter Include="addon\resources\language\English">
<UniqueIdentifier>{3ba85d2f-45bc-4080-8895-55949f7f52a7}</UniqueIdentifier>
</Filter>
<Filter Include="demuxer">
<UniqueIdentifier>{af26b031-f1b0-4eed-bdb7-1e12feef27d0}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<None Include="..\..\addon\changelog.txt">
Expand Down

0 comments on commit cd21e85

Please sign in to comment.