mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-11 02:42:04 -08:00
- Allow Browerforge fingerprints to override screen & viewport data. - Set Camoufox's window dimensions to a fixed width/height generated from Browserforge. - If the browser is headful, do not exceed 125% of the screen size. Other changes: - Allow public IP finder to work without verification. - Add script to publish to pypi. - More descriptive progress bars when downloading default addons. - Bump to 0.2.2
11 lines
182 B
Bash
11 lines
182 B
Bash
rm -rf ./dist
|
|
rm -rf ./camoufox/*.mmdb
|
|
|
|
python -m build
|
|
twine check dist/*
|
|
|
|
read -p "Confirm publish? (y/n) " -n 1 -r
|
|
echo
|
|
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
|
twine upload dist/*
|
|
fi
|