Skip to content

Commit 8e635c4

Browse files
Replace cover image with new PNG, clean up old variants
- New promotional cover.png generated with Remotion - Remove old SVG cover and all experimental cover variants - Update README to reference cover.png - Normalize em dashes to regular dashes across descriptions Co-authored-by: CommandCodeBot <noreply@commandcode.ai>
1 parent f3656ec commit 8e635c4

6 files changed

Lines changed: 5 additions & 60 deletions

File tree

.github/cover.png

5.36 MB
Loading

.github/cover.svg

Lines changed: 0 additions & 55 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src=".github/cover.svg?v=2" alt="kill-the-port" />
2+
<img src=".github/cover.png" alt="kill-the-port" />
33
</p>
44

55
# kill-the-port

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "kill-the-port",
33
"version": "0.1.2",
4-
"description": "Kill processes on specified ports fast, native, cross-platform. Supports multi-port, ranges, TCP/UDP.",
4+
"description": "Kill processes on specified ports - fast, native, cross-platform. Supports multi-port, ranges, TCP/UDP.",
55
"type": "module",
66
"bin": {
77
"kill-the-port": "dist/cli.js",

rust/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use macos as platform;
1919
use windows as platform;
2020

2121
#[derive(Parser)]
22-
#[command(name = "kill-the-port", version, about = "Kill processes on specified ports fast")]
22+
#[command(name = "kill-the-port", version, about = "Kill processes on specified ports - fast")]
2323
struct Cli {
2424
/// Ports to kill (e.g. 3000 8080 or 3000-3010)
2525
#[arg(required = true)]
@@ -89,7 +89,7 @@ fn main() {
8989
} else {
9090
for r in &results {
9191
if let Some(ref err) = r.error {
92-
eprintln!("Port {}: error {}", r.port, err);
92+
eprintln!("Port {}: error - {}", r.port, err);
9393
continue;
9494
}
9595
if r.pids.is_empty() {

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const program = new Command();
1111

1212
program
1313
.name('kill-the-port')
14-
.description('Kill processes on specified ports fast, native, cross-platform')
14+
.description('Kill processes on specified ports - fast, native, cross-platform')
1515
.version(version, '-v, --version')
1616
.argument('<ports...>', 'ports to kill (e.g. 3000 8080 3000-3010 3000,3001)')
1717
.option('-p, --protocol <protocol>', 'protocol to target', 'tcp')

0 commit comments

Comments
 (0)