diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 160a554..531024f 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -23,7 +23,7 @@ lane :ipa21 do region: 'us-west-1', ipa: './fastlane/ipa21/BanditTheCat.ipa', source: './fastlane/ipa21/source', - skip_html_upload: true + skip_html_upload: false ) end @@ -41,7 +41,7 @@ lane :apk1 do region: 'us-west-1', apk: './fastlane/apk1/BanditTheCat.apk', source: './fastlane/apk1/source', - skip_html_upload: true + skip_html_upload: false ) end diff --git a/lib/assets/s3_android_html_template.erb b/lib/assets/s3_android_html_template.erb index 011210b..9686101 100644 --- a/lib/assets/s3_android_html_template.erb +++ b/lib/assets/s3_android_html_template.erb @@ -55,7 +55,7 @@
- Install <%= title %> <%= version_name %> + Install <%= title %> <%= version_name %> (<%= version_code %>) @@ -66,7 +66,7 @@

Please open this page on your Android device!

- App is being installed. Close Safari using the home button. + App is being installed. You might have to close the browser.

diff --git a/lib/assets/s3_ios_html_template.erb b/lib/assets/s3_ios_html_template.erb index b5a73b1..734520f 100644 --- a/lib/assets/s3_ios_html_template.erb +++ b/lib/assets/s3_ios_html_template.erb @@ -55,7 +55,7 @@

- Install <%= title %> <%= bundle_version %> + Install <%= title %> <%= bundle_version %> (<%= build_num %>) diff --git a/lib/fastlane/plugin/aws_s3/version.rb b/lib/fastlane/plugin/aws_s3/version.rb index 1fe9d6f..d155f48 100644 --- a/lib/fastlane/plugin/aws_s3/version.rb +++ b/lib/fastlane/plugin/aws_s3/version.rb @@ -1,5 +1,5 @@ module Fastlane module AwsS3 - VERSION = "0.2.7" + VERSION = "0.2.8" end end