diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b05aad..80aab17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Standard Reports UI: change log +## 1.5.3 - 2024-08 + +- (Dan) Adds more descriptive text to action buttons on the report page [115](https://github.com/epimorphics/standard-reports-ui/issues/115) + ## 1.5.2 - 2023-11-27 - (Jon) Updated the `lr_common_styles` gem to the latest 1.9.3 patch release. diff --git a/Dockerfile b/Dockerfile index 09cf215..8f3e5ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,8 @@ RUN apk add --update \ nodejs \ tzdata \ && rm -rf /var/cache/apk/* \ - && gem update --system \ + && gem install rubygems-update -v 3.4.22 \ + && update_rubygems \ && gem install bundler:$BUNDLER_VERSION \ && bundle config --global frozen 1 diff --git a/app/lib/version.rb b/app/lib/version.rb index 3fc1fa7..79e1666 100644 --- a/app/lib/version.rb +++ b/app/lib/version.rb @@ -3,7 +3,7 @@ module Version MAJOR = 1 MINOR = 5 - PATCH = 2 + PATCH = 3 SUFFIX = nil VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}#{SUFFIX && ".#{SUFFIX}"}" end diff --git a/app/views/report_design/select_report.html.haml b/app/views/report_design/select_report.html.haml index 437e634..b16d9cd 100644 --- a/app/views/report_design/select_report.html.haml +++ b/app/views/report_design/select_report.html.haml @@ -23,7 +23,7 @@ %details %summary %span.summary - Example of this report type + Click to view an example of the average prices and volumes report type %div.panel = image_tag( "average-prices-report-screenshot.png", alt: "Screenshot of example average prices report " ) %li @@ -34,7 +34,7 @@ %details %summary %span.summary - Example of this report type + Clck to view an example of the banded prices report type %div.panel = image_tag( "banded-prices-report-screenshot.png", alt: "Screenshot of example banded prices report " )