mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 06:48:38 +09:00
parent
63ad437c13
commit
1b0ffd8a7b
1 changed files with 9 additions and 7 deletions
|
|
@ -10,7 +10,6 @@ const { classes: Cc, interfaces: Ci, utils: Cu } = Components;
|
|||
|
||||
Cu.import("resource://gre/modules/AddonManager.jsm");
|
||||
Cu.import("resource://gre/modules/Services.jsm");
|
||||
Cu.import("resource://gre/modules/AppConstants.jsm");
|
||||
|
||||
// We use a preferences whitelist to make sure we only show preferences that
|
||||
// are useful for support and won't compromise the user's privacy. Note that
|
||||
|
|
@ -177,16 +176,17 @@ var dataProviders = {
|
|||
let data = {
|
||||
name: Services.appinfo.name,
|
||||
osVersion: sysInfo.getProperty("name") + " " + sysInfo.getProperty("version"),
|
||||
version: AppConstants.MOZ_APP_VERSION_DISPLAY,
|
||||
buildID: Services.appinfo.appBuildID,
|
||||
userAgent: Cc["@mozilla.org/network/protocol;1?name=http"].
|
||||
getService(Ci.nsIHttpProtocolHandler).
|
||||
userAgent,
|
||||
safeMode: Services.appinfo.inSafeMode,
|
||||
};
|
||||
#expand let data.version = "__MOZ_APP_VERSION_DISPLAY__";
|
||||
|
||||
if (AppConstants.MOZ_UPDATER)
|
||||
data.updateChannel = Cu.import("resource://gre/modules/UpdateUtils.jsm", {}).UpdateUtils.UpdateChannel;
|
||||
#ifdef MOZ_UPDATER
|
||||
data.updateChannel = Cu.import("resource://gre/modules/UpdateUtils.jsm", {}).UpdateUtils.UpdateChannel;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_64BIT_BUILD
|
||||
data.versionArch = "64-bit";
|
||||
|
|
@ -356,9 +356,11 @@ var dataProviders = {
|
|||
data.currentAudioBackend = winUtils.currentAudioBackend;
|
||||
|
||||
if (!data.numAcceleratedWindows && gfxInfo) {
|
||||
let win = AppConstants.platform == "win";
|
||||
let feature = win ? gfxInfo.FEATURE_DIRECT3D_9_LAYERS :
|
||||
gfxInfo.FEATURE_OPENGL_LAYERS;
|
||||
#ifdef XP_WIN
|
||||
let feature = gfxInfo.FEATURE_DIRECT3D_9_LAYERS;
|
||||
#else
|
||||
let feature = gfxInfo.FEATURE_OPENGL_LAYERS;
|
||||
#endif
|
||||
data.numAcceleratedWindowsMessage = statusMsgForFeature(feature);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue