Skip to content

Commit 1836a6b

Browse files
committed
5.0.1 / chrome-2015.3.31
1 parent 57a9f9c commit 1836a6b

File tree

6 files changed

+77
-73
lines changed

6 files changed

+77
-73
lines changed

chromium/manifest.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@
1212
"background.js"
1313
]
1414
},
15+
"browser_action": {
16+
"default_icon": {
17+
"38": "icon38.png"
18+
},
19+
"default_popup": "popup.html",
20+
"default_title": "__MSG_about_ext_name__"
21+
},
1522
"default_locale": "en",
1623
"description": "__MSG_about_ext_description__",
1724
"devtools_page": "devtools.html",
@@ -25,21 +32,14 @@
2532
"manifest_version": 2,
2633
"minimum_chrome_version": "18",
2734
"name": "__MSG_about_ext_name__",
28-
"browser_action": {
29-
"default_icon": {
30-
"38": "icon38.png"
31-
},
32-
"default_popup": "popup.html",
33-
"default_title": "__MSG_about_ext_name__"
34-
},
3535
"permissions": [
3636
"webRequest",
3737
"webRequestBlocking",
3838
"tabs",
3939
"cookies",
40-
"storage",
40+
"storage",
4141
"<all_urls>"
4242
],
4343
"update_url": "https://www.eff.org/files/https-everywhere-chrome-updates.xml",
44-
"version": "2015.3.23"
45-
}
44+
"version": "2015.3.31"
45+
}

https-everywhere-tests/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ implement them as automated tests:
3838
- Visit an HTTPS site that contains passive mixed content that is not rewritten
3939
to HTTPS. https://jacob.hoffman-andrews.com/passive-mixed-content.html is a
4040
good example. Verify the passive mixed content (e.g., image) does not load.
41-
NOTE: Currently fails. https://github.com/EFForg/https-everywhere/issues/857
4241
- Click icon menu, click 'About HTTPS Everywhere.' Verify dialog opens.
4342
- Click icon menu, click 'SSL Observatory Preferences.' Verify dialog opens.
4443
- Click icon menu, click 'Disable HTTPS Everywhere.' Verify icon turns grey.

src/Changelog

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
Firefox 5.0 / Chrome-2015.03.23 (2015-03-23)
1+
Firefox 5.0.1 / Chrome-2015.3.31 (2015-03-31)
2+
* Disabled some broken rulesets.
3+
* Fixed and updated many rulesets.
4+
* Better null checking in Firefox.
5+
* Add "Block All HTTP Requests" in Chrome.
6+
7+
Firefox 5.0 / Chrome-2015.3.23 (2015-03-23)
28
* First stable 5.0 release
39
Versus 4.0.3:
410
* Many new rulesets.

src/chrome/content/about.xul

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
<groupbox>
2323
<caption label="&https-everywhere.about.version;" />
24-
<label>5.0</label>
24+
<label>5.0.1</label>
2525
</groupbox>
2626

2727
<groupbox>

0 commit comments

Comments
 (0)