@tauri-apps/cli 2.0.0-alpha.17 → 2.0.0-alpha.18

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/package.json +11 -11
  3. package/schema.json +157 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.0.0-alpha.18]
4
+
5
+ ### New Features
6
+
7
+ - [`50f7ccbb`](https://www.github.com/tauri-apps/tauri/commit/50f7ccbbf3467f33cc7dd1cca53125fec6eda1c6)([#6444](https://www.github.com/tauri-apps/tauri/pull/6444)) Add suport to SVG input image for the `tauri icon` command.
8
+ - [`25e5f91d`](https://www.github.com/tauri-apps/tauri/commit/25e5f91dae7fe2bbc1ba4317d5d829402bfd1d50)([#8200](https://www.github.com/tauri-apps/tauri/pull/8200)) Merge `src-tauri/Info.plist` and `src-tauri/Info.ios.plist` with the iOS project plist file.
9
+
10
+ ### Enhancements
11
+
12
+ - [`01a7a983`](https://www.github.com/tauri-apps/tauri/commit/01a7a983aba2946b455a608b8a6a4b08cb25fc11)([#8128](https://www.github.com/tauri-apps/tauri/pull/8128)) Transform paths to relative to the mobile project for the IDE script runner script.
13
+
14
+ ### Bug Fixes
15
+
16
+ - [`88dac86f`](https://www.github.com/tauri-apps/tauri/commit/88dac86f3b301d1919df6473a9e20f46b560f29b)([#8149](https://www.github.com/tauri-apps/tauri/pull/8149)) Ensure `tauri add` prints `rust_code` with plugin name in snake case.
17
+ - [`977d0e52`](https://www.github.com/tauri-apps/tauri/commit/977d0e52f14b1ad01c86371765ef25b36572459e)([#8202](https://www.github.com/tauri-apps/tauri/pull/8202)) Fixes `android build --open` and `ios build --open` IDE failing to read CLI options.
18
+ - [`bfbbefdb`](https://www.github.com/tauri-apps/tauri/commit/bfbbefdb9e13ed1f42f6db7fa9ceaa84db1267e9)([#8161](https://www.github.com/tauri-apps/tauri/pull/8161)) Fix invalid plugin template.
19
+ - [`92b50a3a`](https://www.github.com/tauri-apps/tauri/commit/92b50a3a398c9d55b6992a8f5c2571e4d72bdaaf)([#8209](https://www.github.com/tauri-apps/tauri/pull/8209)) Added support to Xcode's archive. This requires regenerating the Xcode project.
20
+
21
+ ### Dependencies
22
+
23
+ - Upgraded to `tauri-cli@2.0.0-alpha.18`
24
+
3
25
  ## \[2.0.0-alpha.17]
4
26
 
5
27
  ### Enhancements
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "2.0.0-alpha.17",
3
+ "version": "2.0.0-alpha.18",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -68,15 +68,15 @@
68
68
  "format:check": "prettier --check ./package.json ./tauri.js"
69
69
  },
70
70
  "optionalDependencies": {
71
- "@tauri-apps/cli-win32-x64-msvc": "2.0.0-alpha.17",
72
- "@tauri-apps/cli-darwin-x64": "2.0.0-alpha.17",
73
- "@tauri-apps/cli-linux-x64-gnu": "2.0.0-alpha.17",
74
- "@tauri-apps/cli-darwin-arm64": "2.0.0-alpha.17",
75
- "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-alpha.17",
76
- "@tauri-apps/cli-linux-arm64-musl": "2.0.0-alpha.17",
77
- "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-alpha.17",
78
- "@tauri-apps/cli-linux-x64-musl": "2.0.0-alpha.17",
79
- "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-alpha.17",
80
- "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-alpha.17"
71
+ "@tauri-apps/cli-win32-x64-msvc": "2.0.0-alpha.18",
72
+ "@tauri-apps/cli-darwin-x64": "2.0.0-alpha.18",
73
+ "@tauri-apps/cli-linux-x64-gnu": "2.0.0-alpha.18",
74
+ "@tauri-apps/cli-darwin-arm64": "2.0.0-alpha.18",
75
+ "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-alpha.18",
76
+ "@tauri-apps/cli-linux-arm64-musl": "2.0.0-alpha.18",
77
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-alpha.18",
78
+ "@tauri-apps/cli-linux-x64-musl": "2.0.0-alpha.18",
79
+ "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-alpha.18",
80
+ "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-alpha.18"
81
81
  }
82
82
  }
package/schema.json CHANGED
@@ -37,6 +37,20 @@
37
37
  "deb": {
38
38
  "files": {}
39
39
  },
40
+ "dmg": {
41
+ "appPosition": {
42
+ "x": 180,
43
+ "y": 170
44
+ },
45
+ "applicationFolderPosition": {
46
+ "x": 480,
47
+ "y": 170
48
+ },
49
+ "windowSize": {
50
+ "height": 400,
51
+ "width": 660
52
+ }
53
+ },
40
54
  "iOS": {},
41
55
  "icon": [],
42
56
  "identifier": "",
@@ -171,6 +185,20 @@
171
185
  "deb": {
172
186
  "files": {}
173
187
  },
188
+ "dmg": {
189
+ "appPosition": {
190
+ "x": 180,
191
+ "y": 170
192
+ },
193
+ "applicationFolderPosition": {
194
+ "x": 480,
195
+ "y": 170
196
+ },
197
+ "windowSize": {
198
+ "height": 400,
199
+ "width": 660
200
+ }
201
+ },
174
202
  "iOS": {},
175
203
  "icon": [],
176
204
  "identifier": "",
@@ -1003,6 +1031,28 @@
1003
1031
  }
1004
1032
  ]
1005
1033
  },
1034
+ "dmg": {
1035
+ "description": "DMG-specific settings.",
1036
+ "default": {
1037
+ "appPosition": {
1038
+ "x": 180,
1039
+ "y": 170
1040
+ },
1041
+ "applicationFolderPosition": {
1042
+ "x": 480,
1043
+ "y": 170
1044
+ },
1045
+ "windowSize": {
1046
+ "height": 400,
1047
+ "width": 660
1048
+ }
1049
+ },
1050
+ "allOf": [
1051
+ {
1052
+ "$ref": "#/definitions/DmgConfig"
1053
+ }
1054
+ ]
1055
+ },
1006
1056
  "macOS": {
1007
1057
  "description": "Configuration for the macOS bundles.",
1008
1058
  "default": {
@@ -1318,6 +1368,113 @@
1318
1368
  },
1319
1369
  "additionalProperties": false
1320
1370
  },
1371
+ "DmgConfig": {
1372
+ "description": "Configuration for Apple Disk Image (.dmg) bundles.\n\nSee more: https://tauri.app/v1/api/config#dmgconfig",
1373
+ "type": "object",
1374
+ "properties": {
1375
+ "background": {
1376
+ "description": "Image to use as the background in dmg file. Accepted formats: `png`/`jpg`/`gif`.",
1377
+ "type": [
1378
+ "string",
1379
+ "null"
1380
+ ]
1381
+ },
1382
+ "windowPosition": {
1383
+ "description": "Position of volume window on screen.",
1384
+ "anyOf": [
1385
+ {
1386
+ "$ref": "#/definitions/Position"
1387
+ },
1388
+ {
1389
+ "type": "null"
1390
+ }
1391
+ ]
1392
+ },
1393
+ "windowSize": {
1394
+ "description": "Size of volume window.",
1395
+ "default": {
1396
+ "height": 400,
1397
+ "width": 660
1398
+ },
1399
+ "allOf": [
1400
+ {
1401
+ "$ref": "#/definitions/Size"
1402
+ }
1403
+ ]
1404
+ },
1405
+ "appPosition": {
1406
+ "description": "Position of app file on window.",
1407
+ "default": {
1408
+ "x": 180,
1409
+ "y": 170
1410
+ },
1411
+ "allOf": [
1412
+ {
1413
+ "$ref": "#/definitions/Position"
1414
+ }
1415
+ ]
1416
+ },
1417
+ "applicationFolderPosition": {
1418
+ "description": "Position of application folder on window.",
1419
+ "default": {
1420
+ "x": 480,
1421
+ "y": 170
1422
+ },
1423
+ "allOf": [
1424
+ {
1425
+ "$ref": "#/definitions/Position"
1426
+ }
1427
+ ]
1428
+ }
1429
+ },
1430
+ "additionalProperties": false
1431
+ },
1432
+ "Position": {
1433
+ "description": "Position coordinates struct.",
1434
+ "type": "object",
1435
+ "required": [
1436
+ "x",
1437
+ "y"
1438
+ ],
1439
+ "properties": {
1440
+ "x": {
1441
+ "description": "X coordinate.",
1442
+ "type": "integer",
1443
+ "format": "uint32",
1444
+ "minimum": 0.0
1445
+ },
1446
+ "y": {
1447
+ "description": "Y coordinate.",
1448
+ "type": "integer",
1449
+ "format": "uint32",
1450
+ "minimum": 0.0
1451
+ }
1452
+ },
1453
+ "additionalProperties": false
1454
+ },
1455
+ "Size": {
1456
+ "description": "Size of the window.",
1457
+ "type": "object",
1458
+ "required": [
1459
+ "height",
1460
+ "width"
1461
+ ],
1462
+ "properties": {
1463
+ "width": {
1464
+ "description": "Width of the window.",
1465
+ "type": "integer",
1466
+ "format": "uint32",
1467
+ "minimum": 0.0
1468
+ },
1469
+ "height": {
1470
+ "description": "Height of the window.",
1471
+ "type": "integer",
1472
+ "format": "uint32",
1473
+ "minimum": 0.0
1474
+ }
1475
+ },
1476
+ "additionalProperties": false
1477
+ },
1321
1478
  "MacConfig": {
1322
1479
  "description": "Configuration for the macOS bundles.\n\nSee more: <https://tauri.app/v1/api/config#macconfig>",
1323
1480
  "type": "object",