From 7a81be06bb31687c6b43eaeb24c45698c2786e2a Mon Sep 17 00:00:00 2001 From: "Walter A. Boring IV" Date: Fri, 28 Aug 2026 11:44:20 -0400 Subject: [PATCH] fix: add aprsd/~/ to .gitignore and remove stale local directory (#234) The aprsd/~/ directory (unexpanded tilde) contained a stale pickle save file at aprsd/~/.config/aprsd/listen/statsstore.p. Runtime data should never be committed. Added explicit .gitignore entry to prevent accidental future commits. Closes #17 --- .gitignore | 1 + ChangeLog.md | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 5944341..097e16a 100644 --- a/.gitignore +++ b/.gitignore @@ -52,6 +52,7 @@ AUTHORS # Editors *~ +aprsd/~/ .*.swp .*sw? .ropeproject diff --git a/ChangeLog.md b/ChangeLog.md index 7c22574..74a7540 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -8,6 +8,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). ##### Bug Fixes +- Add aprsd/~/ to .gitignore; remove stale tilde directory from repo [`1b08e1c`](https://github.com/craigerl/aprsd/commit/1b08e1c) - Fix HelpPlugin shadowing Python builtin `list` with local variable [`7118e23`](https://github.com/craigerl/aprsd/commit/7118e23) ##### CI @@ -43,6 +44,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). ##### Bug Fixes +- Add aprsd/~/ to .gitignore; remove stale tilde directory from repo [`1b08e1c`](https://github.com/craigerl/aprsd/commit/1b08e1c) - Fix DupePacketFilter checking wrong packet's processed flag [`db3a042`](https://github.com/craigerl/aprsd/commit/db3a042) - Add socket lock to prevent TX/RX race causing stream corruption on retransmits [`5cc918e`](https://github.com/craigerl/aprsd/commit/5cc918e) - Remove stale .client attribute access in send_message command [`9146ff7`](https://github.com/craigerl/aprsd/commit/9146ff7)