105 lines
2.9 KiB
Markdown
105 lines
2.9 KiB
Markdown
# FastWave
|
|
> Cross-Platform Wave Viewer
|
|
|
|
---
|
|
|
|
<p align="center">Browser (Firefox)</p>
|
|
<p align="center">
|
|
<img width="800" src="docs/screenshot_firefox.png" alt="Fastwave - Browser (Firefox)" />
|
|
</p>
|
|
|
|
<p align="center">Desktop, miller columns and tree</p>
|
|
<p align="center">
|
|
<img width="800" src="docs/video_desktop.gif" alt="Fastwave - Desktop, miller columns and tree" />
|
|
</p>
|
|
|
|
<p align="center">Zoom, pan and basic number formats</p>
|
|
<p align="center">
|
|
<img width="800" src="docs/video_zoom_formatting_simple.gif" alt="Fastwave - Zoom, pan and basic number formats" />
|
|
</p>
|
|
|
|
<p align="center">Zoom and all formats</p>
|
|
<p align="center">
|
|
<img width="800" src="docs/video_zoom_formatting.gif" alt="Fastwave - Zoom and all formats" />
|
|
</p>
|
|
|
|
<p align="center">Javascript commands</p>
|
|
<p align="center">
|
|
<img width="800" src="docs/video_javascript_commands.gif" alt="Fastwave - Javascript commands" />
|
|
</p>
|
|
|
|
<p align="center">Load and save selected variables</p>
|
|
<p align="center">
|
|
<img width="800" src="docs/video_load_save_selected_vars.gif" alt="Fastwave - Load and save selected variables" />
|
|
</p>
|
|
|
|
<p align="center">Decoders Demo</p>
|
|
<p align="center">
|
|
<img width="800" src="docs/video_decoders.gif" alt="Fastwave - Decoders demo" />
|
|
</p>
|
|
|
|
<p align="center">Decoder Interface</p>
|
|
<p align="center">
|
|
<img width="500" src="docs/screenshot_world_wit.png" alt="Fastwave - Decoder Interface" />
|
|
</p>
|
|
|
|
---
|
|
|
|
### Install requirements:
|
|
|
|
1. Install [Rust](https://www.rust-lang.org/tools/install)
|
|
2. Install [Node.js](https://nodejs.org/)
|
|
3. `cargo install cargo-make`
|
|
4. `makers install`
|
|
|
|
___
|
|
|
|
### Start the desktop version:
|
|
|
|
1. `makers start`
|
|
|
|
Troubleshooting:
|
|
- In case of Tauri compilation errors, install system dependencies: https://beta.tauri.app/guides/prerequisites/
|
|
|
|
- Possible Tauri runtime errors in terminal of VSCode installed from Linux Snap package manager:
|
|
```
|
|
Failed to load module "colorreload-gtk-module"
|
|
|
|
/usr/lib/x86_64-linux-gnu/webkit2gtk-4.1/WebKitNetworkProcess: symbol lookup error: /snap/core20/current/lib/x86_64-linux-gnu/libpthread.so.0: undefined symbol: __libc_pthread_init, version GLIBC_PRIVATE
|
|
```
|
|
Fix it by installing VSCode directly from official `.deb` bundle or try to unset multiple env variables - more info in https://stackoverflow.com/questions/75921414/java-symbol-lookup-error-snap-core20-current-lib-x86-64-linux-gnu-libpthread
|
|
|
|
---
|
|
|
|
### Production build of the desktop version:
|
|
|
|
1. `makers bundle`
|
|
2. Runnable executable is in `target/release`
|
|
3. Installable bundles specific for the platform are in `target/release/bundle`
|
|
|
|
---
|
|
|
|
### Start in a browser:
|
|
|
|
1. `makers start_browser`
|
|
2. Ctrl + Click the server URL mentioned in the terminal log
|
|
|
|
---
|
|
|
|
### Start in a browser in the release mode:
|
|
|
|
1. `makers start_browser_release`
|
|
2. Ctrl + Click the server URL mentioned in the terminal log
|
|
|
|
---
|
|
|
|
### Steps before pushing:
|
|
|
|
1. `makers format`
|
|
|
|
|
|
|
|
### Test files
|
|
|
|
See the folder `test_files`.
|