forked from tauri-apps/tauri
-
Notifications
You must be signed in to change notification settings - Fork 0
[pull] dev from tauri-apps:dev #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
pull
wants to merge
3,212
commits into
ebfork:dev
Choose a base branch
from
tauri-apps:dev
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
followup on #12876
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…en resources are specified as a map (#12759) Co-authored-by: Fabian-Lars <github@fabianlars.de>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
#12944) * add `Window.is_always_on_top()` and `WebviewWindow.is_always_on_top()` * add api * fmt --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
…ta_store` (#12900) * add `AppHandle::fetch_all_data_store_identifiers` and `AppHandle::remove_data_store` * make it run on main thread, so you can call the function from any thread and it works. * changes file * update signature, move functions to RuntimeHandle * add api --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
That is, it would try to get `sers/john` if you called `AssetResolver.get("users/john")`. This commit fixes the bug by only skipping the first character only if it _is_ a slash (/). Why it is important: `tauri::WebviewUrl::App()` docs state that it's OK to specify the path as `users/john` to get `tauri://localhost/users/john` in the end. So if an application developer is using `AssetResolver.get()` together with `WebviewUrl::App()`, they will would get inconsistent behavior: for the same path, the latter would work, while the former would fail. In fact, we encountered this bug in our code, [here](https://github.com/deltachat/deltachat-desktop/blob/c860b0f4c659cdb0659ba946ecdd7f0381792946/packages/target-tauri/src-tauri/src/help_window.rs#L34-L43).
* feat(cli): allow merging multiple configuration values Currently the dev/build/bundle commands can only merge a single Tauri configuration value (file or raw JSON string), which imposes a limitation in scenarios where you need more flexibility (like multiple app flavors and environments). This changes the config CLI option to allow multiple values, letting you merge multiple Tauri config files with the main one. * fix ios build
…#12884) * allow double `--` in permissions as command can have double `__` * Create change-pr-12884.md * Update .changes/change-pr-12884.md Co-authored-by: Fabian-Lars <github@fabianlars.de> --------- Co-authored-by: Fabian-Lars <github@fabianlars.de>
bun 1.2 changed the current working directory behavior to match NPM managers, so we must adapt our xcode-script logic to check the bun version see https://bun.sh/blog/bun-v1.2#bun-run-uses-the-correct-directory
* fix(cli): Remove mention of `updater` bundle arg in help output * allow --bundles updater but hide from help
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* add '+' key as zoom in * add changefile --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
* moving to macbook * that was so weird to implement * rm patch * Discard changes to Cargo.lock * Create change-pr-12366.md * add missing builder fn * remove test * split change files --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
* Add support for fetching cookies by url * Add support for fetching all cookies * add missing getters, update change file * update docs for windows deadlock * fix mobile build * Update crates/tauri-runtime/Cargo.toml * add docs for stability [skip ci] --------- Co-authored-by: Adam Charron <acharron@higherlogic.com> Co-authored-by: Lucas Nogueira <lucas@tauri.app>
* chore: Fix example readme instructions. Add `pnpm build:debug`. * keep terser on bundle.global.js build to avoid file modifications --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
* add mousewheel bindings commonly used for zooming * add change file * update docs * fmt --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
* Add a new option to remove unused commands * Fix compile * Add markers to all core plugins * Clippy * Add allow unused when running with this * Use build script to generate allowed-commands.json * Clean up and add proper reruns * Wrong path * Revert to #[cfg_attr(not(debug_assertions), allow(unused))] * Add change files * Some more docs * Add version requirement note * Avoid rerun if no capabilities folder * Remove unused box * small cleanup * fix channel * implement for app handler too * rely on core:default for channel perms * Move this feature to config * Docs change * Forget one last remove_unused_commands * Remove removeUnusedCommands from helloworld * tell handler that the app ACL manifest exists * update change file * update doc * update change file * Use a struct to pass the data instead of env var * Clippy * Fix can't exclude inlined plugins on Windows due to UNC paths... * Apply suggestion from code review * Remove remove on empty to tauri-build * Revert "Remove remove on empty to tauri-build" This reverts commit b727dd6. * Centralize remove_file(allowed_commands_file_path) * Escape glob pattern * update change file * remove unused commands for dev too * Update crates/tauri-utils/src/config.rs Co-authored-by: Fabian-Lars <github@fabianlars.de> * regen schema --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app> Co-authored-by: Fabian-Lars <github@fabianlars.de>
* fix: AppHandle::restart() may not send RunEvent::Exit event * docs: add changelog: `AppHandle::restart()` may not send `RunEvent::Exit` event before exiting the application. * style: cargo fmt * avoid deadlock on main thread * do not let the restart be prevented leads to a deadlock currently * Apply suggestions from code review * lint * do not emit RunEvent on main thread * re-export RESTART_EXIT_CODE --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
…13729) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: devfive <devfive@devfiveui-MacStudio.local> Co-authored-by: Fabian-Lars <github@fabianlars.de>
* fix(mock): expose callback functions * Add change file * Bumped the wrong package * Fix end quote in comment
Co-authored-by: Fabian-Lars <github@fabianlars.de>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* patch binary with bundle type info * only patch if the updater is included * fix linux warnings * patch binary when updaer is configured * patch binary with bundle type info only patch if the updater is included fix linux warnings patch binary when updaer is configured * fix formatting * fix license header * fix taplo error * move __TAURI_BUNDLE_TYPE to utils * export get_current_bundle_type * macos fix * cleanup, add api * update change file * fix windows * fmt, fix rust version support * fix macos --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
* Update compileSdk targetSdk, Fix build cmd * Add changelog * Update AGP version * Update package.json * Update AGP * Update SDK * Update * Update .changes/update-android-sdk.md Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com> * Use changes tag in change file --------- Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com>
* feat(android): edge to edge in init template * Add androidx.activity:activity-ktx * androidx.webkit:webkit:1.14.0
… non-admin users (#13786)
currently deps are only installed on init, which might not be executed on someone's machine if the xcode project is commited to the repo. we need to ensure dependencies are installed before running them applies tauri-apps/cargo-mobile2#468
…3803) * chore(deps): update dependency @sveltejs/vite-plugin-svelte to v6 * Bump vite --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Tony <legendmastertony@gmail.com>
* proxy body in mobile dev * add change file, use std::mem::take --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* make static bundle type var mutable * remove unsafe from no_mangle and link_section
* feat: allow all frame init scripts in plugin * Add change files * Update crates/tauri/src/plugin.rs Co-authored-by: Fabian-Lars <github@fabianlars.de> * Default impl initialization_script_2 from 1 * Update crates/tauri/src/plugin.rs Co-authored-by: Lucas Fernandes Nogueira <lucas@tauri.app> --------- Co-authored-by: Fabian-Lars <github@fabianlars.de> Co-authored-by: Lucas Fernandes Nogueira <lucas@tauri.app>
…gs (#13811) * Update config.schema.json * Add RunnerConfig for customizable build runner Replaces runner String with RunnerConfig in CLI and config, allowing advanced runner configuration via string or object with cmd, cwd, and args. Updates schema and usage to support new format, and adds tests for serialization, deserialization, and API. Enables more flexible build and run command customization. * Create runner-object-config.md * Remove unused RunnerConfig import in tests Cleaned up the test module in config.rs by removing the unused RunnerConfig import from two test functions. * Fix tests failing Updates related tests in tauri-utils to improve readability and maintain consistency. Minor import reordering in tauri-cli for clarity. * Move RunnerConfig enum and impls above BuildConfig Relocated the RunnerConfig enum and its associated implementations to appear before the BuildConfig definition. This improves code organization and logical grouping of configuration-related types.
…) (#13810) * docs: add missing `trafficLightPosition` to `WindowOptions` * Change file and tweak docs --------- Co-authored-by: Tony <legendmastertony@gmail.com>
* failed binary patch warning * Update crates/tauri-bundler/src/bundle.rs Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com> --------- Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com>
* feat(mock): add mock for listen and emit * feat(mock): add mock for listen and emit * feat(mock): add mock for listen and emit * Add change file * correctly clear unregisterListener * format with prettier * build project * opt-in to mocking events * Use a minor bump
* test: make some of window id + stores public * test: make window wrapper label pub * feat: make label accessible for windowwrapper * chore: adds wry runtime changefile * chore: avoid forced clone on label Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com> --------- Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
See Commits and Changes for more details.
Created by
pull[bot]
Can you help keep this open source service alive? 💖 Please sponsor : )