Skip to content

Commit

Permalink
Add MacOS instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
petrvecera committed Feb 20, 2024
1 parent 9fde25f commit fe0e329
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Readme.md → README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,9 @@ The build output can be found in `src-tauri/target/release`. The installer can b

Don't forget to run prettier with `yarn fix`.

On MacOS you need to comment out this line in main.rs around line 57
```.plugin(tauri_plugin_window_state::Builder::default().build())```

### Release
- Increase the version in files:
- `package.json`
Expand Down
1 change: 1 addition & 0 deletions src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ fn main() {
.unwrap();
}))
.plugin(tauri_plugin_fs_watch::init())
// You need to comment out this line to run the app on MacOS
.plugin(tauri_plugin_window_state::Builder::default().build())
.plugin(tauri_plugin_store::Builder::default().build())
.plugin(cohdb::auth::init(
Expand Down

0 comments on commit fe0e329

Please sign in to comment.