Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export settings background #24

Merged
merged 3 commits into from
Jan 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# 0.2.x

## 0.2.1

- I replaced the default qwerty bindings for note input with a more "standard" layout. This information is stored in config.ini, so if you want the update, make sure to delete Documents/cacophony/config.ini if it exists (Cacophony will use the default data/config.ini instead).
- The background of the export settings panel was the same color as the text, so that it just looked like a weird gray rectangle. I fixed it.

## 0.2.0

Cacophony uses a lot of CPU resources even when it's idle. It shouldn't do that! I reduced Cacophony's CPU usage by around 50%; the exact percentage varies depending on the CPU and the OS. This update is the first big CPU optimization, and probably the most significant.
Expand All @@ -12,10 +17,6 @@ These are the optimizations:

This update doesn't have any new features or bug fixes. In the future, I'm going to reserve major releases (0.x.0) for big new features, but I had to rewrite so much of Cacophony's code, and the results are such a big improvement, that I'm making this a major release anyway.

## 0.2.1

I replaced the default qwerty bindings for note input with a more "standard" layout. This information is stored in config.ini, so if you want the update, make sure to delete Documents/cacophony/config.ini if it exists (Cacophony will use the default data/config.ini instead).

# 0.1.x

## 0.1.4
Expand Down
2 changes: 1 addition & 1 deletion render/src/export_settings_panel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ impl Drawable for ExportSettingsPanel {
renderer.rectangle_pixel(
background.background.position,
background.background.size,
&color,
&ColorKey::Background,
);
renderer.rectangle_lines(&background.border, &color);
renderer.rectangle(&self.title_rect, &ColorKey::Background);
Expand Down
Loading