Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
aizcutei committed May 11, 2024
1 parent 0a09958 commit e919eae
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 5 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@
# nanometers
<p align=center>
<picture>
<img alt="nanometers" title="Nanometers" src="assets/icon-1024.png" width=200>
</picture>
</p>

# NanoMeters

Crossplatform audio visualizer with Rust & WebGPU.

A practice that mimics but not to replace the Minimeters.

Under development. Unstable. Not ready for use. **Not responsible for loss of project files due to plugin crashes.**
**Under development. Unstable. Not ready for use. Not responsible for loss of project files due to plugin crashes.**

Use together with [nanometers-plugin](https://github.com/aizcutei/nanometers_plug) (VST3 & CLAP).

---

Preview:

![nanometers](./static/Example.gif)

### Testing locally

Make sure you are using the latest version of stable rust by running `rustup update`.
Expand Down
Binary file modified assets/icon-1024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/icon-256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
set -eux

cargo check --quiet --workspace --all-targets
cargo check --quiet --workspace --all-features --lib --target wasm32-unknown-unknown
cargo fmt --all -- --check
cargo clippy --quiet --workspace --all-targets --all-features -- -D warnings -W clippy::all
cargo test --quiet --workspace --all-targets --all-features
Expand Down
4 changes: 2 additions & 2 deletions src/frame/main_frame.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::NanometersApp;
use crate::{setting::*, utils::*};
use crate::{frame::*, setting::*, utils::*};
use egui::*;

impl NanometersApp {
Expand Down Expand Up @@ -32,7 +32,7 @@ impl NanometersApp {
self.meters_ui(ui, app_rect);
}
#[cfg(target_os = "windows")]
frame::resize_ui(ui, app_rect);
resize_ui(ui, app_rect);
});
}

Expand Down
Binary file added static/Example.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e919eae

Please sign in to comment.