Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
Bump version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrueger committed Aug 30, 2023
1 parent 89c00aa commit 8505e1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "icy_term"
version = "0.6.4"
version = "0.6.5"
edition = "2021"
authors = ["Mike Krüger <[email protected]>"]
description = "A terminal program supporting CP437, PetScii and ViewData"
Expand Down Expand Up @@ -30,8 +30,8 @@ versions = "5.0.1"
#sound
rodio = { version = "0.17.1" , default-features = false, features = [] }
icy_engine = { git ="https://github.com/mkrueger/icy_engine" }
#icy_engine = { path = "../icy_engine" }
icy_engine_egui = { git ="https://github.com/mkrueger/icy_engine_egui" }
#icy_engine = { path = "../icy_engine" }
#icy_engine_egui = { path = "../icy_engine_egui" }

walkdir = "2"
Expand Down
4 changes: 1 addition & 3 deletions src/ui/util/screen_modes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,7 @@ impl ScreenMode {
pub fn get_window_size(&self) -> Size {
match self {
// ScreenMode::Cga(w, h) | ScreenMode::Ega(w, h) |
ScreenMode::Vga(w, h) => {
Size::new(*w as usize, *h as usize)
}
ScreenMode::Vga(w, h) => Size::new(*w as usize, *h as usize),
ScreenMode::Vic => Size::new(40, 25),
ScreenMode::Antic | ScreenMode::Videotex => Size::new(40, 24),
ScreenMode::Default => Size::new(80, 25),
Expand Down

0 comments on commit 8505e1e

Please sign in to comment.