Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions HandBrakeBatch.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@
ORGANIZATIONNAME = "";
TargetAttributes = {
0EEC803A1369B4EA00D05124 = {
DevelopmentTeam = WEY78UNE2S;
DevelopmentTeam = 3SX6WAM729;
};
};
};
Expand All @@ -274,6 +274,7 @@
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
English,
en,
);
mainGroup = 0EEC80301369B4EA00D05124;
Expand Down Expand Up @@ -425,9 +426,10 @@
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_OBJC_RECEIVER_WEAK = NO;
CODE_SIGN_IDENTITY = "Mac Developer";
CODE_SIGN_IDENTITY = "Apple Development";
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
DEVELOPMENT_TEAM = 3SX6WAM729;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)\"",
Expand All @@ -450,10 +452,11 @@
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_OBJC_RECEIVER_WEAK = NO;
CODE_SIGN_IDENTITY = "Mac Developer";
CODE_SIGN_IDENTITY = "Apple Development";
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = 3SX6WAM729;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)\"",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
2 changes: 1 addition & 1 deletion HandBrakeBatch/HBBPresets.m
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ - (void)initPresets {
// If no presets, use the default ones
if ( [tempDict count] == 0 ) {
for (NSString *currentPreset in defaultPresets) {
tempDict[currentPreset] = [NSString stringWithFormat:@"--preset %@", currentPreset];
tempDict[currentPreset] = [NSString stringWithFormat:@"--preset\a%@", currentPreset];
NSLog(@"Loading default preset '%@'", currentPreset);
}
}
Expand Down
2 changes: 1 addition & 1 deletion HandBrakeBatch/HBBProgressController.m
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ - (void)processQueue {

BOOL ignoreFollowing = NO;

for (NSString *currentArg in [self.preset componentsSeparatedByCharactersInSet :[NSCharacterSet whitespaceCharacterSet]]) {
for (NSString *currentArg in [self.preset componentsSeparatedByString :@"\a"]) {

// We filter out the -a x,y,z argument: added later depending on the audio language preferences
if (!ignoreFollowing) {
Expand Down
Loading