megit-app 0.3.0 → 0.4.0
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 +15 -0
- package/dist/assets/{DiffView-BNnSrWMx.js → DiffView-D1JOBBbA.js} +1 -1
- package/dist/assets/{TerminalPanel-54--lgXp.js → TerminalPanel-C4Tm1SN5.js} +1 -1
- package/dist/assets/index-DPM0na5E.css +1 -0
- package/dist/assets/index-bXmlM6Hk.js +249 -0
- package/dist/index.html +2 -2
- package/dist-server/config.js +8 -2
- package/dist-server/index.js +6 -4
- package/package.json +1 -1
- package/dist/assets/index-CjT1mano.css +0 -1
- package/dist/assets/index-WjpXTtcO.js +0 -249
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,21 @@ surface, and the HTTP API may change in any minor release.
|
|
|
9
9
|
|
|
10
10
|
## [Unreleased]
|
|
11
11
|
|
|
12
|
+
## [0.4.0] - 2026-08-05
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- The add-repo dialog lists up to 10 recent repositories. Ones already open are marked and
|
|
17
|
+
clicking them switches to that tab; closing a tab keeps the repo in the list.
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- "Discard all" in the commit panel now discards only unstaged changes: tracked files go back to their staged content and untracked files are deleted, while anything staged survives. It previously reset both sides to HEAD, so staging a hunk you wanted to keep and discarding the rest threw away the part you had just protected. The button counts unstaged entries and does nothing when there are none.
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- The search bar (<kbd>⌘F</kbd>) no longer slides sideways when the commit panel opens or closes. It was centred on `.graph-pane`, which shrinks with the panel, so a 50% anchor moved on every selection change; it is now pinned to the start of the subject column, which only moves when a splitter is dragged.
|
|
26
|
+
|
|
12
27
|
## [0.3.0] - 2026-08-01
|
|
13
28
|
|
|
14
29
|
### Added
|