arn-browser 0.1.42 → 0.1.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -39,8 +39,8 @@ const osMap = {
|
|
|
39
39
|
const detectedOs = osMap[process.platform] || "windows";
|
|
40
40
|
|
|
41
41
|
// Default minimum browser versions for fingerprint generation
|
|
42
|
-
const DEFAULT_MIN_CHROME_VERSION =
|
|
43
|
-
const DEFAULT_MIN_FIREFOX_VERSION =
|
|
42
|
+
const DEFAULT_MIN_CHROME_VERSION = 146;
|
|
43
|
+
const DEFAULT_MIN_FIREFOX_VERSION = 148;
|
|
44
44
|
|
|
45
45
|
const MULTILOGIN_LAUNCHER_URL = "https://launcher.mlx.yt:45001";
|
|
46
46
|
const MULTILOGIN_FOLDER_ID = "bad9e7e1-cfab-4c8d-bd19-91aa82929711";
|
|
@@ -43,7 +43,7 @@ let _cleanupLogs = false;
|
|
|
43
43
|
const detectedOs = process.platform === "win32" ? "windows" : process.platform === "darwin" ? "macos" : "linux";
|
|
44
44
|
|
|
45
45
|
// Default minimum browser version for fingerprint generation
|
|
46
|
-
const DEFAULT_MIN_CHROME_VERSION =
|
|
46
|
+
const DEFAULT_MIN_CHROME_VERSION = 146;
|
|
47
47
|
|
|
48
48
|
/**
|
|
49
49
|
* Maps OS to its device type.
|