Improve issue templates with structured forms

- Add proper GitHub Form templates with dropdowns and checkboxes
- Bug report: Android version, app version, sync/battery optimization status
- Feature request: Platform selection, priority, willingness to contribute
- Question: Documentation checklist, topic selection, context fields
- All forms bilingual (DE/EN) with app-specific questions

[skip ci]
This commit is contained in:
inventory69
2025-12-24 00:00:43 +01:00
parent 7942b73af3
commit c42a9c84d7
3 changed files with 285 additions and 121 deletions

View File

@@ -1,61 +1,152 @@
--- name: 🐛 Bug Report / Fehlerbericht
name: Bug Report / Fehlerbericht description: Melde einen Fehler in der App / Report a bug in the app
about: Melde einen Fehler in der App / Report a bug in the app title: "[BUG] "
title: '[BUG] ' labels: ["bug"]
labels: bug body:
assignees: '' - type: markdown
attributes:
value: |
Danke für deinen Bug Report! / Thanks for reporting a bug!
--- Bitte fülle alle relevanten Felder aus. / Please fill out all relevant fields.
## 🐛 Beschreibung / Description - type: textarea
id: description
attributes:
label: 🐛 Beschreibung / Description
description: Beschreibe den Fehler kurz und präzise / Describe the bug briefly and precisely
placeholder: "z.B. Auto-Sync funktioniert nicht mehr nach App-Update / e.g. Auto-sync stopped working after app update"
validations:
required: true
<!-- Kurze Beschreibung des Problems / Brief description of the problem --> - type: dropdown
id: android-version
attributes:
label: 📱 Android Version
description: Welche Android Version verwendest du? / Which Android version are you using?
options:
- Android 14
- Android 13
- Android 12
- Android 11
- Android 10
- Android 9
- Android 8.1
- Android 8.0
- Andere / Other
validations:
required: true
--- - type: input
id: app-version
attributes:
label: 📲 App Version
description: Welche Version der App verwendest du? (Einstellungen → Über) / Which app version? (Settings → About)
placeholder: "z.B. / e.g. v1.1.0"
validations:
required: true
## 📱 Systeminfo / System Info - type: input
id: device
attributes:
label: 📱 Gerät / Device
description: Welches Gerät verwendest du? / Which device are you using?
placeholder: "z.B. Samsung Galaxy S21, Google Pixel 7, etc."
validations:
required: false
- **Android Version:** (z.B. / e.g. Android 13) - type: textarea
- **App Version:** (z.B. / e.g. v1.1.0) id: steps
- **Gerät / Device:** (z.B. / e.g. Samsung Galaxy S21) attributes:
label: 🔄 Schritte zum Reproduzieren / Steps to Reproduce
description: Wie kann der Fehler reproduziert werden? / How can the bug be reproduced?
placeholder: |
1. Öffne die App / Open the app
2. Gehe zu Einstellungen / Go to settings
3. Klicke auf ... / Click on ...
4. Fehler tritt auf / Bug occurs
validations:
required: true
--- - type: textarea
id: expected
attributes:
label: ✅ Erwartetes Verhalten / Expected Behavior
description: Was sollte passieren? / What should happen?
placeholder: "z.B. Notizen sollten alle 30 Min synchronisiert werden / e.g. Notes should sync every 30 min"
validations:
required: true
## 🔄 Schritte zum Reproduzieren / Steps to Reproduce - type: textarea
id: actual
attributes:
label: ❌ Tatsächliches Verhalten / Actual Behavior
description: Was passiert stattdessen? / What happens instead?
placeholder: "z.B. Sync funktioniert nicht, keine Notification / e.g. Sync doesn't work, no notification"
validations:
required: true
1. - type: dropdown
2. id: sync-enabled
3. attributes:
label: <EFBFBD> Auto-Sync aktiviert? / Auto-Sync enabled?
options:
- "Ja / Yes"
- "Nein / No"
validations:
required: false
--- - type: dropdown
id: battery-optimization
attributes:
label: 🔋 Akku-Optimierung deaktiviert? / Battery optimization disabled?
description: Einstellungen → Apps → Simple Notes → Akku → Nicht optimieren / Settings → Apps → Simple Notes → Battery → Don't optimize
options:
- "Ja, deaktiviert / Yes, disabled"
- "Nein, noch optimiert / No, still optimized"
- "Weiß nicht / Don't know"
validations:
required: false
## ✅ Erwartetes Verhalten / Expected Behavior - type: textarea
id: server-config
attributes:
label: 🌐 Server-Konfiguration / Server Configuration
description: Falls relevant / If relevant (KEINE Passwörter! / NO passwords!)
placeholder: |
- Server läuft lokal / Server runs locally
- Docker auf Raspberry Pi / Docker on Raspberry Pi
- Gleiche WiFi / Same WiFi
- Server-IP: 192.168.x.x (erste 3 Zahlen reichen / first 3 numbers sufficient)
validations:
required: false
<!-- Was sollte passieren? / What should happen? --> - type: textarea
id: logs
attributes:
label: 📋 Logs / Screenshots
description: |
Falls vorhanden: Screenshots oder LogCat Output / If available: Screenshots or LogCat output
--- LogCat Filter: `adb logcat -s SyncWorker NetworkMonitor WebDavSyncService`
placeholder: "Füge hier Logs oder Screenshots ein / Paste logs or screenshots here"
validations:
required: false
## ❌ Tatsächliches Verhalten / Actual Behavior - type: textarea
id: additional
attributes:
label: 🔧 Zusätzliche Informationen / Additional Context
description: Gibt es noch etwas, das wir wissen sollten? / Is there anything else we should know?
validations:
required: false
<!-- Was passiert stattdessen? / What happens instead? --> - type: checkboxes
id: checklist
--- attributes:
label: ✅ Checklist
## 📸 Screenshots / Logs options:
- label: Ich habe die [Troubleshooting-Sektion](https://github.com/inventory69/simple-notes-sync/blob/main/QUICKSTART.md#troubleshooting) gelesen / I have read the troubleshooting section
<!-- Falls vorhanden / If available --> required: false
- label: Ich habe "Verbindung testen" in den Einstellungen probiert / I have tried "Test connection" in settings
<details> required: false
<summary>LogCat (optional)</summary>
```
Füge hier LogCat Output ein / Paste LogCat output here
```
</details>
---
## 🔧 Zusätzliche Informationen / Additional Context
<!-- Z.B. Server-Konfiguration, Netzwerk-Setup, etc. / E.g. server config, network setup, etc. -->

View File

@@ -1,53 +1,84 @@
--- name: 💡 Feature Request / Feature-Wunsch
name: Feature Request / Feature-Wunsch description: Schlage eine neue Funktion vor / Suggest a new feature
about: Schlage eine neue Funktion vor / Suggest a new feature title: "[FEATURE] "
title: '[FEATURE] ' labels: ["enhancement"]
labels: enhancement body:
assignees: '' - type: markdown
attributes:
value: |
Danke für deinen Feature-Vorschlag! / Thanks for your feature suggestion!
--- - type: textarea
id: feature-description
attributes:
label: 💡 Feature-Beschreibung / Feature Description
description: Was möchtest du hinzugefügt haben? / What would you like to be added?
placeholder: "z.B. Notizen sollten Markdown-Formatierung unterstützen / e.g. Notes should support markdown formatting"
validations:
required: true
## 💡 Feature-Beschreibung / Feature Description - type: textarea
id: problem
attributes:
label: 🎯 Problem / Motivation
description: Welches Problem würde dieses Feature lösen? / What problem would this feature solve?
placeholder: "z.B. Ich möchte Code-Snippets und Listen in meinen Notizen formatieren / e.g. I want to format code snippets and lists in my notes"
validations:
required: true
<!-- Was möchtest du hinzugefügt haben? / What would you like to be added? --> - type: textarea
id: solution
attributes:
label: 📝 Vorgeschlagene Lösung / Proposed Solution
description: Wie könnte das Feature funktionieren? / How could the feature work?
placeholder: "z.B. Markdown-Editor mit Live-Preview / e.g. Markdown editor with live preview"
validations:
required: false
--- - type: textarea
id: alternatives
attributes:
label: 🔄 Alternativen / Alternatives
description: Hast du andere Lösungsansätze in Betracht gezogen? / Have you considered other solutions?
validations:
required: false
## 🎯 Problem / Motivation - type: dropdown
id: platform
attributes:
label: 📱 Plattform / Platform
description: Für welche Komponente ist das Feature? / For which component is the feature?
options:
- Android App
- WebDAV Server
- Dokumentation / Documentation
- Andere / Other
validations:
required: true
<!-- Welches Problem würde dieses Feature lösen? / What problem would this feature solve? --> - type: dropdown
id: priority
attributes:
label: 🌟 Priorität (aus deiner Sicht) / Priority (from your perspective)
options:
- Nice to have
- Wichtig / Important
- Sehr wichtig / Very important
validations:
required: false
--- - type: checkboxes
id: willing-to-contribute
attributes:
label: 🤝 Beitragen / Contribute
options:
- label: Ich würde gerne bei der Implementierung helfen / I would like to help with implementation
required: false
## 📝 Vorgeschlagene Lösung / Proposed Solution - type: textarea
id: additional
<!-- Wie könnte das Feature funktionieren? / How could the feature work? --> attributes:
label: 🔧 Zusätzliche Informationen / Additional Context
--- description: Screenshots, Mockups, Links, ähnliche Apps, etc.
validations:
## 🔄 Alternativen / Alternatives required: false
<!-- Hast du andere Lösungsansätze in Betracht gezogen? / Have you considered other solutions? -->
---
## 📱 Plattform / Platform
- [ ] Android App
- [ ] WebDAV Server
- [ ] Dokumentation / Documentation
- [ ] Andere / Other: ___________
---
## 🌟 Priorität (aus deiner Sicht) / Priority (from your perspective)
- [ ] Nice to have
- [ ] Wichtig / Important
- [ ] Kritisch / Critical
---
## 🔧 Zusätzliche Informationen / Additional Context
<!-- Screenshots, Mockups, Links, etc. -->

View File

@@ -1,34 +1,76 @@
--- name: ❓ Question / Frage
name: Question / Frage description: Stelle eine Frage zur Nutzung / Ask a question about usage
about: Stelle eine Frage zur Nutzung / Ask a question about usage title: "[QUESTION] "
title: '[QUESTION] ' labels: ["question"]
labels: question body:
assignees: '' - type: markdown
attributes:
value: |
Hast du eine Frage? Wir helfen gerne! / Have a question? We're happy to help!
--- - type: textarea
id: question
attributes:
label: ❓ Frage / Question
description: Was möchtest du wissen? / What would you like to know?
placeholder: "z.B. Wie kann ich die Sync-URL für einen externen Server konfigurieren? / e.g. How can I configure the sync URL for an external server?"
validations:
required: true
## ❓ Frage / Question - type: checkboxes
id: documentation-checked
attributes:
label: 📚 Dokumentation gelesen / Documentation checked
description: Hast du bereits in der Dokumentation nachgeschaut? / Have you already checked the documentation?
options:
- label: Ich habe die [README](https://github.com/inventory69/simple-notes-sync/blob/main/README.md) gelesen / I have read the README
required: false
- label: Ich habe den [Quick Start Guide](https://github.com/inventory69/simple-notes-sync/blob/main/QUICKSTART.md) gelesen / I have read the Quick Start Guide
required: false
- label: Ich habe das [Troubleshooting](https://github.com/inventory69/simple-notes-sync/blob/main/QUICKSTART.md#troubleshooting) durchgearbeitet / I have checked the troubleshooting section
required: false
<!-- Deine Frage hier / Your question here --> - type: textarea
id: tried
attributes:
label: 🔍 Was hast du bereits versucht? / What have you already tried?
description: Hilf uns, dir besser zu helfen / Help us help you better
placeholder: "z.B. Ich habe versucht die Server-URL anzupassen, aber... / e.g. I tried adjusting the server URL, but..."
validations:
required: false
--- - type: dropdown
id: topic
attributes:
label: <EFBFBD> Thema / Topic
description: Um was geht es? / What is this about?
options:
- Server Setup / Server-Einrichtung
- App-Konfiguration / App configuration
- Sync-Probleme / Sync issues
- Netzwerk / Network
- Android-Einstellungen / Android settings
- Andere / Other
validations:
required: false
## 🔍 Was hast du bereits versucht? / What have you already tried? - type: textarea
id: context
attributes:
label: <EFBFBD> Kontext / Context
description: Zusätzliche Informationen die hilfreich sein könnten / Additional information that might be helpful
placeholder: |
- Android Version: Android 13
- App Version: v1.1.0
- Server: Raspberry Pi mit Docker / Raspberry Pi with Docker
- Netzwerk: Lokales WiFi / Local WiFi
validations:
required: false
<!-- Hast du die Dokumentation gelesen? / Have you read the documentation? --> - type: textarea
id: additional
- [ ] [Quick Start Guide](https://github.com/inventory69/simple-notes-sync/blob/main/QUICKSTART.md) gelesen / read attributes:
- [ ] [Troubleshooting](https://github.com/inventory69/simple-notes-sync/blob/main/QUICKSTART.md#troubleshooting) durchgearbeitet / checked label: 🔧 Screenshots / Config
- [ ] [DOCS.md](https://github.com/inventory69/simple-notes-sync/blob/main/DOCS.md) gelesen / read description: Falls hilfreich (KEINE Passwörter!) / If helpful (NO passwords!)
validations:
--- required: false
## 📱 Kontext / Context
<!-- Z.B. Server-Setup, Android Version, etc. / E.g. server setup, Android version, etc. -->
---
## 🔧 Zusätzliche Informationen / Additional Information
<!-- Screenshots, Config-Dateien (ohne Passwörter!), etc. / Screenshots, config files (without passwords!), etc. -->