Fix formatting

This commit is contained in:
Vladimir Borisov 2024-03-07 17:47:32 +02:00
parent 12b958a533
commit 22b9074ddd
3 changed files with 25 additions and 23 deletions

View file

@ -7,7 +7,8 @@ fn main() {
let copyright = format!("Copyright © {} Smart Code OOD", now.year());
let exe_name = format!("{}.exe", env::var("CARGO_PKG_NAME").unwrap());
let mut res = winres::WindowsResource::new();
res.set_manifest(r#"
res.set_manifest(
r#"
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<dependency>
@ -23,7 +24,8 @@ fn main() {
</dependentAssembly>
</dependency>
</assembly>
"#);
"#,
);
res.set("FileDescription", "Freedom to Stream");
res.set("LegalCopyright", &copyright);
res.set("OriginalFilename", &exe_name);

View file

@ -1,12 +1,12 @@
pub mod app;
pub use app::MainWindow;
pub mod stremio_wevbiew;
pub mod stremio_player;
pub mod stremio_server;
pub mod ipc;
pub use ipc::RPCResponse;
pub mod systray;
pub mod splash;
pub mod window_helper;
pub mod named_pipe;
pub use named_pipe::{PipeClient, PipeServer};
pub mod app;
pub use app::MainWindow;
pub mod ipc;
pub mod stremio_player;
pub mod stremio_server;
pub mod stremio_wevbiew;
pub use ipc::RPCResponse;
pub mod named_pipe;
pub mod splash;
pub mod systray;
pub mod window_helper;
pub use named_pipe::{PipeClient, PipeServer};

View file

@ -1,9 +1,9 @@
pub mod player;
pub use player::Player;
pub mod communication;
pub use communication::{
CmdVal, InMsg, InMsgArgs, InMsgFn, PlayerEnded,
PlayerEvent, PlayerProprChange, PlayerResponse, PropKey, PropVal,
};
#[cfg(test)]
mod communication_tests;
pub mod player;
pub use player::Player;
pub mod communication;
pub use communication::{
CmdVal, InMsg, InMsgArgs, InMsgFn, PlayerEnded, PlayerEvent, PlayerProprChange, PlayerResponse,
PropKey, PropVal,
};
#[cfg(test)]
mod communication_tests;