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

Switch to Bevy #4

Merged
merged 37 commits into from
Apr 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
189e6de
a snapshot
shnarazk Mar 28, 2023
4606a2b
a snapshot with bugs
shnarazk Mar 29, 2023
dda885a
no compile errors
shnarazk Mar 30, 2023
34f00bc
an attempt
shnarazk Mar 30, 2023
3085d90
another snapshot still buggy
shnarazk Mar 31, 2023
051ddbe
clean up
shnarazk Mar 31, 2023
df75543
a snapshot
shnarazk Apr 1, 2023
9286803
use loop for building components
shnarazk Apr 1, 2023
3db599f
tiny tweaks
shnarazk Apr 1, 2023
bf14eb5
switch to Bevy
shnarazk Apr 8, 2023
5c42f6f
modified: Cargo.toml; modified: src/main.rs
shnarazk Apr 8, 2023
cb1d60e
add button from examples/ui/button.rs
shnarazk Apr 9, 2023
24ee398
add async stuff
shnarazk Apr 9, 2023
f9cd4ff
add async data fetcher
shnarazk Apr 9, 2023
e62c1ae
tiny changes
shnarazk Apr 9, 2023
1ea1e3c
add some memo
shnarazk Apr 9, 2023
c54f733
change labels to buttons
shnarazk Apr 9, 2023
9808d51
desktop mode; fix some glitches
shnarazk Apr 9, 2023
cbad358
add some interaction
shnarazk Apr 9, 2023
d304897
switch to reqwest
shnarazk Apr 9, 2023
b45d32e
use a modified copy of https://github.com/TotalKrill/bevy_mod_reqwest
shnarazk Apr 9, 2023
230cd9e
clean up
shnarazk Apr 9, 2023
391c67e
written massively
shnarazk Apr 9, 2023
80401b8
add Timeline component
shnarazk Apr 10, 2023
c21b993
refactor Components and Resources
shnarazk Apr 10, 2023
67cf07d
update display with recieved data
shnarazk Apr 10, 2023
2426a3e
UI
shnarazk Apr 10, 2023
11d79a1
cargo clippy: src/reqwest_plugin.rs
shnarazk Apr 10, 2023
30870cc
try to make contents wider and wrapped
shnarazk Apr 10, 2023
617e115
revise layout settings
shnarazk Apr 10, 2023
31b05e7
editorial design
shnarazk Apr 11, 2023
2572827
more UI tweaks
shnarazk Apr 11, 2023
8ef7afc
ditto
shnarazk Apr 11, 2023
0746e03
UI tweaks and refactoring
shnarazk Apr 11, 2023
2eeb1ad
modified: Cargo.toml
shnarazk Apr 14, 2023
0c5a591
adapt to auto-reflow text by https://github.com/bevyengine/bevy/pull/…
shnarazk Apr 17, 2023
07289ee
mention https://github.com/TotalKrill/bevy_mod_reqwest
shnarazk Apr 17, 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
11 changes: 6 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ edition = "2021"
[dependencies]
chrono = { version = "^0.4" }
clap = { version = "^4.1", features = ["derive", "env"] }
dioxus = { version = "^0.3" }
dioxus-desktop = { version = "^0.3" }
hyper = { version = "^0.14", features = ["full"] }
hyper-tls = { version = "^0.5" }
bevy = { git = "https://github.com/bevyengine/bevy.git", branch = "main" }
reqwest = "0.11.16"
serde_json = { version = "^1.0" }
tokio = { version = "^1.26", features = ["full"] }
futures-lite = "1.13.0"
async-compat = "0.2.1"
bytes = "1.4.0"
serde = "1.0.159"
Binary file added assets/fonts/NotoSansCJKjp-Regular.otf
Binary file not shown.
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod reqwest_plugin;
Loading