perf: add bug report entrance
This commit is contained in:
parent
f5611a2635
commit
b06217adc0
|
@ -68,6 +68,10 @@ const preferencesOptions = computed(() => {
|
||||||
// key: 'help',
|
// key: 'help',
|
||||||
// icon: render.renderIcon(Help, { strokeWidth: 3 }),
|
// icon: render.renderIcon(Help, { strokeWidth: 3 }),
|
||||||
// },
|
// },
|
||||||
|
{
|
||||||
|
label: i18n.t('menu.report_bug'),
|
||||||
|
key: 'report',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: i18n.t('menu.check_update'),
|
label: i18n.t('menu.check_update'),
|
||||||
key: 'update',
|
key: 'update',
|
||||||
|
@ -97,6 +101,9 @@ const onSelectPreferenceMenu = (key) => {
|
||||||
case 'update':
|
case 'update':
|
||||||
prefStore.checkForUpdate(true)
|
prefStore.checkForUpdate(true)
|
||||||
break
|
break
|
||||||
|
case 'report':
|
||||||
|
BrowserOpenURL('https://github.com/tiny-craft/tiny-rdm/issues')
|
||||||
|
break
|
||||||
case 'about':
|
case 'about':
|
||||||
dialogStore.openAboutDialog()
|
dialogStore.openAboutDialog()
|
||||||
break
|
break
|
||||||
|
|
|
@ -293,6 +293,7 @@
|
||||||
"preferences": "Preferences",
|
"preferences": "Preferences",
|
||||||
"help": "Help",
|
"help": "Help",
|
||||||
"check_update": "Check for Updates...",
|
"check_update": "Check for Updates...",
|
||||||
|
"report_bug": "Report a Bug",
|
||||||
"about": "About"
|
"about": "About"
|
||||||
},
|
},
|
||||||
"log": {
|
"log": {
|
||||||
|
|
|
@ -292,6 +292,7 @@
|
||||||
"preferences": "偏好设置",
|
"preferences": "偏好设置",
|
||||||
"help": "帮助",
|
"help": "帮助",
|
||||||
"check_update": "检查更新...",
|
"check_update": "检查更新...",
|
||||||
|
"report_bug": "报告错误",
|
||||||
"about": "关于"
|
"about": "关于"
|
||||||
},
|
},
|
||||||
"log": {
|
"log": {
|
||||||
|
|
Loading…
Reference in New Issue