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
114 changes: 57 additions & 57 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "mdwatch"
version = "0.1.22"
version = "0.1.23"
edition = "2024"
authors = ["Santosh Shrestha <santoshxshrestha@gmail.com> "]
description = "A simple CLI tool to live-preview Markdown files in your browser."
description = "A CLI tool to live-preview Markdown files in your browser using a local web server"
license = "MIT"
repository = "https://github.com/santoshxshrestha/mdwatch"
homepage = "https://github.com/santoshxshrestha/mdwatch"
documentation = "https://github.com/santoshxshrestha/mdwatch#readme"
repository = "https://github.com/vimlinuz/mdwatch"
homepage = "https://github.com/vimlinuz/mdwatch"
documentation = "https://github.com/vimlinuz/mdwatch#readme"
readme = "README.md"

[dependencies]
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ It automatically downloads, compiles, and installs the latest version to your `$
**Alternative:** Installs the latest release binary to your system PATH.

```bash
curl -sSfL https://raw.githubusercontent.com/santoshxshrestha/mdwatch/main/scripts/install.sh | bash
curl -sSfL https://raw.githubusercontent.com/vimlinuz/mdwatch/main/scripts/install.sh | bash
```

- This script will:
Expand All @@ -56,7 +56,7 @@ If you prefer full control or want to customize the build:
1. **Clone the repository:**

```bash
git clone https://github.com/santoshxshrestha/mdwatch.git
git clone https://github.com/vimlinuz/mdwatch.git
cd mdwatch
```

Expand Down Expand Up @@ -111,7 +111,7 @@ nix run . -- README.md [--ip 127.0.0.1] [--port 3000]
You can also run the latest version of `mdwatch` directly from GitHub, without cloning the repository:

```bash
nix run github:santoshxshrestha/mdwatch -- README.md [--ip 127.0.0.1] [--port 3000]
nix run github:vimlinuz/mdwatch -- README.md [--ip 127.0.0.1] [--port 3000]
```

This will fetch, build, and run `mdwatch` from the official repository. You can pass any arguments after the `--` as usual.
Expand Down Expand Up @@ -140,7 +140,7 @@ You can uninstall using the provided script or manually:
### 1. Quick Uninstall via Script

```bash
curl -sSfL https://raw.githubusercontent.com/santoshxshrestha/mdwatch/main/scripts/uninstall.sh | bash
curl -sSfL https://raw.githubusercontent.com/vimlinuz/mdwatch/main/scripts/uninstall.sh | bash
```

### 2. Manual Uninstall
Expand Down
Loading
Loading