Skip to content

Commit

Permalink
updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Rspoon3 committed Mar 22, 2023
1 parent fbec199 commit af0753a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 7 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
## Version 2.3 (3-22-2023)
### Additions
- Updated for SF Symbols 4.0
- Additional documentation
- Additional unit tests

### Removals
- ```plistTitle``` from ```SFCategory```

### Fixes
- Mac unit tests

### Notes
- Refactored & renamed demo app


-----
## Version 2.2 (4-22-2022)
Expand Down
13 changes: 6 additions & 7 deletions Sources/SFSymbols/SFSymbol+CommonNames.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,21 @@

import Foundation


public extension SFSymbol{
public extension SFSymbol {
static let share = squareAndArrowUp
static let refresh = arrowClockwise
static let copy = docOnDoc
static let writing = squareAndPencil
}

@available(iOS 14, macOS 14.0, tvOS 14.0, watchOS 7.0, *)
public extension SFSymbol{
static let edit = rectangleAndPencilAndEllipsis
static let sort = arrowUpArrowDownCircle
public extension SFSymbol {
static let edit = rectangleAndPencilAndEllipsis
static let sort = arrowUpArrowDownCircle
}

public extension SFSymbol{
static var filter: SFSymbol{
public extension SFSymbol {
static var filter: SFSymbol {
if #available(iOS 15, macOS 15.0, tvOS 15.0, watchOS 8.0, *) {
return line3HorizontalDecreaseCircle
} else {
Expand Down

0 comments on commit af0753a

Please sign in to comment.