forked from NanoAdblocker/NanoCore2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path00_1_version_parsing.patch
39 lines (36 loc) · 1.41 KB
/
00_1_version_parsing.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
diff --git a/platform/chromium/vapi-background.js b/platform/chromium/vapi-background.js
index fc3caa47..03737aab 100644
--- a/platform/chromium/vapi-background.js
+++ b/platform/chromium/vapi-background.js
@@ -57,16 +57,8 @@ window.addEventListener('webextFlavor', function() {
/******************************************************************************/
vAPI.app = {
- name: manifest.name.replace(/ dev\w+ build/, ''),
- version: (( ) => {
- let version = manifest.version;
- const match = /(\d+\.\d+\.\d+)(?:\.(\d+))?/.exec(version);
- if ( match && match[2] ) {
- const v = parseInt(match[2], 10);
- version = match[1] + (v < 100 ? 'b' + v : 'rc' + (v - 100));
- }
- return version;
- })(),
+ name: manifest.name,
+ version: manifest.version,
intFromVersion: function(s) {
const parts = s.match(/(?:^|\.|b|rc)\d+/g);
diff --git a/platform/chromium/vapi-common.js b/platform/chromium/vapi-common.js
index 30e09c57..38076516 100644
--- a/platform/chromium/vapi-common.js
+++ b/platform/chromium/vapi-common.js
@@ -51,11 +51,6 @@ vAPI.webextFlavor = {
// This is always true.
soup.add('ublock').add('webext');
- // Whether this is a dev build.
- if ( /^\d+\.\d+\.\d+\D/.test(browser.runtime.getManifest().version) ) {
- soup.add('devbuild');
- }
-
if ( /\bMobile\b/.test(ua) ) {
soup.add('mobile');
}