diff options
author | scop <scop@e10066b5-e1e2-0310-b819-94efdf66514b> | 2008-01-01 11:41:49 +0000 |
---|---|---|
committer | scop <scop@e10066b5-e1e2-0310-b819-94efdf66514b> | 2008-01-01 11:41:49 +0000 |
commit | 3f97eebd6d0c8c74c54ebbd01b49dd0649e7c4fe (patch) | |
tree | 71ba03624c9eb4d7f4599230db8afcdd90c46962 | |
parent | 46fd0b6a3ef6cbd8cbcfc26f4399103d33c5d8fd (diff) | |
download | vdr-plugin-muggle-3f97eebd6d0c8c74c54ebbd01b49dd0649e7c4fe.tar.gz vdr-plugin-muggle-3f97eebd6d0c8c74c54ebbd01b49dd0649e7c4fe.tar.bz2 |
Rename image_convert.sh to muggle-image-convert.
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@970 e10066b5-e1e2-0310-b819-94efdf66514b
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | mg_image_provider.c | 2 | ||||
-rwxr-xr-x | scripts/muggle-image-convert (renamed from scripts/image_convert.sh) | 0 |
4 files changed, 3 insertions, 2 deletions
@@ -295,3 +295,4 @@ XXXXXXXXXX: Version 0.0.8-ALPHA 200x-xx-xx: Version x.x.x - Fix compilation and some compiler warnings. - Fix build with FLAC++ >= 1.1.3. +- Rename image_convert.sh to muggle-image-convert, make it a bit more robust. @@ -271,7 +271,7 @@ screen. This is a known "behavior". Currently, the database entry (album.coverimg) is not taken into account. -During installation, make sure that the script called image_convert.sh +During installation, make sure that the script called muggle-image-convert (from the scripts directory) is somewhere in your PATH. Also, make sure to use the -c flag if you use a runvdr (or similar) script. diff --git a/mg_image_provider.c b/mg_image_provider.c index 0891628..aeab5ec 100644 --- a/mg_image_provider.c +++ b/mg_image_provider.c @@ -362,7 +362,7 @@ void mgImageProvider::Action() char *tmp; - asprintf( &tmp, "image_convert.sh \"%s\" \"%s\"", filename.c_str(), tmpFile.c_str() ); + asprintf( &tmp, "muggle-image-convert \"%s\" \"%s\"", filename.c_str(), tmpFile.c_str() ); system( (const char*) tmp ); free(tmp); diff --git a/scripts/image_convert.sh b/scripts/muggle-image-convert index 34ed8d5..34ed8d5 100755 --- a/scripts/image_convert.sh +++ b/scripts/muggle-image-convert |