Author: pebender
Date: Sat Sep 20 08:14:36 2008
New Revision: 3775
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/video.pm
Log:
- Fixed a bug that caused the perl init scripts to fail to configure the
playback profile.
Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt Sat Sep 20
08:14:36 2008
@@ -1,7 +1,7 @@
MiniMyth Changelog
--------------------------------------------------------------------------------
-Changes since 58 (2008-09-19):
+Changes since 58 (2008-09-20):
Current MythTV versions
MythTV 0.20-softpad: version 0.20.2.softpad, release-0-20-fixes branch
svn 16082,
@@ -54,6 +54,8 @@
using the perl init scripts.
- Fixed a bug that caused multiline MiniMyth configuration variables to
fail when the perl init scripts are to process the variables.
+ - Fixed a bug that caused the perl init scripts to fail to configure
the
+ playback profile.
Renamed packages
Renamed lib/mpeg2dec to lib/libmpeg2.
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/video.pm
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/video.pm
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/video.pm
Sat Sep 20 08:14:36 2008
@@ -134,17 +134,17 @@
$pref{'pref_deint1'} = 'none';
$pref{'pref_filters'} = '';
my $profilegroupid =
$minimyth->mythdb_x_get('displayprofilegroups',
- { 'name'
=> 'MiniMyth' },
- 'profilegroupid');
+ { 'name'
=> 'MiniMyth' },
+ 'profilegroupid');
my $profileid = '';
if ($profilegroupid)
{
- $profilegroupid =
$minimyth->mythdb_x_get('displayprofiles',
-
{ 'profilegroupid' => $profilegroupid,
- 'value'
=> 'pref_priority',
- 'data'
=> '1'
},
- 'profileid',
-
{ 'condition_hostname' => 0 });
+ $profileid = $minimyth->mythdb_x_get('displayprofiles',
+ { 'profilegroupid' =>
$profilegroupid,
+ 'value'
=> 'pref_priority',
+ 'data'
=> '1' },
+ 'profileid',
+
{ 'condition_hostname' => 0 });
}
if ($profilegroupid)
{
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---