Skip to content

Commit

Permalink
Release 1.2.0 (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
almazrafi committed Dec 4, 2020
1 parent 7eb92a9 commit 171c3e3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PREFIX?=/usr/local

PRODUCT_NAME=fugen
PRODUCT_VERSION=1.1.1
PRODUCT_VERSION=1.2.0
TEMPLATES_NAME=Templates
README_NAME=README.md
LICENSE_NAME=LICENSE
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Currently, Fugen supports the following entities:
### CocoaPods
To install Fugen using [CocoaPods](http://cocoapods.org) dependency manager, add this line to your `Podfile`:
```ruby
pod 'Fugen', '~> 1.1.1'
pod 'Fugen', '~> 1.2.0'
```

Then run this command:
Expand Down Expand Up @@ -420,7 +420,7 @@ images:
assets: Sources/Assets.xcassets/Images
destination: Sources/Images.swift
onlyExportables: true
useAbsoluteBounds true
useAbsoluteBounds: true
templateOptions:
publicAccess: true
```
Expand All @@ -436,8 +436,8 @@ that have [export settings](https://help.figma.com/hc/en-us/articles/36004002811
set the `onlyExportables` flag to `true`.

#### Use absolute bounds
By default Fugen exports the images using only space that is actually occupied by them, so if the node has extra space
around, it will be cropped. If you want to preserve this space set the `useAbsoluteBounds` to `true`.
By default Fugen exports the images using only space that is actually occupied by them, so if the node has extra space
around, it will be cropped. If you want to preserve this space set the `useAbsoluteBounds` to `true`.
See [Image Endpoint Description](https://www.figma.com/developers/api#get-images-endpoint) for details.

#### Xcode-assets
Expand Down
2 changes: 1 addition & 1 deletion Sources/Fugen/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import PathKit
Path.current = Path(#file).appending("../../../Demo")
#endif

let version = "1.1.1"
let version = "1.2.0"

let fugen = CLI(
name: "fugen",
Expand Down

0 comments on commit 171c3e3

Please sign in to comment.