This repository has been archived by the owner on Mar 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Various updates for modern macOS. (#61)
* Use resource bundle to support static linkage * Update minimum target platform to OS X 10.10 * Use preference style for window toolbar in 11.0+
- Loading branch information
Showing
3 changed files
with
19 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Pod::Spec.new do |s| | ||
s.platform = :osx | ||
s.platform = :osx, '10.10' | ||
s.name = "MASPreferences" | ||
s.version = "1.3" | ||
s.summary = "Modern implementation of the Preferences window for OS X apps, used in TextMate, GitBox and Mou." | ||
|
@@ -8,7 +8,9 @@ Pod::Spec.new do |s| | |
s.author = { "Vadim Shpakovski" => "[email protected]" } | ||
s.source = { :git => 'https://github.com/shpakovski/MASPreferences.git', :tag => '1.3' } | ||
s.source_files = 'Framework/*.{h,m}' | ||
s.resources = 'Framework/en.lproj/*.xib' | ||
s.resource_bundles = { | ||
'MASPreferences' => ['Framework/en.lproj/*.xib'] | ||
} | ||
s.exclude_files = 'README.md', 'LICENSE.md', 'MASPreferences.podspec' | ||
s.requires_arc = true | ||
end |