Skip to content
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

feat: Add deep link plugin for mobile #504

Merged
merged 39 commits into from
Sep 14, 2023
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
04cf527
init deep link plugin
FabianLars Jul 6, 2023
7e75e5c
add most of the android poc
FabianLars Jul 6, 2023
9f68c64
add seperate example and events
FabianLars Jul 12, 2023
7812833
feat: iOS support
lucasfernog Jul 17, 2023
2451ea3
update tauri
lucasfernog Jul 17, 2023
a8e748e
fix license headers
FabianLars Jul 18, 2023
a379e6a
fmt
FabianLars Jul 18, 2023
c4356b4
initial plugin config with androidmanifest rewrite
FabianLars Jul 19, 2023
788b7da
disable patch
FabianLars Jul 19, 2023
ba205ee
add license header
FabianLars Jul 19, 2023
1ab43e8
simplify config, support iOS
lucasfernog Jul 19, 2023
90e5bd8
fix lib config
FabianLars Jul 19, 2023
32d067d
re-add android:scheme
FabianLars Jul 19, 2023
2a7bffb
re-use config from lib in build script
FabianLars Jul 19, 2023
cd7cb18
initial iOS docs
lucasfernog Jul 19, 2023
e37accc
initial android docs.
FabianLars Jul 19, 2023
eb62d51
feat: implement JS onOpenUrl fn
lucasfernog Jul 19, 2023
f4f04de
add banner, metadata
lucasfernog Aug 7, 2023
7dace2b
sponsors
lucasfernog Aug 7, 2023
9112eec
Merge remote-tracking branch 'origin/v2' into deep-link
lucasfernog Aug 15, 2023
bc6dfe1
rename example
lucasfernog Aug 15, 2023
0784df8
add example to workspace
lucasfernog Aug 15, 2023
d499378
add CN [skip ci]
lucasfernog Aug 15, 2023
0263735
white bg [skip ci]
lucasfernog Aug 15, 2023
f35bb39
resolve todo
lucasfernog Aug 15, 2023
ce43bf0
Apply suggestions from code review
lucasfernog Aug 16, 2023
31f3385
use workspace deps in example
FabianLars Aug 16, 2023
7f1a9bb
fmt
FabianLars Aug 16, 2023
898d4b3
cargo fmt
FabianLars Aug 16, 2023
1458f85
Merge branch 'v2' into deep-link
lucasfernog Sep 7, 2023
4f8c795
prepare release
lucasfernog Sep 7, 2023
e0afc2e
Merge remote-tracking branch 'origin/v2' into deep-link
lucasfernog Sep 13, 2023
6759245
contributed by instead of sponsors
lucasfernog Sep 13, 2023
d27fa05
fmt
lucasfernog Sep 13, 2023
d0af4ff
style [skip ci]
lucasfernog Sep 13, 2023
3a37236
update logos [skip ci]
lucasfernog Sep 14, 2023
7014b6d
update project
lucasfernog Sep 14, 2023
04954c3
update api-iife.js
lucasfernog Sep 14, 2023
a6d0b05
validate config
lucasfernog Sep 14, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
members = ["plugins/*", "plugins/*/tests/*", "examples/*/src-tauri"]
members = ["plugins/*", "plugins/*/tests/*", "plugins/*/examples/*/src-tauri", "examples/*/src-tauri"]
resolver = "2"

[workspace.dependencies]
Expand Down
1 change: 1 addition & 0 deletions plugins/deep-link/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/.tauri
Loading
Loading