Skip to content
Open
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@
### Major Changes
- decreased the decimal count of most number to reduce used space (can be changed to be like before in the settings)

### Other Changes
- on Linux/Wayland the overlay now stays above full-screen games, and carries its own buttons for picking columns and moving it around

### Fixes
- fixed auto refresh stopping to work when changing the logs path
- fixed the program crashing on Linux/Wayland when the overlay is switched on

## v1.4.0
### Major Changes
Expand Down
39 changes: 35 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,14 @@ flate2 = "1"
[profile.release]
lto = "thin"

[target.'cfg(target_os = "linux")'.dependencies]
# Wayland layer-shell overlay: always-on-top over full-screen games, which the
# winit/eframe path cannot do on Wayland. Versions matched to eframe 0.34.
smithay-client-toolkit = "0.19"
egui = "0.34"
egui-wgpu = "0.34"
raw-window-handle = "0.6"
pollster = "0.4"

[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
Loading