mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-10 02:08:38 +09:00
Merge remote-tracking branch 'origin/tracking' into custom
This commit is contained in:
commit
aed4ca8fc5
9 changed files with 50 additions and 5 deletions
|
|
@ -39,6 +39,10 @@ var snapshotFormatters = {
|
|||
$("application-box").textContent = data.name;
|
||||
$("useragent-box").textContent = data.userAgent;
|
||||
$("os-box").textContent = data.osVersion;
|
||||
let cpucaps = navigator.cpuHasSSE2?"SSE2 ":"";
|
||||
cpucaps += navigator.cpuHasAVX?"AVX ":"";
|
||||
cpucaps += navigator.cpuHasAVX2?"AVX2 ":"";
|
||||
$("cpucap-box").textContent = cpucaps;
|
||||
$("binary-box").textContent = Services.dirsvc.get("XREExeF", Ci.nsIFile).path;
|
||||
$("supportLink").href = data.supportURL;
|
||||
let version = Services.appinfo.version;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue