Skip to content

Commit

Permalink
refactor: rename to zmk-viewer
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMarble committed Jan 25, 2022
1 parent c134303 commit 1d33b19
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 11 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ dist
*.json
coverage.txt
.task
/zmk-layout-viewer
/zmk-layout-viewer
/zmk-viewer
8 changes: 4 additions & 4 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project_name: zmk-layout-viewer
project_name: zmk-viewer

before:
hooks:
Expand All @@ -7,17 +7,17 @@ before:
release:
github:
owner: mrmarble
name: zmk-layout-viewer
name: zmk-viewer

builds:
- binary: zmk-layout-viewer
- binary: zmk-viewer
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
main: ./cmd/zmk-layout-viewer
main: ./cmd/zmk-viewer

archives:
- format: tar.gz
Expand Down
2 changes: 1 addition & 1 deletion Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ tasks:
generates:
- ./goreleaser
cmds:
- go build ./cmd/zmk-layout-viewer
- go build ./cmd/zmk-viewer

test:
desc: Run tests
Expand Down
2 changes: 1 addition & 1 deletion cmd/zmk-layout-viewer/main.go → cmd/zmk-viewer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"time"

"github.com/alecthomas/kong"
"github.com/mrmarble/zmk-layout-viewer/internal/lib"
"github.com/mrmarble/zmk-viewer/internal/lib"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/mrmarble/zmk-layout-viewer
module github.com/mrmarble/zmk-viewer

go 1.17

Expand Down
4 changes: 2 additions & 2 deletions internal/lib/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

"github.com/fogleman/gg"
"github.com/golang/freetype/truetype"
"github.com/mrmarble/zmk-layout-viewer/pkg/keyboard"
"github.com/mrmarble/zmk-layout-viewer/pkg/keymap"
"github.com/mrmarble/zmk-viewer/pkg/keyboard"
"github.com/mrmarble/zmk-viewer/pkg/keymap"
"github.com/rs/zerolog/log"
"golang.org/x/image/font/gofont/goregular"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/lib/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"image/png"
"os"

"github.com/mrmarble/zmk-layout-viewer/pkg/keyboard"
"github.com/mrmarble/zmk-viewer/pkg/keyboard"
"github.com/rs/zerolog/log"
)

Expand Down

0 comments on commit 1d33b19

Please sign in to comment.