Skip to content

Commit

Permalink
Merge pull request #26 from joshdholtz/added-build-number-to-html-files
Browse files Browse the repository at this point in the history
Added build number to HTML files
  • Loading branch information
Josh Holtz authored May 19, 2017
2 parents b2bfddb + b247fe8 commit c4132b6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions lib/assets/s3_android_html_template.erb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<div class="oneRow">
<span class="download" id="android">
<a href="<%= apk_url %>" id="text" class="btn btn-lg btn-default" onclick="document.getElementById('finished').id = '';">
Install <%= title %> <%= version_name %>
Install <%= title %> <%= version_name %> (<%= version_code %>)
</a>
</span>

Expand All @@ -66,7 +66,7 @@
<h3 id="desktop">Please open this page on your Android device!</h3>

<p id="finished">
App is being installed. Close Safari using the home button.
App is being installed. You might have to close the browser.
</p>

<p id="footnote">
Expand Down
2 changes: 1 addition & 1 deletion lib/assets/s3_ios_html_template.erb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<div class="oneRow">
<span class="download" id="ios">
<a href="itms-services://?action=download-manifest&url=<%= url_encode(plist_url) %>" id="text" class="btn btn-lg btn-default" onclick="document.getElementById('finished').id = '';">
Install <%= title %> <%= bundle_version %>
Install <%= title %> <%= bundle_version %> (<%= build_num %>)
</a>
</span>

Expand Down
2 changes: 1 addition & 1 deletion lib/fastlane/plugin/aws_s3/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Fastlane
module AwsS3
VERSION = "0.2.7"
VERSION = "0.2.8"
end
end

0 comments on commit c4132b6

Please sign in to comment.