diff --git a/changelog.md b/changelog.md index 2862d7e..949153c 100644 --- a/changelog.md +++ b/changelog.md @@ -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. @@ -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 diff --git a/render/src/export_settings_panel.rs b/render/src/export_settings_panel.rs index 56f7c3b..bac36ed 100644 --- a/render/src/export_settings_panel.rs +++ b/render/src/export_settings_panel.rs @@ -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);