Skip to content

Commit 97ed1ed

Browse files
committedApr 10, 2023
4.9.63
1 parent 456d7cc commit 97ed1ed

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 4.9.63 (Apr 10, 2023)
2+
3+
- Site toggle panel (detect dark theme and shortcut).
4+
- App toggle panel (automation and shortcut).
5+
- Improved Site List indexing.
6+
17
## 4.9.62 (Jan 8, 2023)
28

39
- Fixed a edge case with extracting color numbers, it's now able to extract `rgb(0 0 0/0.04)`. (#10565)

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ Please note that if you encounter error `Too many open files (os error 24)`, the
4545

4646
Prior to publication, extension stores provide digital signatures for extensions. These digital signatures certify the integrity of the archive (that extension bundle did not get corrupted or bit-rotted) and that extension store preformed very basic extension validation.
4747

48-
Dark Reader repository contains these digital signatures and you can add them to the extension bundle. The following will build Dark Reader for Firefox version 4.9.62:
48+
Dark Reader repository contains these digital signatures and you can add them to the extension bundle. The following will build Dark Reader for Firefox version 4.9.63:
4949
```
50-
npm run build -- --firefox --version=4.9.62
50+
npm run build -- --firefox --version=4.9.63
5151
```
5252

5353
Please note that only Firefox Add-ons store signatures are present in the repositiry right now. Also, due to NodeJS and TypeScript version compatibility, one might have to first check out the old revision (commit), then build the extension files, then check out the recent commit and create the bundle (by running only `signature` and `zip` steps).

‎package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "darkreader",
3-
"version": "4.9.62",
3+
"version": "4.9.63",
44
"description": "Dark mode for every website",
55
"scripts": {
66
"api": "node --max-old-space-size=3072 tasks/cli.js build --api",

‎src/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "Dark Reader",
4-
"version": "4.9.62",
4+
"version": "4.9.63",
55
"author": "Alexander Shutau",
66
"description": "__MSG_extension_description__",
77
"default_locale": "en",

‎tasks/cli.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ async function ensureGitClean() {
8888
* dependencies which is identical to already published version serves as a proof
8989
* that the published version was always free of (now known) vulnerabilities.
9090
*
91-
* @param {string} version The desired git version, e.g., 'v4.9.62' or 'v4.9.37.1'
91+
* @param {string} version The desired git version, e.g., 'v4.9.63' or 'v4.9.37.1'
9292
* @param {boolean} fixVulnerabilities Whether of not to attempt to fix known vulnerabilities
9393
*/
9494
async function checkoutVersion(version, fixVulnerabilities) {

0 commit comments

Comments
 (0)
Please sign in to comment.