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

Fix form inputs, form submits navigating, file drop, multiple root elements #1974

Merged
merged 45 commits into from
Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
53cafef
wip: add tests and slightly refactor interpreter code
jkelleyrtp Feb 24, 2024
7f60010
set up a typescript pipeline for interpreter
jkelleyrtp Feb 24, 2024
b5447c1
extend interpreter base class with platform methods
jkelleyrtp Feb 27, 2024
206a482
Merge branch 'main' into jk/fix-form-inputs
jkelleyrtp Feb 27, 2024
bdacca0
use this. on the unified bindings
jkelleyrtp Feb 27, 2024
4b64894
Add proper bundling to tsc
jkelleyrtp Feb 28, 2024
f447f01
Commit js
jkelleyrtp Feb 28, 2024
774fba8
track the configs too
jkelleyrtp Feb 28, 2024
925d061
add glue to webonly interpreter
jkelleyrtp Feb 28, 2024
f196514
change serialization
jkelleyrtp Feb 28, 2024
8a969a2
make interpreter extend the interpreter core class
ealmloff Feb 28, 2024
0ff0eb7
Use the platform as the base interpreter instead of trying to extend it
jkelleyrtp Mar 1, 2024
199173a
fix navigating when files are dropped
jkelleyrtp Mar 2, 2024
22266cc
Switch to bun, clean up web implementation
jkelleyrtp Mar 4, 2024
16b38e3
Merge branch 'main' into jk/fix-form-inputs
jkelleyrtp Mar 5, 2024
b751674
Web works with the js structure
jkelleyrtp Mar 5, 2024
44833c4
Merge branch 'main' into jk/fix-form-inputs
jkelleyrtp Mar 5, 2024
56a3657
clean up native js more
jkelleyrtp Mar 5, 2024
403e8e2
Clean up file uploads in desktop/liveview, remove minify
jkelleyrtp Mar 5, 2024
78d1653
wip: native file handles when dropping 🎉
jkelleyrtp Mar 5, 2024
624e58b
native file drop
jkelleyrtp Mar 5, 2024
39d6580
use git version of sledgehammer
jkelleyrtp Mar 5, 2024
4b2e426
clippy, and don't hash invisible files for ts generation
jkelleyrtp Mar 6, 2024
45b8243
attempt fix on inter
jkelleyrtp Mar 6, 2024
73e7c3e
Attempt order invariance
jkelleyrtp Mar 6, 2024
fa04edf
use hashmap defaulthasher
jkelleyrtp Mar 6, 2024
95d7012
fix hashing system, bump wasm-bindgen
jkelleyrtp Mar 6, 2024
713ab98
fix els bug
jkelleyrtp Mar 6, 2024
f7f416e
Fix hydration
jkelleyrtp Mar 6, 2024
81f38a0
cfg out globalhotkey
jkelleyrtp Mar 7, 2024
08d054f
Merge branch 'main' into jk/fix-form-inputs
jkelleyrtp Mar 7, 2024
1f6195b
try new hashing strategy
jkelleyrtp Mar 7, 2024
60616d0
fix liveview
jkelleyrtp Mar 7, 2024
e02e41d
Attempt even dumber hashing mechanism
jkelleyrtp Mar 7, 2024
8df87c6
debug windows build
jkelleyrtp Mar 7, 2024
99748a6
move debug
jkelleyrtp Mar 7, 2024
f65ded2
raw bytes instead of str
jkelleyrtp Mar 7, 2024
f073322
use md5 instead
jkelleyrtp Mar 7, 2024
c75aa48
add warning
jkelleyrtp Mar 7, 2024
a2907d1
dont even hash it!
jkelleyrtp Mar 7, 2024
c99c07d
warn
jkelleyrtp Mar 7, 2024
2995647
trim line feeds
jkelleyrtp Mar 7, 2024
bb5ecd7
clean up some examples, ensuring stuff works
jkelleyrtp Mar 7, 2024
c3df8c5
fix windows, enable tokio for examples on wasm
jkelleyrtp Mar 7, 2024
feb80ce
remove old interpreter
jkelleyrtp Mar 7, 2024
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
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"[toml]": {
"editor.formatOnSave": false
},
"rust-analyzer.check.workspace": true,
"rust-analyzer.check.workspace": false,
// "rust-analyzer.check.workspace": true,
"rust-analyzer.check.features": "all",
"rust-analyzer.cargo.features": "all",
"rust-analyzer.check.allTargets": true
Expand Down
Loading
Loading