Author: pebender
Date: Tue Dec 30 19:32:45 2008
New Revision: 4153
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.sh/init.d/conf.d/MM_VIDEO
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/conf/MM_VIDEO.pm
Log:
- Fixed a bug that cuased MM_VIDEO_RESIZE_ENABLED to default to 'no'
rather than ''.
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 Tue Dec 30
19:32:45 2008
@@ -1,7 +1,7 @@
MiniMyth Changelog
--------------------------------------------------------------------------------
-Changes since 62 (2008-12-29):
+Changes since 62 (2008-12-30:
Current MythTV versions
MythTV 0.20-softpad: version 0.20.2.softpad, release-0-20-fixes branch
svn 16082,
@@ -51,6 +51,8 @@
perl init scripts.
- Fixed a bug that would cause confusing error messages when Wiimotes
were
enabled in minimyth.conf but no bluetooth device was present.
+ - Fixed a bug that cuased MM_VIDEO_RESIZE_ENABLED to default to 'no'
+ rather than ''.
Modified build system
- Enabled building of wmgui in utils/cwiid package.
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.sh/init.d/conf.d/MM_VIDEO
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.sh/init.d/conf.d/MM_VIDEO
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.sh/init.d/conf.d/MM_VIDEO
Tue Dec 30 19:32:45 2008
@@ -84,9 +84,6 @@
if /usr/bin/test -z "${MM_VIDEO_PLAYBACK_PROFILE}" ; then
MM_VIDEO_PLAYBACK_PROFILE='MiniMyth'
fi
- if /usr/bin/test -z "${MM_VIDEO_RESIZE_ENABLED}" ; then
- MM_VIDEO_RESIZE_ENABLED='no'
- fi
if /usr/bin/test "${MM_VIDEO_PLAYBACK_PROFILE}" = "none" ; then
MM_VIDEO_PLAYBACK_PROFILE=''
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/conf/MM_VIDEO.pm
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/conf/MM_VIDEO.pm
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/conf/MM_VIDEO.pm
Tue Dec 30 19:32:45 2008
@@ -143,8 +143,8 @@
};
$var_list{'MM_VIDEO_RESIZE_ENABLED'} =
{
- value_default => 'no',
- value_valid => 'no|yes'
+ value_default => '',
+ value_valid => '|no|yes'
};
1;
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---