Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjustment with Xcode 8 & iOS 10 #160

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ build/*
*.perspective
*.perspectivev3
*~.nib
DerivedData

## ignore private workspace stuff added by Xcode4
xcuserdata
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
url = git://github.com/FFmpeg/FFmpeg.git
[submodule "gas-preprocessor"]
path = gas-preprocessor
url=git://github.com/libav/gas-preprocessor.git
url = git://github.com/libav/gas-preprocessor.git
4 changes: 3 additions & 1 deletion KxMovieExample/KxMovieExample-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>ru.kolyvan.${PRODUCT_NAME:rfc1034identifier}</string>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
Expand All @@ -30,6 +30,8 @@
<array>
<string>armv7</string>
</array>
<key>UIRequiresFullScreen</key>
<true/>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
Expand Down
8 changes: 6 additions & 2 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
platform :ios, '7.0'
source 'https://github.com/CocoaPods/Specs.git'

pod 'NSLogger'
platform :ios, '8.0'

target 'KxMovieExample' do
pod 'NSLogger'
end
10 changes: 7 additions & 3 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
PODS:
- NSLogger (1.2)
- NSLogger (1.7.0):
- NSLogger/Standard (= 1.7.0)
- NSLogger/Standard (1.7.0)

DEPENDENCIES:
- NSLogger

SPEC CHECKSUMS:
NSLogger: 9607fdeafd0b09922c69615f99f127de45971b8f
NSLogger: daa17368272ddf10a0850c218fe49de23b50f2eb

COCOAPODS: 0.32.1
PODFILE CHECKSUM: f86598c4dca8de5ec784fcd0b8e5458a02563cb7

COCOAPODS: 1.0.1
1 change: 0 additions & 1 deletion Pods/BuildHeaders/NSLogger/LoggerClient.h

This file was deleted.

1 change: 0 additions & 1 deletion Pods/BuildHeaders/NSLogger/LoggerCommon.h

This file was deleted.

1 change: 0 additions & 1 deletion Pods/BuildHeaders/NSLogger/NSLogger.h

This file was deleted.

1 change: 0 additions & 1 deletion Pods/Headers/NSLogger/LoggerClient.h

This file was deleted.

1 change: 0 additions & 1 deletion Pods/Headers/NSLogger/LoggerCommon.h

This file was deleted.

1 change: 0 additions & 1 deletion Pods/Headers/NSLogger/NSLogger.h

This file was deleted.

1 change: 1 addition & 0 deletions Pods/Headers/Private/NSLogger/LoggerClient.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Pods/Headers/Private/NSLogger/LoggerCommon.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Pods/Headers/Private/NSLogger/NSLogger.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Pods/Headers/Public/NSLogger/LoggerClient.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Pods/Headers/Public/NSLogger/LoggerCommon.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Pods/Headers/Public/NSLogger/NSLogger.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 7 additions & 3 deletions Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

161 changes: 61 additions & 100 deletions Pods/NSLogger/Client Logger/iOS/LoggerClient.h

Large diffs are not rendered by default.

Loading