Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
v1.0.3 release
Browse files Browse the repository at this point in the history
explicitly for the use of ldflags in version str
  • Loading branch information
NotAShelf committed Aug 28, 2023
1 parent 81bf1eb commit d46cb7d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ hyprkeys
# VScode settings
.vscode/

# nix artifacts
result/
result

4 changes: 0 additions & 4 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ builds:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
ldflags:
- -s -w
Expand All @@ -22,9 +21,6 @@ archives:
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
format_overrides:
- goos: windows
format: zip
rlcp: true
checksum:
name_template: "checksums.txt"
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pkgname := hyprkeys
version := v1.0.2
version := v1.0.3

build: ${pkgname}

Expand Down
2 changes: 1 addition & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
- [ ] Sort output by dispatcher
- [x] Account for multiple arguments being passed at once
- [ ] Somehow account for keybinds can be set dynamically? (I don't know how to do this)
- [ ] Add instructions for a pipe to `hyprkeys` to get the keybinds from
- [ ] Add instructions for a pipe to `hyprkeys` to get the keybinds from (user must put binds into a pipe file like xob or wob)
- [ ] Convert i3/sway keybinds to Hyprland keybinds with `--convert`
- [ ] Possibly more wayland compositors, sway is enough for now.
- [x] Get more than just keybinds, try and get all config options seperated by section
Expand Down
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
}:
buildGoModule rec {
pname = "Hyprkeys";
version = "1.0.2";
version = "1.0.3";
src = nix-filter.lib {
root = ./.;
exclude =
Expand Down

0 comments on commit d46cb7d

Please sign in to comment.