@tauri-apps/cli 2.9.5 → 2.9.6

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.9.6]
4
+
5
+ ### Dependencies
6
+
7
+ - Upgraded to `tauri-cli@2.9.6`
8
+
3
9
  ## \[2.9.5]
4
10
 
5
11
  ### Bug Fixes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "http://json-schema.org/draft-07/schema#",
3
- "$id": "https://schema.tauri.app/config/2.9.4",
3
+ "$id": "https://schema.tauri.app/config/2.9.5",
4
4
  "title": "Config",
5
5
  "description": "The Tauri configuration object.\n It is read from a file where you can define your frontend assets,\n configure the bundler and define a tray icon.\n\n The configuration file is generated by the\n [`tauri init`](https://v2.tauri.app/reference/cli/#init) command that lives in\n your Tauri application source directory (src-tauri).\n\n Once generated, you may modify it at will to customize your Tauri application.\n\n ## File Formats\n\n By default, the configuration is defined as a JSON file named `tauri.conf.json`.\n\n Tauri also supports JSON5 and TOML files via the `config-json5` and `config-toml` Cargo features, respectively.\n The JSON5 file name must be either `tauri.conf.json` or `tauri.conf.json5`.\n The TOML file name is `Tauri.toml`.\n\n ## Platform-Specific Configuration\n\n In addition to the default configuration file, Tauri can\n read a platform-specific configuration from `tauri.linux.conf.json`,\n `tauri.windows.conf.json`, `tauri.macos.conf.json`, `tauri.android.conf.json` and `tauri.ios.conf.json`\n (or `Tauri.linux.toml`, `Tauri.windows.toml`, `Tauri.macos.toml`, `Tauri.android.toml` and `Tauri.ios.toml` if the `Tauri.toml` format is used),\n which gets merged with the main configuration object.\n\n ## Configuration Structure\n\n The configuration is composed of the following objects:\n\n - [`app`](#appconfig): The Tauri configuration\n - [`build`](#buildconfig): The build configuration\n - [`bundle`](#bundleconfig): The bundle configurations\n - [`plugins`](#pluginconfig): The plugins configuration\n\n Example tauri.config.json file:\n\n ```json\n {\n \"productName\": \"tauri-app\",\n \"version\": \"0.1.0\",\n \"build\": {\n \"beforeBuildCommand\": \"\",\n \"beforeDevCommand\": \"\",\n \"devUrl\": \"http://localhost:3000\",\n \"frontendDist\": \"../dist\"\n },\n \"app\": {\n \"security\": {\n \"csp\": null\n },\n \"windows\": [\n {\n \"fullscreen\": false,\n \"height\": 600,\n \"resizable\": true,\n \"title\": \"Tauri App\",\n \"width\": 800\n }\n ]\n },\n \"bundle\": {},\n \"plugins\": {}\n }\n ```",
6
6
  "type": "object",
@@ -1296,7 +1296,7 @@
1296
1296
  "additionalProperties": false
1297
1297
  },
1298
1298
  "FsScope": {
1299
- "description": "Protocol scope definition.\n It is a list of glob patterns that restrict the API access from the webview.\n\n Each pattern can start with a variable that resolves to a system base directory.\n The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`,\n `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`,\n `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`,\n `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.",
1299
+ "description": "Protocol scope definition.\n It is a list of glob patterns that restrict the API access from the webview.\n\n Each pattern can start with a variable that resolves to a system base directory.\n The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`,\n `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`,\n `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$TEMP`,\n `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.",
1300
1300
  "anyOf": [
1301
1301
  {
1302
1302
  "description": "A list of paths that are allowed by this scope.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "2.9.5",
3
+ "version": "2.9.6",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "type": "commonjs",
6
6
  "funding": {
@@ -65,16 +65,16 @@
65
65
  "tauri": "node ./tauri.js"
66
66
  },
67
67
  "optionalDependencies": {
68
- "@tauri-apps/cli-linux-x64-gnu": "2.9.5",
69
- "@tauri-apps/cli-win32-x64-msvc": "2.9.5",
70
- "@tauri-apps/cli-darwin-x64": "2.9.5",
71
- "@tauri-apps/cli-darwin-arm64": "2.9.5",
72
- "@tauri-apps/cli-linux-arm64-gnu": "2.9.5",
73
- "@tauri-apps/cli-linux-arm64-musl": "2.9.5",
74
- "@tauri-apps/cli-linux-arm-gnueabihf": "2.9.5",
75
- "@tauri-apps/cli-linux-x64-musl": "2.9.5",
76
- "@tauri-apps/cli-linux-riscv64-gnu": "2.9.5",
77
- "@tauri-apps/cli-win32-ia32-msvc": "2.9.5",
78
- "@tauri-apps/cli-win32-arm64-msvc": "2.9.5"
68
+ "@tauri-apps/cli-linux-x64-gnu": "2.9.6",
69
+ "@tauri-apps/cli-win32-x64-msvc": "2.9.6",
70
+ "@tauri-apps/cli-darwin-x64": "2.9.6",
71
+ "@tauri-apps/cli-darwin-arm64": "2.9.6",
72
+ "@tauri-apps/cli-linux-arm64-gnu": "2.9.6",
73
+ "@tauri-apps/cli-linux-arm64-musl": "2.9.6",
74
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.9.6",
75
+ "@tauri-apps/cli-linux-x64-musl": "2.9.6",
76
+ "@tauri-apps/cli-linux-riscv64-gnu": "2.9.6",
77
+ "@tauri-apps/cli-win32-ia32-msvc": "2.9.6",
78
+ "@tauri-apps/cli-win32-arm64-msvc": "2.9.6"
79
79
  }
80
80
  }