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,078
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 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
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: FabianLars <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Fabian-Lars <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Fabian-Lars <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: FabianLars <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Fabian-Lars <[email protected]>
…2118) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: FabianLars <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: FabianLars <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: FabianLars <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: FabianLars <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: FabianLars <[email protected]>
Co-authored-by: FabianLars <[email protected]>
* ci: Switch to upstream create-pull-request * what the actual f * fix version comment --------- Co-authored-by: Tillmann <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: FabianLars <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: FabianLars <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* feat: Add bundleVersion for iOS and macOS * feat: Use bundleVersion for CFBundleVersion * feat: Synchronize bundleVersion with Info.plist * cleanup * fix bundle version, enhance prerelease/buildnumber support and checks * fix change file * tauri-bundler to change file * expand doc --------- Co-authored-by: Lucas Nogueira <[email protected]>
* Fix channel cb never cleaned up from `window` * Should be `_{id}` * Still need to manually impl clone * Regenerate bundle.global.js * Remove current_index from ChannelInner * Move phantom to `Channel` * `Channel` not `Self` * Clean up * Clean up * Fix missing end quote * Add change file * Rename id to index to match js side * Improve channel speed on small data * do the same perf check for IPC responses and raw bytes --------- Co-authored-by: Lucas Nogueira <[email protected]>
* fix(cli): iOS dev broken on Xcode 16.3, closes #13128 Looks like we cannot use the arm64-sim custom architecture on Xcode 16.3, as it incorrectly appends the -sim suffix on some clang build scripts which ends up with an invalid target triple. Currently we do not have automation to update Xcode/Android projects, so a manual intervention is required by our users, either recreating the project or modifying it manually (the arm64-sim arch must be removed and all its references). ref tauri-apps/cargo-mobile2#445 * fix dev on macOS with intel chip
* Add an option for preventing window overflow * Fix shadow counted as part of the width * Enable prevent overflow by default * Fix crashing when margin is bigger than screen * Config file support * Add to ts type * Add mac implementation * Should be let some * Apply suggestions from code review Co-authored-by: Jason Tsai <[email protected]> * checked_sub -> saturating_sub * Revert license header * Migrate windows 0.58 * Generate schema * Fix merge conflict * Try casting to objc2_app_kit::NSScreen * Add NSScreen feature * Use cast instead of as * fmt * Deref first * Wrong unsafe block * Add change file * Add serde alias * More docs * Disable prevent_overflow by default since we can't make breaking changes anymore right now * Remove unused default impl * Missing pub * Fix mock_runtime on ios * Match PreventOverflowMargin's description * Typo * Apply suggestions from code review * Move get_work_area_size to seperate files * Unused imports * Add prevent_overflow to WebviewWindowBuilder * Fix mac compile * MonitorExt is only for desktop * Rename to work_area * Use workarea for linux * Missing `()` * Convert size * Import MonitorExt * as u32 * Re-build API js * Fix wrong docs for work_area * Remove linux platform specific note * Remove left over linux platform specific note * Use work area API for center as well * Fix mobile * Clean up * small cleanup * fix codegen * update docs * fix generated --------- Co-authored-by: Jason Tsai <[email protected]> Co-authored-by: Lucas Nogueira <[email protected]>
* feat(cli): enhance iOS bundle version formatting follow-up for #13030 and tauri-apps/cargo-mobile2#450 the bundle version validation has been updated, now it can actually handle one or two integers (e.g. `100` or `10.7`) instead of just full triple semver strings (e.g. `10.7.1`). * lint
* fix(cli): try detect package manager from env * Typo
…OS (#13208) * feat(core): allow changing or disabling the input accessory view on iOS needs tauri-apps/wry#1544 * remove unused code * fix imports * lint * fix features * wry 0.51.2
Co-authored-by: Lucas Nogueira <[email protected]>
* Update core.ts * Update core.ts * Update core.ts * lint * build * fix lint, add change file --------- Co-authored-by: Lucas Nogueira <[email protected]>
* Create Hebrew.nsh * add change file --------- Co-authored-by: Lucas Nogueira <[email protected]>
I noticed `pnpm ts:check` isn't working on my end, currently only works if the typescript package is globally installed
* fix: remove unused clones, discovered with clippy nursery lint clippy::redundant_clone * fix: clippy * fix: remove no longer used clippy allow directives * more lint --------- Co-authored-by: Lucas Nogueira <[email protected]>
* fix: sign nsis plugin DLLs * also sign DLLs on unix * fix build * create copy of nsis dir * always make a copy of nsis (so linux works, permission error otherwise) * fix windows build * fix * to_path_buf * also create wix copy * remove unused toolset change * fix unused var * fmt * fix wix build * fix build * fix plugin copy * fix conflict * fix file download --------- Co-authored-by: Lucas Nogueira <[email protected]>
…ess (fix #8610) (#10108) * fix(webdriver): windows: make native webdriver close with parent process * add change file --------- Co-authored-by: Lucas Nogueira <[email protected]>
* Use `Headers` in `sendIpcMessage` * Add change file * Change files * Don't use optional chaining Seems like we have changed it in #9530 deliberately, so preserving it in this change * do not let the tauri headers to be overwritten Co-authored-by: Sean Wang <[email protected]> * use HeadersInit on the type definition --------- Co-authored-by: Lucas Nogueira <[email protected]> Co-authored-by: Sean Wang <[email protected]>
* Fix invoke handler stack overflow * Format and inline iife in release build * Add change file * The comment should be one level up
* feat(core): include type name in state panic message * tweak message
Co-authored-by: lucasfernog <[email protected]>
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 : )