Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb9506bb

Browse files
committed
Merge pull request#70 from E-B-Smith/master
Updates for Xcode 7.1.0 beta
2 parentsb938502 +a1b0768 commitb9506bb

File tree

4 files changed

+20
-7
lines changed

4 files changed

+20
-7
lines changed

‎SCXcodeMinimap.xcodeproj/project.pbxproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@
302302
18FE09AA1707639E00118FEB /* Project object */ = {
303303
isa = PBXProject;
304304
attributes = {
305-
LastUpgradeCheck =0500;
305+
LastUpgradeCheck =0700;
306306
ORGANIZATIONNAME = "Stefan Ceriu";
307307
};
308308
buildConfigurationList = 18FE09AD1707639E00118FEB /* Build configuration list for PBXProject "SCXcodeMinimap" */;
@@ -368,6 +368,7 @@
368368
CLANG_WARN_INT_CONVERSION = YES;
369369
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
370370
COPY_PHASE_STRIP = NO;
371+
ENABLE_TESTABILITY = YES;
371372
GCC_C_LANGUAGE_STANDARD = gnu99;
372373
GCC_DYNAMIC_NO_PIC = NO;
373374
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
@@ -434,6 +435,7 @@
434435
"$(inherited)",
435436
"$(SYSTEM_DEVELOPER_DIR)/../Plugins/**",
436437
);
438+
PRODUCT_BUNDLE_IDENTIFIER = "com.stefanceriu.${PRODUCT_NAME:rfc1034identifier}";
437439
PRODUCT_NAME = "$(TARGET_NAME)";
438440
WRAPPER_EXTENSION = xcplugin;
439441
};
@@ -462,6 +464,7 @@
462464
"$(inherited)",
463465
"$(SYSTEM_DEVELOPER_DIR)/../Plugins/**",
464466
);
467+
PRODUCT_BUNDLE_IDENTIFIER = "com.stefanceriu.${PRODUCT_NAME:rfc1034identifier}";
465468
PRODUCT_NAME = "$(TARGET_NAME)";
466469
WRAPPER_EXTENSION = xcplugin;
467470
};

‎SCXcodeMinimap.xcodeproj/xcshareddata/xcschemes/SCXcodeMinimap.xcscheme

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion ="0500"
3+
LastUpgradeVersion ="0700"
44
version ="2.0">
55
<BuildAction
66
parallelizeBuildables ="NO"
@@ -23,22 +23,25 @@
2323
</BuildActionEntries>
2424
</BuildAction>
2525
<TestAction
26+
buildConfiguration ="Debug"
2627
selectedDebuggerIdentifier ="Xcode.DebuggerFoundation.Debugger.LLDB"
2728
selectedLauncherIdentifier ="Xcode.DebuggerFoundation.Launcher.LLDB"
28-
shouldUseLaunchSchemeArgsEnv ="YES"
29-
buildConfiguration ="Debug">
29+
shouldUseLaunchSchemeArgsEnv ="YES">
3030
<Testables>
3131
</Testables>
32+
<AdditionalOptions>
33+
</AdditionalOptions>
3234
</TestAction>
3335
<LaunchAction
36+
buildConfiguration ="Debug"
3437
selectedDebuggerIdentifier ="Xcode.DebuggerFoundation.Debugger.LLDB"
3538
selectedLauncherIdentifier ="Xcode.DebuggerFoundation.Launcher.LLDB"
3639
launchStyle ="0"
3740
useCustomWorkingDirectory ="NO"
38-
buildConfiguration ="Debug"
3941
ignoresPersistentStateOnLaunch ="NO"
4042
debugDocumentVersioning ="NO"
4143
debugXPCServices ="NO"
44+
debugServiceExtension ="internal"
4245
allowLocationSimulation ="NO"
4346
viewDebuggingEnabled ="No">
4447
<PathRunnable
@@ -59,10 +62,10 @@
5962
</AdditionalOptions>
6063
</LaunchAction>
6164
<ProfileAction
65+
buildConfiguration ="Release"
6266
shouldUseLaunchSchemeArgsEnv ="YES"
6367
savedToolIdentifier =""
6468
useCustomWorkingDirectory ="NO"
65-
buildConfiguration ="Release"
6669
debugDocumentVersioning ="YES">
6770
</ProfileAction>
6871
<AnalyzeAction

‎SCXcodeMinimap/SCXcodeMinimap-Info.plist

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<key>CFBundleIconFile</key>
1010
<string></string>
1111
<key>CFBundleIdentifier</key>
12-
<string>com.stefanceriu.${PRODUCT_NAME:rfc1034identifier}</string>
12+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
1313
<key>CFBundleInfoDictionaryVersion</key>
1414
<string>6.0</string>
1515
<key>CFBundleName</key>
@@ -39,6 +39,8 @@
3939
<string>8DC44374-2B35-4C57-A6FE-2AD66A36AAD9</string>
4040
<string>7FDF5C7A-131F-4ABB-9EDC-8C5F8F0B8A90</string>
4141
<string>AABB7188-E14E-4433-AD3B-5CD791EAD9A3</string>
42+
<string>CC0D0F4F-05B3-431A-8F33-F84AFCB2C651</string>
43+
<string>0420B86A-AA43-4792-9ED0-6FE0F2B16A13</string>
4244
</array>
4345
<key>LSMinimumSystemVersion</key>
4446
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>

‎SCXcodeMinimap/SCXcodeMinimapView.m

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,11 @@ - (void)layoutManagerDidRequestSelectedSymbolInstancesHighlight:(DVTLayoutManage
509509
[selfinvalidateHighligtedSymbols];
510510
}
511511

512+
- (id)foldingTokenTypesForLayoutManager:(DVTLayoutManager *)layoutManager
513+
{
514+
returnnil;
515+
}
516+
512517
#pragma mark - IDESourceCodeEditorSearchResultsDelegate
513518

514519
- (void)sourceCodeEditorDidUpdateSearchResults:(IDESourceCodeEditor *)editor

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp