-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix some todos #2
Conversation
When merging maybe do a squash merge :-) |
@@ -27,22 +27,11 @@ jobs: | |||
timeout-minutes: 60 | |||
steps: | |||
- uses: actions/checkout@v4 | |||
- uses: actions/cache@v4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why? :O
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
still testing ..!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
works now!
@@ -1,9 +0,0 @@ | |||
extern crate embed_resource; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
About this file - without it, executable will not have an icon on Windows.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
but it was never triggered...
build.rs must be set in Cargo.toml - I will rereview that later on
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed!
Yeaahh a squash merge would be better or i squash all commits before you merge - this is a mess xD |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mostly great, just few things :D
Cargo.toml
Outdated
@@ -2,6 +2,7 @@ | |||
name = "lwa_fm" | |||
edition = "2021" | |||
homepage = "https://github.com/Leinnan/lwa_fm" | |||
build = "build.rs" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, now I get it. If you create build.rs
it will be used and there is no need to specify it in Cargo.toml
. This field is when you want to use different path than REPO_ROOT/build.rs
. So setting up it to default value add no value.
No description provided.