shipthis 0.1.13 → 0.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/assets/markdown/ship-failure.md +1 -2
- package/assets/markdown/ship-success.md +2 -2
- package/dist/commands/game/details.js +1 -0
- package/docs/game/android/keyStore/import.md +11 -5
- package/docs/game/android/keyStore.md +11 -5
- package/docs/game/android.md +11 -34
- package/npm-shrinkwrap.json +2 -2
- package/oclif.manifest.json +179 -179
- package/package.json +2 -2
- package/docs/game/android/wizard.md +0 -28
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@ shipthis login
|
|
|
43
43
|
|
|
44
44
|
### 3. Set up your game
|
|
45
45
|
|
|
46
|
-
Next, run the [wizard command](https://shipthis.cc/docs/wizard) to configure your game on ShipThis. The command takes a platform parameter - this can be either **android** or **ios**. Run this command from within a Godot game directory (with a **project.godot** file):
|
|
46
|
+
Next, run the [wizard command](https://shipthis.cc/docs/reference/game/wizard) to configure your game on ShipThis. The command takes a platform parameter - this can be either **android** or **ios**. Run this command from within a Godot game directory (with a **project.godot** file):
|
|
47
47
|
|
|
48
48
|
### Set up an Android game
|
|
49
49
|
|
|
@@ -4,10 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
## What now?
|
|
6
6
|
|
|
7
|
-
- The last 10 lines of the failed jobs are shown below
|
|
7
|
+
- **The last 10 lines of the failed jobs are shown below**
|
|
8
8
|
- Check out the full output in the **ShipThis Dashboard** [${jobDashboardUrl}](${jobDashboardUrl})
|
|
9
9
|
|
|
10
10
|
### Need help?
|
|
11
11
|
|
|
12
12
|
- Join the Discord [https://discord.gg/HuSvK4GT](https://discord.gg/HuSvK4GT)
|
|
13
|
-
- Report an issue [https://gitlab.com/shipthis.cc/shipthis-cli/-/issues](https://gitlab.com/shipthis.cc/shipthis-cli/-/issues)
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
## Next Steps
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- See all builds in the **Dashboard** [${gameBuildsUrl}](${gameBuildsUrl})
|
|
8
8
|
|
|
9
9
|
### Need help?
|
|
10
10
|
|
|
11
11
|
- Join the Discord [https://discord.gg/HuSvK4GT](https://discord.gg/HuSvK4GT)
|
|
12
|
-
|
|
12
|
+
|
|
@@ -92,6 +92,7 @@ class GameDetails extends BaseGameCommand {
|
|
|
92
92
|
{
|
|
93
93
|
title: "Game Details",
|
|
94
94
|
statuses: {
|
|
95
|
+
"Game Name": game.name,
|
|
95
96
|
"Game Engine": game.details?.gameEngine || "Please set!",
|
|
96
97
|
"Game Engine Version": game.details?.gameEngineVersion || "Please set!",
|
|
97
98
|
"iOS Bundle ID": game.details?.iosBundleId || "N/A",
|
|
@@ -8,18 +8,24 @@ Imports an Android Keystore to your ShipThis account for the specified game.
|
|
|
8
8
|
|
|
9
9
|
```help
|
|
10
10
|
USAGE
|
|
11
|
-
$ shipthis game android keyStore import FILE [-g <value>] [
|
|
11
|
+
$ shipthis game android keyStore import [FILE] [-g <value>] [--jksFile <value>] [--keystorePassword <value>] [--keyPassword
|
|
12
|
+
<value>] [-f]
|
|
12
13
|
|
|
13
14
|
ARGUMENTS
|
|
14
|
-
FILE
|
|
15
|
+
FILE Path to the ZIP file to import (must be in the same format as the export)
|
|
15
16
|
|
|
16
17
|
FLAGS
|
|
17
|
-
-f, --force
|
|
18
|
-
-g, --gameId=<value>
|
|
18
|
+
-f, --force Overwrite any existing keystore without confirmation
|
|
19
|
+
-g, --gameId=<value> The ID of the game
|
|
20
|
+
--jksFile=<value> Path to the JKS file to import (requires passwords)
|
|
21
|
+
--keyPassword=<value> Key alias password (required when using --jksFile)
|
|
22
|
+
--keystorePassword=<value> Keystore password (required when using --jksFile)
|
|
19
23
|
|
|
20
24
|
DESCRIPTION
|
|
21
25
|
Imports an Android Keystore to your ShipThis account for the specified game.
|
|
22
26
|
|
|
23
27
|
EXAMPLES
|
|
24
|
-
$ shipthis game android keyStore import
|
|
28
|
+
$ shipthis game android keyStore import path/to/import.zip -g abfd5b00
|
|
29
|
+
|
|
30
|
+
$ shipthis game android keyStore import --jksFile path/to/file.jks --keystorePassword yourpass --keyPassword yourkeypass
|
|
25
31
|
```
|
|
@@ -67,20 +67,26 @@ Imports an Android Keystore to your ShipThis account for the specified game.
|
|
|
67
67
|
|
|
68
68
|
```help
|
|
69
69
|
USAGE
|
|
70
|
-
$ shipthis game android keyStore import FILE [-g <value>] [
|
|
70
|
+
$ shipthis game android keyStore import [FILE] [-g <value>] [--jksFile <value>] [--keystorePassword <value>] [--keyPassword
|
|
71
|
+
<value>] [-f]
|
|
71
72
|
|
|
72
73
|
ARGUMENTS
|
|
73
|
-
FILE
|
|
74
|
+
FILE Path to the ZIP file to import (must be in the same format as the export)
|
|
74
75
|
|
|
75
76
|
FLAGS
|
|
76
|
-
-f, --force
|
|
77
|
-
-g, --gameId=<value>
|
|
77
|
+
-f, --force Overwrite any existing keystore without confirmation
|
|
78
|
+
-g, --gameId=<value> The ID of the game
|
|
79
|
+
--jksFile=<value> Path to the JKS file to import (requires passwords)
|
|
80
|
+
--keyPassword=<value> Key alias password (required when using --jksFile)
|
|
81
|
+
--keystorePassword=<value> Keystore password (required when using --jksFile)
|
|
78
82
|
|
|
79
83
|
DESCRIPTION
|
|
80
84
|
Imports an Android Keystore to your ShipThis account for the specified game.
|
|
81
85
|
|
|
82
86
|
EXAMPLES
|
|
83
|
-
$ shipthis game android keyStore import
|
|
87
|
+
$ shipthis game android keyStore import path/to/import.zip -g abfd5b00
|
|
88
|
+
|
|
89
|
+
$ shipthis game android keyStore import --jksFile path/to/file.jks --keystorePassword yourpass --keyPassword yourkeypass
|
|
84
90
|
```
|
|
85
91
|
|
|
86
92
|
### `game android keyStore status`
|
package/docs/game/android.md
CHANGED
|
@@ -241,20 +241,26 @@ Imports an Android Keystore to your ShipThis account for the specified game.
|
|
|
241
241
|
|
|
242
242
|
```help
|
|
243
243
|
USAGE
|
|
244
|
-
$ shipthis game android keyStore import FILE [-g <value>] [
|
|
244
|
+
$ shipthis game android keyStore import [FILE] [-g <value>] [--jksFile <value>] [--keystorePassword <value>] [--keyPassword
|
|
245
|
+
<value>] [-f]
|
|
245
246
|
|
|
246
247
|
ARGUMENTS
|
|
247
|
-
FILE
|
|
248
|
+
FILE Path to the ZIP file to import (must be in the same format as the export)
|
|
248
249
|
|
|
249
250
|
FLAGS
|
|
250
|
-
-f, --force
|
|
251
|
-
-g, --gameId=<value>
|
|
251
|
+
-f, --force Overwrite any existing keystore without confirmation
|
|
252
|
+
-g, --gameId=<value> The ID of the game
|
|
253
|
+
--jksFile=<value> Path to the JKS file to import (requires passwords)
|
|
254
|
+
--keyPassword=<value> Key alias password (required when using --jksFile)
|
|
255
|
+
--keystorePassword=<value> Keystore password (required when using --jksFile)
|
|
252
256
|
|
|
253
257
|
DESCRIPTION
|
|
254
258
|
Imports an Android Keystore to your ShipThis account for the specified game.
|
|
255
259
|
|
|
256
260
|
EXAMPLES
|
|
257
|
-
$ shipthis game android keyStore import
|
|
261
|
+
$ shipthis game android keyStore import path/to/import.zip -g abfd5b00
|
|
262
|
+
|
|
263
|
+
$ shipthis game android keyStore import --jksFile path/to/file.jks --keystorePassword yourpass --keyPassword yourkeypass
|
|
258
264
|
```
|
|
259
265
|
|
|
260
266
|
### `game android keyStore status`
|
|
@@ -308,32 +314,3 @@ EXAMPLES
|
|
|
308
314
|
|
|
309
315
|
$ shipthis game android status --gameId 0c179fc4
|
|
310
316
|
```
|
|
311
|
-
|
|
312
|
-
### `game android wizard`
|
|
313
|
-
|
|
314
|
-
#### Description
|
|
315
|
-
|
|
316
|
-
Prototype Android Wizard
|
|
317
|
-
|
|
318
|
-
#### Help Output
|
|
319
|
-
|
|
320
|
-
```help
|
|
321
|
-
USAGE
|
|
322
|
-
$ shipthis game android wizard [-n <value>] [-b <value>] [-s <value>] [-e <value>] [-v <value>] [-i <value>] [-a
|
|
323
|
-
<value>]
|
|
324
|
-
|
|
325
|
-
FLAGS
|
|
326
|
-
-a, --androidPackageName=<value> Set the Android package name
|
|
327
|
-
-b, --buildNumber=<value> Set the build number
|
|
328
|
-
-e, --gameEngine=<value> Set the game engine
|
|
329
|
-
-i, --iosBundleId=<value> Set the iOS bundle ID
|
|
330
|
-
-n, --name=<value> The name of the game
|
|
331
|
-
-s, --semanticVersion=<value> Set the semantic version
|
|
332
|
-
-v, --gameEngineVersion=<value> Set the game engine version
|
|
333
|
-
|
|
334
|
-
DESCRIPTION
|
|
335
|
-
Prototype Android Wizard
|
|
336
|
-
|
|
337
|
-
EXAMPLES
|
|
338
|
-
$ shipthis game android wizard
|
|
339
|
-
```
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shipthis",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "shipthis",
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.15",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@expo/apple-utils": "2.0.3",
|
package/oclif.manifest.json
CHANGED
|
@@ -993,41 +993,6 @@
|
|
|
993
993
|
"status.js"
|
|
994
994
|
]
|
|
995
995
|
},
|
|
996
|
-
"game:android:status": {
|
|
997
|
-
"aliases": [],
|
|
998
|
-
"args": {},
|
|
999
|
-
"description": "Shows the status of the setup for the Android platform for a specific game.",
|
|
1000
|
-
"examples": [
|
|
1001
|
-
"<%= config.bin %> <%= command.id %>",
|
|
1002
|
-
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
|
|
1003
|
-
],
|
|
1004
|
-
"flags": {
|
|
1005
|
-
"gameId": {
|
|
1006
|
-
"char": "g",
|
|
1007
|
-
"description": "The ID of the game",
|
|
1008
|
-
"name": "gameId",
|
|
1009
|
-
"hasDynamicHelp": false,
|
|
1010
|
-
"multiple": false,
|
|
1011
|
-
"type": "option"
|
|
1012
|
-
}
|
|
1013
|
-
},
|
|
1014
|
-
"hasDynamicHelp": false,
|
|
1015
|
-
"hiddenAliases": [],
|
|
1016
|
-
"id": "game:android:status",
|
|
1017
|
-
"pluginAlias": "shipthis",
|
|
1018
|
-
"pluginName": "shipthis",
|
|
1019
|
-
"pluginType": "core",
|
|
1020
|
-
"strict": true,
|
|
1021
|
-
"enableJsonFlag": false,
|
|
1022
|
-
"isESM": true,
|
|
1023
|
-
"relativePath": [
|
|
1024
|
-
"dist",
|
|
1025
|
-
"commands",
|
|
1026
|
-
"game",
|
|
1027
|
-
"android",
|
|
1028
|
-
"status.js"
|
|
1029
|
-
]
|
|
1030
|
-
},
|
|
1031
996
|
"game:build:download": {
|
|
1032
997
|
"aliases": [],
|
|
1033
998
|
"args": {
|
|
@@ -1161,6 +1126,41 @@
|
|
|
1161
1126
|
"list.js"
|
|
1162
1127
|
]
|
|
1163
1128
|
},
|
|
1129
|
+
"game:android:status": {
|
|
1130
|
+
"aliases": [],
|
|
1131
|
+
"args": {},
|
|
1132
|
+
"description": "Shows the status of the setup for the Android platform for a specific game.",
|
|
1133
|
+
"examples": [
|
|
1134
|
+
"<%= config.bin %> <%= command.id %>",
|
|
1135
|
+
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
|
|
1136
|
+
],
|
|
1137
|
+
"flags": {
|
|
1138
|
+
"gameId": {
|
|
1139
|
+
"char": "g",
|
|
1140
|
+
"description": "The ID of the game",
|
|
1141
|
+
"name": "gameId",
|
|
1142
|
+
"hasDynamicHelp": false,
|
|
1143
|
+
"multiple": false,
|
|
1144
|
+
"type": "option"
|
|
1145
|
+
}
|
|
1146
|
+
},
|
|
1147
|
+
"hasDynamicHelp": false,
|
|
1148
|
+
"hiddenAliases": [],
|
|
1149
|
+
"id": "game:android:status",
|
|
1150
|
+
"pluginAlias": "shipthis",
|
|
1151
|
+
"pluginName": "shipthis",
|
|
1152
|
+
"pluginType": "core",
|
|
1153
|
+
"strict": true,
|
|
1154
|
+
"enableJsonFlag": false,
|
|
1155
|
+
"isESM": true,
|
|
1156
|
+
"relativePath": [
|
|
1157
|
+
"dist",
|
|
1158
|
+
"commands",
|
|
1159
|
+
"game",
|
|
1160
|
+
"android",
|
|
1161
|
+
"status.js"
|
|
1162
|
+
]
|
|
1163
|
+
},
|
|
1164
1164
|
"game:ios:status": {
|
|
1165
1165
|
"aliases": [],
|
|
1166
1166
|
"args": {},
|
|
@@ -1367,14 +1367,13 @@
|
|
|
1367
1367
|
"status.js"
|
|
1368
1368
|
]
|
|
1369
1369
|
},
|
|
1370
|
-
"game:android:
|
|
1370
|
+
"game:android:keyStore:create": {
|
|
1371
1371
|
"aliases": [],
|
|
1372
1372
|
"args": {},
|
|
1373
|
-
"description": "
|
|
1373
|
+
"description": "Creates a new Android Keystore for a game",
|
|
1374
1374
|
"examples": [
|
|
1375
1375
|
"<%= config.bin %> <%= command.id %>",
|
|
1376
|
-
"<%= config.bin %> <%= command.id %> --
|
|
1377
|
-
"<%= config.bin %> <%= command.id %> --disconnect"
|
|
1376
|
+
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
|
|
1378
1377
|
],
|
|
1379
1378
|
"flags": {
|
|
1380
1379
|
"gameId": {
|
|
@@ -1390,17 +1389,11 @@
|
|
|
1390
1389
|
"name": "force",
|
|
1391
1390
|
"allowNo": false,
|
|
1392
1391
|
"type": "boolean"
|
|
1393
|
-
},
|
|
1394
|
-
"disconnect": {
|
|
1395
|
-
"char": "d",
|
|
1396
|
-
"name": "disconnect",
|
|
1397
|
-
"allowNo": false,
|
|
1398
|
-
"type": "boolean"
|
|
1399
1392
|
}
|
|
1400
1393
|
},
|
|
1401
1394
|
"hasDynamicHelp": false,
|
|
1402
1395
|
"hiddenAliases": [],
|
|
1403
|
-
"id": "game:android:
|
|
1396
|
+
"id": "game:android:keyStore:create",
|
|
1404
1397
|
"pluginAlias": "shipthis",
|
|
1405
1398
|
"pluginName": "shipthis",
|
|
1406
1399
|
"pluginType": "core",
|
|
@@ -1411,17 +1404,22 @@
|
|
|
1411
1404
|
"commands",
|
|
1412
1405
|
"game",
|
|
1413
1406
|
"android",
|
|
1414
|
-
"
|
|
1415
|
-
"
|
|
1407
|
+
"keyStore",
|
|
1408
|
+
"create.js"
|
|
1416
1409
|
]
|
|
1417
1410
|
},
|
|
1418
|
-
"game:android:
|
|
1411
|
+
"game:android:keyStore:export": {
|
|
1419
1412
|
"aliases": [],
|
|
1420
|
-
"args": {
|
|
1421
|
-
|
|
1413
|
+
"args": {
|
|
1414
|
+
"file": {
|
|
1415
|
+
"description": "Name of the ZIP file to create",
|
|
1416
|
+
"name": "file",
|
|
1417
|
+
"required": true
|
|
1418
|
+
}
|
|
1419
|
+
},
|
|
1420
|
+
"description": "Saves the current Android Keystore to a ZIP file",
|
|
1422
1421
|
"examples": [
|
|
1423
|
-
"<%= config.bin %> <%= command.id %>"
|
|
1424
|
-
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
|
|
1422
|
+
"<%= config.bin %> <%= command.id %> keyStore.zip"
|
|
1425
1423
|
],
|
|
1426
1424
|
"flags": {
|
|
1427
1425
|
"gameId": {
|
|
@@ -1432,15 +1430,9 @@
|
|
|
1432
1430
|
"multiple": false,
|
|
1433
1431
|
"type": "option"
|
|
1434
1432
|
},
|
|
1435
|
-
"waitForAuth": {
|
|
1436
|
-
"char": "w",
|
|
1437
|
-
"description": "Wait for Google Authentication (10 mins).",
|
|
1438
|
-
"name": "waitForAuth",
|
|
1439
|
-
"allowNo": false,
|
|
1440
|
-
"type": "boolean"
|
|
1441
|
-
},
|
|
1442
1433
|
"force": {
|
|
1443
1434
|
"char": "f",
|
|
1435
|
+
"description": "Overwrite the file if it already exists",
|
|
1444
1436
|
"name": "force",
|
|
1445
1437
|
"allowNo": false,
|
|
1446
1438
|
"type": "boolean"
|
|
@@ -1448,33 +1440,35 @@
|
|
|
1448
1440
|
},
|
|
1449
1441
|
"hasDynamicHelp": false,
|
|
1450
1442
|
"hiddenAliases": [],
|
|
1451
|
-
"id": "game:android:
|
|
1443
|
+
"id": "game:android:keyStore:export",
|
|
1452
1444
|
"pluginAlias": "shipthis",
|
|
1453
1445
|
"pluginName": "shipthis",
|
|
1454
1446
|
"pluginType": "core",
|
|
1455
1447
|
"strict": true,
|
|
1448
|
+
"enableJsonFlag": false,
|
|
1456
1449
|
"isESM": true,
|
|
1457
1450
|
"relativePath": [
|
|
1458
1451
|
"dist",
|
|
1459
1452
|
"commands",
|
|
1460
1453
|
"game",
|
|
1461
1454
|
"android",
|
|
1462
|
-
"
|
|
1463
|
-
"
|
|
1455
|
+
"keyStore",
|
|
1456
|
+
"export.js"
|
|
1464
1457
|
]
|
|
1465
1458
|
},
|
|
1466
|
-
"game:android:
|
|
1459
|
+
"game:android:keyStore:import": {
|
|
1467
1460
|
"aliases": [],
|
|
1468
1461
|
"args": {
|
|
1469
1462
|
"file": {
|
|
1470
|
-
"description": "
|
|
1463
|
+
"description": "Path to the ZIP file to import (must be in the same format as the export)",
|
|
1471
1464
|
"name": "file",
|
|
1472
|
-
"required":
|
|
1465
|
+
"required": false
|
|
1473
1466
|
}
|
|
1474
1467
|
},
|
|
1475
|
-
"description": "
|
|
1468
|
+
"description": "Imports an Android Keystore to your ShipThis account for the specified game.",
|
|
1476
1469
|
"examples": [
|
|
1477
|
-
"<%= config.bin %> <%= command.id %>
|
|
1470
|
+
"<%= config.bin %> <%= command.id %> path/to/import.zip -g abfd5b00",
|
|
1471
|
+
"<%= config.bin %> <%= command.id %> --jksFile path/to/file.jks --keystorePassword yourpass --keyPassword yourkeypass"
|
|
1478
1472
|
],
|
|
1479
1473
|
"flags": {
|
|
1480
1474
|
"gameId": {
|
|
@@ -1485,9 +1479,30 @@
|
|
|
1485
1479
|
"multiple": false,
|
|
1486
1480
|
"type": "option"
|
|
1487
1481
|
},
|
|
1482
|
+
"jksFile": {
|
|
1483
|
+
"description": "Path to the JKS file to import (requires passwords)",
|
|
1484
|
+
"name": "jksFile",
|
|
1485
|
+
"hasDynamicHelp": false,
|
|
1486
|
+
"multiple": false,
|
|
1487
|
+
"type": "option"
|
|
1488
|
+
},
|
|
1489
|
+
"keystorePassword": {
|
|
1490
|
+
"description": "Keystore password (required when using --jksFile)",
|
|
1491
|
+
"name": "keystorePassword",
|
|
1492
|
+
"hasDynamicHelp": false,
|
|
1493
|
+
"multiple": false,
|
|
1494
|
+
"type": "option"
|
|
1495
|
+
},
|
|
1496
|
+
"keyPassword": {
|
|
1497
|
+
"description": "Key alias password (required when using --jksFile)",
|
|
1498
|
+
"name": "keyPassword",
|
|
1499
|
+
"hasDynamicHelp": false,
|
|
1500
|
+
"multiple": false,
|
|
1501
|
+
"type": "option"
|
|
1502
|
+
},
|
|
1488
1503
|
"force": {
|
|
1489
1504
|
"char": "f",
|
|
1490
|
-
"description": "Overwrite
|
|
1505
|
+
"description": "Overwrite any existing keystore without confirmation",
|
|
1491
1506
|
"name": "force",
|
|
1492
1507
|
"allowNo": false,
|
|
1493
1508
|
"type": "boolean"
|
|
@@ -1495,33 +1510,29 @@
|
|
|
1495
1510
|
},
|
|
1496
1511
|
"hasDynamicHelp": false,
|
|
1497
1512
|
"hiddenAliases": [],
|
|
1498
|
-
"id": "game:android:
|
|
1513
|
+
"id": "game:android:keyStore:import",
|
|
1499
1514
|
"pluginAlias": "shipthis",
|
|
1500
1515
|
"pluginName": "shipthis",
|
|
1501
1516
|
"pluginType": "core",
|
|
1502
1517
|
"strict": true,
|
|
1518
|
+
"enableJsonFlag": false,
|
|
1503
1519
|
"isESM": true,
|
|
1504
1520
|
"relativePath": [
|
|
1505
1521
|
"dist",
|
|
1506
1522
|
"commands",
|
|
1507
1523
|
"game",
|
|
1508
1524
|
"android",
|
|
1509
|
-
"
|
|
1510
|
-
"
|
|
1525
|
+
"keyStore",
|
|
1526
|
+
"import.js"
|
|
1511
1527
|
]
|
|
1512
1528
|
},
|
|
1513
|
-
"game:android:
|
|
1529
|
+
"game:android:keyStore:status": {
|
|
1514
1530
|
"aliases": [],
|
|
1515
|
-
"args": {
|
|
1516
|
-
|
|
1517
|
-
"description": "Name of the ZIP file to import (must be in the same format as the export)",
|
|
1518
|
-
"name": "file",
|
|
1519
|
-
"required": true
|
|
1520
|
-
}
|
|
1521
|
-
},
|
|
1522
|
-
"description": "Imports an Android Service Account API Key to your ShipThis account for the specified game.",
|
|
1531
|
+
"args": {},
|
|
1532
|
+
"description": "Displays the status of the Android Keystore for a specific game.",
|
|
1523
1533
|
"examples": [
|
|
1524
|
-
"<%= config.bin %> <%= command.id %>"
|
|
1534
|
+
"<%= config.bin %> <%= command.id %>",
|
|
1535
|
+
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
|
|
1525
1536
|
],
|
|
1526
1537
|
"flags": {
|
|
1527
1538
|
"gameId": {
|
|
@@ -1531,43 +1542,34 @@
|
|
|
1531
1542
|
"hasDynamicHelp": false,
|
|
1532
1543
|
"multiple": false,
|
|
1533
1544
|
"type": "option"
|
|
1534
|
-
},
|
|
1535
|
-
"force": {
|
|
1536
|
-
"char": "f",
|
|
1537
|
-
"name": "force",
|
|
1538
|
-
"allowNo": false,
|
|
1539
|
-
"type": "boolean"
|
|
1540
1545
|
}
|
|
1541
1546
|
},
|
|
1542
1547
|
"hasDynamicHelp": false,
|
|
1543
1548
|
"hiddenAliases": [],
|
|
1544
|
-
"id": "game:android:
|
|
1549
|
+
"id": "game:android:keyStore:status",
|
|
1545
1550
|
"pluginAlias": "shipthis",
|
|
1546
1551
|
"pluginName": "shipthis",
|
|
1547
1552
|
"pluginType": "core",
|
|
1548
1553
|
"strict": true,
|
|
1554
|
+
"enableJsonFlag": false,
|
|
1549
1555
|
"isESM": true,
|
|
1550
1556
|
"relativePath": [
|
|
1551
1557
|
"dist",
|
|
1552
1558
|
"commands",
|
|
1553
1559
|
"game",
|
|
1554
1560
|
"android",
|
|
1555
|
-
"
|
|
1556
|
-
"
|
|
1561
|
+
"keyStore",
|
|
1562
|
+
"status.js"
|
|
1557
1563
|
]
|
|
1558
1564
|
},
|
|
1559
|
-
"game:android:apiKey:
|
|
1565
|
+
"game:android:apiKey:connect": {
|
|
1560
1566
|
"aliases": [],
|
|
1561
|
-
"args": {
|
|
1562
|
-
|
|
1563
|
-
"description": "The Google Play Account ID",
|
|
1564
|
-
"name": "accountId",
|
|
1565
|
-
"required": false
|
|
1566
|
-
}
|
|
1567
|
-
},
|
|
1568
|
-
"description": "Invites the Service Account to your Google Play Account.",
|
|
1567
|
+
"args": {},
|
|
1568
|
+
"description": "Connects ShipThis with Google for managing Service Account API Keys for an Android game",
|
|
1569
1569
|
"examples": [
|
|
1570
|
-
"<%= config.bin %> <%= command.id %>"
|
|
1570
|
+
"<%= config.bin %> <%= command.id %>",
|
|
1571
|
+
"<%= config.bin %> <%= command.id %> --force",
|
|
1572
|
+
"<%= config.bin %> <%= command.id %> --disconnect"
|
|
1571
1573
|
],
|
|
1572
1574
|
"flags": {
|
|
1573
1575
|
"gameId": {
|
|
@@ -1578,31 +1580,22 @@
|
|
|
1578
1580
|
"multiple": false,
|
|
1579
1581
|
"type": "option"
|
|
1580
1582
|
},
|
|
1581
|
-
"
|
|
1582
|
-
"char": "
|
|
1583
|
-
"
|
|
1584
|
-
"name": "prompt",
|
|
1585
|
-
"allowNo": false,
|
|
1586
|
-
"type": "boolean"
|
|
1587
|
-
},
|
|
1588
|
-
"waitForGoogleApp": {
|
|
1589
|
-
"char": "p",
|
|
1590
|
-
"description": "Waits for the Google Play app to be created (10 mins).",
|
|
1591
|
-
"name": "waitForGoogleApp",
|
|
1583
|
+
"force": {
|
|
1584
|
+
"char": "f",
|
|
1585
|
+
"name": "force",
|
|
1592
1586
|
"allowNo": false,
|
|
1593
1587
|
"type": "boolean"
|
|
1594
1588
|
},
|
|
1595
|
-
"
|
|
1596
|
-
"char": "
|
|
1597
|
-
"
|
|
1598
|
-
"name": "waitForAuth",
|
|
1589
|
+
"disconnect": {
|
|
1590
|
+
"char": "d",
|
|
1591
|
+
"name": "disconnect",
|
|
1599
1592
|
"allowNo": false,
|
|
1600
1593
|
"type": "boolean"
|
|
1601
1594
|
}
|
|
1602
1595
|
},
|
|
1603
1596
|
"hasDynamicHelp": false,
|
|
1604
1597
|
"hiddenAliases": [],
|
|
1605
|
-
"id": "game:android:apiKey:
|
|
1598
|
+
"id": "game:android:apiKey:connect",
|
|
1606
1599
|
"pluginAlias": "shipthis",
|
|
1607
1600
|
"pluginName": "shipthis",
|
|
1608
1601
|
"pluginType": "core",
|
|
@@ -1614,13 +1607,13 @@
|
|
|
1614
1607
|
"game",
|
|
1615
1608
|
"android",
|
|
1616
1609
|
"apiKey",
|
|
1617
|
-
"
|
|
1610
|
+
"connect.js"
|
|
1618
1611
|
]
|
|
1619
1612
|
},
|
|
1620
|
-
"game:android:apiKey:
|
|
1613
|
+
"game:android:apiKey:create": {
|
|
1621
1614
|
"aliases": [],
|
|
1622
1615
|
"args": {},
|
|
1623
|
-
"description": "
|
|
1616
|
+
"description": "Creates a new Android Service Account API Key for a game",
|
|
1624
1617
|
"examples": [
|
|
1625
1618
|
"<%= config.bin %> <%= command.id %>",
|
|
1626
1619
|
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
|
|
@@ -1633,11 +1626,24 @@
|
|
|
1633
1626
|
"hasDynamicHelp": false,
|
|
1634
1627
|
"multiple": false,
|
|
1635
1628
|
"type": "option"
|
|
1629
|
+
},
|
|
1630
|
+
"waitForAuth": {
|
|
1631
|
+
"char": "w",
|
|
1632
|
+
"description": "Wait for Google Authentication (10 mins).",
|
|
1633
|
+
"name": "waitForAuth",
|
|
1634
|
+
"allowNo": false,
|
|
1635
|
+
"type": "boolean"
|
|
1636
|
+
},
|
|
1637
|
+
"force": {
|
|
1638
|
+
"char": "f",
|
|
1639
|
+
"name": "force",
|
|
1640
|
+
"allowNo": false,
|
|
1641
|
+
"type": "boolean"
|
|
1636
1642
|
}
|
|
1637
1643
|
},
|
|
1638
1644
|
"hasDynamicHelp": false,
|
|
1639
1645
|
"hiddenAliases": [],
|
|
1640
|
-
"id": "game:android:apiKey:
|
|
1646
|
+
"id": "game:android:apiKey:create",
|
|
1641
1647
|
"pluginAlias": "shipthis",
|
|
1642
1648
|
"pluginName": "shipthis",
|
|
1643
1649
|
"pluginType": "core",
|
|
@@ -1649,16 +1655,21 @@
|
|
|
1649
1655
|
"game",
|
|
1650
1656
|
"android",
|
|
1651
1657
|
"apiKey",
|
|
1652
|
-
"
|
|
1658
|
+
"create.js"
|
|
1653
1659
|
]
|
|
1654
1660
|
},
|
|
1655
|
-
"game:android:
|
|
1661
|
+
"game:android:apiKey:export": {
|
|
1656
1662
|
"aliases": [],
|
|
1657
|
-
"args": {
|
|
1658
|
-
|
|
1663
|
+
"args": {
|
|
1664
|
+
"file": {
|
|
1665
|
+
"description": "Name of the ZIP file to create",
|
|
1666
|
+
"name": "file",
|
|
1667
|
+
"required": true
|
|
1668
|
+
}
|
|
1669
|
+
},
|
|
1670
|
+
"description": "Saves the current Android Service Account API Key to a ZIP file",
|
|
1659
1671
|
"examples": [
|
|
1660
|
-
"<%= config.bin %> <%= command.id %>"
|
|
1661
|
-
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
|
|
1672
|
+
"<%= config.bin %> <%= command.id %> keyStore.zip"
|
|
1662
1673
|
],
|
|
1663
1674
|
"flags": {
|
|
1664
1675
|
"gameId": {
|
|
@@ -1671,6 +1682,7 @@
|
|
|
1671
1682
|
},
|
|
1672
1683
|
"force": {
|
|
1673
1684
|
"char": "f",
|
|
1685
|
+
"description": "Overwrite the file if it already exists",
|
|
1674
1686
|
"name": "force",
|
|
1675
1687
|
"allowNo": false,
|
|
1676
1688
|
"type": "boolean"
|
|
@@ -1678,7 +1690,7 @@
|
|
|
1678
1690
|
},
|
|
1679
1691
|
"hasDynamicHelp": false,
|
|
1680
1692
|
"hiddenAliases": [],
|
|
1681
|
-
"id": "game:android:
|
|
1693
|
+
"id": "game:android:apiKey:export",
|
|
1682
1694
|
"pluginAlias": "shipthis",
|
|
1683
1695
|
"pluginName": "shipthis",
|
|
1684
1696
|
"pluginType": "core",
|
|
@@ -1689,22 +1701,22 @@
|
|
|
1689
1701
|
"commands",
|
|
1690
1702
|
"game",
|
|
1691
1703
|
"android",
|
|
1692
|
-
"
|
|
1693
|
-
"
|
|
1704
|
+
"apiKey",
|
|
1705
|
+
"export.js"
|
|
1694
1706
|
]
|
|
1695
1707
|
},
|
|
1696
|
-
"game:android:
|
|
1708
|
+
"game:android:apiKey:import": {
|
|
1697
1709
|
"aliases": [],
|
|
1698
1710
|
"args": {
|
|
1699
1711
|
"file": {
|
|
1700
|
-
"description": "Name of the ZIP file to
|
|
1712
|
+
"description": "Name of the ZIP file to import (must be in the same format as the export)",
|
|
1701
1713
|
"name": "file",
|
|
1702
1714
|
"required": true
|
|
1703
1715
|
}
|
|
1704
1716
|
},
|
|
1705
|
-
"description": "
|
|
1717
|
+
"description": "Imports an Android Service Account API Key to your ShipThis account for the specified game.",
|
|
1706
1718
|
"examples": [
|
|
1707
|
-
"<%= config.bin %> <%= command.id %>
|
|
1719
|
+
"<%= config.bin %> <%= command.id %>"
|
|
1708
1720
|
],
|
|
1709
1721
|
"flags": {
|
|
1710
1722
|
"gameId": {
|
|
@@ -1717,7 +1729,6 @@
|
|
|
1717
1729
|
},
|
|
1718
1730
|
"force": {
|
|
1719
1731
|
"char": "f",
|
|
1720
|
-
"description": "Overwrite the file if it already exists",
|
|
1721
1732
|
"name": "force",
|
|
1722
1733
|
"allowNo": false,
|
|
1723
1734
|
"type": "boolean"
|
|
@@ -1725,35 +1736,33 @@
|
|
|
1725
1736
|
},
|
|
1726
1737
|
"hasDynamicHelp": false,
|
|
1727
1738
|
"hiddenAliases": [],
|
|
1728
|
-
"id": "game:android:
|
|
1739
|
+
"id": "game:android:apiKey:import",
|
|
1729
1740
|
"pluginAlias": "shipthis",
|
|
1730
1741
|
"pluginName": "shipthis",
|
|
1731
1742
|
"pluginType": "core",
|
|
1732
1743
|
"strict": true,
|
|
1733
|
-
"enableJsonFlag": false,
|
|
1734
1744
|
"isESM": true,
|
|
1735
1745
|
"relativePath": [
|
|
1736
1746
|
"dist",
|
|
1737
1747
|
"commands",
|
|
1738
1748
|
"game",
|
|
1739
1749
|
"android",
|
|
1740
|
-
"
|
|
1741
|
-
"
|
|
1750
|
+
"apiKey",
|
|
1751
|
+
"import.js"
|
|
1742
1752
|
]
|
|
1743
1753
|
},
|
|
1744
|
-
"game:android:
|
|
1754
|
+
"game:android:apiKey:invite": {
|
|
1745
1755
|
"aliases": [],
|
|
1746
1756
|
"args": {
|
|
1747
|
-
"
|
|
1748
|
-
"description": "
|
|
1749
|
-
"name": "
|
|
1757
|
+
"accountId": {
|
|
1758
|
+
"description": "The Google Play Account ID",
|
|
1759
|
+
"name": "accountId",
|
|
1750
1760
|
"required": false
|
|
1751
1761
|
}
|
|
1752
1762
|
},
|
|
1753
|
-
"description": "
|
|
1763
|
+
"description": "Invites the Service Account to your Google Play Account.",
|
|
1754
1764
|
"examples": [
|
|
1755
|
-
"<%= config.bin %> <%= command.id %>
|
|
1756
|
-
"<%= config.bin %> <%= command.id %> --jksFile path/to/file.jks --keystorePassword yourpass --keyPassword yourkeypass"
|
|
1765
|
+
"<%= config.bin %> <%= command.id %>"
|
|
1757
1766
|
],
|
|
1758
1767
|
"flags": {
|
|
1759
1768
|
"gameId": {
|
|
@@ -1764,57 +1773,49 @@
|
|
|
1764
1773
|
"multiple": false,
|
|
1765
1774
|
"type": "option"
|
|
1766
1775
|
},
|
|
1767
|
-
"
|
|
1768
|
-
"
|
|
1769
|
-
"
|
|
1770
|
-
"
|
|
1771
|
-
"
|
|
1772
|
-
"type": "
|
|
1773
|
-
},
|
|
1774
|
-
"keystorePassword": {
|
|
1775
|
-
"description": "Keystore password (required when using --jksFile)",
|
|
1776
|
-
"name": "keystorePassword",
|
|
1777
|
-
"hasDynamicHelp": false,
|
|
1778
|
-
"multiple": false,
|
|
1779
|
-
"type": "option"
|
|
1776
|
+
"prompt": {
|
|
1777
|
+
"char": "p",
|
|
1778
|
+
"description": "Prompt for the Google Play Account ID",
|
|
1779
|
+
"name": "prompt",
|
|
1780
|
+
"allowNo": false,
|
|
1781
|
+
"type": "boolean"
|
|
1780
1782
|
},
|
|
1781
|
-
"
|
|
1782
|
-
"
|
|
1783
|
-
"
|
|
1784
|
-
"
|
|
1785
|
-
"
|
|
1786
|
-
"type": "
|
|
1783
|
+
"waitForGoogleApp": {
|
|
1784
|
+
"char": "p",
|
|
1785
|
+
"description": "Waits for the Google Play app to be created (10 mins).",
|
|
1786
|
+
"name": "waitForGoogleApp",
|
|
1787
|
+
"allowNo": false,
|
|
1788
|
+
"type": "boolean"
|
|
1787
1789
|
},
|
|
1788
|
-
"
|
|
1789
|
-
"char": "
|
|
1790
|
-
"description": "
|
|
1791
|
-
"name": "
|
|
1790
|
+
"waitForAuth": {
|
|
1791
|
+
"char": "w",
|
|
1792
|
+
"description": "Wait for Google Authentication (10 mins).",
|
|
1793
|
+
"name": "waitForAuth",
|
|
1792
1794
|
"allowNo": false,
|
|
1793
1795
|
"type": "boolean"
|
|
1794
1796
|
}
|
|
1795
1797
|
},
|
|
1796
1798
|
"hasDynamicHelp": false,
|
|
1797
1799
|
"hiddenAliases": [],
|
|
1798
|
-
"id": "game:android:
|
|
1800
|
+
"id": "game:android:apiKey:invite",
|
|
1799
1801
|
"pluginAlias": "shipthis",
|
|
1800
1802
|
"pluginName": "shipthis",
|
|
1801
1803
|
"pluginType": "core",
|
|
1802
1804
|
"strict": true,
|
|
1803
|
-
"enableJsonFlag": false,
|
|
1804
1805
|
"isESM": true,
|
|
1805
1806
|
"relativePath": [
|
|
1806
1807
|
"dist",
|
|
1807
1808
|
"commands",
|
|
1808
1809
|
"game",
|
|
1809
1810
|
"android",
|
|
1810
|
-
"
|
|
1811
|
-
"
|
|
1811
|
+
"apiKey",
|
|
1812
|
+
"invite.js"
|
|
1812
1813
|
]
|
|
1813
1814
|
},
|
|
1814
|
-
"game:android:
|
|
1815
|
+
"game:android:apiKey:status": {
|
|
1815
1816
|
"aliases": [],
|
|
1816
1817
|
"args": {},
|
|
1817
|
-
"description": "Displays the status of the Android
|
|
1818
|
+
"description": "Displays the status of the Android Service Account API Key for a specific game.",
|
|
1818
1819
|
"examples": [
|
|
1819
1820
|
"<%= config.bin %> <%= command.id %>",
|
|
1820
1821
|
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
|
|
@@ -1831,19 +1832,18 @@
|
|
|
1831
1832
|
},
|
|
1832
1833
|
"hasDynamicHelp": false,
|
|
1833
1834
|
"hiddenAliases": [],
|
|
1834
|
-
"id": "game:android:
|
|
1835
|
+
"id": "game:android:apiKey:status",
|
|
1835
1836
|
"pluginAlias": "shipthis",
|
|
1836
1837
|
"pluginName": "shipthis",
|
|
1837
1838
|
"pluginType": "core",
|
|
1838
1839
|
"strict": true,
|
|
1839
|
-
"enableJsonFlag": false,
|
|
1840
1840
|
"isESM": true,
|
|
1841
1841
|
"relativePath": [
|
|
1842
1842
|
"dist",
|
|
1843
1843
|
"commands",
|
|
1844
1844
|
"game",
|
|
1845
1845
|
"android",
|
|
1846
|
-
"
|
|
1846
|
+
"apiKey",
|
|
1847
1847
|
"status.js"
|
|
1848
1848
|
]
|
|
1849
1849
|
},
|
|
@@ -2238,5 +2238,5 @@
|
|
|
2238
2238
|
]
|
|
2239
2239
|
}
|
|
2240
2240
|
},
|
|
2241
|
-
"version": "0.1.
|
|
2241
|
+
"version": "0.1.15"
|
|
2242
2242
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shipthis",
|
|
3
3
|
"description": "ShipThis manages building and uploading your Godot games to the App Store and Google Play.",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.15",
|
|
5
5
|
"author": "Hello Invent Ltd",
|
|
6
6
|
"bin": {
|
|
7
7
|
"shipthis": "./bin/run.js"
|
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
"scripts": {
|
|
206
206
|
"build-original": "shx rm -rf dist && tsc -b",
|
|
207
207
|
"build-tsc-alias": "shx rm -rf dist && npx tsc --build && npx tsc-alias -p tsconfig.json",
|
|
208
|
-
"build": "pkgroll --clean-
|
|
208
|
+
"build": "pkgroll --clean-dist",
|
|
209
209
|
"lint": "eslint . --ext .ts",
|
|
210
210
|
"posttest": "npm run lint",
|
|
211
211
|
"prepack": "cp package-lock.json package-lock.dev.json || true && npm run readme && oclif manifest && npm shrinkwrap",
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
# Command: `game android wizard`
|
|
2
|
-
|
|
3
|
-
## Description
|
|
4
|
-
|
|
5
|
-
Prototype Android Wizard
|
|
6
|
-
|
|
7
|
-
## Help Output
|
|
8
|
-
|
|
9
|
-
```help
|
|
10
|
-
USAGE
|
|
11
|
-
$ shipthis game android wizard [-n <value>] [-b <value>] [-s <value>] [-e <value>] [-v <value>] [-i <value>] [-a
|
|
12
|
-
<value>]
|
|
13
|
-
|
|
14
|
-
FLAGS
|
|
15
|
-
-a, --androidPackageName=<value> Set the Android package name
|
|
16
|
-
-b, --buildNumber=<value> Set the build number
|
|
17
|
-
-e, --gameEngine=<value> Set the game engine
|
|
18
|
-
-i, --iosBundleId=<value> Set the iOS bundle ID
|
|
19
|
-
-n, --name=<value> The name of the game
|
|
20
|
-
-s, --semanticVersion=<value> Set the semantic version
|
|
21
|
-
-v, --gameEngineVersion=<value> Set the game engine version
|
|
22
|
-
|
|
23
|
-
DESCRIPTION
|
|
24
|
-
Prototype Android Wizard
|
|
25
|
-
|
|
26
|
-
EXAMPLES
|
|
27
|
-
$ shipthis game android wizard
|
|
28
|
-
```
|