Skip to content

Commit

Permalink
0.13 release
Browse files Browse the repository at this point in the history
Improve performance of the code injection. See the bachelor thesis of Martin Zmitko (https://www.vut.cz/en/students/final-thesis/detail/147218) for more details.

* The code is no longer generated in the background due to the latency of passing huge messages from
  background to content scripts.
* Optimize injection code size (remove duplicate code).
* Do not generate xray wrapper when in Chromium-based browsers.
  • Loading branch information
polcak committed Jun 29, 2023
1 parent 79d830e commit eea83f2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chrome/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,5 @@
],
"optional_permissions": ["browsingData"],
"short_name": "JShelter",
"version": "0.12.2"
"version": "0.13"
}
2 changes: 1 addition & 1 deletion firefox/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
],
"optional_permissions": ["browsingData"],
"short_name": "JShelter",
"version": "0.12.2",
"version": "0.13",
"browser_specific_settings": {
"gecko": {
"id": "jsr@javascriptrestrictor",
Expand Down
9 changes: 9 additions & 0 deletions website/content/pages/versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
title: Release history
---

## 0.13

Improve performance of the code injection. See the bachelor thesis of Martin Zmitko (https://www.vut.cz/en/students/final-thesis/detail/147218) for more details.

* The code is no longer generated in the background due to the latency of passing huge messages from
background to content scripts.
* Optimize injection code size (remove duplicate code).
* Do not generate xray wrapper when in Chromium-based browsers.

## 0.12.2

* Reimplement AudioBuffer.prototype.copyFromChannel to prevent multiple farbling of the same data
Expand Down

0 comments on commit eea83f2

Please sign in to comment.