This commit is contained in:
kakkokari-gtyih 2023-12-25 18:37:43 +09:00
parent 72de6bd8cb
commit 93f93ffb35
2 changed files with 6 additions and 1 deletions

View File

@ -14,7 +14,7 @@ body:
また、以下のことにもご注意ください。
- **このフォームはバグ報告専用です。**機能リクエストは[こちら](https://github.com/misskey-dev/misskey-hub-next/issues/new?assignees=&labels=feature&projects=&template=04_feature-request.yml)からお願いします。
- **このフォームはバグ報告専用です。** 機能リクエストは[こちら](https://github.com/misskey-dev/misskey-hub-next/issues/new?assignees=&labels=feature&projects=&template=04_feature-request.yml)からお願いします。
以上のことを試してもまだ問題が解決しない場合は、以下に症状をできるだけ詳しく記入してください。**貴重なお時間を使ってご報告いただきありがとうございます!**

View File

@ -21,6 +21,7 @@ export async function getGhIssueUrl(options: {
"fullVersionList",
"platformVersion",
]);
let osVersion = 'v' + uaData.platformVersion;
if (uaData.platform === 'Windows') {
// https://learn.microsoft.com/ja-jp/microsoft-edge/web-platform/how-to-detect-win11
@ -35,12 +36,15 @@ export async function getGhIssueUrl(options: {
osVersion = '8.1 or before';
}
}
const browserData = uaData.fullVersionList.find((item: any) => item.brand.toLowerCase() !== 'not_a brand');
const env = [
`* Model and OS of the device(s): ${uaData.platform} ${osVersion}`,
`* Browser: ${browserData.brand} ${browserData.version}`,
`* Viewport Size: ${window.innerWidth}x${window.innerHeight}`,
`* (UA Detected Using getHighEntropyValues)`,
(options.lang === 'ja') ? '* 【自動入力済】追記は不要です' : '* [Auto-filled] No need to write additional information.',
];
environment = env.join('\n');
} else {
@ -52,6 +56,7 @@ export async function getGhIssueUrl(options: {
`* Browser: ${uaRes.browser.name} (${uaRes.engine.name}) v${uaRes.browser.version}`,
`* Viewport Size: ${window.innerWidth}x${window.innerHeight}`,
`* Raw User Agent: ${uaRes.ua}`,
(options.lang === 'ja') ? '* 【自動入力済】追記は不要です' : '* [Auto-filled] No need to write additional information.',
];
environment = env.join('\n');
}