mirror of
https://github.com/lightsoutgames/bevy_full_throttle
synced 2025-03-15 13:55:56 +00:00
Compare commits
No commits in common. "main" and "v0.7.1" have entirely different histories.
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -2,24 +2,6 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## Version 0.7.4 - 2025-01-03
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
- No need for *any* ctrl-c handling since Bevy already does the right thing.
|
|
||||||
|
|
||||||
## Version 0.7.3 - 2025-01-03
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
- Don't explicitly add ctrl-c-handling plugin as it is likely included in related groups.
|
|
||||||
|
|
||||||
## Version 0.7.2 - 2025-01-03
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
- Actually integrate Bevy 0.15's handling for `ctrlc`.
|
|
||||||
|
|
||||||
## Version 0.7.1 - 2024-12-05
|
## Version 0.7.1 - 2024-12-05
|
||||||
|
|
||||||
### Miscellaneous Tasks
|
### Miscellaneous Tasks
|
||||||
|
|
|
@ -3,7 +3,7 @@ name = "bevy_full_throttle"
|
||||||
description = "Enable CPU performance mode for Bevy games"
|
description = "Enable CPU performance mode for Bevy games"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
repository = "https://labs.lightsout.games/projects/bevy_full_throttle"
|
repository = "https://labs.lightsout.games/projects/bevy_full_throttle"
|
||||||
version = "0.7.4"
|
version = "0.7.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
@ -12,6 +12,7 @@ edition = "2021"
|
||||||
bevy = { version = "0.15", default-features = false, features = [
|
bevy = { version = "0.15", default-features = false, features = [
|
||||||
"bevy_window",
|
"bevy_window",
|
||||||
] }
|
] }
|
||||||
|
ctrlc = "3"
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
windows = { version = "0.58", features = [
|
windows = { version = "0.58", features = [
|
||||||
|
|
13
src/lib.rs
13
src/lib.rs
|
@ -1,5 +1,9 @@
|
||||||
#[allow(unused_imports)]
|
#[allow(unused_imports)]
|
||||||
use bevy::{app::AppExit, prelude::*, window::WindowFocused};
|
use bevy::{
|
||||||
|
app::{AppExit, TerminalCtrlCHandlerPlugin},
|
||||||
|
prelude::*,
|
||||||
|
window::WindowFocused,
|
||||||
|
};
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
use windows::{
|
use windows::{
|
||||||
core::GUID,
|
core::GUID,
|
||||||
|
@ -25,6 +29,13 @@ fn setup(mut commands: Commands) {
|
||||||
if let Some(active) = active.as_ref() {
|
if let Some(active) = active.as_ref() {
|
||||||
let scheme = DefaultScheme(*active);
|
let scheme = DefaultScheme(*active);
|
||||||
commands.insert_resource(scheme);
|
commands.insert_resource(scheme);
|
||||||
|
ctrlc::set_handler(move || {
|
||||||
|
Power::PowerSetActiveScheme(None, Some(active))
|
||||||
|
.ok()
|
||||||
|
.expect("Failed to set power scheme");
|
||||||
|
TerminalCtrlCHandlerPlugin::gracefully_exit();
|
||||||
|
})
|
||||||
|
.expect("Failed to set exit handler");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#[cfg(not(windows))]
|
#[cfg(not(windows))]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user