Compare commits
4 commits
d90c86c894
...
2f23e63349
Author | SHA1 | Date | |
---|---|---|---|
2f23e63349 | |||
8cd599aadd | |||
2865352f7a | |||
180898103a |
4 changed files with 496 additions and 355 deletions
846
Cargo.lock
generated
846
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -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"
|
||||||
|
|
2
LICENSE
2
LICENSE
|
@ -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
|
||||||
|
|
|
@ -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()
|
||||||
|
|
Loading…
Reference in a new issue