Skip to content

Commit fb2b2f4

Browse files
committed
Bumped version to 1.2.0
1 parent ecc8e11 commit fb2b2f4

File tree

6 files changed

+20
-9
lines changed

6 files changed

+20
-9
lines changed

Demo/Demo.xcodeproj/project.pbxproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@
228228
isa = PBXProject;
229229
attributes = {
230230
LastSwiftUpdateCheck = 0800;
231-
LastUpgradeCheck = 0900;
231+
LastUpgradeCheck = 0930;
232232
ORGANIZATIONNAME = "Paw & Nuno Grilo";
233233
TargetAttributes = {
234234
28C0CF8D1D9D191400530662 = {
@@ -348,13 +348,15 @@
348348
CLANG_WARN_BOOL_CONVERSION = YES;
349349
CLANG_WARN_COMMA = YES;
350350
CLANG_WARN_CONSTANT_CONVERSION = YES;
351+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
351352
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
352353
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
353354
CLANG_WARN_EMPTY_BODY = YES;
354355
CLANG_WARN_ENUM_CONVERSION = YES;
355356
CLANG_WARN_INFINITE_RECURSION = YES;
356357
CLANG_WARN_INT_CONVERSION = YES;
357358
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
359+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
358360
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
359361
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
360362
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
@@ -404,13 +406,15 @@
404406
CLANG_WARN_BOOL_CONVERSION = YES;
405407
CLANG_WARN_COMMA = YES;
406408
CLANG_WARN_CONSTANT_CONVERSION = YES;
409+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
407410
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
408411
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
409412
CLANG_WARN_EMPTY_BODY = YES;
410413
CLANG_WARN_ENUM_CONVERSION = YES;
411414
CLANG_WARN_INFINITE_RECURSION = YES;
412415
CLANG_WARN_INT_CONVERSION = YES;
413416
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
417+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
414418
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
415419
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
416420
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;

Demo/Demo/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.1.1</string>
20+
<string>1.2.0</string>
2121
<key>CFBundleVersion</key>
2222
<string>1</string>
2323
<key>LSMinimumSystemVersion</key>

Demo/Demo/Note.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Note: NSObject, NSCoding {
2222

2323
// Character count.
2424
@objc var textCharacterCount: Int {
25-
return text.characters.count
25+
return text.count
2626
}
2727

2828
// Word count.

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
![macOS](https://img.shields.io/badge/os-macOS%2010.10%2B-green.svg?style=flat)
66
![Swift3](https://img.shields.io/badge/swift-4-green.svg?style=flat)
7-
![Release](https://img.shields.io/badge/release-1.1.1-blue.svg?style=flat)
7+
![Release](https://img.shields.io/badge/release-1.2.0-blue.svg?style=flat)
88
![MIT](https://img.shields.io/badge/license-MIT-lightgray.svg)
99
![CocoaPods](https://img.shields.io/badge/dep-CocoaPods-orange.svg)
1010
![Carthage](https://img.shields.io/badge/dep-Carthage-orange.svg)
1111

1212
## Summary
1313

14-
*ThemeKit* is a lightweight theming library completely written in Swift that provides theming capabilities to both Swift 4 and Objective-C macOS applications.
14+
*ThemeKit* is a lightweight theming library completely written in Swift that provides theming capabilities to both Swift and Objective-C macOS applications.
1515

1616
*ThemeKit* is brought to you with ❤️ by [Nuno Grilo](http://nunogrilo.com) and the [Paw](https://paw.cloud) [team](https://github.com/orgs/luckymarmot/people).
1717

@@ -45,7 +45,7 @@
4545

4646
## Features
4747

48-
- Written in Swift 4
48+
- Written in Swift 4.1
4949
- Optional configuration, none required
5050
- Neglected performance impact
5151
- Automatically theme windows (configurable)
@@ -62,6 +62,13 @@
6262
- Optional override of `NSColor` named colors (e.g., `labelColor`) to dynamically change with the theme
6363

6464
## Installation
65+
66+
|ThemeKit Version|Swift Version|
67+
|----------------|-------------|
68+
|1.0.0 | 3.0 |
69+
|1.1.0 | 4.0 |
70+
|1.2.0 | 4.1 |
71+
6572
There are multiple options to include *ThemeKit* on your project:
6673

6774
- **[CocoaPods](https://cocoapods.org)**
@@ -71,7 +78,7 @@ There are multiple options to include *ThemeKit* on your project:
7178
```Podfile
7279
use_frameworks!
7380
target '[YOUR APP TARGET]' do
74-
pod 'macOSThemeKit', '~> 1.1.0'
81+
pod 'macOSThemeKit', '~> 1.2.0'
7582
end
7683
```
7784

Sources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.1.1</string>
18+
<string>1.2.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSHumanReadableCopyright</key>

macOSThemeKit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'macOSThemeKit'
3-
s.version = '1.1.1'
3+
s.version = '1.2.0'
44
s.license = { :type => 'MIT', :file => 'LICENSE' }
55
s.summary = 'macOS Theming Framework'
66
s.homepage = 'https://github.com/luckymarmot/ThemeKit'

0 commit comments

Comments
 (0)