megit-app 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.
- package/CHANGELOG.md +6 -0
- package/README.md +14 -5
- package/dist/assets/{DiffView-D1JOBBbA.js → DiffView-BKo75iUG.js} +1 -1
- package/dist/assets/{TerminalPanel-C4Tm1SN5.js → TerminalPanel-uV6s4v6R.js} +1 -1
- package/dist/assets/{index-bXmlM6Hk.js → index-o0rujUbV.js} +3 -3
- package/dist/index.html +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,12 @@ surface, and the HTTP API may change in any minor release.
|
|
|
9
9
|
|
|
10
10
|
## [Unreleased]
|
|
11
11
|
|
|
12
|
+
## [0.4.1] - 2026-08-05
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- <kbd>Esc</kbd> closes the add-repo dialog. The dialog had no keyboard dismissal at all, so the only way out was the ✕ or a click on the backdrop.
|
|
17
|
+
|
|
12
18
|
## [0.4.0] - 2026-08-05
|
|
13
19
|
|
|
14
20
|
### Added
|
package/README.md
CHANGED
|
@@ -8,19 +8,28 @@ Nothing leaves your machine: the server binds `127.0.0.1`, shells out to your ow
|
|
|
8
8
|
|
|
9
9
|

|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Getting started
|
|
12
12
|
|
|
13
|
-
Requires Node ≥ 22.
|
|
13
|
+
Requires Node ≥ 22. The package is 1.7 MB, with `express` and `ws` as its only runtime dependencies.
|
|
14
|
+
|
|
15
|
+
**Run it once, without installing:**
|
|
14
16
|
|
|
15
17
|
```bash
|
|
16
18
|
npx megit-app
|
|
17
19
|
```
|
|
18
20
|
|
|
19
|
-
|
|
21
|
+
**Or install it, and run `megit` from anywhere:**
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npm i -g megit-app
|
|
25
|
+
megit
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Upgrade later with `npm i -g megit-app@latest`.
|
|
20
29
|
|
|
21
|
-
|
|
30
|
+
Either way the server starts on port 3411 — set `PORT` to change that — and opens your browser at it.
|
|
22
31
|
|
|
23
|
-
`
|
|
32
|
+
<sub>The package is `megit-app`; `megit` on npm is unrelated, so keep the `-app`. The installed command is still `megit`.</sub>
|
|
24
33
|
|
|
25
34
|
## Features
|
|
26
35
|
|