From 7bda88c89ac0d3735e17a59b72bad67a3c433cb9 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Mon, 18 Mar 2019 10:29:46 +0000 Subject: [PATCH] Fix CHANGELOG, link gifs directly in README --- CHANGELOG.md | 6 +++++- README.md | 8 +++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e58ec9ee..9ea4a568 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ -# 0.1.0 (November 10, 2018) +# 0.1.1 (March 18, 2019) + +Update rendered README.md on CocoaPods page. + +# 0.1.0 (March 18, 2019) First release with an iOS renderer for UIKit and a basic macOS renderer for AppKit. diff --git a/README.md b/README.md index f701b2ee..a2f15352 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,10 @@ [![CI Status](https://img.shields.io/travis/MaxDesiatov/Tokamak/master.svg?style=flat)](https://travis-ci.org/MaxDesiatov/Tokamak) [![Coverage](https://img.shields.io/codecov/c/github/MaxDesiatov/Tokamak/master.svg?style=flat)](https://codecov.io/gh/maxdesiatov/Tokamak) -[![Join the community on Spectrum](https://withspectrum.github.io/badge/badge.svg)](https://spectrum.chat/tokamak) - +[![Join the community on Spectrum](https://withspectrum.github.io/badge/badge.svg)](https://spectrum.chat/tokamak) Tokamak provides a declarative, testable and scalable API for building UI components backed by fully native views. You can use it for your new iOS apps or @@ -134,7 +132,7 @@ final class ViewController: TokamakViewController { } ``` -![Counter component](TokamakCounter.gif) +![Counter component](https://github.com/MaxDesiatov/Tokamak/raw/master/TokamakCounter.gif) Or similarly it can be added to a macOS app: @@ -158,7 +156,7 @@ final class ViewController: TokamakViewController { Note that we added explicit constraints to use this as a window's root view controller, and windows don't have a fixed predefined size by default. -![Counter component](TokamakCounterAppKit.gif) +![Counter component](https://github.com/MaxDesiatov/Tokamak/raw/master/TokamakCounterAppKit.gif) To run the example project, clone the repo, and run `pod install` from the [`Example`](https://github.com/MaxDesiatov/Tokamak/tree/master/Example) directory