diff --git a/.gitignore b/.gitignore index 1c79af5..4f373ae 100644 --- a/.gitignore +++ b/.gitignore @@ -12,4 +12,5 @@ Cargo.lock # Front-end-specific exclusions node_modules/ +www/modules yarn.lock diff --git a/README.md b/README.md index d5965b6..edfe1e5 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Serving HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/) ... ``` - and then the app window would appear. + and then the app window should appear. ## Check how it works @@ -73,4 +73,4 @@ does not seem to be involved at all. [the official guide]: https://tauri.studio/en/docs/usage/guides/events -[Tauri's official installation docs]: https://tauri.studio/en/docs/getting-started/intro \ No newline at end of file +[Tauri's official installation docs]: https://tauri.studio/en/docs/getting-started/intro diff --git a/src-tauri/.gitignore b/src-tauri/.gitignore index e5ec572..8f6583d 100644 --- a/src-tauri/.gitignore +++ b/src-tauri/.gitignore @@ -5,3 +5,5 @@ WixTools # Exclude the auto-genrated icons for now /icons/ +# Except for this one (mandatory): +!icons/32x32.png diff --git a/src-tauri/icons/32x32.png b/src-tauri/icons/32x32.png new file mode 100644 index 0000000..b6bf7d6 Binary files /dev/null and b/src-tauri/icons/32x32.png differ