Browse Source

A few improvements

pull/4/head
AaronDewes 4 years ago
parent
commit
a5a9104e77
  1. 2
      .jshintrc
  2. 3
      README.md
  3. 7
      src/about.html
  4. 4
      tools/make-clean.sh
  5. 2
      tools/make-firefox-meta.py

2
.jshintrc

@ -4,7 +4,7 @@
"eqeqeq": true, "eqeqeq": true,
"esversion": 8, "esversion": 8,
"globals": { "globals": {
"browser": false, // global variable in Firefox, Edge
"browser": false,
"self": false, "self": false,
"chrome": false, "chrome": false,
"log": false, "log": false,

3
README.md

@ -2,7 +2,8 @@
Definitely for advanced users. Definitely for advanced users.
This is a fork of the now-discontinued uMatrix. My focus will be on keeping it working on Firefox for now. I'll do my best to keep it working, but sadly no guarantees. Help will always be welcome!
This is a fork of the now-discontinued [uMatrix](https://github.com/gorhill/uMatrix).
My focus will be on keeping it working on Firefox for now. I'll do my best to keep it working, but sadly no guarantees. Help will always be welcome!
*** ***

7
src/about.html

@ -22,6 +22,7 @@ ul {
<h3>nuTensor <span id="aboutVersion"></span></h3> <h3>nuTensor <span id="aboutVersion"></span></h3>
<ul> <ul>
<li>Copyright (c) Raymond Hill 2013-2020<br> <li>Copyright (c) Raymond Hill 2013-2020<br>
<li>Copyright (c) Ian Parker 2020<br>
<li>&nbsp; <li>&nbsp;
<li><span id="aboutStorageUsed"></span><br> <li><span id="aboutStorageUsed"></span><br>
<li>&nbsp; <li>&nbsp;
@ -32,9 +33,9 @@ ul {
<li><a href="https://github.com/geekprojects/nuTensor/issues" data-i18n="aboutIssues"></a><br> <li><a href="https://github.com/geekprojects/nuTensor/issues" data-i18n="aboutIssues"></a><br>
<li><span data-i18n="aboutContributors"></span> <li><span data-i18n="aboutContributors"></span>
<ul> <ul>
<li><span data-i18n="aboutCodeContributors"></span> <a href="https://github.com/gorhill/uMatrix/graphs/contributors">uMatrix, <a href="https://github.com/gorhill/httpswitchboard/graphs/contributors">HTTP Switchboard</a>
<li><span data-i18n="aboutIssueContributors"></span> <a href="https://github.com/gorhill/uMatrix/issues?q=is%3Aissue">uMatrix</a>, <a href="https://github.com/gorhill/httpswitchboard/issues?q=is%3Aissue">HTTP Switchboard</a>
<li><span data-i18n="aboutTranslationContributors"></span> <a href="https://github.com/gorhill/uMatrix/wiki/Translation-work-contributors">Crowdin</a>
<li><span data-i18n="aboutCodeContributors"></span> <a href="https://github.com/geekprojects/nuTensor/graphs/contributors">nuTensor, <a href="https://github.com/gorhill/httpswitchboard/graphs/contributors">HTTP Switchboard</a>
<li><span data-i18n="aboutIssueContributors"></span> <a href="https://github.com/geekprojects/nuTensor/issues?q=is%3Aissue">nuTensor</a>, <a href="https://github.com/gorhill/httpswitchboard/issues?q=is%3Aissue">HTTP Switchboard</a>
<li><span data-i18n="aboutTranslationContributors"></span> <a href="https://github.com/geekprojects/nuTensor/wiki/Translation-work-contributors">Crowdin</a>
</ul> </ul>
<li><a href="https://github.com/bestiejs/punycode.js" target="_blank">Punycode.js</a> by <a href="https://github.com/mathiasbynens">Mathias Bynens</a> <li><a href="https://github.com/bestiejs/punycode.js" target="_blank">Punycode.js</a> by <a href="https://github.com/mathiasbynens">Mathias Bynens</a>
<li><a href="https://fontawesome.com/" target="_blank">Font Awesome</a> by <a href="https://github.com/davegandy">Dave Gandy</a> <li><a href="https://fontawesome.com/" target="_blank">Font Awesome</a> by <a href="https://github.com/davegandy">Dave Gandy</a>

4
tools/make-clean.sh

@ -2,6 +2,6 @@
# #
# This script assumes a linux environment # This script assumes a linux environment
echo "*** uMatrix(Chromium): Cleaning."
echo "*** nuTensor(Chromium): Cleaning."
rm -R ./dist/build rm -R ./dist/build
echo "*** uMatrix(Chromium): Cleaned."
echo "*** nuTensor(Chromium): Cleaned."

2
tools/make-firefox-meta.py

@ -25,7 +25,7 @@ match = re.search('^\d+\.\d+\.\d+(b|rc)', version)
if not match: if not match:
# https://bugzilla.mozilla.org/show_bug.cgi?id=1459007 # https://bugzilla.mozilla.org/show_bug.cgi?id=1459007
# By design Firefox opens the sidebar with new installation of # By design Firefox opens the sidebar with new installation of
# uMatrix when sidebar_action is present in the manifest.
# nuTensor when sidebar_action is present in the manifest.
# Remove sidebarAction support for stable release of uBO. # Remove sidebarAction support for stable release of uBO.
del webext_manifest['sidebar_action'] del webext_manifest['sidebar_action']

Loading…
Cancel
Save