Skip to content

Commit 4c25fc4

Browse files
madeyeclaude
andcommitted
Update landing page for v0.3.0: new features, modules, and download links
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 978075b commit 4c25fc4

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -556,6 +556,16 @@ <h3>Multi-User Auth</h3>
556556
<h3>TUI Setup Wizard</h3>
557557
<p>Interactive terminal UI to generate your configuration file. No manual YAML editing required.</p>
558558
</div>
559+
<div class="feature-card">
560+
<div class="feature-icon" style="background: rgba(210,153,34,0.1); color: var(--orange);">&#x26a1;</div>
561+
<h3>TCP Fast Open</h3>
562+
<p>Reduced latency on both inbound and outbound connections with TFO support on Linux and macOS.</p>
563+
</div>
564+
<div class="feature-card">
565+
<div class="feature-icon" style="background: rgba(188,140,255,0.1); color: var(--purple);">&#x2699;&#xfe0f;</div>
566+
<h3>Systemd Service</h3>
567+
<p>Built-in install and uninstall commands generate a systemd unit file for seamless background operation.</p>
568+
</div>
559569
</div>
560570
</div>
561571
</section>
@@ -678,7 +688,9 @@ <h2 class="section-heading">Clean, modular Rust</h2>
678688
<tr><td><code>auth.rs</code></td><td>Validates Proxy-Authorization Basic credentials</td></tr>
679689
<tr><td><code>proxy.rs</code></td><td>CONNECT tunneling and HTTP request forwarding</td></tr>
680690
<tr><td><code>config.rs</code></td><td>YAML config loading and validation</td></tr>
691+
<tr><td><code>net.rs</code></td><td>TCP listener with Fast Open, outbound connection helpers</td></tr>
681692
<tr><td><code>setup.rs</code></td><td>Interactive TUI setup wizard</td></tr>
693+
<tr><td><code>service.rs</code></td><td>Systemd service install and uninstall</td></tr>
682694
</tbody>
683695
</table>
684696
</div>
@@ -688,7 +700,7 @@ <h2 class="section-heading">Clean, modular Rust</h2>
688700
<section class="download">
689701
<div class="container">
690702
<div class="section-title">Download</div>
691-
<h2 class="section-heading">Prebuilt binaries &mdash; v0.2.0</h2>
703+
<h2 class="section-heading">Prebuilt binaries &mdash; v0.3.0</h2>
692704
<div class="download-grid">
693705
<div class="download-card">
694706
<div class="download-card-header">
@@ -698,11 +710,11 @@ <h3>macOS (ARM64)</h3>
698710
<p>Apple Silicon &mdash; M1, M2, M3, M4</p>
699711
</div>
700712
</div>
701-
<a href="https://github.com/madeye/https_proxy/releases/download/v0.2.0/https_proxy-v0.2.0-darwin-arm64.zip" class="btn-download">
713+
<a href="https://github.com/madeye/https_proxy/releases/download/v0.3.0/https_proxy-v0.3.0-darwin-arm64.zip" class="btn-download">
702714
<svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor"><path d="M2.75 14A1.75 1.75 0 0 1 1 12.25v-2.5a.75.75 0 0 1 1.5 0v2.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25v-2.5a.75.75 0 0 1 1.5 0v2.5A1.75 1.75 0 0 1 13.25 14Z"/><path d="M7.25 7.689V2a.75.75 0 0 1 1.5 0v5.689l1.97-1.969a.749.749 0 1 1 1.06 1.06l-3.25 3.25a.749.749 0 0 1-1.06 0L4.22 6.78a.749.749 0 1 1 1.06-1.06l1.97 1.969Z"/></svg>
703715
Download .zip
704716
</a>
705-
<div class="download-meta"><code>https_proxy-v0.2.0-darwin-arm64.zip</code></div>
717+
<div class="download-meta"><code>https_proxy-v0.3.0-darwin-arm64.zip</code></div>
706718
</div>
707719
<div class="download-card">
708720
<div class="download-card-header">
@@ -712,11 +724,11 @@ <h3>Linux (x86_64)</h3>
712724
<p>GNU/Linux &mdash; AMD64 / Intel 64</p>
713725
</div>
714726
</div>
715-
<a href="https://github.com/madeye/https_proxy/releases/download/v0.2.0/https_proxy-v0.2.0-linux-amd64.zip" class="btn-download">
727+
<a href="https://github.com/madeye/https_proxy/releases/download/v0.3.0/https_proxy-v0.3.0-linux-amd64.zip" class="btn-download">
716728
<svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor"><path d="M2.75 14A1.75 1.75 0 0 1 1 12.25v-2.5a.75.75 0 0 1 1.5 0v2.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25v-2.5a.75.75 0 0 1 1.5 0v2.5A1.75 1.75 0 0 1 13.25 14Z"/><path d="M7.25 7.689V2a.75.75 0 0 1 1.5 0v5.689l1.97-1.969a.749.749 0 1 1 1.06 1.06l-3.25 3.25a.749.749 0 0 1-1.06 0L4.22 6.78a.749.749 0 1 1 1.06-1.06l1.97 1.969Z"/></svg>
717729
Download .zip
718730
</a>
719-
<div class="download-meta"><code>https_proxy-v0.2.0-linux-amd64.zip</code></div>
731+
<div class="download-meta"><code>https_proxy-v0.3.0-linux-amd64.zip</code></div>
720732
</div>
721733
</div>
722734
</div>

0 commit comments

Comments
 (0)