mirror of
https://github.com/aaddrick/claude-desktop-debian.git
synced 2026-05-17 08:36:35 +03:00
Swaps the two markdown blocks so the apt scheme-downgrade signpost is the first thing a user sees when they open the bug template — the privacy notice still renders, just below it. Co-Authored-By: Claude <claude@anthropic.com>
79 lines
2.8 KiB
YAML
79 lines
2.8 KiB
YAML
name: Bug Report
|
|
description: Report a bug in claude-desktop-debian.
|
|
title: "[bug]: "
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
**Is `apt update` failing?** If you're seeing
|
|
`Redirection from https to 'http://pkg.claude-desktop-debian.dev/...' is forbidden`,
|
|
your sources.list still points at the legacy `aaddrick.github.io` URL —
|
|
no need to file a bug. Run:
|
|
|
|
```bash
|
|
sudo sed -i 's|https://aaddrick\.github\.io/claude-desktop-debian|https://pkg.claude-desktop-debian.dev|g' \
|
|
/etc/apt/sources.list.d/claude-desktop.list
|
|
sudo apt update
|
|
```
|
|
|
|
Background: [README — Migrating from the old `aaddrick.github.io` URL](https://github.com/aaddrick/claude-desktop-debian/blob/main/README.md#migrating-from-the-old-aaddrickgithubio-url).
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
**Before you file:** This repository uses an automated triage bot that
|
|
sends issue contents to Anthropic's API for classification and
|
|
investigation. Do not include credentials, tokens, personal data, or
|
|
anything you wouldn't put on a public issue tracker. See the
|
|
[Privacy section in the README](https://github.com/aaddrick/claude-desktop-debian/blob/main/README.md#privacy)
|
|
for what the bot does with your issue.
|
|
- type: textarea
|
|
id: doctor
|
|
attributes:
|
|
label: Version (`claude-desktop --doctor` output)
|
|
description: |
|
|
Run `claude-desktop --doctor` in a terminal and paste the full output here.
|
|
If the app won't start, the AppImage filename (e.g. `claude-desktop-1.3.23-amd64.AppImage`)
|
|
or the version from **Help → About** is acceptable.
|
|
render: shell
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: what-happened
|
|
attributes:
|
|
label: What happened
|
|
description: Describe the bug. What did you see?
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: reproduce
|
|
attributes:
|
|
label: Steps to reproduce
|
|
description: Minimal steps to reproduce the bug.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: expected
|
|
attributes:
|
|
label: Expected behavior
|
|
description: What did you expect to happen? "Expected X, got Y" phrasing is helpful.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Logs / errors
|
|
description: |
|
|
Relevant log output or stack traces. Common locations:
|
|
- App logs: `~/.config/Claude/logs/`
|
|
- Launcher log: `~/.cache/claude-desktop-debian/launcher.log`
|
|
render: shell
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: other
|
|
attributes:
|
|
label: Anything else
|
|
description: Additional context, screenshots, or links.
|
|
validations:
|
|
required: false
|