Skip to content

Commit

Permalink
linux: fix obsolete Firefox DPI script #239
Browse files Browse the repository at this point in the history
- Replace obsolete "Firefox First party isolation" with "Firefox state
  partitioning".
- Add comprehensive documentation for the new scripts.
- Introduce enabling dynamic First-Party Isolation (dFPI)
- Disable deprecated First-Party Isolation (FPI) to avoid conflicts with
  dFPI.
- Add script to enable Firefox network partitioning to cover
  functionality of older FPI script.
  • Loading branch information
undergroundwires committed Oct 3, 2023
1 parent e8a52f7 commit c1a01f4
Show file tree
Hide file tree
Showing 9 changed files with 25,008 additions and 13 deletions.
7,051 changes: 7,051 additions & 0 deletions all-commits.txt

Large diffs are not rendered by default.

9,092 changes: 9,092 additions & 0 deletions combined_results.txt

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions find.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash

# Replace with your pattern
pattern="event propagation"

# Read each line from the file
while IFS= read -r sha; do
# Use git show to get the commit info and grep to search for the pattern
if git show "$sha" | grep -Eq "$pattern"; then
commit_date=$(git show -s --format=%ci "$sha")
echo "Pattern found in commit $sha ($commit_date)"
git log -1 --pretty=format:"%s" "$sha"
# git --no-pager show "$sha"
echo
echo "---------------------------------"
fi
done < combined_results.txt
4 changes: 4 additions & 0 deletions history.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash
git fsck --full --no-reflogs --unreachable --dangling | awk '{print $3}' > tmp.txt
cat tmp.txt | sort | uniq > combined_results.txt
rm tmp.txt
Loading

0 comments on commit c1a01f4

Please sign in to comment.