-
-
Notifications
You must be signed in to change notification settings - Fork 14
add issue templates for bug reports and feature requests in Image Met… #105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,234 @@ | ||
| from pathlib import Path | ||
|
|
||
| content = """\ | ||
| name: "🐛 Bug report (Image MetaHub)" | ||
| description: "Report a bug with Image MetaHub" | ||
| title: "[Bug]: " | ||
| labels: ["bug"] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Thanks for reporting! The fastest way to fix most issues is: **exact steps + app version + OS + (when relevant) a sample file/workflow/logs**. | ||
|
|
||
| - type: dropdown | ||
| id: area | ||
| attributes: | ||
| label: Area | ||
| description: "Where does the problem happen?" | ||
| options: | ||
| - Viewer / Image modal (zoom, fullscreen, navigation, close) | ||
| - Thumbnails / Grid (blank thumbs, hover/slider mode, loading) | ||
| - Folders & Library (add/browse/delete folders, startup folder) | ||
| - Search / Filter / Sort | ||
| - Metadata parsing (A1111/Forge/ComfyUI/etc.) | ||
| - Copy / Clipboard / Export | ||
| - Performance / Memory (slow, freezes, OOM) | ||
| - Crash | ||
| - Other | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: input | ||
| id: version | ||
| attributes: | ||
| label: Image MetaHub version | ||
| placeholder: "e.g. 0.10.5" | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: dropdown | ||
| id: os | ||
| attributes: | ||
| label: OS | ||
| options: | ||
| - Windows | ||
| - macOS | ||
| - Linux | ||
| - Other | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: input | ||
| id: os_version | ||
| attributes: | ||
| label: OS version | ||
| placeholder: "e.g. Windows 11 23H2 / macOS 14.2 / Ubuntu 22.04" | ||
|
|
||
| - type: dropdown | ||
| id: install_type | ||
| attributes: | ||
| label: Install / build type | ||
| options: | ||
| - Release build | ||
| - Portable build | ||
| - AppImage (Linux) | ||
| - Dev build (npm/yarn/pnpm) | ||
| - Other | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: summary | ||
| attributes: | ||
| label: What happened? | ||
| description: "A short, concrete description." | ||
| placeholder: "Example: After startup, thumbnails are blank gray rectangles and never resolve." | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: steps | ||
| attributes: | ||
| label: Steps to reproduce | ||
| placeholder: | | ||
| 1. ... | ||
| 2. ... | ||
| 3. ... | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: expected | ||
| attributes: | ||
| label: Expected behavior | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: actual | ||
| attributes: | ||
| label: Actual behavior | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: attachments | ||
| attributes: | ||
| label: Screenshots / recordings / sample files | ||
| description: "Drag & drop here. For metadata issues, attaching 1 sample image is extremely helpful." | ||
|
|
||
| - type: textarea | ||
| id: logs | ||
| attributes: | ||
| label: Logs / console output | ||
| description: "Paste any relevant logs. If you have a log file, paste the relevant excerpt." | ||
| placeholder: | | ||
| ``` | ||
| paste logs here | ||
| ``` | ||
| render: shell | ||
|
|
||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| --- | ||
| ## Metadata details (fill if your issue is about metadata) | ||
|
|
||
| - type: dropdown | ||
| id: generator | ||
| attributes: | ||
| label: Generator / source | ||
| description: "Where the affected image(s) were produced." | ||
| options: | ||
| - Forge | ||
| - Automatic1111 (A1111) | ||
| - ComfyUI | ||
| - SD.Next | ||
| - SwarmUI | ||
| - InvokeAI | ||
| - Fooocus | ||
| - DrawThings | ||
| - DreamStudio | ||
| - Other / Unknown | ||
| validations: | ||
| required: false | ||
|
|
||
| - type: dropdown | ||
| id: file_format | ||
| attributes: | ||
| label: File format | ||
| options: | ||
| - PNG | ||
| - JPEG | ||
| - WebP | ||
| - Other | ||
| validations: | ||
| required: false | ||
|
|
||
| - type: checkboxes | ||
| id: metadata_context | ||
| attributes: | ||
| label: Metadata context | ||
| options: | ||
| - label: The file was not re-saved/edited by another app (Photoshop, upscaler, Discord, etc.) | ||
| required: false | ||
| - label: I can attach at least 1 sample image that reproduces the issue | ||
| required: false | ||
|
|
||
| - type: textarea | ||
| id: comfyui_workflow | ||
| attributes: | ||
| label: ComfyUI workflow JSON (only if generator is ComfyUI) | ||
| description: "Attach workflow.json or paste it. If it's embedded in the PNG, say so." | ||
| placeholder: | | ||
| - Attach workflow.json | ||
| - or paste JSON here | ||
| - or write: "workflow embedded in PNG" | ||
|
|
||
| - type: textarea | ||
| id: a1111_pnginfo | ||
| attributes: | ||
| label: A1111/Forge/SD.Next info (only if generator is A1111/Forge/SD.Next) | ||
| description: "Paste the full PNG Info / parameters text." | ||
| placeholder: | | ||
| Paste the exact text here. | ||
|
|
||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| --- | ||
| ## Performance / Library scale (fill if your issue is slow startup, freezes, OOM, etc.) | ||
|
|
||
| - type: input | ||
| id: library_size | ||
| attributes: | ||
| label: Approx. number of images in your library/folder(s) | ||
| placeholder: "e.g. 5k / 21k / 120k" | ||
|
|
||
| - type: input | ||
| id: gpu | ||
| attributes: | ||
| label: GPU | ||
| placeholder: "e.g. RTX 3060 Ti 8GB / Intel iGPU" | ||
|
|
||
| - type: input | ||
| id: ram | ||
| attributes: | ||
| label: RAM | ||
| placeholder: "e.g. 32GB" | ||
|
|
||
| - type: dropdown | ||
| id: storage | ||
| attributes: | ||
| label: Storage type (where the library lives) | ||
| options: | ||
| - NVMe SSD | ||
| - SATA SSD | ||
| - HDD | ||
| - Network drive | ||
| - Other | ||
|
|
||
| - type: checkboxes | ||
| id: final_checks | ||
| attributes: | ||
| label: Final checks | ||
| options: | ||
| - label: I searched existing issues to avoid duplicates | ||
| required: true | ||
| - label: I included enough info to reproduce (steps + version + OS) | ||
| required: true | ||
| """ | ||
| path = Path("/mnt/data/bug_report.yml") | ||
| path.write_text(content, encoding="utf-8") | ||
| str(path), path.stat().st_size | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| name: "✨ Feature request (Image MetaHub)" | ||
| description: "Suggest an improvement or new feature" | ||
| title: "[FR]: " | ||
| labels: ["enhancement"] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Please be as specific as possible. Clear examples and mockups help a lot. | ||
|
|
||
| - type: dropdown | ||
| id: area | ||
| attributes: | ||
| label: Area | ||
| options: | ||
| - Viewer / Image modal (zoom, fullscreen, navigation, close) | ||
| - Thumbnails / Grid (layout, hover/slider mode, loading) | ||
| - Folders & Library (browse/add/delete folders, startup folder) | ||
| - Search / Filter / Sort | ||
| - Metadata (parsing, display, compare, edit) | ||
| - Tags / Collections / Organization | ||
| - Import / Watch / Sync | ||
| - Export / Share / Clipboard | ||
| - Settings / UX | ||
| - Performance / Memory | ||
| - Other | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: problem | ||
| attributes: | ||
| label: Problem / use case | ||
| description: "What are you trying to do, and what's currently missing or annoying?" | ||
| placeholder: "Example: I review similar images and want to compare metadata side-by-side to spot differences quickly." | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: proposal | ||
| attributes: | ||
| label: Proposed solution | ||
| description: "Describe the feature and how it should work." | ||
| placeholder: | | ||
| Example: | ||
| - Add a 'Compare metadata' action when selecting 2 images | ||
| - Show a diff view highlighting changed fields (prompt, sampler, steps, seed, LoRAs, etc.) | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: dropdown | ||
| id: priority | ||
| attributes: | ||
| label: Priority (your perspective) | ||
| options: | ||
| - Nice to have | ||
| - Would use often | ||
| - Must-have / blocking | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: alternatives | ||
| attributes: | ||
| label: Alternatives considered | ||
| description: "Any workaround or other approach you thought about?" | ||
|
|
||
| - type: textarea | ||
| id: examples | ||
| attributes: | ||
| label: Examples / references | ||
| description: "Screenshots, mockups, links to similar apps, sample files, etc." | ||
|
|
||
| - type: input | ||
| id: version | ||
| attributes: | ||
| label: Image MetaHub version | ||
| placeholder: "e.g. 0.10.5" | ||
| validations: | ||
| required: false | ||
|
|
||
| - type: dropdown | ||
| id: os | ||
| attributes: | ||
| label: OS | ||
| options: | ||
| - Windows | ||
| - macOS | ||
| - Linux | ||
| - Other | ||
| validations: | ||
| required: false |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.