-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from brightdigit/release/0.1.0
Release/0.1.0
- Loading branch information
Showing
172 changed files
with
2,879 additions
and
423 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,20 +27,16 @@ jobs: | |
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
- name: Build Documentation | ||
run: sourcedocs generate --spm-module ${{ env.PACKAGE_NAME }} --output-folder docs | ||
run: sourcedocs generate --spm-module ${{ env.PACKAGE_NAME }} | ||
- name: Verify Valid Swift Package | ||
run: swift package dump-package | jq -e ".products | length > 0" | ||
- name: CocoaPods Action | ||
run: pod lib lint | ||
- name: Upload to CodeCov.io | ||
run: bash <(curl https://codecov.io/bash) -F github -F macos -n ${{ github.sha }} | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
- name: Commit files | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git status | ||
git add docs | ||
git add Documentation | ||
git diff-index --quiet HEAD || git commit -m "[github action] Update Docs" | ||
git push |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
**ENUM** | ||
|
||
# `Contrast` | ||
|
||
```swift | ||
public enum Contrast: String, AppearanceValue | ||
``` | ||
|
||
> Apperance Value for providing images with greater visual separation between adjoining colors. | ||
> https://developer.apple.com/documentation/uikit/uiimage/providing_images_for_different_appearances | ||
|
||
## Cases | ||
### `high` | ||
|
||
```swift | ||
case high | ||
``` | ||
|
||
> Apperance Value for providing images with greater visual separation between adjoining colors. | ||
> https://developer.apple.com/documentation/uikit/uiimage/providing_images_for_different_appearances | ||
|
||
## Properties | ||
### `appearanceValue` | ||
|
||
```swift | ||
public var appearanceValue: String | ||
``` |
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
File renamed without changes.
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 |
---|---|---|
|
@@ -70,3 +70,5 @@ case car | |
```swift | ||
case macCatalyst | ||
``` | ||
|
||
> The image for an mac Catalyst app. |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
**ENUM** | ||
|
||
# `LanguageDirection` | ||
|
||
```swift | ||
public enum LanguageDirection: String, Codable | ||
``` | ||
|
||
> The horizontal display direction for the image. | ||
|
||
## Cases | ||
### `leftToRight` | ||
|
||
```swift | ||
case leftToRight = "left-to-right" | ||
``` | ||
|
||
> | ||
> The image is used for display in left-to-right languages. | ||
> The image is mirrored in right-to-left languages unless a right-to-left version of the image is provided. | ||
|
||
### `rightToLeft` | ||
|
||
```swift | ||
case rightToLeft = "right-to-left" | ||
``` | ||
|
||
> The image is used for display in right-to-left languages. | ||
> The image is mirrored in left-to-right languages unless a left-to-right version of the image is provided. |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
**ENUM** | ||
|
||
# `RenderingIntent` | ||
|
||
```swift | ||
public enum RenderingIntent: String, Codable | ||
``` | ||
|
||
> Specifies if the image is a template for use with visual effects such as replacing colors. | ||
|
||
## Cases | ||
### `original` | ||
|
||
```swift | ||
case original | ||
``` | ||
|
||
> Render as the original image. | ||
|
||
### `template` | ||
|
||
```swift | ||
case template | ||
``` | ||
|
||
> Use the image as a template for visual effects such as replacing colors. |
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
**ENUM** | ||
|
||
# `Scales` | ||
|
||
```swift | ||
public enum Scales: Float | ||
``` | ||
|
||
> Prebuilt scales for App Icons and Image Sets. | ||
|
||
## Cases | ||
### `unscaled1x` | ||
|
||
```swift | ||
case unscaled1x = 1.0 | ||
``` | ||
|
||
> Targeted for unscaled displays. | ||
|
||
### `retina2x` | ||
|
||
```swift | ||
case retina2x = 2.0 | ||
``` | ||
|
||
> Targeted for Retina displays. | ||
|
||
### `highdensityretina3x` | ||
|
||
```swift | ||
case highdensityretina3x = 3.0 | ||
``` | ||
|
||
> Targeted for Retina displays with higher density such as those on the iPhone 6 Plus. |
Oops, something went wrong.