···19192020## Dev instructions
21212222-1. Install Node.js (v14 works)
2323-2. Install Rust (v1.54 works)
2222+1. Install Node.js
2323+2. Install Rust
24243. Follow the [Tauri setup guide](https://tauri.studio/en/docs/getting-started/intro)
25254. Run `npm install`
26262727### Commands
2828- `npm run dev`: Start app in dev mode
2929- `npm run build`: Build
3030-- `npm run lint`: Lint
3030+- `npm run format`: Format
3131+- `npm run check`: Check code
31323233### Release new version
33341. Update `CHANGELOG.md`
34352. Manually bump the version number in `src-tauri/Cargo.toml`
3535-3. Check for errors and bump the `Cargo.lock` version number
3636- ```
3737- cargo check --manifest-path src-tauri/Cargo.toml
3838- ```
3636+3. Run `npm run check` to make sure `Cargo.lock` is up to date
39374. Commit with a tag in the format `v#.#.#`
40385. Add release notes to the generated GitHub release and publish it