prefpicker 1.24.2__tar.gz → 1.24.4__tar.gz
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.
Potentially problematic release.
This version of prefpicker might be problematic. Click here for more details.
- {prefpicker-1.24.2 → prefpicker-1.24.4}/PKG-INFO +11 -9
- {prefpicker-1.24.2 → prefpicker-1.24.4}/README.md +10 -8
- {prefpicker-1.24.2 → prefpicker-1.24.4}/src/prefpicker/templates/browser-fuzzing.yml +0 -13
- {prefpicker-1.24.2 → prefpicker-1.24.4}/src/prefpicker.egg-info/PKG-INFO +11 -9
- {prefpicker-1.24.2 → prefpicker-1.24.4}/.codecov.yml +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/.github/CODEOWNERS +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/.github/workflows/prefmonitor.yml +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/.gitignore +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/.pre-commit-config.yaml +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/.taskcluster.yml +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/CODE_OF_CONDUCT.md +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/LICENSE +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/MANIFEST.in +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/pyproject.toml +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/setup.cfg +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/src/prefpicker/__init__.py +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/src/prefpicker/__main__.py +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/src/prefpicker/main.py +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/src/prefpicker/prefpicker.py +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/src/prefpicker/py.typed +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/src/prefpicker/templates/schema.json +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/src/prefpicker/test_main.py +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/src/prefpicker/test_prefpicker.py +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/src/prefpicker/test_templates.py +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/src/prefpicker.egg-info/SOURCES.txt +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/src/prefpicker.egg-info/dependency_links.txt +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/src/prefpicker.egg-info/entry_points.txt +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/src/prefpicker.egg-info/not-zip-safe +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/src/prefpicker.egg-info/requires.txt +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/src/prefpicker.egg-info/top_level.txt +0 -0
- {prefpicker-1.24.2 → prefpicker-1.24.4}/tox.ini +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: prefpicker
|
|
3
|
-
Version: 1.24.
|
|
3
|
+
Version: 1.24.4
|
|
4
4
|
Summary: PrefPicker - Manage & generate prefs.js files
|
|
5
5
|
Home-page: https://github.com/MozillaSecurity/prefpicker
|
|
6
6
|
Author: Tyson Smith
|
|
@@ -44,7 +44,7 @@ __**review_on_close**__ is optional. It is a list of relevant Bugzilla IDs used
|
|
|
44
44
|
|
|
45
45
|
_**value**_ can be a `bool`, `int`, `string` or `null`. Adding multiple potential values is possible.
|
|
46
46
|
When multiple values are present one is chosen at random when generating the output.
|
|
47
|
-
Using a value of `null` will
|
|
47
|
+
Using a value of `null` will exclude the pref from the prefs.js file (acts as browser default).
|
|
48
48
|
|
|
49
49
|
_**variant**_ is a subset of values to be used in place of the default values.
|
|
50
50
|
The default variant is used unless a variant is specified.
|
|
@@ -68,9 +68,16 @@ pref:
|
|
|
68
68
|
- 0 # potential value
|
|
69
69
|
alt: # extra optional variant
|
|
70
70
|
- 1 # if multiple values are defined one is chosen randomly
|
|
71
|
-
- null # null is a special case meaning
|
|
71
|
+
- null # null is a special case meaning exclude the pref
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
+
Updating Templates and Adding Prefs
|
|
75
|
+
-----------------------------------
|
|
76
|
+
Prefs are found in the `.yml` files in the [template](/src/prefpicker/templates) directory.
|
|
77
|
+
Only prefs that are ready to be tested should be added.
|
|
78
|
+
When adding a pref to a template it is encouraged to add a comment that provides justification and points to a bug in Bugzilla for additional context.
|
|
79
|
+
If a pref does not already exist and is only used with non-default variants a `null` entry must be added to the default variant.
|
|
80
|
+
|
|
74
81
|
Quick Setup
|
|
75
82
|
-----------
|
|
76
83
|
|
|
@@ -83,7 +90,7 @@ pip install prefpicker
|
|
|
83
90
|
Examples
|
|
84
91
|
--------
|
|
85
92
|
|
|
86
|
-
Use a built-in [template](
|
|
93
|
+
Use a built-in [template](/src/prefpicker/templates) to generate an up-to-date `prefs.js` file.
|
|
87
94
|
|
|
88
95
|
```bash
|
|
89
96
|
prefpicker browser-fuzzing.yml prefs.js
|
|
@@ -111,8 +118,3 @@ user_pref("fuzzing.enabled", true);
|
|
|
111
118
|
user_pref("gfx.webrender.all", true);
|
|
112
119
|
/// ... snip
|
|
113
120
|
```
|
|
114
|
-
|
|
115
|
-
Updating Templates
|
|
116
|
-
------------------
|
|
117
|
-
|
|
118
|
-
When adding a pref to a template it is encouraged to add a comment that provides justification and points to a bug in Bugzilla for additional context. If a pref does not already exist and is only used with non-default variants a 'null' entry must be added to the default variant.
|
|
@@ -22,7 +22,7 @@ __**review_on_close**__ is optional. It is a list of relevant Bugzilla IDs used
|
|
|
22
22
|
|
|
23
23
|
_**value**_ can be a `bool`, `int`, `string` or `null`. Adding multiple potential values is possible.
|
|
24
24
|
When multiple values are present one is chosen at random when generating the output.
|
|
25
|
-
Using a value of `null` will
|
|
25
|
+
Using a value of `null` will exclude the pref from the prefs.js file (acts as browser default).
|
|
26
26
|
|
|
27
27
|
_**variant**_ is a subset of values to be used in place of the default values.
|
|
28
28
|
The default variant is used unless a variant is specified.
|
|
@@ -46,9 +46,16 @@ pref:
|
|
|
46
46
|
- 0 # potential value
|
|
47
47
|
alt: # extra optional variant
|
|
48
48
|
- 1 # if multiple values are defined one is chosen randomly
|
|
49
|
-
- null # null is a special case meaning
|
|
49
|
+
- null # null is a special case meaning exclude the pref
|
|
50
50
|
```
|
|
51
51
|
|
|
52
|
+
Updating Templates and Adding Prefs
|
|
53
|
+
-----------------------------------
|
|
54
|
+
Prefs are found in the `.yml` files in the [template](/src/prefpicker/templates) directory.
|
|
55
|
+
Only prefs that are ready to be tested should be added.
|
|
56
|
+
When adding a pref to a template it is encouraged to add a comment that provides justification and points to a bug in Bugzilla for additional context.
|
|
57
|
+
If a pref does not already exist and is only used with non-default variants a `null` entry must be added to the default variant.
|
|
58
|
+
|
|
52
59
|
Quick Setup
|
|
53
60
|
-----------
|
|
54
61
|
|
|
@@ -61,7 +68,7 @@ pip install prefpicker
|
|
|
61
68
|
Examples
|
|
62
69
|
--------
|
|
63
70
|
|
|
64
|
-
Use a built-in [template](
|
|
71
|
+
Use a built-in [template](/src/prefpicker/templates) to generate an up-to-date `prefs.js` file.
|
|
65
72
|
|
|
66
73
|
```bash
|
|
67
74
|
prefpicker browser-fuzzing.yml prefs.js
|
|
@@ -89,8 +96,3 @@ user_pref("fuzzing.enabled", true);
|
|
|
89
96
|
user_pref("gfx.webrender.all", true);
|
|
90
97
|
/// ... snip
|
|
91
98
|
```
|
|
92
|
-
|
|
93
|
-
Updating Templates
|
|
94
|
-
------------------
|
|
95
|
-
|
|
96
|
-
When adding a pref to a template it is encouraged to add a comment that provides justification and points to a bug in Bugzilla for additional context. If a pref does not already exist and is only used with non-default variants a 'null' entry must be added to the default variant.
|
|
@@ -470,12 +470,6 @@ pref:
|
|
|
470
470
|
- false
|
|
471
471
|
vr:
|
|
472
472
|
- true
|
|
473
|
-
dom.webgpu.enabled:
|
|
474
|
-
review_on_close:
|
|
475
|
-
- 1746245
|
|
476
|
-
variants:
|
|
477
|
-
default:
|
|
478
|
-
- true
|
|
479
473
|
dom.webgpu.wgpu-backend:
|
|
480
474
|
variants:
|
|
481
475
|
default:
|
|
@@ -1075,13 +1069,6 @@ pref:
|
|
|
1075
1069
|
variants:
|
|
1076
1070
|
default:
|
|
1077
1071
|
- ''
|
|
1078
|
-
webgl.colorspaces.prototype:
|
|
1079
|
-
review_on_close:
|
|
1080
|
-
- 1885491
|
|
1081
|
-
variants:
|
|
1082
|
-
default:
|
|
1083
|
-
- false
|
|
1084
|
-
- true
|
|
1085
1072
|
webgl.enable-draft-extensions:
|
|
1086
1073
|
variants:
|
|
1087
1074
|
default:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: prefpicker
|
|
3
|
-
Version: 1.24.
|
|
3
|
+
Version: 1.24.4
|
|
4
4
|
Summary: PrefPicker - Manage & generate prefs.js files
|
|
5
5
|
Home-page: https://github.com/MozillaSecurity/prefpicker
|
|
6
6
|
Author: Tyson Smith
|
|
@@ -44,7 +44,7 @@ __**review_on_close**__ is optional. It is a list of relevant Bugzilla IDs used
|
|
|
44
44
|
|
|
45
45
|
_**value**_ can be a `bool`, `int`, `string` or `null`. Adding multiple potential values is possible.
|
|
46
46
|
When multiple values are present one is chosen at random when generating the output.
|
|
47
|
-
Using a value of `null` will
|
|
47
|
+
Using a value of `null` will exclude the pref from the prefs.js file (acts as browser default).
|
|
48
48
|
|
|
49
49
|
_**variant**_ is a subset of values to be used in place of the default values.
|
|
50
50
|
The default variant is used unless a variant is specified.
|
|
@@ -68,9 +68,16 @@ pref:
|
|
|
68
68
|
- 0 # potential value
|
|
69
69
|
alt: # extra optional variant
|
|
70
70
|
- 1 # if multiple values are defined one is chosen randomly
|
|
71
|
-
- null # null is a special case meaning
|
|
71
|
+
- null # null is a special case meaning exclude the pref
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
+
Updating Templates and Adding Prefs
|
|
75
|
+
-----------------------------------
|
|
76
|
+
Prefs are found in the `.yml` files in the [template](/src/prefpicker/templates) directory.
|
|
77
|
+
Only prefs that are ready to be tested should be added.
|
|
78
|
+
When adding a pref to a template it is encouraged to add a comment that provides justification and points to a bug in Bugzilla for additional context.
|
|
79
|
+
If a pref does not already exist and is only used with non-default variants a `null` entry must be added to the default variant.
|
|
80
|
+
|
|
74
81
|
Quick Setup
|
|
75
82
|
-----------
|
|
76
83
|
|
|
@@ -83,7 +90,7 @@ pip install prefpicker
|
|
|
83
90
|
Examples
|
|
84
91
|
--------
|
|
85
92
|
|
|
86
|
-
Use a built-in [template](
|
|
93
|
+
Use a built-in [template](/src/prefpicker/templates) to generate an up-to-date `prefs.js` file.
|
|
87
94
|
|
|
88
95
|
```bash
|
|
89
96
|
prefpicker browser-fuzzing.yml prefs.js
|
|
@@ -111,8 +118,3 @@ user_pref("fuzzing.enabled", true);
|
|
|
111
118
|
user_pref("gfx.webrender.all", true);
|
|
112
119
|
/// ... snip
|
|
113
120
|
```
|
|
114
|
-
|
|
115
|
-
Updating Templates
|
|
116
|
-
------------------
|
|
117
|
-
|
|
118
|
-
When adding a pref to a template it is encouraged to add a comment that provides justification and points to a bug in Bugzilla for additional context. If a pref does not already exist and is only used with non-default variants a 'null' entry must be added to the default variant.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|