Compare commits

..

4 commits

Author SHA1 Message Date
2f23e63349 Update LICENSE year 2024-06-23 20:45:26 +09:00
8cd599aadd Bump version to 0.4.10 2024-06-23 20:43:43 +09:00
2865352f7a Allow window resize behavior 2024-06-23 20:41:10 +09:00
180898103a cargo update 2024-06-23 20:41:01 +09:00
4 changed files with 496 additions and 355 deletions

846
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
[package] [package]
name = "mpd_info_screen" name = "mpd_info_screen"
version = "0.4.9" version = "0.4.10"
edition = "2021" edition = "2021"
description = "Displays info on currently playing music from an MPD daemon" description = "Displays info on currently playing music from an MPD daemon"
license = "MIT" license = "MIT"

View file

@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) 2021-2022 Stephen Seo Copyright (c) 2021-2024 Stephen Seo
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View file

@ -87,6 +87,7 @@ fn main() -> Result<(), String> {
}) })
.window_mode(WindowMode { .window_mode(WindowMode {
resizable: true, resizable: true,
resize_on_scale_factor_change: true,
..Default::default() ..Default::default()
}) })
.build() .build()