-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
run cargo fmt and fix most clippy warnings
the code before had a horrible mix of spaces and tabs everywhere, even on the same line!!!! so now use tabs for everything since that seemed to be the dominant indentation style also change some of the code as suggested by clippy
- Loading branch information
Showing
18 changed files
with
845 additions
and
659 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "geode" | ||
version = "1.0.6" | ||
version = "1.0.7" | ||
authors = ["HJfod <[email protected]>", "Camila314 <[email protected]>"] | ||
edition = "2021" | ||
build = "build.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
#[cfg(windows)] extern crate winres; | ||
#[cfg(windows)] | ||
extern crate winres; | ||
|
||
fn main() { | ||
#[cfg(windows)] { | ||
let mut res = winres::WindowsResource::new(); | ||
res.set_icon("geode.ico"); | ||
res.compile().unwrap(); | ||
} | ||
#[cfg(windows)] | ||
{ | ||
let mut res = winres::WindowsResource::new(); | ||
res.set_icon("geode.ico"); | ||
res.compile().unwrap(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
hard_tabs = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.