Skip to content
Merged
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
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
/tkctx
/bin/
/dist/
*.exe
*.test
*.out

Expand Down
5 changes: 0 additions & 5 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ builds:
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
Expand All @@ -31,10 +30,6 @@ archives:
- tkctx
formats:
- tar.gz
format_overrides:
- goos: windows
formats:
- zip
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
files:
- README.md
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion website/assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
3 changes: 0 additions & 3 deletions website/assets/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
24 changes: 0 additions & 24 deletions website/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -186,30 +186,6 @@ <h3>Linux</h3>
</li>
</ul>
</article>

<article class="platform-group" id="windows-downloads" data-platform="windows">
<header class="platform-header">
<div>
<p>Platform</p>
<h3>Windows</h3>
</div>
<span class="recommended-badge" data-recommended-badge hidden>Recommended</span>
</header>
<ul class="download-list">
<li>
<a href="https://github.com/exdial/tkctx/releases/latest/download/tkctx_windows_amd64.zip" aria-label="Download tkctx for Windows AMD64">
<span>AMD64</span>
<span class="download-meta"><code>amd64</code><i aria-hidden="true">↗</i></span>
</a>
</li>
<li>
<a href="https://github.com/exdial/tkctx/releases/latest/download/tkctx_windows_arm64.zip" aria-label="Download tkctx for Windows ARM64">
<span>ARM64</span>
<span class="download-meta"><code>arm64</code><i aria-hidden="true">↗</i></span>
</a>
</li>
</ul>
</article>
</div>

<p class="release-links">
Expand Down
Loading