mirror of
https://github.com/gesellix/Bose-SoundTouch.git
synced 2026-08-24 03:26:15 +00:00
Phase 4 of the docs portion of the rfc-5737-cleanup. Replaces all 192.168.1.x example IPs in tracked .md / .txt files with the equivalent last-octet under 192.0.2.x. 192.168.1.x is RFC-1918 private space and routes on real networks, which leaves readers guessing whether a documented IP is a placeholder or a documented LAN. 192.0.2.0/24 is reserved by RFC 5737 exclusively for documentation — readers know on sight that they're examples. 58 files touched, 551 line pairs. Includes .github issue/PR templates, all docs/ references, example READMEs, and one script doc. No code changes, no test changes; test files still carry the 192.168.1.x placeholder pending Phase 2 in _/RFC-5737-cleanup/assessment.md. Also fixed a small fallout in docs/analysis/ANONYMIZATION-SUMMARY.md where the explanatory sentence "a reader can't tell whether 192.168.1.10 is a placeholder or a documented LAN address" had itself been swept by the regex (inverting the point); restored the literal example and noted the sweep progress inline. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
77 lines
2.0 KiB
Markdown
77 lines
2.0 KiB
Markdown
---
|
|
name: Bug report
|
|
about: Create a report to help us improve
|
|
title: ''
|
|
labels: 'bug'
|
|
assignees: ''
|
|
|
|
---
|
|
|
|
**Describe the bug**
|
|
A clear and concise description of what the bug is.
|
|
|
|
**To Reproduce**
|
|
Steps to reproduce the behavior:
|
|
1. Go to '...'
|
|
2. Click on '....'
|
|
3. Scroll down to '....'
|
|
4. See error
|
|
|
|
**Expected behavior**
|
|
A clear and concise description of what you expected to happen.
|
|
|
|
**Environment (please complete the following information):**
|
|
- OS: [e.g. macOS 14.0, Windows 11, Ubuntu 22.04]
|
|
- Go version: [e.g. 1.25.5]
|
|
- Library version: [e.g. v1.0.0, commit hash if using main branch]
|
|
- SoundTouch device model: [e.g. SoundTouch 10, SoundTouch 20]
|
|
- Device firmware version: [if known]
|
|
|
|
**Command/Code that failed**
|
|
```bash
|
|
# If using CLI tool, provide the exact command
|
|
soundtouch-cli --host 192.0.2.100 info get
|
|
|
|
# If using Go library, provide minimal code example
|
|
```
|
|
|
|
**Error output**
|
|
```
|
|
Paste the complete error message here, including stack traces if available
|
|
```
|
|
|
|
**Device Information (if applicable)**
|
|
```xml
|
|
<!-- If the issue is device-specific, include output from: -->
|
|
<!-- soundtouch-cli --host YOUR_DEVICE_IP info get -->
|
|
```
|
|
|
|
**Network Configuration**
|
|
- Network setup: [e.g. home WiFi, corporate network, VPN]
|
|
- Firewall/proxy: [any network restrictions]
|
|
- Device connectivity: [how device connects to network - WiFi, Ethernet]
|
|
|
|
**Additional context**
|
|
Add any other context about the problem here. For example:
|
|
- Does this happen consistently or intermittently?
|
|
- Did this work in a previous version?
|
|
- Are there any workarounds?
|
|
- Any relevant log files or debug output
|
|
|
|
**Logs (if applicable)**
|
|
```
|
|
# Enable verbose logging with --verbose flag or debug environment variable
|
|
# and paste relevant log output here
|
|
```
|
|
|
|
**Screenshots**
|
|
If applicable, add screenshots to help explain your problem.
|
|
|
|
---
|
|
|
|
**Checklist**
|
|
- [ ] I have searched existing issues to avoid duplicates
|
|
- [ ] I have tested with the latest version
|
|
- [ ] I have included all relevant environment information
|
|
- [ ] I have provided a minimal reproduction case
|
|
- [ ] I have included complete error messages |