Compare commits

..

27 Commits

Author SHA1 Message Date
Chip Reed
45fd181727 Merge branch 'next' into feat/pipeline 2023-05-26 10:13:42 +02:00
Chip Reed
7d079de9e1 Merge branch 'fix/clippy-macos' into feat/pipeline 2023-05-26 08:29:42 +02:00
Chip Reed
3ad59d27b8 cargo clippy --fix 2023-05-26 08:04:44 +02:00
Chip Reed
88dce4429f fix clippy errors on macOS 2023-05-26 08:03:52 +02:00
Lucas Nogueira
ba61754cfe apply desktop cfg fix on multiwindow example 2023-05-26 00:12:02 -03:00
Lucas Nogueira
84b2dcfe3c remove __TAURI_WORKSPACE__ workaround 2023-05-26 00:10:50 -03:00
Lucas Nogueira
a3c22e9216 fix mobile build 2023-05-26 00:06:34 -03:00
Lucas Nogueira
eee7252bef add license headers 2023-05-26 00:01:31 -03:00
Lucas Nogueira
21d2ef3d9c do not expose CodegenContext 2023-05-25 23:58:40 -03:00
Lucas Nogueira
4cd1faf5c8 Merge branch 'next' into feat/pipeline 2023-05-25 23:58:26 -03:00
Lucas Nogueira
0fba85a1ee fix tauri::utils usage in codegen 2023-05-25 23:50:48 -03:00
Lucas Nogueira
4061d1c878 fix info_plist usage 2023-05-25 23:49:56 -03:00
Chip Reed
f85362b2fe fix clippy warning 2023-05-11 17:52:56 +02:00
Chip Reed
87b5c54deb Revert "fix clippy warning"
This reverts commit 0c38bc9805.
2023-05-11 17:49:51 +02:00
Chip Reed
8e32c14b26 fix unused imports in pattern 2023-05-11 17:30:14 +02:00
Chip Reed
425795cd33 Merge branch 'next' into feat/pipeline 2023-05-11 17:21:59 +02:00
Chip Reed
0ff7832f19 remove generate_context!() 2023-05-11 17:16:57 +02:00
Chip Reed
0c38bc9805 fix clippy warning 2023-05-09 21:19:06 +02:00
Chip Reed
ec00d0437e rename tauri_build_context to build_script_context 2023-05-09 21:18:39 +02:00
Chip Reed
fc96771172 Merge branch 'next' into feat/pipeline 2023-05-09 21:07:26 +02:00
Chip Reed
0fc28118b7 remove plist argument from Context 2023-05-08 19:18:37 +02:00
Chip Reed
d8fbdf489a perform codegen during tauri-build::build 2023-05-08 19:04:47 +02:00
Chip Reed
d557bcf1c4 only rebuild on plist change if there is a plist 2023-05-08 19:01:08 +02:00
Chip Reed
19e60447d3 remove codegen feature flag 2023-05-08 18:46:40 +02:00
Chip Reed
6a6ec7c48f Merge branch 'next' into feat/pipeline 2023-05-08 18:42:53 +02:00
Chip Reed
d7c017f6ab Merge branch 'next' into feat/pipeline 2023-05-06 22:48:40 +02:00
Chip Reed
b7f5d80d83 update js-api.json for some reason 2023-05-06 21:58:55 +02:00
475 changed files with 3857 additions and 6992 deletions

View File

@@ -1,2 +0,0 @@
[env]
__TAURI_WORKSPACE__ = "true"

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:feat'
"@tauri-apps/cli": 'patch:feat'
"cli.rs": patch
"cli.js": patch
---
Added `tauri plugin add` command to add a plugin to the Tauri project.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'minor:feat'
"@tauri-apps/cli": 'minor:feat'
"cli.rs": minor
"cli.js": minor
---
Added `plugin android add` and `plugin ios add` commands to add mobile plugin functionality to existing projects.

View File

@@ -1,5 +0,0 @@
---
'tauri': 'minor:feat'
---
Added `tauri::VERSION` const to get Tauri's version from Rust.

View File

@@ -1,5 +0,0 @@
---
'tauri': 'minor:feat'
---
Added `tauri::webview_version` , to get webview version.

View File

@@ -1,6 +1,6 @@
---
"tauri-runtime": 'minor:feat'
"tauri-runtime-wry": 'minor:feat'
"tauri-runtime": minor
"tauri-runtime-wry": minor
---
Add `find_class`, `run_on_android_context` on `RuntimeHandle`.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
"cli.rs": patch
"cli.js": patch
---
Do not gitignore the Android project's `buildSrc` folder by default since we removed absolute paths from it.

View File

@@ -1,5 +1,5 @@
---
"tauri": 'patch:enhance'
"tauri": patch
---
Enhance parsing of annotated Android plugin methods to support private functions.

View File

@@ -1,5 +1,5 @@
---
"tauri": 'patch:enhance'
"tauri": patch
---
Added static function `loadConfig` on the Android `PluginManager` class.

View File

@@ -1,5 +1,5 @@
---
"tauri": 'patch:enhance'
"tauri": patch
---
Adjust Android plugin exception error.

View File

@@ -1,5 +0,0 @@
---
'@tauri-apps/api': 'patch:enhance'
---
Add `locale` function in the `os` module to get the system locale.

View File

@@ -1,5 +0,0 @@
---
"tauri": "patch:enhance"
---
Add `tauri::api::os::locale` function to get the system locale.

View File

@@ -1,6 +0,0 @@
---
'tauri-bundler': 'patch:bug'
---
- Updated the AppImage bundler to follow symlinks for `/usr/lib*`.
- Fixes AppImage bundling for Void Linux, which was failing to bundle webkit2gtk because the `/usr/lib64` is a symlink to `/usr/lib`.

View File

@@ -1,5 +1,5 @@
---
"tauri-build": 'patch:enhance'
"tauri-build": patch
---
Set environment variables used by `tauri::mobile_entry_point`.

View File

@@ -1,10 +1,10 @@
---
"tauri-bundler": 'patch:enhance'
"tauri-codegen": 'patch:enhance'
"tauri-macros": 'patch:enhance'
"tauri-utils": 'patch:enhance'
"tauri-runtime": 'patch:enhance'
"tauri-runtime-wry": 'patch:enhance'
"tauri-bundler": patch
"tauri-codegen": patch
"tauri-macros": patch
"tauri-utils": patch
"tauri-runtime": patch
"tauri-runtime-wry": patch
---
Pull changes from Tauri 1.3 release.

View File

@@ -1,5 +1,5 @@
---
"tauri-bundler": 'patch:enhance'
"tauri-bundler": patch
---
Removed the `UpdaterSettings::dialog` field.

View File

@@ -1,6 +1,6 @@
---
"api": 'patch:enhance'
"tauri": 'patch:enhance'
"api": patch
"tauri": patch
---
Add channel API for sending data across the IPC.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'minor:feat'
"@tauri-apps/cli": 'minor:feat'
"cli.rs": minor
"cli.js": minor
---
Added `android build` command.

View File

@@ -1,6 +1,6 @@
---
'tauri-cli': 'patch:enhance'
'@tauri-apps/cli': 'patch:enhance'
'cli.rs': 'patch'
'cli.js': 'patch'
---
Add `--release` flag for `tauri android dev` however you will need to sign your Android app, see https://next--tauri.netlify.app/next/guides/distribution/sign-android

View File

@@ -1,6 +1,6 @@
---
'tauri-cli': 'patch:enhance'
'@tauri-apps/cli': 'patch:enhance'
'cli.rs': 'patch'
'cli.js': 'patch'
---
Build only specified rust targets for `tauri android build` instead of all.

View File

@@ -1,5 +1,5 @@
---
'tauri-cli': 'patch:bug'
'cli.rs': 'patch'
---
Fix `--split-per-abi` not building any targets unless specified by `--target` flag.

View File

@@ -1,6 +0,0 @@
---
'tauri-cli': 'patch:bug'
'@tauri-apps/cli': 'patch:bug'
---
Fix built-in devserver adding hot-reload code to non-html files.

View File

@@ -1,6 +1,6 @@
---
'tauri-cli': 'patch:enhance'
'@tauri-apps/cli': 'patch:enhance'
'cli.rs': 'patch'
'cli.js': 'patch'
---
Use local ip address for built-in dev server on mobile.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
"cli.rs": patch
"cli.js": patch
---
Added `ios build` command.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
---
Add `key.properties` file to android's `.gitignore`.
---
"cli.rs": patch
"cli.js": patch
---
Add `key.properties` file to android's `.gitignore`.

View File

@@ -1,6 +1,6 @@
---
'tauri-cli': 'patch:enhance'
'@tauri-apps/cli': 'patch:enhance'
'cli.rs': 'patch'
'cli.js': 'patch'
---
On mobile, fix regression introduced in `tauri-cli` version `2.0.0-alpha.3` where library not found error was thrown.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
"cli.rs": patch
"cli.js": patch
---
Don't build library files when building desktop targets.

View File

@@ -1,5 +1,5 @@
---
'tauri-cli': 'patch:enhance'
'cli.rs': 'patch'
---
Auto select an external IP for mobile development and fallback to prompting the user. Use `--force-ip-prompt` to force prompting.

View File

@@ -1,6 +0,0 @@
---
'tauri-cli': 'patch:bug'
'@tauri-apps/cli': 'patch:bug'
---
Set current directory to tauri directory before reading config file.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'minor:feat'
"@tauri-apps/cli": 'minor:feat'
"cli.rs": minor
"cli.js": minor
---
Added `android dev` and `ios dev` commands.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'minor:feat'
"@tauri-apps/cli": 'minor:feat'
"cli.rs": minor
"cli.js": minor
---
Add commands to add native Android and iOS functionality to plugins.

View File

@@ -1,5 +1,5 @@
---
'tauri-cli': 'patch:enhance'
'cli.rs': 'patch'
---
In mobile commands, correctly detect when nodejs binary has the version in its name, for example `node-18`

View File

@@ -1,6 +1,6 @@
---
'tauri-cli': 'patch:enhance'
'@tauri-apps/cli': 'patch:enhance'
'cli.rs': 'patch'
'cli.js': 'patch'
---
Fix android project build crashing when using `pnpm` caused by extra `--`.

View File

@@ -1,5 +0,0 @@
---
'tauri-cli': 'patch:bug'
---
Fix building with a custom cargo profile

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
"cli.rs": patch
"cli.js": patch
---
Use temp file instead of environment variable to pass CLI IPC websocket address to the IDE.

View File

@@ -1,6 +1,6 @@
---
'tauri-cli': 'patch:enhance'
'@tauri-apps/cli': 'patch:enhance'
'cli.rs': 'patch'
'cli.js': 'patch'
---
Skip Rust target installation if they are already installed.

View File

@@ -1,6 +0,0 @@
---
'tauri-cli': 'minor:feat'
'@tauri-apps/cli': 'minor:feat'
---
Provide prebuilt CLIs for Windows ARM64 targets.

View File

@@ -1,6 +1,6 @@
---
'tauri-cli': 'patch:enhance'
'@tauri-apps/cli': 'patch:enhance'
'cli.rs': 'patch'
'cli.js': 'patch'
---
Update mobile template to `wry@0.28`

View File

@@ -1,5 +0,0 @@
---
'@tauri-apps/cli': 'patch:bug'
---
Fix nodejs binary regex when `0` is in the version name, for example `node-20`

View File

@@ -1,5 +1,5 @@
---
"tauri-codegen": 'patch:enhance'
"tauri-codegen": patch
---
Change `devPath` URL to use the local IP address on iOS and Android.

View File

@@ -1,5 +0,0 @@
---
'tauri': 'patch:feat'
---
Add `incognito` option to the window configuration object.

View File

@@ -1,5 +0,0 @@
---
'tauri-utils': 'minor:feat'
---
Add option to configure `require_literal_leading_dot` on `fs` and `asset` protcol scopes.

View File

@@ -1,5 +0,0 @@
---
'tauri': 'patch:bug'
---
Fix parsing `allowlist > http > scope` urls that added a trailing slash which broke matching the incoming requests url.

View File

@@ -1,15 +1,6 @@
{
"gitSiteUrl": "https://www.github.com/tauri-apps/tauri/",
"timeout": 3600000,
"changeTags": {
"feat": "New Features",
"enhance": "Enhancements",
"bug": "Bug Fixes",
"pref": "Performance Improvements",
"changes": "What's Changed",
"deps": "Dependencies"
},
"defaultChangeTag": "changes",
"pkgManagers": {
"rust": {
"version": true,
@@ -130,13 +121,13 @@
}
},
"packages": {
"@tauri-apps/api": {
"api": {
"path": "./tooling/api",
"manager": "javascript",
"assets": [
{
"path": "./tooling/api/dist/tauri-apps-api-${ pkgFile.version }.tgz",
"name": "tauri-apps-api-${ pkgFile.version }.tgz"
"name": "api-${ pkgFile.version }.tgz"
}
],
"prepublish": [
@@ -239,11 +230,11 @@
],
"postversion": "node ../../.scripts/covector/sync-cli-metadata.js ${ pkg.pkg } ${ release.type }"
},
"@tauri-apps/cli": {
"cli.js": {
"path": "./tooling/cli/node",
"manager": "javascript",
"getPublishedVersion": "node ../../../.scripts/covector/package-latest-version.js npm ${ pkgFile.pkg.name } ${ pkgFile.pkg.version }",
"dependencies": ["tauri-cli"],
"dependencies": ["cli.rs"],
"postversion": [
"node ../../../.scripts/covector/sync-cli-metadata.js ${ pkg.pkg } ${ release.type }",
"cargo build --manifest-path ../../../core/tauri-config-schema/Cargo.toml"
@@ -252,7 +243,7 @@
"publish": [],
"postpublish": []
},
"tauri-cli": {
"cli.rs": {
"path": "./tooling/cli",
"manager": "rust",
"dependencies": ["tauri-bundler", "tauri-utils"],

View File

@@ -1,5 +0,0 @@
---
'tauri': 'patch:enhance'
---
Use correct HTTP method when making requests to the proxied server on mobile.

View File

@@ -1,5 +0,0 @@
---
'tauri': 'patch:enhance'
---
Enhance the `asset` protocol to support streaming of large files.

View File

@@ -1,5 +0,0 @@
---
'tauri': 'patch:enhance'
---
Implement `Clone` for `Channel`

View File

@@ -1,5 +0,0 @@
---
'tauri': 'patch:feat'
---
Add `WindowBuilder::incognito`

View File

@@ -1,5 +0,0 @@
---
'tauri': 'patch:bug'
---
Fix IPC failing after a failed navigation to an external URL.

View File

@@ -1,5 +0,0 @@
---
'tauri': 'patch:bug'
---
Fix `WindowBuilder::on_navigation` handler not registered properly.

View File

@@ -1,5 +0,0 @@
---
'tauri': 'patch:bug'
---
Emit `UPTODATE` update status to javascript when the updater server returns status code `204`

View File

@@ -1,5 +0,0 @@
---
'tauri': 'patch:enhance'
---
Fix some configurations not applied when creating the window through Javascript.

View File

@@ -1,5 +0,0 @@
---
"tauri": "patch:enhance"
---
Play a sound when showing a notification on Windows.

View File

@@ -1,5 +1,5 @@
---
'tauri': 'patch:enhance'
'tauri': 'patch'
---
On Android, update proguard rules.

View File

@@ -1,7 +0,0 @@
---
"tauri-utils": 'patch:enhance'
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
---
Added the `desktop_template` option on `tauri.conf.json > tauri > bundle > deb`.

View File

@@ -1,5 +0,0 @@
---
"tauri-bundler": "minor:feat"
---
Added `desktop_template` option on `DebianSettings`.

View File

@@ -1,5 +1,5 @@
---
"tauri": major:feat
"tauri": major
---
Added the `default-tls` and `reqwest-default-tls` Cargo features for enabling TLS suppport to connect over HTTPS.

View File

@@ -1,5 +1,5 @@
---
"tauri": 'patch:enhance'
"tauri": patch
---
Add `default_window_icon` getter on `App` and `AppHandle`.

View File

@@ -1,5 +1,5 @@
---
"tauri": 'patch:enhance'
"tauri": patch
---
Implement response cache on the dev server proxy, used when the server responds with status 304.

View File

@@ -1,5 +1,5 @@
---
"tauri": major:feat
"tauri": major
---
**Breaking change:** Use the custom protocol as a proxy to the development server on all platforms except Linux.

View File

@@ -1,5 +0,0 @@
---
'@tauri-apps/api': 'minor:feat'
---
Added the `maximizable`, `minimizable` and `closable` fields on `WindowOptions`.

View File

@@ -1,5 +0,0 @@
---
'@tauri-apps/api': 'minor:feat'
---
Added the `setMaximizable`, `setMinimizable`, `setClosable`, `isMaximizable`, `isMinimizable` and `isClosable` methods.

View File

@@ -1,5 +0,0 @@
---
'tauri-utils': 'minor:feat'
---
Added the `maximizable`, `minimizable` and `closable` options to the window configuration.

View File

@@ -1,6 +0,0 @@
---
'tauri-runtime-wry': 'minor:feat'
'tauri-runtime': 'minor:feat'
---
Added the `maximizable`, `minimizable` and `closable` methods to `WindowBuilder`.

View File

@@ -1,6 +0,0 @@
---
'tauri-runtime-wry': 'minor:feat'
'tauri-runtime': 'minor:feat'
---
Added `set_maximizable`, `set_minimizable`, `set_closable`, `is_maximizable`, `is_minimizable` and `is_closable` methods to the `Dispatch` trait.

View File

@@ -1,5 +0,0 @@
---
'tauri': 'minor:feat'
---
Added the `maximizable`, `minimizable` and `closable` options to the window builder.

View File

@@ -1,5 +0,0 @@
---
'tauri': 'minor:feat'
---
Added the `set_maximizable`, `set_minimizable`, `set_closable`, `is_maximizable`, `is_minimizable` and `is_closable` methods on `Window`.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"tauri": 'patch:enhance'
"cli.rs": patch
"tauri": patch
---
Change minimum Android SDK version to 21 for the plugin library.

View File

@@ -1,6 +1,6 @@
---
"tauri-runtime-wry": 'patch:enhance'
"tauri": 'patch:enhance'
"tauri-runtime-wry": patch
"tauri": patch
---
Allow a wry plugin to be registered at runtime.

View File

@@ -1,5 +0,0 @@
---
"tauri-codegen": 'patch:enhance'
---
Early panic if the PNG icon is not RGBA.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
"cli.rs": patch
"cli.js": patch
---
Change the Android template to enable minification on release and pull ProGuard rules from proguard-tauri.pro.

View File

@@ -1,5 +0,0 @@
---
"tauri": 'patch:enhance'
---
Fixes path commands not being added.

View File

@@ -1,5 +1,5 @@
---
"tauri": 'patch:enhance'
"tauri": patch
---
Enhance Android's `JSObject` return types.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
"cli.rs": patch
"cli.js": patch
---
Print an error if the Android project was generated with an older bundle identifier or package name.

View File

@@ -1,5 +0,0 @@
---
"@tauri-apps/api": 'patch:enhance'
---
Expose the window target option on event APIs.

View File

@@ -1,6 +0,0 @@
---
'tauri-cli': 'minor:feat'
'@tauri-apps/cli': 'minor:feat'
---
Added `tauri completions` to generate shell completions scripts.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
"cli.rs": patch
"cli.js": patch
---
Fixes the generated mobile build script when using an NPM runner.

View File

@@ -1,5 +0,0 @@
---
'tauri-runtime': 'patch:bug'
---
Fixes typo in `CursorIcon` deserialization of the `ZoomIn` variant.

View File

@@ -1,5 +1,5 @@
---
"tauri": 'patch:enhance'
"tauri": patch
---
Properly proxy dev server requests with query strings and fragments.

View File

@@ -1,7 +1,7 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
"tauri-macros": 'patch:enhance'
"cli.rs": patch
"cli.js": patch
"tauri-macros": patch
---
Resolve Android package name from single word bundle identifiers.

View File

@@ -1,6 +0,0 @@
---
'tauri-cli': 'patch:bug'
'@tauri-apps/cli': 'patch:bug'
---
Fixes Cargo.toml feature rewriting.

View File

@@ -1,5 +1,5 @@
---
"tauri": 'patch:enhance'
"tauri": patch
---
Use actual iOS plugin instance to run command with `throws`.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
"cli.rs": patch
"cli.js": patch
---
Fixes running on device using Xcode 14.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
"cli.rs": patch
"cli.js": patch
---
Fixes the iOS project script to build the Rust library.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
"cli.rs": patch
"cli.js": patch
---
Fixes `TAURI_*` environment variables for hook scripts on mobile commands.

View File

@@ -1,5 +1,5 @@
---
"@tauri-apps/cli": 'patch:enhance'
"cli.js": patch
---
Update tauri-mobile to fix running ADB scripts.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
"cli.rs": patch
"cli.js": patch
---
Update Android project template with fix to crash on orientation change.

View File

@@ -1,5 +1,5 @@
---
"tauri": 'patch:enhance'
"tauri": patch
---
Fixes boolean plugin parameters freezing the application.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
"cli.rs": patch
"cli.js": patch
---
Clear Android plugin JSON file before building Rust library to ensure removed plugins are propagated to the Android project.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
"cli.rs": patch
"cli.js": patch
---
Readd the Cargo.toml file to the plugin template.

View File

@@ -1,5 +1,5 @@
---
"tauri-build": 'patch:bug'
"tauri-build": patch
---
Fixes injection of the proguard rules on the Android project.

View File

@@ -1,5 +1,5 @@
---
"tauri": 'patch:enhance'
"tauri": patch
---
Fixes ProGuard rules.

View File

@@ -1,5 +1,5 @@
---
"tauri": 'patch:enhance'
"tauri": patch
---
Fix compilation issues without the shell API features.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
"cli.rs": patch
"cli.js": patch
---
Fixes the Android build gradle plugin implementation on Windows.

View File

@@ -0,0 +1,5 @@
---
'tauri-bundler': 'patch'
---
Correctly escape XML for resource files in WiX bundler.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
"cli.rs": patch
"cli.js": patch
---
Fixes iOS build script using the wrong path for the app library file.

View File

@@ -1,6 +1,6 @@
---
"tauri-cli": 'patch:enhance'
"@tauri-apps/cli": 'patch:enhance'
"cli.rs": patch
"cli.js": patch
---
Force colored logs on mobile commands.

View File

@@ -1,5 +1,5 @@
---
"tauri": 'patch:enhance'
"tauri": patch
---
Generate `TauriActivity` Kotlin class on the build script.

View File

@@ -1,6 +1,6 @@
---
'tauri-cli': 'patch:enhance'
'@tauri-apps/cli': 'patch:enhance'
'cli.rs': 'patch'
'cli.js': 'patch'
---
Update android template to gradle 8.0

View File

@@ -1,7 +1,7 @@
---
"tauri-runtime": 'minor:feat'
"tauri-runtime-wry": 'minor:feat'
"tauri": 'minor:feat'
"tauri-runtime": minor
"tauri-runtime-wry": minor
"tauri": minor
---
Update gtk to 0.16.

Some files were not shown because too many files have changed in this diff Show More