Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

140 changes: 140 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
name: 🐛 Bug Report
description: Report a bug or issue with docx_viewer
title: "[Bug]: "
labels: ["bug", "needs-triage"]
assignees:
- santoshvandari

body:
- type: markdown
attributes:
value: |
Thanks for taking the time to report a bug! Please fill out the form below.

- type: textarea
id: description
attributes:
label: Bug Description
description: A clear and concise description of what the bug is.
placeholder: Tell us what happened!
validations:
required: true

- type: textarea
id: reproduction
attributes:
label: Steps to Reproduce
description: Steps to reproduce the behavior
placeholder: |
1. Go to '...'
2. Click on '...'
3. See error
validations:
required: true

- type: textarea
id: expected
attributes:
label: Expected Behavior
description: What did you expect to happen?
placeholder: Describe the expected behavior
validations:
required: true

- type: textarea
id: actual
attributes:
label: Actual Behavior
description: What actually happened?
placeholder: Describe what actually happened
validations:
required: true

- type: textarea
id: code
attributes:
label: Code Sample
description: Please provide a minimal code sample that reproduces the issue
placeholder: |
```dart
DocxView(
filePath: 'path/to/file.docx',
)
```
render: dart
validations:
required: false

- type: dropdown
id: platform
attributes:
label: Platform
description: Which platform(s) are you experiencing this issue on?
multiple: true
options:
- Android
- iOS
- Web
- Windows
- macOS
- Linux
validations:
required: true

- type: input
id: flutter-version
attributes:
label: Flutter Version
description: Run `flutter --version` and paste the output
placeholder: "e.g., Flutter 3.24.3"
validations:
required: true

- type: input
id: dart-version
attributes:
label: Dart Version
description: Your Dart SDK version
placeholder: "e.g., Dart 3.5.4"
validations:
required: true

- type: input
id: package-version
attributes:
label: docx_viewer Version
description: Which version of docx_viewer are you using?
placeholder: "e.g., 1.0.0"
validations:
required: true

- type: textarea
id: logs
attributes:
label: Error Logs
description: Please paste any relevant error logs
placeholder: Paste error logs here
render: shell
validations:
required: false

- type: textarea
id: additional
attributes:
label: Additional Context
description: Add any other context about the problem here
placeholder: Any additional information that might be helpful
validations:
required: false

- type: checkboxes
id: checklist
attributes:
label: Checklist
options:
- label: I have searched existing issues to make sure this is not a duplicate
required: true
- label: I have provided all required information above
required: true
- label: I am using the latest version of docx_viewer
required: false
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
blank_issues_enabled: false
contact_links:
- name: 📚 Documentation
url: https://pub.dev/packages/docx_viewer
about: Check the package documentation on pub.dev
- name: 💬 Discussions
url: https://github.com/santoshvandari/docx_viewer/discussions
about: Ask questions and discuss with the community
- name: ❓ General Questions
url: https://github.com/santoshvandari/docx_viewer/discussions/new?category=q-a
about: Ask general questions about using docx_viewer
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

115 changes: 115 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
name: ✨ Feature Request
description: Suggest a new feature or enhancement for docx_viewer
title: "[Feature]: "
labels: ["enhancement", "needs-triage"]
assignees:
- santoshvandari

body:
- type: markdown
attributes:
value: |
Thanks for suggesting a feature! Please fill out the form below.

- type: textarea
id: problem
attributes:
label: Is your feature request related to a problem?
description: A clear and concise description of what the problem is.
placeholder: "I'm always frustrated when..."
validations:
required: false

- type: textarea
id: solution
attributes:
label: Describe the solution you'd like
description: A clear and concise description of what you want to happen.
placeholder: Describe your proposed solution
validations:
required: true

- type: textarea
id: alternatives
attributes:
label: Describe alternatives you've considered
description: A clear and concise description of any alternative solutions or features you've considered.
placeholder: Any alternative approaches?
validations:
required: false

- type: textarea
id: use-case
attributes:
label: Use Case
description: Describe your use case and how this feature would benefit you
placeholder: How would you use this feature?
validations:
required: true

- type: textarea
id: example
attributes:
label: Code Example
description: If applicable, provide a code example of how you envision using this feature
placeholder: |
```dart
// Example usage
DocxView(
filePath: 'document.docx',
newFeature: true,
)
```
render: dart
validations:
required: false

- type: dropdown
id: platform
attributes:
label: Target Platform(s)
description: Which platform(s) should this feature support?
multiple: true
options:
- All platforms
- Android
- iOS
- Web
- Windows
- macOS
- Linux
validations:
required: true

- type: dropdown
id: priority
attributes:
label: Priority
description: How important is this feature to you?
options:
- Low - Nice to have
- Medium - Would improve my workflow
- High - Blocking my use case
validations:
required: true

- type: textarea
id: additional
attributes:
label: Additional Context
description: Add any other context, screenshots, or examples about the feature request
placeholder: Any additional information
validations:
required: false

- type: checkboxes
id: checklist
attributes:
label: Checklist
options:
- label: I have searched existing issues to make sure this is not a duplicate
required: true
- label: This feature would be useful to other users, not just me
required: true
- label: I am willing to help implement this feature
required: false
Loading