<div dir="ltr"><br><br><div class="gmail_quote"><div dir="ltr">On Wed, Dec 9, 2015 at 9:47 AM Daryl McDonald <<a href="mailto:darylangela@gmail.com">darylangela@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Tue, Dec 8, 2015 at 6:55 PM, Jerome Yuzyk <span dir="ltr"><<a href="mailto:jerome@supernet.ab.ca" target="_blank">jerome@supernet.ab.ca</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><u></u>
<div style="font-family:'Courier 10 Pitch';font-size:10pt;font-weight:400;font-style:normal">
<p style="margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;text-indent:0px"> </p>
<p style="margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;text-indent:0px">Curious about an oddity I just noticed in 0.27.4 Watch Recordings using the MythCenter-Wide theme.</p>
<p style="margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;text-indent:0px"> </p>
<p style="margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;text-indent:0px">As I scroll through the master (left list) there is a comment below the Show Title like </p>
<p style="margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;text-indent:0px"> </p>
<p style="margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;text-indent:0px"> "There are 5 recordings in this display group, which consume 6.60GB"</p>
<p style="margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;text-indent:0px"> </p>
<p style="margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;text-indent:0px">Except when there's only 1 recording, like a movie:</p>
<p style="margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;text-indent:0px"> </p>
<p style="margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;text-indent:0px"> "There is 1 recording in this display group"</p>
<p style="margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;text-indent:0px"> </p>
<p style="margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;text-indent:0px">Why special-case this comment and not show the size of that file?</p>
<p style="margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;text-indent:0px"> </p>
<p style="margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;text-indent:0px">-- </p>
<p style="margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;text-indent:0px">A little of Jerome's MythTV World: <a href="http://mythtv.bss.ab.ca" target="_blank">http://mythtv.bss.ab.ca</a></p></div><br>_______________________________________________<br>
mythtv-users mailing list<br>
<a href="mailto:mythtv-users@mythtv.org" target="_blank">mythtv-users@mythtv.org</a><br>
<a href="http://lists.mythtv.org/mailman/listinfo/mythtv-users" rel="noreferrer" target="_blank">http://lists.mythtv.org/mailman/listinfo/mythtv-users</a><br>
<a href="http://wiki.mythtv.org/Mailing_List_etiquette" rel="noreferrer" target="_blank">http://wiki.mythtv.org/Mailing_List_etiquette</a><br>
MythTV Forums: <a href="https://forum.mythtv.org" rel="noreferrer" target="_blank">https://forum.mythtv.org</a></blockquote><div><br></div></div></div></div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div>In Steppes Wide I can see the size of any single recording on the right with the description of the recording, redundancy? </div></div></div></div></blockquote><div><br></div><div>Take a look at function PlaybackBox::updateGroupInfo in mythtv/programs/mythfrontend/playbackbox.cpp. It has:<br><br>if (countInGroup > 1)<br><br></div><div>for the part of the code which adds the "consume" message. If you want to see when that line was last modified, you can do<br><br></div><div>$ git blame mythtv/programs/mythfrontend/playbackbox.cpp<br><br></div><div>and then search for that line. On the left you will see the commit hash. In this case it is 7349a860. You can get the details about that change by doing:<br><br></div><div>$ git show 7349a860<br><br>commit 7349a860a4416017ec9d6e2c2cd0641ec2b3d4e4
Author: David Engel<br>Date: Thu Jan 31 20:02:28 2013 -0600
<br><br>Remove the Delete Recordings screen.<br><br>This screen was nearly functionally identical to the Watch Recordings
screen. The primary differences between the two were the default
sorting order and whether the default SELECT action deleted or played
the currently selected recording. The one, small, hard-coded feature
of Delete Recording to display the total disk space used by a group
has been added to Watch Recordings. The remaining difference is the
displayed information and that is controlled by the theme. Of the
included themes, only MythCenter-wide had specail support for Delete
Recordings. For it, the total disk usage bar-graph has been added to
Watch Recordings.
<br></div><div><br><br></div><div>John<br></div></div></div>