docs - screenshot + video
This commit is contained in:
parent
26509e18bd
commit
b7934112b4
|
@ -4,7 +4,11 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img width="800" src="https://github.com/JoyOfHardware/FastWave2.0/assets/18517402/87b7cafb-ccdf-4968-8057-3a19632f227f" alt="fastwave_screenshot" />
|
<img width="800" src="docs/screenshot_firefox.png" alt="fastwave_screenshot_firefox" />
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<img width="800" src="docs/video_desktop.gif" alt="fastwave_video_desktop" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
BIN
docs/screenshot_firefox.png
Normal file
BIN
docs/screenshot_firefox.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 148 KiB |
BIN
docs/video_desktop.gif
Normal file
BIN
docs/video_desktop.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 434 KiB |
|
@ -5,7 +5,7 @@ use std::mem;
|
||||||
use std::ops::Not;
|
use std::ops::Not;
|
||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
use wellen::GetItem;
|
use wellen::GetItem;
|
||||||
use zoon::{println, *};
|
use zoon::*;
|
||||||
|
|
||||||
const SCOPE_VAR_ROW_MAX_WIDTH: u32 = 480;
|
const SCOPE_VAR_ROW_MAX_WIDTH: u32 = 480;
|
||||||
const MILLER_COLUMN_MAX_HEIGHT: u32 = 500;
|
const MILLER_COLUMN_MAX_HEIGHT: u32 = 500;
|
||||||
|
@ -212,11 +212,11 @@ impl ControlsPanel {
|
||||||
.attr("type", "file")
|
.attr("type", "file")
|
||||||
.event_handler(move |_: events::Input| {
|
.event_handler(move |_: events::Input| {
|
||||||
let Some(file_list) = dom_element.files().map(gloo_file::FileList::from) else {
|
let Some(file_list) = dom_element.files().map(gloo_file::FileList::from) else {
|
||||||
println!("file list is `None`");
|
zoon::println!("file list is `None`");
|
||||||
return;
|
return;
|
||||||
};
|
};
|
||||||
let Some(file) = file_list.first().cloned() else {
|
let Some(file) = file_list.first().cloned() else {
|
||||||
println!("file list is empty");
|
zoon::println!("file list is empty");
|
||||||
return;
|
return;
|
||||||
};
|
};
|
||||||
let hierarchy_and_time_table = hierarchy_and_time_table.clone();
|
let hierarchy_and_time_table = hierarchy_and_time_table.clone();
|
||||||
|
|
Loading…
Reference in a new issue