Tony
f8053e659e
docs: cargo features ( #3527 )
...
* dialog
* fs
* geolocation
* haptic
* log
* single instance
* notification
* updater
* ##
* persisted scopes
* stronghold
* sql
* upload
* websocket
* http
(this one was too long that I generated through codex, didn't review yet)
* add change file
* no persisted-scope-js
* add `://`
* Merge branch 'v2' into document-cargo-features
* update system-proxy docs
* finish http docs
* notification doesn't need version bumps
* clean up docs
2026-08-05 15:48:11 +08:00
purvsinojiya-inventyv
cc9ec9b4ad
fix(dialog): use parsed MIME type for Android save dialog ( #3519 )
2026-07-29 17:05:43 +02:00
paul valladares
dc7f87bc7e
chore: exclude dev-only files from published crates ( #3518 )
...
* chore: exclude dev-only files from published crates
* format
2026-07-29 09:35:15 +02:00
github-actions[bot] and github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
03afae6d72
publish new versions ( #3500 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-07-19 00:40:36 +08:00
Tony
40ae0a7fa0
enhance(dialog): use MaterialAlertDialogBuilder ( #3491 )
...
* Fix example insets
* Add app-region: drag
* Use `Theme.Material3.DayNight.NoActionBar`
* Re-generate some kotlin files
* Use MaterialAlertDialogBuilder
* Add change file
* Revert back to margin-top: 0.5rem
* Re-generate outdated gradle wrapper from #3039
* Move title bar to its own file
* Fix cancel message
2026-07-16 17:27:19 +08:00
github-actions[bot] and github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
5c7668b6bb
publish new versions ( #3397 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-05-02 19:37:51 +08:00
Tony
b86e999beb
chore(deps): update tauri packages to 2.11 ( #3407 )
...
* chore(deps): update tauri packages to 2.11
* Downgrade derive_more
* Fix audit
* Update tauri-plugin
2026-05-01 16:39:43 +08:00
250857b7b7
chore(deps): update dependency typescript to v6 ( #3363 )
...
* chore(deps): update dependency typescript to v6
* Use 6.0.3
* Fix eslint
* Add `rootDir` since it's no longer inferred
> https://github.com/microsoft/TypeScript/issues/62508#issuecomment-3348659946
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Tony <legendmastertony@gmail.com >
2026-04-18 18:57:41 +08:00
github-actions[bot] and github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
d6a3898001
Publish New Versions (v2) ( #3268 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-04-04 18:47:18 +02:00
Tony
3f21f39584
refactor(dialog): handle okLabel in js side ( #3295 )
...
* refactor(dialog): handle `okLabel` in js side
* Allow unused instead of `cfg(desktop)`
2026-03-01 23:22:25 +08:00
Tony
24154472a6
refactor(dialog): reuse message command for confirm ( #3287 )
...
* chore(dialog): reuse `message` command for confirm
* Add change file
* Remove ask and confirm from default permissions
* Format
* Remove extra `toString`
* Point `allow-confirm` to `allow-message`
2026-03-01 10:55:33 +08:00
Lucas Fernandes Nogueira
89f3e17952
chore: bump tauri to 2.10 ( #3246 )
...
* chore: bump tauri to 2.10
* pnpm i
* audit fix
2026-02-02 21:48:08 -03:00
github-actions[bot] and github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2308f2299d
publish new versions ( #3203 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-01-14 20:48:22 +01:00
Andrew de Waal and Lucas Nogueira
d7a0bb325d
feat(dialog) - Support fileAccessMode for open dialog ( #3030 ) ( #3136 )
...
* feat(dialog) - Support fileAccessMode for open dialog (#3030 )
On iOS, when trying to access a file that exists outside of the app sandbox, one of 2 things need to happen to be able to perform any operations on said file:
* A copy of the file needs to be made to the internal app sandbox
* The method startAccessingSecurityScopedResource needs to be called.
Previously, a copy of the file was always being made when a file was selected through the picker dialog.
While this did ensure there were no file access exceptions when reading from the file, it does not scale well for large files.
To resolve this, we now support `fileAccessMode`, which allows a file handle to be returned without copying the file to the app sandbox.
This MR only supports this change for iOS; MacOS has a different set of needs for security scoped resources.
See discussion in #3716 for more discussion of the difference between iOS and MacOS.
See MR #3185 to see how these scoped files will be accessible using security scoping.
* fmt, clippy
* use enum
---------
Co-authored-by: Lucas Nogueira <lucas@tauri.app >
2026-01-14 08:35:06 -03:00
github-actions[bot] and github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
6e2e7e48c3
publish new versions ( #3070 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-01-08 15:34:17 +01:00
Fabian-Lars
f2d4abb9e2
fix(dialog): rfd feature flags ( #3129 )
2025-11-28 15:25:58 +01:00
renovate[bot] and renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
02068550e8
chore(deps): update rust crate rfd to 0.16 ( #3128 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-28 13:47:22 +08:00
Andrew de Waal and Andrew de Waal
dff6fa986a
feat(dialog) - Support picker mode for open dialog ( #3030 ) ( #3034 )
...
Co-authored-by: Andrew de Waal <andrewldewaal@gmail.com >
2025-11-20 22:28:13 +01:00
Blaine
c23fa03f07
feat(dialog): add xdg-portal as an optional feature for rfd ( #3098 )
2025-11-17 14:56:02 +01:00
Fabian-Lars
5438a5cd22
chore: apply clippy fixes ( #3092 )
2025-11-09 18:43:17 +01:00
Fabian-Lars
5cd7778723
docs(dialog): add/fix doc item links, closes #3089 ( #3091 )
2025-11-09 17:07:35 +01:00
github-actions[bot] and github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
e7a68fa637
publish new versions ( #3068 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-10-27 11:31:06 +01:00
FabianLars
93426f8512
fix: fix docsrs builds
2025-10-27 11:12:56 +01:00
github-actions[bot] and github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
06124af8d6
publish new versions ( #2972 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-10-26 22:02:33 +01:00
Fabian-Lars
6c9b61fb65
chore: Update compileSdk to 36 ( #3039 )
2025-10-20 16:58:29 +02:00
fd439b143e
Publish New Versions (v2) ( #2964 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Fabian-Lars <github@fabianlars.de >
2025-09-02 14:04:12 +02:00
509eba8d44
feat: support message dialogs with 3 buttons ( #2641 )
...
* feat: support message dialogs with 3 buttons
* change file
* From<String>
* untagged & YesNoCancel
* revert package.json
* Update plugins/dialog/src/desktop.rs
Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com >
* no optional
* Update desktop.rs
* Update plugins/dialog/src/models.rs
Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com >
* change to an enum
* convert back into union
* regen
* update @since
* map buttons for linux
* enhance type
* Add examples
---------
Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com >
Co-authored-by: Lucas Nogueira <lucas@tauri.app >
Co-authored-by: Tony <legendmastertony@gmail.com >
2025-08-27 09:40:47 -03:00
github-actions[bot] and github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2371804172
publish new versions ( #2888 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-08-20 11:42:19 +02:00
Lucas Fernandes Nogueira and Tony
50cebdb6d5
chore(deps): update to tauri 2.8.0 ( #2925 )
...
* chore(deps): update to tauri 2.8.0
* fmt
* uipdate build
* tauri 2.8.1 and bump toml in plugin-fs
* tauri 2.8.1
* 2.8.2
* clippy [skip ci]
---------
Co-authored-by: Tony <legendmastertony@gmail.com >
2025-08-19 10:09:44 -03:00
Fabian-Lars
cc98e6a892
docs: Remove mirror install instructions ( #2893 )
2025-08-04 12:30:18 +02:00
github-actions[bot] and github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
9b43f48856
publish new versions ( #2880 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-07-28 17:14:41 +02:00
Fabian-Lars
af08c66faa
fix(dialog): remove use of ACTION_PICK ( #2871 )
2025-07-28 16:43:35 +02:00
github-actions[bot] and github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
d66aa6ff78
publish new versions ( #2822 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-07-20 23:39:53 +02:00
github-actions[bot] and github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
adc23d6c4f
publish new versions ( #2808 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-06-25 16:32:02 +02:00
f209b2f23c
chore(deps): update tauri monorepo to v2.6.0 (v2) ( #2804 )
...
* chore(deps): update tauri monorepo to v2.6.0
* Regenerate api-iife.js
* Bump rust tauri
* Tweak all examples to match the new features
* Bump workspace min tauri version
* Bump `@tauri-apps/api` to ^2.6
* Add change file
* Update lock file
* missing `"`
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Tony <legendmastertony@gmail.com >
2025-06-25 17:52:38 +08:00
github-actions[bot] and FabianLars
85635a2807
publish new versions ( #2643 )
...
Co-authored-by: FabianLars <30730186+FabianLars@users.noreply.github.com >
2025-05-20 10:27:36 +02:00
github-actions[bot] and lucasfernog
8b39aefb1b
publish new versions ( #2545 )
...
Co-authored-by: lucasfernog <20051258+lucasfernog@users.noreply.github.com >
2025-04-02 00:31:52 -03:00
4dd5c51436
chore(deps): update tauri monorepo to v2.4.1 (v2) ( #2589 )
...
* chore(deps): update tauri monorepo to v2.4.1
* Update tauri and regenerate command ref and schema
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Tony <legendmastertony@gmail.com >
2025-04-02 09:37:19 +08:00
Tony and Amr Bashir
8ecb418a1a
feat(auto-start): introduce a builder ( #2569 )
...
* feat(auto-start): introduce a builder
* Update examples
* Fix missing end --- in change file
* Fix missing self.
* Update .changes/autostart-builder.md
Co-authored-by: Amr Bashir <amr.bashir2015@gmail.com >
---------
Co-authored-by: Amr Bashir <amr.bashir2015@gmail.com >
2025-03-25 22:57:40 +08:00
6fcb2f5f40
Publish New Versions (v2) ( #2174 )
...
Co-authored-by: FabianLars <FabianLars@users.noreply.github.com >
Co-authored-by: FabianLars <fabianlars@fabianlars.de >
Co-authored-by: Fabian-Lars <github@fabianlars.de >
2024-12-09 16:45:31 +01:00
github-actions[bot] and FabianLars
0469f025b2
publish new versions ( #2172 )
...
Co-authored-by: FabianLars <FabianLars@users.noreply.github.com >
2024-12-09 13:58:44 +01:00
Muhammed Rahif
3ef756f4ce
docs(all): incorrect path for registering plugin in rust ( #2123 )
2024-12-02 21:13:12 +01:00
github-actions[bot] and FabianLars
1f5ed2fbb0
publish new versions ( #2011 )
...
Co-authored-by: FabianLars <FabianLars@users.noreply.github.com >
2024-12-02 13:45:24 +01:00
Fabian-Lars
76f99ce999
fix(dialog): pub export Dialog ( #2108 )
...
fixes #2107
2024-11-27 11:59:55 +01:00
Fabian-Lars
fecfd5533a
fix(fs)!: use tauri::scope::fs::Scope ( #2070 )
2024-11-21 16:57:25 +02:00
Fabian-Lars
51856e9e0a
docs: Remove header image from inline docs ( #2045 )
2024-11-13 16:07:29 +01:00
github-actions[bot] and amrbashir
525abc4be5
Publish New Versions (v2) ( #1961 )
...
Co-authored-by: amrbashir <amrbashir@users.noreply.github.com >
2024-10-21 15:13:27 +03:00
github-actions[bot] and lucasfernog
3fd283121f
publish new versions ( #1909 )
...
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com >
2024-10-20 08:54:26 -03:00
Tony
2302c2db1c
fix(dialog): ask and confirm not using system button texts ( #1910 )
...
* Fix `ask`'s button texts being ok and cancel
* Update change file
2024-10-20 08:48:45 -03:00
nashaofu and Lucas Nogueira
aee14ed426
fix(dialog): Fix the issue of Android saving files with a .txt extension ( #1892 )
...
* fix: Fix the issue of Android saving files with a .txt extension
* fix(dialog): pull intent type from extensions filters
* fix covector
---------
Co-authored-by: Lucas Nogueira <lucas@tauri.app >
2024-10-09 08:45:05 -03:00