diff options
-rw-r--r-- | Jamrules | 4 | ||||
-rw-r--r-- | NEWS | 8 | ||||
-rw-r--r-- | libhb/muxmp4.c | 2 | ||||
-rw-r--r-- | macosx/HandBrake.plist | 6 | ||||
-rw-r--r-- | macosx/HandBrake.xcodeproj/project.pbxproj | 4 |
5 files changed, 15 insertions, 9 deletions
@@ -11,8 +11,8 @@ if ! $(DEFINES) Exit "Please run ./configure first." ; } -HB_VERSION = 0.7.1-cvs ; -HB_BUILD = 2005110400 ; +HB_VERSION = 0.7.1 ; +HB_BUILD = 2006022400 ; DEFINES += HB_VERSION=\\\"$(HB_VERSION)\\\" HB_BUILD=$(HB_BUILD) ; LANGUAGES = fr de it pl ru nl es pt ja ; RM = rm -rf ; @@ -2,14 +2,18 @@ $Id: NEWS,v 1.28 2005/11/04 16:01:19 titer Exp $ NEWS file for HandBrake <http://handbrake.m0k.org/> -Changed between 0.7.0-beta3 and 0.7.0 +Changes between 0.7.0 and 0.7.1 + + Universal Binary for PPC and Intel + + Bugfixes + +Changes between 0.7.0-beta3 and 0.7.0 + Multithreaded H.264 encoding with x264 + Added option for H.264 Baseline (suitable for iPods) + (Very) experimental queue support + Fixes for some DVD titles HandBrake would not recognize + Fixes audio gliches when encoding from LPCM tracks -Changed between 0.6.2 and 0.7.0-beta3 +Changes between 0.6.2 and 0.7.0-beta3 + Chapters selection + Custom framerate + Subtitle support diff --git a/libhb/muxmp4.c b/libhb/muxmp4.c index a02a05232..646a2546e 100644 --- a/libhb/muxmp4.c +++ b/libhb/muxmp4.c @@ -132,7 +132,9 @@ static int MP4Mux( hb_mux_object_t * m, hb_mux_data_t * mux_data, static int MP4End( hb_mux_object_t * m ) { +#if 0 hb_job_t * job = m->job; +#endif char filename[1024]; memset( filename, 0, 1024 ); MP4Close( m->file ); diff --git a/macosx/HandBrake.plist b/macosx/HandBrake.plist index 12935842a..dd96953c4 100644 --- a/macosx/HandBrake.plist +++ b/macosx/HandBrake.plist @@ -9,7 +9,7 @@ <key>CFBundleExecutable</key> <string>HandBrake</string> <key>CFBundleGetInfoString</key> - <string>0.7.1-cvs</string> + <string>0.7.1</string> <key>CFBundleIconFile</key> <string>HandBrake.icns</string> <key>CFBundleIdentifier</key> @@ -21,11 +21,11 @@ <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> - <string>0.7.1-cvs</string> + <string>0.7.1</string> <key>CFBundleSignature</key> <string>HB##</string> <key>CFBundleVersion</key> - <string>2005110400</string> + <string>2006022400</string> <key>NSHumanReadableCopyright</key> <string>By Eric Petit <[email protected]></string> <key>NSMainNibFile</key> diff --git a/macosx/HandBrake.xcodeproj/project.pbxproj b/macosx/HandBrake.xcodeproj/project.pbxproj index 41d13b489..240f92229 100644 --- a/macosx/HandBrake.xcodeproj/project.pbxproj +++ b/macosx/HandBrake.xcodeproj/project.pbxproj @@ -39,7 +39,7 @@ isa = PBXBuildStyle; buildSettings = { COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 0.7.0; + CURRENT_PROJECT_VERSION = 0.7.1; GCC_DYNAMIC_NO_PIC = YES; GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_GENERATE_DEBUGGING_SYMBOLS = YES; @@ -550,7 +550,7 @@ isa = XCBuildConfiguration; buildSettings = { COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 0.7.0; + CURRENT_PROJECT_VERSION = 0.7.1; FRAMEWORK_SEARCH_PATHS = ""; GCC_DYNAMIC_NO_PIC = YES; GCC_ENABLE_FIX_AND_CONTINUE = NO; |