From b2f09f89b5d5f1bf35d0e9587c87d248eeb4a45c Mon Sep 17 00:00:00 2001 From: Ian Parker Date: Mon, 21 Sep 2020 19:24:17 +0100 Subject: [PATCH] Rebranding: Initial work on renaming to nuTensor --- CONTRIBUTING.md | 3 +-- assets/assets.json | 2 +- doc/README.md | 22 +++++++++++----------- platform/chromium/manifest.json | 8 ++++---- platform/chromium/vapi.js | 4 ++-- platform/firefox/manifest.json | 8 ++++---- src/about.html | 12 ++++++------ src/background.html | 2 +- src/hosts-files.html | 2 +- src/popup.html | 4 ++-- src/settings.html | 2 +- 11 files changed, 34 insertions(+), 35 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a763b46..bc2a52e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,5 +1,4 @@ ### Submitting issues -Submit on . +Submit on . -Issue tracker here is read-only for non-[prior contributors](https://github.com/gorhill/uMatrix/graphs/contributors). diff --git a/assets/assets.json b/assets/assets.json index 34ba468..d75947a 100644 --- a/assets/assets.json +++ b/assets/assets.json @@ -3,7 +3,7 @@ "content": "internal", "updateAfter": 13, "contentURL": [ - "https://raw.githubusercontent.com/gorhill/uMatrix/master/assets/assets.json", + "https://raw.githubusercontent.com/geekprojects/nuTensor/master/assets/assets.json", "assets/assets.json" ] }, diff --git a/doc/README.md b/doc/README.md index e722dc7..8d3e7e2 100644 --- a/doc/README.md +++ b/doc/README.md @@ -2,16 +2,16 @@ #### Chromium -- Download and unzip `uMatrix.chromium.zip` ([latest release desirable](https://github.com/gorhill/uMatrix/releases)). -- Rename the unzipped directory to `umatrix` - - When you later update manually, replace the **content** of the `umatrix` folder with the **content** of the latest zipped version. +- Download and unzip `nuTensor.chromium.zip` ([latest release desirable](https://github.com/geekprojects/nuTensor/releases)). +- Rename the unzipped directory to `nuTensor` + - When you later update manually, replace the **content** of the `nuTensor` folder with the **content** of the latest zipped version. - This will ensure that all the extension settings will be preserved - As long as the extension loads **from same folder path from which it was originally installed**, all your settings will be preserved. - Go to chromium/chrome *Extensions*. - Click to check *Developer mode*. - Click *Load unpacked extension...*. - In the file selector dialog: - - Select the directory `umatrix` which was created above. + - Select the directory `nuTensor` which was created above. - Click *Open*. The extension will now be available in your chromium/chromium-based browser. @@ -22,16 +22,16 @@ Remember that you have to update manually also. For some users, updating manuall #### Firefox -Although uMatrix is a restartless addon, I found that **installing** a newer version over an older one often will glitch the installation. These steps always worked fine: +Although nuTensor is a restartless addon, I found that **installing** a newer version over an older one often will glitch the installation. These steps always worked fine: -- Download `uMatrix.firefox.xpi` ([latest release desirable](https://github.com/gorhill/uMatrix/releases)). -- Uninstall current uMatrix if already installed +- Download `nuTensor.firefox.xpi` ([latest release desirable](https://github.com/geekprojects/nuTensor/releases)). +- Uninstall current nuTensor if already installed - Quit Firefox completely - Launch Firefox -- Drag and drop the previously downloaded `uMatrix.firefox.xpi` into Firefox +- Drag and drop the previously downloaded `nuTensor.firefox.xpi` into Firefox -uMatrix settings are kept intact even after you uninstall the addon. +nuTensor settings are kept intact even after you uninstall the addon. -On Linux, the settings are saved in a SQlite file located at `~/.mozilla/firefox/[profile name]/extension-data/umatrix.sqlite`. +On Linux, the settings are saved in a SQlite file located at `~/.mozilla/firefox/[profile name]/extension-data/nuTensor.sqlite`. -On Windows, the settings are saved in a SQlite file located at `%APPDATA%\Mozilla\Firefox\Profiles\[profile name]\extension-data\umatrix.sqlite`. +On Windows, the settings are saved in a SQlite file located at `%APPDATA%\Mozilla\Firefox\Profiles\[profile name]\extension-data\nuTensor.sqlite`. diff --git a/platform/chromium/manifest.json b/platform/chromium/manifest.json index 2ce4b5c..cedbf04 100644 --- a/platform/chromium/manifest.json +++ b/platform/chromium/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, - "name": "uMatrix", - "short_name": "uMatrix", + "name": "nuTensor", + "short_name": "nuTensor", "version": "1.3.3.8", "description": "__MSG_extShortDesc__", "icons": { @@ -12,7 +12,7 @@ "default_icon": { "19": "img/browsericons/icon19-19.png" }, - "default_title": "uMatrix", + "default_title": "nuTensor", "default_popup": "popup.html" }, "author": "Raymond Hill", @@ -34,7 +34,7 @@ } ], "default_locale": "en", - "homepage_url": "https://github.com/gorhill/uMatrix/wiki", + "homepage_url": "https://github.com/geekprojects/nuTensor", "minimum_chrome_version": "45.0", "options_ui": { "page": "dashboard.html", diff --git a/platform/chromium/vapi.js b/platform/chromium/vapi.js index 10fc4f9..a45db6a 100644 --- a/platform/chromium/vapi.js +++ b/platform/chromium/vapi.js @@ -59,10 +59,10 @@ if ( /^image\/|^text\/plain/.test(document.contentType || '') === false ) && ( - self.vAPI instanceof Object === false || vAPI.uMatrix !== true + self.vAPI instanceof Object === false || vAPI.nuTensor !== true ) ) { - vAPI = self.vAPI = { uMatrix: true }; + vAPI = self.vAPI = { nuTensor: true }; } diff --git a/platform/firefox/manifest.json b/platform/firefox/manifest.json index e6d33fa..41cddd0 100644 --- a/platform/firefox/manifest.json +++ b/platform/firefox/manifest.json @@ -1,7 +1,7 @@ { "browser_specific_settings": { "gecko": { - "id": "uMatrix@raymondhill.net", + "id": "nuTensor@geekprojects.com", "strict_min_version": "56.0a1" } }, @@ -14,7 +14,7 @@ "default_icon": { "19": "img/browsericons/icon19-off.png" }, - "default_title": "uMatrix", + "default_title": "nuTensor", "default_popup": "popup.html" }, "content_scripts": [ @@ -38,7 +38,7 @@ "128": "img/icon_128.png" }, "manifest_version": 2, - "name": "uMatrix", + "name": "nuTensor", "options_ui": { "page":"dashboard.html", "open_in_tab": true @@ -55,7 +55,7 @@ "webRequestBlocking", "" ], - "short_name": "uMatrix", + "short_name": "nuTensor", "sidebar_action": { "default_title": "__MSG_loggerPageName__", "default_panel": "logger-ui.html", diff --git a/src/about.html b/src/about.html index f01e93c..f4fd06d 100644 --- a/src/about.html +++ b/src/about.html @@ -2,7 +2,7 @@ -uMatrix — About +nuTensor — About