aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstuppie2026-04-14 13:18:19 -0600
committerstuppie2026-04-14 13:18:19 -0600
commit01859f2952ec5f7d89fbea64ca60321fa0038426 (patch)
tree8c4dbddf9478d1362ed25a4db4730890f3b414cb
parent0b4372e6fed6e861dafcbd26ff0b25a8ce40467b (diff)
downloadgeneralresearch-3.3.7.tar.gz
generalresearch-3.3.7.zip
storage_estimate_quota not in fp keys on windows alsov3.3.7
-rw-r--r--generalresearch/grliq/models/forensic_data.py4
-rw-r--r--pyproject.toml2
2 files changed, 4 insertions, 2 deletions
diff --git a/generalresearch/grliq/models/forensic_data.py b/generalresearch/grliq/models/forensic_data.py
index 84bb31b..fe26a45 100644
--- a/generalresearch/grliq/models/forensic_data.py
+++ b/generalresearch/grliq/models/forensic_data.py
@@ -534,7 +534,9 @@ class GrlIqData(BaseModel):
]
if self.useragent.os.family in {OSFamily.IOS, OSFamily.MAC_OSX}:
fp_cols.extend(["screen_width", "screen_height"])
- if self.useragent.os.family not in {OSFamily.CHROME_OS, OSFamily.ANDROID}:
+ if self.useragent.os.family not in {OSFamily.CHROME_OS, OSFamily.ANDROID, OSFamily.WINDOWS}:
+ # On certain system this is the actual value (to the byte) which results in it
+ # changing frequently.
fp_cols.append("storage_estimate_quota")
fp_cols.sort()
return fp_cols
diff --git a/pyproject.toml b/pyproject.toml
index d6f9ebf..3cfedab 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "generalresearch"
-version = "3.3.6"
+version = "3.3.7"
description = "Python Utilities for General Research"
readme = "README.md"
requires-python = ">=3.8"