Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/ios.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarinofaggiana <marino@marinofaggiana.com>2020-10-02 18:36:43 +0300
committermarinofaggiana <marino@marinofaggiana.com>2020-10-02 18:36:43 +0300
commit99360cdafe58e4ea01fe4df5138ada7addfd0a36 (patch)
tree322d4e35a7f66960c80c4469cb9a00ce09e3a8f2 /Carthage
parentfa8e64a38521b76cd8fadd40bb4956b31cf7ad28 (diff)
remove code
Diffstat (limited to 'Carthage')
-rw-r--r--Carthage/Checkouts/CocoaLumberjack/CHANGELOG.md14
-rw-r--r--Carthage/Checkouts/CocoaLumberjack/CocoaLumberjack.podspec12
-rw-r--r--Carthage/Checkouts/CocoaLumberjack/Demos/LogFileCompressor/CompressingLogFileManager.m25
3 files changed, 23 insertions, 28 deletions
diff --git a/Carthage/Checkouts/CocoaLumberjack/CHANGELOG.md b/Carthage/Checkouts/CocoaLumberjack/CHANGELOG.md
index 8117e4db9..33bdc3c93 100644
--- a/Carthage/Checkouts/CocoaLumberjack/CHANGELOG.md
+++ b/Carthage/Checkouts/CocoaLumberjack/CHANGELOG.md
@@ -1,8 +1,18 @@
-## [3.7.0 - Xcode 12 on ???, 2020](https://github.com/CocoaLumberjack/CocoaLumberjack/releases/tag/3.7.0)
+## [3.7.1 - Xcode 12 on ???, 2020](https://github.com/CocoaLumberjack/CocoaLumberjack/releases/tag/3.7.0)
### Public
-- _PLEASE REPLACE WITH FIRST ENTRY_
+- _TBD_
+
+## [3.7.0 - Xcode 12 on Oct 2nd, 2020](https://github.com/CocoaLumberjack/CocoaLumberjack/releases/tag/3.7.0)
+
+### Public
+
+- **Breaking change**: Dropped support for iOS 8 (#1153)
+- Update SPM tools-version to 5.3 to enable Swift 5.3 support (#1148)
+- Add backend for swift-log (#1164)
+- Specify CocoaPods version to ensure `swift_version` attribute works (#1167)
+- Simplify `DDLogFileManager` callbacks for archived log files (#1166)
## [3.6.2 - Xcode 11.6 on July 31st, 2020](https://github.com/CocoaLumberjack/CocoaLumberjack/releases/tag/3.6.2)
diff --git a/Carthage/Checkouts/CocoaLumberjack/CocoaLumberjack.podspec b/Carthage/Checkouts/CocoaLumberjack/CocoaLumberjack.podspec
index e3951b574..6450f187c 100644
--- a/Carthage/Checkouts/CocoaLumberjack/CocoaLumberjack.podspec
+++ b/Carthage/Checkouts/CocoaLumberjack/CocoaLumberjack.podspec
@@ -1,9 +1,9 @@
Pod::Spec.new do |s|
s.name = 'CocoaLumberjack'
- s.version = '3.6.2'
+ s.version = '3.7.0'
s.license = 'BSD'
- s.summary = 'A fast & simple, yet powerful & flexible logging framework for Mac and iOS.'
+ s.summary = 'A fast & simple, yet powerful & flexible logging framework for macOS, iOS, tvOS and watchOS.'
s.homepage = 'https://github.com/CocoaLumberjack/CocoaLumberjack'
s.author = { 'Robbie Hanson' => 'robbiehanson@deusty.com' }
s.source = { :git => 'https://github.com/CocoaLumberjack/CocoaLumberjack.git',
@@ -14,14 +14,15 @@ Pod::Spec.new do |s|
'such as multi-threading, grand central dispatch (if available), lockless ' \
'atomic operations, and the dynamic nature of the objective-c runtime.'
- s.requires_arc = true
-
s.preserve_paths = 'README.md'
- s.ios.deployment_target = '8.0'
+ s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '9.0'
+
+ s.cocoapods_version = '>= 1.4.0'
+ s.requires_arc = true
s.swift_version = '5.0'
s.default_subspecs = 'Core'
@@ -35,5 +36,4 @@ Pod::Spec.new do |s|
ss.dependency 'CocoaLumberjack/Core'
ss.source_files = 'Sources/CocoaLumberjackSwift/**/*.swift', 'Sources/CocoaLumberjackSwiftSupport/include/**/*.{h}'
end
-
end
diff --git a/Carthage/Checkouts/CocoaLumberjack/Demos/LogFileCompressor/CompressingLogFileManager.m b/Carthage/Checkouts/CocoaLumberjack/Demos/LogFileCompressor/CompressingLogFileManager.m
index d18000fec..a03b4f47a 100644
--- a/Carthage/Checkouts/CocoaLumberjack/Demos/LogFileCompressor/CompressingLogFileManager.m
+++ b/Carthage/Checkouts/CocoaLumberjack/Demos/LogFileCompressor/CompressingLogFileManager.m
@@ -146,28 +146,13 @@
[self performSelector:@selector(compressNextLogFile) withObject:nil afterDelay:delay];
}
-- (void)didArchiveLogFile:(NSString *)logFilePath
-{
- NSLogVerbose(@"CompressingLogFileManager: didArchiveLogFile: %@", [logFilePath lastPathComponent]);
-
- // If all other log files have been compressed,
- // then we can get started right away.
- // Otherwise we should just wait for the current compression process to finish.
-
- if (upToDate)
- {
- [self compressLogFile:[DDLogFileInfo logFileWithPath:logFilePath]];
- }
-}
+- (void)didArchiveLogFile:(NSString *)logFilePath wasRolled:(BOOL)wasRolled {
+ NSLogVerbose(@"CompressingLogFileManager: didArchiveLogFile: %@ wasRolled: %@",
+ [logFilePath lastPathComponent], (wasRolled ? @"YES" : @"NO"));
-- (void)didRollAndArchiveLogFile:(NSString *)logFilePath
-{
- NSLogVerbose(@"CompressingLogFileManager: didRollAndArchiveLogFile: %@", [logFilePath lastPathComponent]);
-
- // If all other log files have been compressed,
- // then we can get started right away.
+ // If all other log files have been compressed, then we can get started right away.
// Otherwise we should just wait for the current compression process to finish.
-
+
if (upToDate)
{
[self compressLogFile:[DDLogFileInfo logFileWithPath:logFilePath]];