fastlane-plugin-huawei_appgallery_connect 1.0.24 → 1.0.25

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 934901c3b617cc4ed08c4e497dee4d06a81e1b13c49aa5f9adff8d9d8ad4e198
4
- data.tar.gz: 19df33596ab5124b39cf11e1d2ea340760e2557331e5ade092c4e20fbff82224
3
+ metadata.gz: 0c1648d57d535a4b84c5a8fc0e3d600ce3a6990e9fc7f211f42394b41dc60cb1
4
+ data.tar.gz: 7324e62d72a0c59b6649c86c53d5f06f0db0d014761107640adc0fd055b56a1f
5
5
  SHA512:
6
- metadata.gz: 3d44df0797efd909411e74dbeff7c84767e2c302f8115b1af9220905714675d8b38b441f4ccc8bad0e936ca24db399379003ac9a7153d661c4a31ebf99da6520
7
- data.tar.gz: 02b46deaf235627ad9e746417a62130a5a5d2b223912f6f42f0e0377fc94170b1759e2444b6eca2968f5b867638a8a3cf436766c9b01b95fda0090792d77d8c9
6
+ metadata.gz: ea99f30575f23b2694f045aa8d0b988f24eec2d7e79c4224ccdc5bbedf894ca05fb68b660b61bc0699d81024141258e4ce0477110778f62d582c957d7d26526c
7
+ data.tar.gz: 93a91841691905cea1740ddc1ea709705cc15be9ab70b3628108478a1ac09d02723b8d0230dc3fbb3dedf06939b936454c5ee222db1f20dc8a050182be9ae393
data/README.md CHANGED
@@ -58,7 +58,6 @@ huawei_appgallery_connect_submit_for_review(
58
58
  client_secret: "<CLIENT_SECRET>",
59
59
  app_id: "<APP_ID>",
60
60
 
61
-
62
61
  # Optional, Parameter beyond this are optional
63
62
 
64
63
  # release time to release app on specific date
@@ -80,5 +79,34 @@ huawei_appgallery_connect_get_app_info(
80
79
  client_secret: "<CLIENT_SECRET>",
81
80
  app_id: "<APP_ID>"
82
81
  )
82
+ ```
83
+
84
+ To update the app's metadata like release notes, app name, brief info and app description you can make use of the following action
83
85
 
84
86
  ```
87
+ huawei_appgallery_connect_update_app_localization(
88
+ client_id: "<CLIENT_ID>",
89
+ client_secret: "<CLIENT_SECRET>",
90
+ app_id: "<APP_ID>",
91
+ metadata_path: "<METADATA PATH>" # defaults to fastlane/metadata/huawei
92
+ )
93
+ ```
94
+
95
+ Your folder structure for applying multiple languages for the metadata should look like this:
96
+
97
+ ```
98
+ └── fastlane
99
+ └── metadata
100
+ └── huawei
101
+ ├── en-US
102
+ │ ├── app_name.txt
103
+ │ └── app_description.txt
104
+ │ └── introduction.txt
105
+ │ └── release_notes.txt
106
+ └── fr-FR
107
+ ├── app_name.txt
108
+ └── app_description.txt
109
+ └── introduction.txt
110
+ └── release_notes.txt
111
+ ```
112
+
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module HuaweiAppgalleryConnect
3
- VERSION = "1.0.24"
3
+ VERSION = "1.0.25"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-huawei_appgallery_connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.24
4
+ version: 1.0.25
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shreejan Shrestha
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-20 00:00:00.000000000 Z
11
+ date: 2023-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry
@@ -136,6 +136,20 @@ dependencies:
136
136
  - - ">="
137
137
  - !ruby/object:Gem::Version
138
138
  version: 2.137.0
139
+ - !ruby/object:Gem::Dependency
140
+ name: cgi
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :runtime
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
139
153
  description:
140
154
  email: shr3jn@gmail.com
141
155
  executables: []