fastlane-plugin-huawei_appgallery_connect 1.0.24 → 1.0.26

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: 0f20c028c8e26916529edfbbb96f65abc93b24dca4e6722b851bc27c92468689
4
+ data.tar.gz: 76f394ed59804d49919e962f33252b87d02ec2e0b795f4a15b3b6af831fbbd23
5
5
  SHA512:
6
- metadata.gz: 3d44df0797efd909411e74dbeff7c84767e2c302f8115b1af9220905714675d8b38b441f4ccc8bad0e936ca24db399379003ac9a7153d661c4a31ebf99da6520
7
- data.tar.gz: 02b46deaf235627ad9e746417a62130a5a5d2b223912f6f42f0e0377fc94170b1759e2444b6eca2968f5b867638a8a3cf436766c9b01b95fda0090792d77d8c9
6
+ metadata.gz: c015a15fd3c1b8c60ce9a9e9af6216e9c5c9be0ceff5d6098b1b032fa228e0bfe3d3a583c9868c5c38a161e9fa41b183a7d0a04db209ce47f4866c8a4377efe9
7
+ data.tar.gz: 6bedf89e173cea230b2acb15262fd6f99308cb40bcbd7332883f6c72d60f90001f11fee64525450868613982ee24da8cfa88e271fc360ba20601a58aef6cd2fc
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
  require 'fastlane_core/ui/ui'
2
- require 'CGI'
2
+ require 'cgi'
3
3
 
4
4
  module Fastlane
5
5
  UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module HuaweiAppgalleryConnect
3
- VERSION = "1.0.24"
3
+ VERSION = "1.0.26"
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.26
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-30 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: []