timeman-cli 0.4.0 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +11 -7
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # timeman
2
2
 
3
+ [![npm](https://img.shields.io/npm/v/timeman-cli?label=npm)](https://www.npmjs.com/package/timeman-cli)
4
+ [![PyPI](https://img.shields.io/pypi/v/time-manager?label=pypi)](https://pypi.org/project/time-manager/)
5
+ [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
6
+
3
7
  A terminal based stopwatch and countdown timer, built with [OpenTUI](https://github.com/anomalyco/opentui) and shipped as standalone binaries — no runtime required.
4
8
 
5
9
  - **CLI interface (default)**: Lightweight inline mode that lives in your scrollback.
@@ -12,12 +16,6 @@ A terminal based stopwatch and countdown timer, built with [OpenTUI](https://git
12
16
 
13
17
  ## Installation
14
18
 
15
- **curl** (Linux, macOS):
16
-
17
- ```bash
18
- curl -fsSL https://raw.githubusercontent.com/rehanhaider/time-manager/main/install.sh | bash
19
- ```
20
-
21
19
  **npm**:
22
20
 
23
21
  ```bash
@@ -38,7 +36,13 @@ pip install time-manager
38
36
  uv tool install time-manager
39
37
  ```
40
38
 
41
- All methods install the `tm` command, plus `timeman` (npm/bun/curl) or `time-manager` (pip) as an alias.
39
+ **curl** (Linux, macOS downloads the binary from the latest GitHub release):
40
+
41
+ ```bash
42
+ curl -fsSL https://raw.githubusercontent.com/rehanhaider/time-manager/main/install.sh | bash
43
+ ```
44
+
45
+ Every method installs the `tm` command. npm/bun also install `timeman`, pip also installs `time-manager`, and curl installs just `tm`.
42
46
 
43
47
  Supported platforms: Linux x64/arm64 (glibc and musl), macOS x64/arm64, Windows x64 (via npm/bun).
44
48
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "timeman-cli",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "A terminal based stopwatch and countdown timer",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -25,12 +25,12 @@
25
25
  "bin"
26
26
  ],
27
27
  "optionalDependencies": {
28
- "timeman-linux-x64": "0.4.0",
29
- "timeman-linux-arm64": "0.4.0",
30
- "timeman-linux-x64-musl": "0.4.0",
31
- "timeman-linux-arm64-musl": "0.4.0",
32
- "timeman-darwin-x64": "0.4.0",
33
- "timeman-darwin-arm64": "0.4.0",
34
- "timeman-windows-x64": "0.4.0"
28
+ "timeman-linux-x64": "0.4.1",
29
+ "timeman-linux-arm64": "0.4.1",
30
+ "timeman-linux-x64-musl": "0.4.1",
31
+ "timeman-linux-arm64-musl": "0.4.1",
32
+ "timeman-darwin-x64": "0.4.1",
33
+ "timeman-darwin-arm64": "0.4.1",
34
+ "timeman-windows-x64": "0.4.1"
35
35
  }
36
36
  }