deliver/lib/assets/summary.html.erb in fastlane-2.102.0 vs deliver/lib/assets/summary.html.erb in fastlane-2.103.0
- old
+ new
@@ -142,17 +142,17 @@
<div class="app-icons">
<% if @options[:app_icon] %>
<div class="app-icon">
Large App Icon:<br>
- <img src="<%= @options[:app_icon] %>">
+ <img src="<%= render_relative_path(@export_path, @options[:app_icon]) %>">
</div>
<% end %>
<% if @options[:apple_watch_app_icon] %>
<div class="watch-icon">
Watch App Icon:<br>
- <img src="<%= @options[:apple_watch_app_icon] %>">
+ <img src="<%= render_relative_path(@export_path, @options[:apple_watch_app_icon]) %>">
</div>
<% end %>
</div>
<% @languages.each do |language| %>
<% if @options[:name] %>
@@ -235,10 +235,10 @@
<%# we are guaranteed to have at least one element because of the group_by %>
<h4><%= screenshots[0].formatted_name %></h4>
<div class="app-screenshot-row">
<% screenshots.each_with_index do |screenshot, index| %>
- <a href="<%= URI.escape(screenshot.path) %>" target="_blank"><img class="app-screenshot" src="<%= URI.escape(screenshot.path) %>" title="Screenshot #<%=index%> for <%=language%>"></a>
+ <a href="<%= URI.escape(screenshot.path) %>" target="_blank"><img class="app-screenshot" src="<%= render_relative_path(@export_path, URI.escape(screenshot.path)) %>" title="Screenshot #<%=index%> for <%=language%>"></a>
<% end %>
</div>
<% end %>
<% else %>
<!-- no screenshots -->