mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-17 22:18:41 -09:00
update report issue template
This commit is contained in:
parent
f6cee0520e
commit
7e27c5a6e3
1 changed files with 21 additions and 23 deletions
|
|
@ -15,8 +15,7 @@ export default (commands: Record<string, string>, showAbout: () => void): MenuIt
|
||||||
{
|
{
|
||||||
label: 'Report Issue',
|
label: 'Report Issue',
|
||||||
click() {
|
click() {
|
||||||
const body = `
|
const body = `<!--
|
||||||
<!--
|
|
||||||
Hi there! Thank you for discovering and submitting an issue.
|
Hi there! Thank you for discovering and submitting an issue.
|
||||||
Before you submit this; let's make sure of a few things.
|
Before you submit this; let's make sure of a few things.
|
||||||
Please make sure the following boxes are ✅ if they are correct.
|
Please make sure the following boxes are ✅ if they are correct.
|
||||||
|
|
@ -25,9 +24,8 @@ export default (commands: Record<string, string>, showAbout: () => void): MenuIt
|
||||||
<!-- 👉 Checked checkbox should look like this: [x] -->
|
<!-- 👉 Checked checkbox should look like this: [x] -->
|
||||||
- [ ] Your Hyper.app version is **${version}**. Please verify your using the [latest](https://github.com/zeit/hyper/releases/latest) Hyper.app version
|
- [ ] Your Hyper.app version is **${version}**. Please verify your using the [latest](https://github.com/zeit/hyper/releases/latest) Hyper.app version
|
||||||
- [ ] I have searched the [issues](https://github.com/zeit/hyper/issues) of this repo and believe that this is not a duplicate
|
- [ ] I have searched the [issues](https://github.com/zeit/hyper/issues) of this repo and believe that this is not a duplicate
|
||||||
|
|
||||||
---
|
---
|
||||||
- **Any relevant information from devtools?** _(CMD+ALT+I on macOS, CTRL+SHIFT+I elsewhere)_:
|
- **Any relevant information from devtools?** _(CMD+OPTION+I on macOS, CTRL+SHIFT+I elsewhere)_:
|
||||||
<!-- 👉 Replace with info if applicable, or N/A -->
|
<!-- 👉 Replace with info if applicable, or N/A -->
|
||||||
|
|
||||||
- **Is the issue reproducible in vanilla Hyper.app?**
|
- **Is the issue reproducible in vanilla Hyper.app?**
|
||||||
|
|
@ -40,23 +38,23 @@ export default (commands: Record<string, string>, showAbout: () => void): MenuIt
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
---
|
||||||
<!-- ~/.hyper.js config -->
|
<!-- ~/.hyper.js config -->
|
||||||
- **${app.name} version**: ${env.TERM_PROGRAM_VERSION} "${app.getVersion()}"
|
- **${app.name} version**: ${env.TERM_PROGRAM_VERSION} "${app.getVersion()}"
|
||||||
|
|
||||||
- **OS ARCH VERSION:** ${platform} ${arch} ${release()}
|
- **OS ARCH VERSION:** ${platform} ${arch} ${release()}
|
||||||
- **Electron:** ${versions.electron} **LANG:** ${env.LANG}
|
- **Electron:** ${versions.electron} **LANG:** ${env.LANG}
|
||||||
- **SHELL:** ${env.SHELL} **TERM:** ${env.TERM}
|
- **SHELL:** ${env.SHELL} **TERM:** ${env.TERM}
|
||||||
|
<details><summary><strong>.hyper.js contents</strong></summary>
|
||||||
|
|
||||||
<details>
|
\`\`\`json
|
||||||
<summary><strong> ~/.hyper.js contents</strong></summary>
|
|
||||||
<pre>
|
|
||||||
<code>
|
|
||||||
${JSON.stringify(getConfig(), null, 2)}
|
${JSON.stringify(getConfig(), null, 2)}
|
||||||
|
\`\`\`
|
||||||
|
</details>
|
||||||
|
<details><summary><strong>plugins</strong></summary>
|
||||||
|
|
||||||
|
\`\`\`json
|
||||||
${JSON.stringify(getPlugins(), null, 2)}
|
${JSON.stringify(getPlugins(), null, 2)}
|
||||||
</code>
|
\`\`\`
|
||||||
</pre>
|
|
||||||
</details>`;
|
</details>`;
|
||||||
|
|
||||||
shell.openExternal(`https://github.com/zeit/hyper/issues/new?body=${encodeURIComponent(body)}`);
|
shell.openExternal(`https://github.com/zeit/hyper/issues/new?body=${encodeURIComponent(body)}`);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue