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

Support Flutter Web #5

Merged
merged 32 commits into from
Oct 14, 2021
Merged
Show file tree
Hide file tree
Changes from 31 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
42ec417
Impl
evdokimovs Sep 29, 2021
87feafb
Recheck
evdokimovs Sep 29, 2021
034acc8
Fix deps
evdokimovs Sep 29, 2021
ba9458d
Check
evdokimovs Sep 29, 2021
0d74ef3
?
evdokimovs Sep 29, 2021
417666f
Debug
evdokimovs Sep 29, 2021
9e67d3a
Debug
evdokimovs Sep 29, 2021
30636a3
Fix
evdokimovs Sep 29, 2021
487c70a
Fix
evdokimovs Sep 29, 2021
68fe259
Debug
evdokimovs Sep 29, 2021
d15360f
Debug
evdokimovs Sep 29, 2021
c6878c2
Meh, fix ptrarray
evdokimovs Sep 29, 2021
1ff92d0
Add all ffi and utils from main branch
evdokimovs Sep 29, 2021
8c76198
Check
evdokimovs Sep 30, 2021
ecc5342
Fix all
evdokimovs Sep 30, 2021
6e3dd35
Add assets and update Makefile
evdokimovs Sep 30, 2021
d11e49f
Final reread
evdokimovs Sep 30, 2021
c56fe43
Add CHANGELOG
evdokimovs Sep 30, 2021
45e5f4b
Add some fixes
evdokimovs Sep 30, 2021
a5c90df
Update Jason WASM and Makefile
evdokimovs Oct 1, 2021
918cf84
Update Jason WASM bindings
evdokimovs Oct 1, 2021
0c6b269
Merge branch 'master' into flutter-web-support
alexlapa Oct 4, 2021
8a7791d
corrections
alexlapa Oct 4, 2021
4dda5f4
Fix demo's index.html
evdokimovs Oct 4, 2021
d3ea543
Re-export FacingMode in medea_jason.dart
evdokimovs Oct 7, 2021
01ae9a1
Fix onClose callback
evdokimovs Oct 7, 2021
377bbe6
Remove misleading error log in remote MediaTrack's on_ended callback
evdokimovs Oct 8, 2021
bce8353
corrections
alexlapa Oct 12, 2021
6a534e0
corrections
alexlapa Oct 13, 2021
58374b7
Merge branch 'master' into flutter-web-support
alexlapa Oct 13, 2021
2822ef4
corrections
alexlapa Oct 13, 2021
612f689
Minor corrections
tyranron Oct 14, 2021
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
119 changes: 59 additions & 60 deletions Cargo.lock

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

17 changes: 16 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,20 @@ flutter.android.version.min:
@printf "$(ANDROID_SDK_MIN_VERSION)"


# Generates assets needed for Flutter Web Jason plugin.
#
# Usage:
# make flutter.web.assets

flutter.web.assets:
rm -rf flutter/assets/pkg
wasm-pack build -d flutter/assets/pkg --no-typescript -t web
cd flutter/assets/pkg && \
rm -f *.md && \
rm -f package.json && \
rm -f .gitignore


# Resolve Flutter project dependencies.
#
# Usage:
Expand Down Expand Up @@ -1137,9 +1151,10 @@ endef
docker.up.medea docker.up.webdriver \
docs docs.rust \
down down.control down.coturn down.demo down.dev down.medea \
flutter flutter.fmt flutter.lint flutter.run flutter.test \
flutter flutter.fmt flutter.lint flutter.run \
flutter.android.compile_api_version \
flutter.android.min_api_version \
flutter.web.assets \
helm helm.dir helm.down helm.lint helm.list \
helm.package helm.package.release helm.up \
minikube.boot \
Expand Down
Empty file added flutter/assets/.gitkeep
Empty file.
Loading