Skip to content

Commit

Permalink
发布 1.1.11, 增加对Swift Package Manager支持
Browse files Browse the repository at this point in the history
  • Loading branch information
lixiang1994 committed Dec 19, 2020
1 parent cbe4214 commit de2f699
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 20 deletions.
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

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

2 changes: 1 addition & 1 deletion Framework/LEETheme/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.1.9</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 2 additions & 0 deletions Framework/LEETheme/LEETheme.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 1.1.11;
PRODUCT_BUNDLE_IDENTIFIER = com.lee.LEETheme;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand All @@ -325,6 +326,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 1.1.11;
PRODUCT_BUNDLE_IDENTIFIER = com.lee.LEETheme;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down
2 changes: 1 addition & 1 deletion LEETheme.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "LEETheme"
s.version = "1.1.10"
s.version = "1.1.11"
s.summary = "最好用的轻量级主题管理库"

s.homepage = "https://github.com/lixiang1994/LEETheme"
Expand Down
6 changes: 3 additions & 3 deletions LEETheme/LEETheme.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* @header LEETheme.h
*
* ┌─┐ ┌───────┐ ┌───────┐ 帅™
* ┌─┐ ┌───────┐ ┌───────┐
* │ │ │ ┌─────┘ │ ┌─────┘
* │ │ │ └─────┐ │ └─────┐
* │ │ │ ┌─────┘ │ ┌─────┘
Expand All @@ -11,8 +11,8 @@
* @brief LEE主题管理
*
* @author LEE
* @copyright Copyright © 2016 - 2019年 lee. All rights reserved.
* @version V1.1.10
* @copyright Copyright © 2016 - 2020年 lee. All rights reserved.
* @version V1.1.11
*/

#import <Foundation/Foundation.h>
Expand Down
6 changes: 3 additions & 3 deletions LEETheme/LEETheme.m
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* @header LEETheme.m
*
* ┌─┐ ┌───────┐ ┌───────┐ 帅™
* ┌─┐ ┌───────┐ ┌───────┐
* │ │ │ ┌─────┘ │ ┌─────┘
* │ │ │ └─────┐ │ └─────┐
* │ │ │ ┌─────┘ │ ┌─────┘
Expand All @@ -11,8 +11,8 @@
* @brief LEE主题管理
*
* @author LEE
* @copyright Copyright © 2016 - 2019年 lee. All rights reserved.
* @version V1.1.10
* @copyright Copyright © 2016 - 2020年 lee. All rights reserved.
* @version V1.1.11
*/

#import "LEETheme.h"
Expand Down
9 changes: 5 additions & 4 deletions LEETheme/LEEThemeHelper.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#import <UIKit/UIKit.h>
/*
* @header LEEThemeHelper.h
*
* ┌─┐ ┌───────┐ ┌───────┐ 帅™
* ┌─┐ ┌───────┐ ┌───────┐
* │ │ │ ┌─────┘ │ ┌─────┘
* │ │ │ └─────┐ │ └─────┐
* │ │ │ ┌─────┘ │ ┌─────┘
Expand All @@ -12,13 +11,15 @@
* @brief LEE主题管理
*
* @author LEE
* @copyright Copyright © 2016 - 2019年 lee. All rights reserved.
* @version V1.1.10
* @copyright Copyright © 2016 - 2020年 lee. All rights reserved.
* @version V1.1.11
*/

FOUNDATION_EXPORT double LEEThemeVersionNumber;
FOUNDATION_EXPORT const unsigned char LEEThemeVersionString[];

#import <UIKit/UIKit.h>

#ifndef LEEThemeHelper_h
#define LEEThemeHelper_h

Expand Down
9 changes: 1 addition & 8 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,12 @@ let package = Package(
name: "LEETheme",
targets: ["LEETheme"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "LEETheme",
dependencies: [],
path: "LEETheme"),
.testTarget(
name: "LEEThemeTests",
dependencies: ["LEETheme"]),
path: "LEETheme")
]
)

0 comments on commit de2f699

Please sign in to comment.