Skip to content

Commit

Permalink
[all] bump version to 1.1.2
Browse files Browse the repository at this point in the history
 - reduce resolution of window icon -> smaller binary.
  • Loading branch information
NightShade256 committed Feb 16, 2021
1 parent dd46332 commit cfbe55b
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [

[package]
name = "ferrous-ch8"
version = "1.1.1"
version = "1.1.2"
authors = ["Anish Jewalikar <[email protected]>"]
edition = "2018"
description = "A simple, full featured (super) Chip-8 interpreter."
Expand Down
Binary file modified assets/blinky.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/debugger.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/sweetcopter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion ferrous-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ferrous-core"
version = "1.1.0"
version = "1.1.2"
authors = ["Anish Jewalikar <[email protected]>"]
edition = "2018"
description = "A simple Chip-8 interpreter backend for Ferrous Chip-8."
Expand Down
Binary file modified src/assets/Rust Logo.raw
Binary file not shown.
2 changes: 1 addition & 1 deletion src/frontend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const LOGO_DATA: &[u8] = include_bytes!("assets/Rust Logo.raw");
/// display.
fn initialize_display(event_loop: &EventLoop<()>) -> Display {
// Interpreter the raw data as a window icon.
let icon_result = Icon::from_rgba(LOGO_DATA.to_vec(), 512, 512);
let icon_result = Icon::from_rgba(LOGO_DATA.to_vec(), 64, 64);

if icon_result.is_err() {
eprintln!("Failed to initialize window icon.");
Expand Down

0 comments on commit cfbe55b

Please sign in to comment.