From a3c4ac05911f5f92d692ad83ea555449a02fe17d Mon Sep 17 00:00:00 2001 From: Nixon Date: Fri, 8 Sep 2023 03:12:36 -0300 Subject: [PATCH] new version --- CHANGELOG.md | 6 ++++++ Gemfile.lock | 2 +- README.md | 11 +++++++++++ lib/turbo_native_initializer/version.rb | 2 +- 4 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0406b7e..151f6aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## [Unreleased] +## [0.0.3] - 2023-09-08 + +- Add a Swift UI native screen +- Add a jetpack compose screen +- Fix android package + ## [0.0.2] - 2023-09-07 - Fix android tab navigation diff --git a/Gemfile.lock b/Gemfile.lock index e3fb71a..0dbff78 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - turbo-native-initializer (0.0.2) + turbo-native-initializer (0.0.3) thor GEM diff --git a/README.md b/README.md index 706c602..3782c57 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,17 @@ A turbo native project generator for iOS and Android. +## Differences when compared to the demos + +- Added SwiftUI error screen. (iOS) +- Added SwiftUI numbers screen. (iOS) +- Added Jetpack Compose numbers screen. (Android) +- Added UIAlertController to handle `turbo-native-confirm`. (iOS) +- Added presentations `clear-all`, `replace-all`, `replace`, `pop`, `refresh`, and `none`. (iOS) +- Added visitable property in order to avoid visits. (iOS) +- Added full screen option to modals. (iOS/Android) +- Added support for tab navigation. (iOS/Android) + ## Installation ``` diff --git a/lib/turbo_native_initializer/version.rb b/lib/turbo_native_initializer/version.rb index 81f40cc..c0ba77d 100644 --- a/lib/turbo_native_initializer/version.rb +++ b/lib/turbo_native_initializer/version.rb @@ -1,3 +1,3 @@ module TurboNativeInitializer - VERSION = "0.0.2" + VERSION = "0.0.3" end