Skip to content

Commit b3f47b4

Browse files
committed
Merge branch 'trunk' into app-size-metrics
# Conflicts: # CHANGELOG.md # Gemfile.lock
2 parents ad5935c + a4d04a4 commit b3f47b4

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,28 @@ _None_
1010

1111
### New Features
1212

13-
* The `ios_lint_localizations` action now also checks for duplicated keys in the `.strings` files.
14-
The behavior is optional via the `check_duplicate_keys` parameter and enabled by default. [#360]
1513
* Introduce new `ios_send_app_size_metrics` and `android_send_app_size_metrics` actions. [#364]
1614

1715
### Bug Fixes
1816

19-
* Update GlotPress `export-translations` requests to avoid rate limiting. [#361] [#362]
17+
_None_
2018

2119
### Internal Changes
2220

2321
_None_
2422

23+
## 4.2.0
24+
25+
### New Features
26+
27+
* The `ios_lint_localizations` action now also checks for duplicated keys in the `.strings` files.
28+
The behavior is optional via the `check_duplicate_keys` parameter and enabled by default. [#360]
29+
30+
### Bug Fixes
31+
32+
* Update GlotPress `export-translations` requests to avoid rate limiting. [#361] [#362]
33+
* Fix bugs with the shell command in `promo_screenshots_helper`. [#366]
34+
2535
## 4.1.0
2636

2737
### New Features

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
fastlane-plugin-wpmreleasetoolkit (4.1.0)
4+
fastlane-plugin-wpmreleasetoolkit (4.2.0)
55
activesupport (~> 5)
66
bigdecimal (~> 1.4)
77
buildkit (~> 1.5)

lib/fastlane/plugin/wpmreleasetoolkit/helper/promo_screenshots_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ def draw_text_to_canvas(canvas, text, width, height, x_position, y_position, fon
234234
begin
235235
tempTextFile = Tempfile.new()
236236

237-
sh('drawText', "html=\"#{text}\"", "maxWidth=#{width}", "maxHeight=#{height}", "output=\"#{tempTextFile.path}\"", "fontSize=#{font_size}", "stylesheet=\"#{stylesheet_path}\"", "alignment=\"#{position}\"")
237+
Action.sh('drawText', "html=#{text}", "maxWidth=#{width}", "maxHeight=#{height}", "output=#{tempTextFile.path}", "fontSize=#{font_size}", "stylesheet=#{stylesheet_path}", "alignment=#{position}")
238238

239239
text_content = open_image(tempTextFile.path).trim
240240
text_frame = create_image(width, height)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Fastlane
22
module Wpmreleasetoolkit
3-
VERSION = '4.1.0'
3+
VERSION = '4.2.0'
44
end
55
end

0 commit comments

Comments
 (0)