Amr Bashir
44e3335da8
fix(core/shell): speedup Command.execute & fix extra new lines ( #9796 )
...
* fix(core/shell): speedup `Command.execute` & fix extra new lines (#9706 )
* fix(core/shell): speedup `Command.execute` & fix extra new lines
The speed gains comes from running the Command in Rust fully and returning the result in one go instead of using events.
The extra new lines was a regression from https://github.com/tauri-apps/tauri/pull/6519
ref: https://github.com/tauri-apps/tauri/issues/7684#issuecomment-2100897383
* fix unix build
* clippy
* cleanup
---------
Co-authored-by: Lucas Nogueira <lucas@tauri.app >
* lock file
* minor
---------
Co-authored-by: Lucas Nogueira <lucas@tauri.app >
Co-authored-by: Lucas Nogueira <lucas@tauri.studio >
2024-05-24 13:40:05 -03:00
Amr Bashir
3b69c1384b
Revert "fix(core/shell): speedup Command.execute & fix extra new lines ( #9706 )" ( #9792 )
...
* Revert "fix(core/shell): speedup `Command.execute` & fix extra new lines (#9706 )"
This reverts commit 7f885bd5ed .
* change file
2024-05-15 19:28:15 +03:00
Amr Bashir
7f885bd5ed
fix(core/shell): speedup Command.execute & fix extra new lines ( #9706 )
...
* fix(core/shell): speedup `Command.execute` & fix extra new lines
The speed gains comes from running the Command in Rust fully and returning the result in one go instead of using events.
The extra new lines was a regression from https://github.com/tauri-apps/tauri/pull/6519
ref: https://github.com/tauri-apps/tauri/issues/7684#issuecomment-2100897383
* fix unix build
* clippy
* cleanup
---------
Co-authored-by: Lucas Nogueira <lucas@tauri.app >
2024-05-09 18:14:53 +03:00
sameoldlab
00c60097c5
fix scope example ( #6401 )
...
Changed `scope` example to provide an array, as described in the docs and how it works.
2023-03-17 13:11:43 -03:00
Lucas Fernandes Nogueira
46e6187c89
chore: update license year ( #6311 )
2023-02-19 10:17:49 -03:00
renovate[bot]
488a7562bb
chore(deps) Update dependency eslint-config-standard-with-typescript to v24 ( #5832 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Lucas Nogueira <lucas@tauri.studio >
2022-12-27 13:15:58 -03:00
Lucas Fernandes Nogueira
d0d873e39a
feat(core): add support to mailto: and tel: links, closes #5521 ( #5544 )
2022-12-13 00:57:39 -03:00
Amr Bashir
5e74aefd4a
chore(api.js): add @since tag where appropriate ( #5169 )
2022-09-12 16:45:57 -03:00
Lucas Fernandes Nogueira
2901145c49
chore: update license headers ( #5067 )
2022-08-28 15:13:21 -03:00
horochx
d8cf9f9fcd
Command support for specified character encoding, closes #4644 ( #4772 )
...
Co-authored-by: Lucas Nogueira <lucas@tauri.studio >
2022-07-27 18:23:27 -03:00
Danil Karpenko
aa9f1243e6
Improved EventEmitter for tauri api shell ( #4697 )
...
Co-authored-by: Lucas Nogueira <lucas@tauri.studio >
2022-07-25 19:35:35 -03:00
Lorenzo Lewis
47666c4a0b
Fix/docs qol improvements ( #4641 )
2022-07-11 10:14:31 -03:00
renovate[bot]
be4831fdfb
chore(deps) Update Tauri API Definitions ( #4512 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Lucas Nogueira <lucas@tauri.studio >
2022-06-29 00:58:07 -03:00
Lucas Fernandes Nogueira
a136d0ed5c
docs(api): add example to all functions, closes #4322 ( #4325 )
2022-06-12 21:44:33 -03:00
Lucas Nogueira
3e18264d9e
docs(api): fix shell links
2022-03-03 12:43:55 -03:00
Lucas Fernandes Nogueira
9b3b163baa
feat(core): simplify scope definition for sidecars ( #3574 )
2022-03-02 10:21:36 -03:00
Aidan Labourdette
2d8dd49589
chore: fix formatting ( #3560 )
...
Fixed the markdown formatting for the openWith? parameter options for the open function in shell module.
see: https://github.com/tauri-apps/tauri-docs/pull/476
2022-02-26 04:40:54 +02:00
Jordan Baron
cf29e02043
Docs: change command to cmd ( #3530 )
2022-02-24 09:37:47 -03:00
Lucas Nogueira
5a0c382f3a
docs(api): document HTTP scope
2022-02-11 15:19:01 -03:00
Lucas Nogueira
317d5dd17d
docs(api): document shell scope
2022-02-11 15:04:00 -03:00
Lucas Fernandes Nogueira
7aca0a6233
refactor(core): simplify shell scope, input only string arrays ( #3372 )
2022-02-09 13:44:52 -03:00
Jonas Kruckenberg
9b19a805aa
fix(api.js) Replace number[]with Uint8Array. fixes #3306 ( #3305 )
...
Co-authored-by: Amr Bashir <amr.bashir2015@gmail.com >
Co-authored-by: Lucas Nogueira <lucas@tauri.studio >
2022-02-04 22:18:23 -03:00
chip
10314cd5cf
feat(core): add argument parsing on shell scope ( #44 )
...
* feat: initial implementation
* feat: arg parser
* refactor: move codegen to context struct
* feat: regex validation
* fix tests
* fix: support magic argument value `-`
* feat: support value regex starting with `-`
* refactor: shell_scope mod, add happy path tests
* wip: scope command arguments
* wip: commands
* add better scoped errors and pattern matching
* add documentation to scoped command items
* support using the new shell scope for open
* use the proper items in tauri::scope during codegen
* shell-open uses ScopeError::Validation also
* use shell scoping for sidecar commands
* fix: cli.rs build
* fix: validation when arg list is empty
* require args in a non-fixed, non-empty config list
Co-authored-by: Chip Reed <chip@chip.sh >
2022-01-26 16:43:24 -03:00
Lucas Nogueira
63921fada4
refactor: change tauri::api::open with argument to an enum [TRI-022] ( #19 )
2022-01-09 14:58:38 -03:00
renovate[bot]
b759744999
chore(deps) Update Tauri API Definitions (major) ( #2747 )
...
Co-authored-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: Lucas Nogueira <lucas@tauri.studio >
2021-10-13 10:30:24 -03:00
Amr Bashir
785865863e
chore(api.js): better platform-specific notes ( #2253 )
2021-07-21 12:23:16 +08:00
Lucas Fernandes Nogueira
2881ccc329
docs(api): document allowlist for each module ( #1853 )
2021-05-17 22:33:09 -03:00
Lucas Fernandes Nogueira
de147cd3a9
docs(api): document window.__TAURI__ option on each module [skip ci] ( #1852 )
2021-05-17 17:56:14 -03:00
Lucas Fernandes Nogueira
f7892cf4ff
feat(api): documentation ( #1694 )
...
* feat(api): documentation
* more docs [skip ci]
2021-05-05 14:36:40 -03:00
Lucas Fernandes Nogueira
721e98f175
feat(core): add env, cwd to the command API, closes #1634 ( #1635 )
...
Co-authored-by: Amr Bashir <48618675+amrbashir@users.noreply.github.com >
2021-04-28 18:25:44 -03:00
Amr Bashir
186deb43d5
refactor: more consistent js-api docs ( #1463 )
2021-04-12 22:44:50 -03:00
Lucas Fernandes Nogueira
aea614587b
refactor(repo): add /tooling folder ( #1457 )
2021-04-12 01:59:25 -03:00