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

update document OS X -> macOS #560

Merged
merged 1 commit into from
Nov 12, 2023
Merged
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
6 changes: 3 additions & 3 deletions KeychainAccess.podspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Pod::Spec.new do |s|
s.name = 'KeychainAccess'
s.version = '4.2.2'
s.summary = 'KeychainAccess is a simple Swift wrapper for Keychain that works on iOS and OS X.'
s.summary = 'KeychainAccess is a simple Swift wrapper for Keychain that works on iOS and macOS.'
s.description = <<-DESC
KeychainAccess is a simple Swift wrapper for Keychain that works on iOS and OS X.
KeychainAccess is a simple Swift wrapper for Keychain that works on iOS and macOS.
Makes using Keychain APIs exremely easy and much more palatable to use in Swift.

Features
Expand All @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
- Support iCloud sharing
- **Support TouchID and Keychain integration (iOS 8+)**
- **Support Shared Web Credentials (iOS 8+)**
- Works on both iOS & OS X
- Works on both iOS & macOS
- watchOS and tvOS are also supported
DESC
s.homepage = 'https://github.com/kishikawakatsumi/KeychainAccess'
Expand Down
2 changes: 1 addition & 1 deletion Lib/KeychainAccess/Keychain.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1396,7 +1396,7 @@ extension Options {
}
attributes[AttributeAccessControl] = accessControl
} else {
print("Unavailable 'Touch ID integration' on OS X versions prior to 10.10.")
print("Unavailable 'Touch ID integration' on macOS versions prior to 10.10.")
}
} else {
attributes[AttributeAccessible] = accessibility.rawValue
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Version](https://img.shields.io/cocoapods/v/KeychainAccess.svg)](http://cocoadocs.org/docsets/KeychainAccess)
[![Platform](https://img.shields.io/cocoapods/p/KeychainAccess.svg)](http://cocoadocs.org/docsets/KeychainAccess)

KeychainAccess is a simple Swift wrapper for Keychain that works on iOS and OS X. Makes using Keychain APIs extremely easy and much more palatable to use in Swift.
KeychainAccess is a simple Swift wrapper for Keychain that works on iOS and macOS. Makes using Keychain APIs extremely easy and much more palatable to use in Swift.

<img src="https://raw.githubusercontent.com/kishikawakatsumi/KeychainAccess/master/Screenshots/01.png" width="320px" />
<img src="https://raw.githubusercontent.com/kishikawakatsumi/KeychainAccess/master/Screenshots/02.png" width="320px" />
Expand Down