Skip to content

Commit

Permalink
Minor version bump (image resolution fixes) + nix clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
dmadisetti committed Jul 24, 2022
1 parent a27a4ea commit b56fef8
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 83 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "steam-tui"
version = "0.2.0"
version = "0.2.1"
description = "TUI client for steamcmd."
readme = "README.md"
authors = ["madisetti <[email protected]>"]
Expand Down Expand Up @@ -34,4 +34,4 @@ atty = "0.2"
image = "0.24"

[dependencies.tui-image-rgba-updated]
version = "0.2.1"
version = "0.2.2"
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ found.
~Because why not? Also, the Steam client seems to break on my Arch build. I have
a GT 610, and barely anything graphical works- this is a nice work around.~

**Update**, I got rid of the 610 (let's go 1660), but moved to NixOS and the steam
client still doesn't work lol.
**Update**, I got rid of the 610 (let's go 1660), but moved to NixOS and
Wayland and the steam client still doesn't work lol.

## Contributing

Expand All @@ -60,6 +60,13 @@ additional work on this project is moot. If you [buy me a
coffee](https://github.com/sponsors/dmadisetti), I'd be happy to sink some more
time into this.

### Sponsors

Thank you to those who have heeded my call for more coffee!

- @MathiasSven (sponsored minor update 0.2.1)
- @vaelund (sponsored major update 0.2.0)

## Missing Features

- Better handling for Proton games
80 changes: 7 additions & 73 deletions flake.lock

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

6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
flake-utils.url = "github:numtide/flake-utils";
};

outputs = { self, nixpkgs, flake-utils, mach-nix }:
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
Expand All @@ -15,7 +15,7 @@
};
in
rec {
devShell = with pkgs;
devShells.default = with pkgs;
pkgs.mkShell {
packages = [
# build
Expand Down Expand Up @@ -60,6 +60,6 @@
};
};

defaultApp = steam-tui;
packages.default = steam-tui;
});
}

0 comments on commit b56fef8

Please sign in to comment.