OSDN Git Service

HandBrake 0.1.1
authorroot <root@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Sat, 14 Jan 2006 12:48:06 +0000 (12:48 +0000)
committerroot <root@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Sat, 14 Jan 2006 12:48:06 +0000 (12:48 +0000)
git-svn-id: svn://localhost/HandBrake/trunk@2 b64f7644-9d1e-0410-96f1-a4d463321fa5

HBCommon.cpp
HBManager.cpp
Jamfile
NEWS

index e0e17a4..9a88cb5 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: HBCommon.cpp,v 1.5 2003/08/24 20:25:49 titer Exp $ */
+/* $Id: HBCommon.cpp,v 1.6 2003/08/24 21:56:03 titer Exp $ */
 
 #include "HBCommon.h"
 #include "HBFifo.h"
@@ -262,7 +262,8 @@ HBVolumeInfo::HBVolumeInfo( char * name, char * device )
     vmg = dvdplay_open( device, NULL, NULL );
     if( !vmg )
     {
-        Log( "VolumeInfo::DetectTitles: dvdplay_open() failed" );
+        Log( "VolumeInfo::DetectTitles: dvdplay_open() failed (%s)",
+             device );
         return;
     }
     
index 159d523..528a58a 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: HBManager.cpp,v 1.27 2003/08/24 20:25:49 titer Exp $ */
+/* $Id: HBManager.cpp,v 1.28 2003/08/24 21:56:03 titer Exp $ */
 
 #include "HBCommon.h"
 #include "HBManager.h"
@@ -289,7 +289,7 @@ void HBManager::DetectVolumes()
             
             BEntry entry, parentEntry;
             BPath  path;
-            while( query->GetNextEntry( &entry ) != B_ENTRY_NOT_FOUND )
+            while( query->GetNextEntry( &entry ) == B_OK )
             {
                 entry.GetParent( &parentEntry );
                 parentEntry.GetPath( &path );
diff --git a/Jamfile b/Jamfile
index a3eeaea..d9f72cc 100644 (file)
--- a/Jamfile
+++ b/Jamfile
@@ -1,6 +1,6 @@
-# $Id: Jamfile,v 1.13 2003/08/24 21:04:14 titer Exp $
+# $Id: Jamfile,v 1.15 2003/08/24 22:25:21 titer Exp $
 
-HB_VERSION = 0.1 ;
+HB_VERSION = 0.1.1 ;
 
 C++FLAGS = $(CPPFLAGS) ;
 C++FLAGS += -g -Wall -Werror -Wno-multichar -O3 -funroll-loops ;
diff --git a/NEWS b/NEWS
index 3a58503..3fe178b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,10 +1,15 @@
-$Id: NEWS,v 1.4 2003/08/24 20:25:49 titer Exp $
+$Id: NEWS,v 1.5 2003/08/24 22:25:21 titer Exp $
+
+Changes between 0.1 and 0.1.1
+ - Fixed a stupid bug that prevented to scan volumes correctly if
+   FAT/NTFS/etc volumes were mounted
 
 Changes between 0.1-alpha2 and 0.1 :
  - Automatically detect ripped DVDs on BFS volumes
  - Allow picture cropping and resizing
  - Allow dual-audio encoding
- - Created files are quite compliant now (tested with OSX/Quicktime and BSPlayer)
+ - Created files are quite compliant now (tested with OSX/Quicktime
+   and BSPlayer)
  - Better A/V sync with some DVDs
 
 Changes between 0.1-alpha and 0.1-alpha2 :