Platform
-Windows
--
-
- - - AMD64 - - - -
- - - ARM64 - - - -
diff --git a/.gitignore b/.gitignore index c14a542..dc1a34c 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,6 @@ /tkctx /bin/ /dist/ -*.exe *.test *.out diff --git a/.goreleaser.yml b/.goreleaser.yml index 5c2c31d..4d49c64 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -19,7 +19,6 @@ builds: goos: - linux - darwin - - windows goarch: - amd64 - arm64 @@ -31,10 +30,6 @@ archives: - tkctx formats: - tar.gz - format_overrides: - - goos: windows - formats: - - zip name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}" files: - README.md diff --git a/README.md b/README.md index f90170b..7b77b67 100644 --- a/README.md +++ b/README.md @@ -29,10 +29,9 @@ Kubernetes cache directories `~/.kube/cache/` and `~/.kube/http-cache/` are skip Prebuilt archives are published on the [GitHub Releases](https://github.com/exdial/tkctx/releases) page for: - Linux (`amd64`, `arm64`); -- macOS / Darwin (`amd64`, `arm64`); -- Windows (`amd64`, `arm64`). +- macOS / Darwin (`amd64`, `arm64`). -Every release includes `checksums.txt` for artifact verification. Linux and macOS binaries are packaged as `.tar.gz`, while Windows binaries are packaged as `.zip`. +Every release includes `checksums.txt` for artifact verification. Release binaries are packaged as `.tar.gz` archives. Go 1.26 or newer is required to install from source: diff --git a/website/assets/css/main.css b/website/assets/css/main.css index 7f81eb9..3b9b6d7 100644 --- a/website/assets/css/main.css +++ b/website/assets/css/main.css @@ -677,7 +677,7 @@ main:focus { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-soft); - grid-template-columns: repeat(3, minmax(0, 1fr)); + grid-template-columns: repeat(2, minmax(0, 1fr)); } .platform-group { diff --git a/website/assets/js/main.js b/website/assets/js/main.js index 53a12d9..9ef6de9 100644 --- a/website/assets/js/main.js +++ b/website/assets/js/main.js @@ -17,9 +17,6 @@ } else if (/linux/i.test(platform) && !/android/i.test(userAgent)) { platformKey = "linux"; platformLabel = "Linux"; - } else if (/win/i.test(platform)) { - platformKey = "windows"; - platformLabel = "Windows"; } if (!platformKey) return; diff --git a/website/layouts/index.html b/website/layouts/index.html index f279ec4..ea044ef 100644 --- a/website/layouts/index.html +++ b/website/layouts/index.html @@ -186,30 +186,6 @@
Platform
-