herdr-worktreeinclude 0.2.0 → 0.2.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 CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes are published in the [GitHub Releases](https://github.com/serhii-chernenko/herdr-worktreeinclude/releases) generated from version tags.
4
4
 
5
+ ## 0.2.1
6
+
7
+ - Fixed the branch-cleanup popup's `[d] Delete branch` action never actually deleting the branch: it ran `git branch -d`, which refuses any branch that isn't fully merged — exactly the branches this popup exists for. It now uses `git branch -D` to honor the user's explicit confirmation.
8
+
5
9
  ## 0.2.0
6
10
 
7
11
  - The branch-cleanup confirmation now opens as a small Herdr popup pane instead of a full overlay, using the `placement = "popup"` pane type added in Herdr 0.7.4. Raised `min_herdr_version` to `0.7.4` accordingly.
package/README.md CHANGED
@@ -95,3 +95,10 @@ git push origin main v0.1.1
95
95
  ```
96
96
 
97
97
  The tag workflow verifies the version, publishes to npm through npm Trusted Publishing, and creates GitHub Release notes automatically. After claiming the package name with an initial manual publish, configure npm's Trusted Publisher for GitHub repository `serhii-chernenko/herdr-worktreeinclude` and workflow filename `publish.yml`. Subsequent matching version tags publish without a stored npm token.
98
+
99
+ ## Screenshots
100
+
101
+ <img width="2262" height="1380" alt="shot-mrmikk98" src="https://github.com/user-attachments/assets/ac422fbb-0af1-4606-8081-2740220ea474" />
102
+ <img width="2338" height="1240" alt="shot-mrmil9fr" src="https://github.com/user-attachments/assets/9cefdb30-1bd0-4b78-a265-ac55a7a87cad" />
103
+ <img width="1234" height="436" alt="shot-mrmink67" src="https://github.com/user-attachments/assets/b7dec468-aa1e-434f-bc79-e334e90b5d22" />
104
+
package/herdr-plugin.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  id = "serhii-chernenko.worktreeinclude"
2
2
  name = "Project-local Worktrees"
3
- version = "0.2.0"
3
+ version = "0.2.1"
4
4
  min_herdr_version = "0.7.4"
5
5
  description = "Creates project-local Git worktrees and restores ignored files selected by .worktreeinclude."
6
6
  platforms = ["macos", "linux"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "herdr-worktreeinclude",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Project-local Git worktrees and .worktreeinclude support for Herdr.",
5
5
  "keywords": [
6
6
  "herdr",
@@ -14,5 +14,5 @@ read -r -n 1 choice || true
14
14
  printf '\n'
15
15
 
16
16
  if [[ "$choice" == "d" || "$choice" == "D" ]]; then
17
- git -C "$source_root" branch -d -- "$branch" >&2 || true
17
+ git -C "$source_root" branch -D -- "$branch" >&2 || true
18
18
  fi