Initial public release of Warp.
Repo-Sync-Origin: warpdotdev/warp-internal@12af1d983b
This commit is contained in:
@@ -0,0 +1,137 @@
|
||||
name: Bug Report
|
||||
description: "Found a bug? Please search through our open issues and docs, to make sure it isn't already submitted. If you have an SSH related issue, please use the SSH Template below"
|
||||
labels: ["bug", "ready-to-implement"]
|
||||
body:
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: "Pre-submit Checks"
|
||||
options:
|
||||
- label: "I have [searched Warp bugs](https://github.com/warpdotdev/warp/issues?q=is%3Aissue+label%3ABUG) and there are no duplicates"
|
||||
required: true
|
||||
- label: "I have [searched Warp known issues page](https://docs.warp.dev/help/known-issues) and my issue is not there"
|
||||
required: true
|
||||
- label: "I have an issue with AI and have included the debugging ID (Optional, but helps expedite the AI quality fix). [Debugging ID instructions](https://docs.warp.dev/agent-platform/agent/ai-faqs#gathering-ai-debugging-id)"
|
||||
required: false
|
||||
- label: "I have technical issue and have included the logs (optional, but helps expedite the bug fix). [Log instructions](https://docs.warp.dev/support-and-community/troubleshooting-and-support/sending-us-feedback#gathering-warp-logs)"
|
||||
required: false
|
||||
- type: textarea
|
||||
id: "describe-the-bug"
|
||||
attributes:
|
||||
label: "Describe the bug"
|
||||
description: "A clear and concise description of what the bug is."
|
||||
placeholder: Tell us what you see.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: "to-reproduce"
|
||||
attributes:
|
||||
label: "To reproduce"
|
||||
description: "Bug reports with clear reproduction will get prioritized higher and addressed more quickly."
|
||||
placeholder: "Steps to reproduce: 1. Go to '...' 2. Click on '...' 3. Scroll down to '...' 4. See error '...'"
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: "expected-behavior"
|
||||
attributes:
|
||||
label: "Expected behavior"
|
||||
description: "A clear and concise description of what you expected to happen."
|
||||
placeholder: Tell us what you expect to see.
|
||||
validations:
|
||||
required: false
|
||||
- type: textarea
|
||||
id: "screenshots-logs"
|
||||
attributes:
|
||||
label: "Screenshots, videos, and logs"
|
||||
description: "If applicable, add screenshots/videos/logs to help us understand your problem. While optional, these help expedite the time in which your bug is addressed."
|
||||
validations:
|
||||
required: false
|
||||
- type: dropdown
|
||||
id: "os"
|
||||
attributes:
|
||||
label: "Operating system (OS)"
|
||||
multiple: false
|
||||
options:
|
||||
- "Select an OS"
|
||||
- macOS
|
||||
- Linux
|
||||
- Windows
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: "os-version"
|
||||
attributes:
|
||||
label: "Operating system and version"
|
||||
description: "For example: Debian 11.2"
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: "local-shell-version"
|
||||
attributes:
|
||||
label: "Shell Version"
|
||||
description: "For example, `bash 4.0` e.g. Run `bash --version` or `zsh --version`"
|
||||
validations:
|
||||
required: false
|
||||
- type: input
|
||||
id: "warp-version"
|
||||
attributes:
|
||||
label: "Current Warp version"
|
||||
description: "Open the Settings Dialog (CMD-,) using the Command Palette or by clicking the three dots > Settings > Account. Once you're on the Account page click the copy icon that's to the right of the version number. `v0.2047.04.07.47.47.stable_47`"
|
||||
validations:
|
||||
required: false
|
||||
- type: dropdown
|
||||
id: "regression"
|
||||
attributes:
|
||||
label: "Regression"
|
||||
description: "Is this a regression (used to work in a previous Warp version)?"
|
||||
multiple: false
|
||||
options:
|
||||
- "No, this bug or issue has existed throughout my experience using Warp"
|
||||
- "Yes, this bug started recently or with an X Warp version"
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: "warp-version-regression-date"
|
||||
attributes:
|
||||
label: "Recent working Warp date"
|
||||
description: "Most recent date that Warp worked as expected"
|
||||
validations:
|
||||
required: false
|
||||
- type: textarea
|
||||
id: "additional-context"
|
||||
attributes:
|
||||
label: "Additional context"
|
||||
description: "Add any other context about the problem here. If using Warp on Linux, tell us if you're using X11 or Wayland. If the issue is graphical, run Warp with the following command `RUST_LOG=wgpu_core=info,wgpu_hal=info MESA_DEBUG=1 EGL_LOG_LEVEL=debug warp-terminal` attach logs and tell us the result of `eglinfo`."
|
||||
validations:
|
||||
required: false
|
||||
- type: dropdown
|
||||
id: "blocker"
|
||||
attributes:
|
||||
label: "Does this block you from using Warp daily?"
|
||||
description: "All feedback will be reviewed, even if you select 'No'."
|
||||
multiple: false
|
||||
options:
|
||||
- "No"
|
||||
- "Yes, this issue prevents me from using Warp daily."
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: "terminals"
|
||||
attributes:
|
||||
label: "Is this an issue only in Warp?"
|
||||
description: "Verifying this issue doesn't happen in other terminals helps us to prioritize the fix"
|
||||
multiple: false
|
||||
options:
|
||||
- "Yes, I confirmed that this only happens in Warp, not other terminals."
|
||||
- "No, this issue happens in Warp and other terminals."
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: "linear-label-bug"
|
||||
attributes:
|
||||
label: "Warp Internal (ignore): linear-label:b9d78064-c89e-4973-b153-5178a31ee54e"
|
||||
multiple: false
|
||||
options:
|
||||
- Ignore
|
||||
validations:
|
||||
required: false
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
name: Feature Request
|
||||
description: "Have a great new idea? Please search through our existing feature requests, and upvote it if it's already exists."
|
||||
labels: ["enhancement"]
|
||||
body:
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: "Pre-submit Checks"
|
||||
options:
|
||||
- label: "I have [searched Warp feature requests](https://github.com/warpdotdev/warp/issues?q=is%3Aissue+label%3AFEATURE) and there are no duplicates"
|
||||
required: true
|
||||
- label: "I have [searched Warp docs](https://docs.warp.dev) and my feature is not there"
|
||||
required: true
|
||||
- type: textarea
|
||||
id: "describe-solution"
|
||||
attributes:
|
||||
label: "Describe the solution you'd like?"
|
||||
description: "A clear and concise description of what you want to happen."
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: "related-to-problem"
|
||||
attributes:
|
||||
label: "Is your feature request related to a problem? Please describe."
|
||||
description: "A clear and concise description of what the problem is."
|
||||
placeholder: "I'm always frustrated when [...]"
|
||||
validations:
|
||||
required: false
|
||||
- type: textarea
|
||||
id: "additional-context"
|
||||
attributes:
|
||||
label: "Additional context"
|
||||
description: "Add any other context or screenshots about the feature request here. If you want to upload a picture you can drag one in from Finder."
|
||||
validations:
|
||||
required: false
|
||||
- type: dropdown
|
||||
id: "os"
|
||||
attributes:
|
||||
label: "Operating system (OS)"
|
||||
multiple: false
|
||||
options:
|
||||
- "Select an OS"
|
||||
- macOS
|
||||
- Linux
|
||||
- Windows
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: "importance"
|
||||
attributes:
|
||||
label: "How important is this feature to you?"
|
||||
multiple: false
|
||||
options:
|
||||
- "1 (Not too important)"
|
||||
- "2"
|
||||
- "3"
|
||||
- "4"
|
||||
- "5 (Can't work without it!)"
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: "linear-label-feature"
|
||||
attributes:
|
||||
label: "Warp Internal (ignore) - linear-label:39cc6478-1249-4ee7-950b-c428edfeecd1"
|
||||
multiple: false
|
||||
options:
|
||||
- Ignore
|
||||
validations:
|
||||
required: false
|
||||
@@ -0,0 +1,73 @@
|
||||
name: SSH Warpify Issues? Use this template
|
||||
description: "Issue template specialized for the circumstances where SSH Warpification with tmux fails"
|
||||
labels: ["bug","area:ssh"]
|
||||
body:
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: "Pre-submit Checks"
|
||||
options:
|
||||
- label: "I have [searched Warp SSH issues](https://github.com/warpdotdev/Warp/issues?q=is%3Aissue+is%3Aopen+label%3ASSH-TMUX) and there are no duplicates"
|
||||
required: true
|
||||
- label: "I have [searched Warp known issues page](https://docs.warp.dev/help/known-issues) and my issue is not there"
|
||||
required: true
|
||||
- label: "I have technical issue and have included the logs (helps expedite the bug fix). [Log instructions](https://docs.warp.dev/support-and-community/troubleshooting-and-support/sending-us-feedback#gathering-warp-logs)"
|
||||
required: false
|
||||
- type: textarea
|
||||
id: "shell-output"
|
||||
attributes:
|
||||
label: "Include shell output"
|
||||
description: "Click on the top right icon of your terminal block, select `Copy`, and paste the contents here. Please redact any personal details."
|
||||
render: shell
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: "screenshots-logs"
|
||||
attributes:
|
||||
label: "Screenshots, videos, and logs"
|
||||
description: "If applicable, add screenshots/videos/logs to help us understand your problem. While optional, these help expedite the time in which your bug is addressed."
|
||||
validations:
|
||||
required: false
|
||||
- type: dropdown
|
||||
id: "os"
|
||||
attributes:
|
||||
label: "Operating system (OS)"
|
||||
multiple: false
|
||||
options:
|
||||
- "Select an OS"
|
||||
- macOS
|
||||
- Linux
|
||||
- Windows
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: "os-version"
|
||||
attributes:
|
||||
label: "Operating system and version"
|
||||
description: "For example: Debian 11.2"
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: "warp-version"
|
||||
attributes:
|
||||
label: "Warp Version"
|
||||
description: "Warp Version"
|
||||
validations:
|
||||
required: false
|
||||
- type: dropdown
|
||||
id: "linear-label-ssh-tmux"
|
||||
attributes:
|
||||
label: "Warp Internal (ignore) - linear-label:7a739baa-09c3-499e-a0c9-a1a16c090597"
|
||||
multiple: false
|
||||
options:
|
||||
- Ignore
|
||||
validations:
|
||||
required: false
|
||||
- type: dropdown
|
||||
id: "linear-label-bug"
|
||||
attributes:
|
||||
label: "Warp Internal (ignore): linear-label:b8107fdf-ba31-488d-b103-d271c89cac3e"
|
||||
multiple: false
|
||||
options:
|
||||
- Ignore
|
||||
validations:
|
||||
required: false
|
||||
@@ -0,0 +1,115 @@
|
||||
name: Legacy SSH Issues? Use this template
|
||||
description: "(Legacy) Issue template specialized for the circumstances where the shell doesn't bootstrap as a subshell over SSH"
|
||||
labels: ["bug","area:ssh"]
|
||||
body:
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: "Pre-submit Checks"
|
||||
options:
|
||||
- label: "I have [searched Warp SSH issues](https://github.com/warpdotdev/Warp/issues?q=is%3Aissue+is%3Aopen+label%3ASSH) and there are no duplicates"
|
||||
required: true
|
||||
- label: "I have [searched Warp known issues page](https://docs.warp.dev/help/known-issues) and my issue is not there"
|
||||
required: true
|
||||
- label: "I have technical issue and have included the logs (helps expedite the bug fix). [Log instructions](https://docs.warp.dev/support-and-community/troubleshooting-and-support/sending-us-feedback#gathering-warp-logs)"
|
||||
required: false
|
||||
- type: dropdown
|
||||
id: "os"
|
||||
attributes:
|
||||
label: "Operating system (OS)"
|
||||
multiple: false
|
||||
options:
|
||||
- "Select an OS"
|
||||
- macOS
|
||||
- Linux
|
||||
- Windows
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: "os-version"
|
||||
attributes:
|
||||
label: "Operating System and Version"
|
||||
description: "For example: Debian 11.2"
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: "local-shell-version"
|
||||
attributes:
|
||||
label: "Local Shell Version"
|
||||
description: "Output of `echo $BASH_VERSION` or `echo $ZSH_VERSION`"
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: "remote-shell-version"
|
||||
attributes:
|
||||
label: "Remote Shell Version"
|
||||
description: "Output of `echo $BASH_VERSION` or `echo $ZSH_VERSION`"
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: "warp-version"
|
||||
attributes:
|
||||
label: "Warp Version"
|
||||
description: "Click the 3-dots menu docked to the right of the tabs in Warp and click the copy button, e.g. `v0.2022.05.30.09.10.stable_01`"
|
||||
validations:
|
||||
required: true
|
||||
- type: checkboxes
|
||||
id: "rcfiles"
|
||||
attributes:
|
||||
label: "Have you tried commenting out my system & user rc files?"
|
||||
description: "If the issue is with your system and user rc files, please isolate the issue by [debugging your rc files](https://docs.warp.dev/help/known-issues#configuring-and-debugging-your-rc-files)."
|
||||
options:
|
||||
- label: "Yes"
|
||||
- type: textarea
|
||||
id: "screenshots-logs"
|
||||
attributes:
|
||||
label: "Screenshots, videos, and logs"
|
||||
description: "If applicable, add screenshots/videos/logs to help us understand your problem. While optional, these help expedite the time in which your bug is addressed."
|
||||
validations:
|
||||
required: false
|
||||
- type: textarea
|
||||
id: "xtrace-output"
|
||||
attributes:
|
||||
label: "Include shell xtrace output"
|
||||
description: "1. Ensure you're on the 3.31 version of Warp or later. 2. Run WARP_DEBUG_MODE=1 ssh YOUR-HOSTNAME-HERE 3. Save the full output starting from the ssh command block. If you’re not comfortable posting the outputs to a public issue, you can email feedback@warp.dev. "
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: "blocker"
|
||||
attributes:
|
||||
label: "Does this block you from using Warp daily?"
|
||||
description: "All feedback will be reviewed, even if you select 'No'."
|
||||
multiple: false
|
||||
options:
|
||||
- "No"
|
||||
- "Yes, this issue prevents me from using Warp daily."
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: "terminals"
|
||||
attributes:
|
||||
label: "Is this an issue only in Warp?"
|
||||
description: "Verifying this issue doesn't happen in other terminals helps us to prioritize the fix"
|
||||
multiple: false
|
||||
options:
|
||||
- "Yes, I confirmed that this only happens in Warp, not other terminals."
|
||||
- "No, this issue happens in Warp and other terminals."
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: "linear-label-ssh"
|
||||
attributes:
|
||||
label: "Warp Internal (ignore) - linear-label:e7dfaa84-5fdb-4a00-b754-d8912da923fa"
|
||||
multiple: false
|
||||
options:
|
||||
- Ignore
|
||||
validations:
|
||||
required: false
|
||||
- type: dropdown
|
||||
id: "linear-label-bug"
|
||||
attributes:
|
||||
label: "Warp Internal (ignore): linear-label:b8107fdf-ba31-488d-b103-d271c89cac3e"
|
||||
multiple: false
|
||||
options:
|
||||
- Ignore
|
||||
validations:
|
||||
required: false
|
||||
@@ -0,0 +1,26 @@
|
||||
blank_issues_enabled: false
|
||||
contact_links:
|
||||
- name: Warp GitHub Search
|
||||
url: https://github.com/warpdotdev/warp/issues?q=is%3Aissue+is%3Aopen+a+sort%3Areactions-%2B1-desc
|
||||
about: Search Warp's open bugs and enhancements.
|
||||
- name: Warp Documentation
|
||||
url: https://docs.warp.dev/support-and-billing/known-issues?q=
|
||||
about: Documentation for features, known issues, troubleshooting, keyboard shortcuts, telemetry table, and more!
|
||||
- name: Warp Changelog
|
||||
url: https://docs.warp.dev/changelog
|
||||
about: See our changelog to learn about new features, improvements, bug fixes, and Oz updates.
|
||||
- name: Contact Us
|
||||
url: https://docs.warp.dev/support-and-community/troubleshooting-and-support/sending-us-feedback
|
||||
about: Submit feedback and contact the Warp support team for things like Billing, Enterprise, and other issues.
|
||||
- name: Warp Preview Slack Community
|
||||
url: https://go.warp.dev/join-preview
|
||||
about: Discuss give feedback on the new features with other Warp Preview users.
|
||||
- name: Warp Discord Community
|
||||
url: https://discord.com/invite/warpdotdev
|
||||
about: Discuss what you want to see in a Modern ADE with a community of other Warp users.
|
||||
- name: Warp Homepage
|
||||
url: https://www.warp.dev/
|
||||
about: Homepage for all things Warp.
|
||||
- name: Warp Licenses
|
||||
url: https://docs.warp.dev/support-and-community/privacy-security-and-licensing/open-source-licenses
|
||||
about: See the open source projects Warp depends on and their licenses.
|
||||
Reference in New Issue
Block a user