mirror of
https://github.com/zvx-echo6/meshai.git
synced 2026-08-26 17:31:34 +00:00
feat(region-routing): unified per-family routing cards + region-scoped family→channel routing (#87)
* feat(region-routing): P1 tagging + region_routes primitive + read/write API + preview launcher - config.py: add Coverage.region_tagging (bool=False); add RegionRouteMatrix dataclass (enabled, cells) above NotificationsConfig; add region_routes field to NotificationsConfig; add explicit hydration branch for region_routes in _dict_to_dataclass mirroring destinations pattern. - coverage_area.py: add MonitoringArea.name (str|None=None, frozen); update areas_from_config to preserve name; refactor inline geom extraction from classify_event_areas into shared _event_geom_json helper; add matching_area_names(geom_json, areas)->list[str] (additive, all named matches, config-order, deduped; gate unchanged); add event_region_names convenience wrapper. - coverage_filter.py: add region_tagging ctor kwarg; stamp event.region/ regions before the gate when region_tagging=True and areas non-empty and not event.regions (never clobbers satpass preset). - pipeline/__init__.py: wire region_tagging into CoverageFilter construction. - notification_routes.py: add GET /notifications/regions (named coverage area names, config-order, deduped); GET /notifications/region-routing (matrix as JSON); POST /notifications/region-routing (explicit RMW — only region_routes changes, toggles/rules/destinations survive). - scripts/preview_dashboard.py: mesh-free launcher — dashboard API only, no mesh connector, no broadcast loop; vite runs separately. All 87 coverage tests pass; 300 total pass; 6 pre-existing failures unchanged (adapter config count mismatch + MeshCore EventType.NEW_CONTACT). * feat(region-routing): manual region x family matrix editor page Adds RegionRoutingMatrix.tsx — a plain editor over the region_routes config primitive. Rows = families (via useFamilies()), cols = regions (from GET /api/notifications/regions). Each cell exposes MT channel (ChannelPicker single + includeDisabled), MC channel name (text input), min_severity select (routine/priority/critical/immediate), and an enabled checkbox. Only cells where MT or MC is set are included in the sparse POST payload. Master enable toggle maps to top-level enabled. MT budget guard warns when more than 7 distinct MT indices are in use. Sticky family column; horizontal scroll for wide region sets. Registers route /region-routing in App.tsx and adds "Region Routing" nav entry (Map icon) under the Meshtastic section in Layout.tsx, immediately after Routing. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix(region-routing): regions endpoint reads saved (disk) coverage so routing columns are dynamic without a bot restart; preview reloads config after writes * feat(routing): unify MT/MC routing into per-family cards; region routing as an in-card expand; remove rules/destinations UI + standalone page * refactor(routing): move Meshtastic Routing from /notifications to /meshtastic/routing (mirror /meshcore/routing); redirect legacy path * feat(region-routing): dispatcher honors region_routes matrix (authoritative-on-match, per-region cooldown, per-channel dedup); non-matrix path unchanged Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(region-routing): matrix dedup key must match boot-restore 2-tuple form (prevents restart re-broadcast flood); regression test --------- Co-authored-by: Matt Johnson <mj@k7zvx.com> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
ceb95fb80e
commit
2c46c9104d
8638 changed files with 1589821 additions and 2380 deletions
5
work/dashboard-frontend/node_modules/electron-to-chromium/LICENSE
generated
vendored
Normal file
5
work/dashboard-frontend/node_modules/electron-to-chromium/LICENSE
generated
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Copyright 2018 Kilian Valkhof
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
186
work/dashboard-frontend/node_modules/electron-to-chromium/README.md
generated
vendored
Normal file
186
work/dashboard-frontend/node_modules/electron-to-chromium/README.md
generated
vendored
Normal file
|
|
@ -0,0 +1,186 @@
|
|||
### Made by [@kilianvalkhof](https://twitter.com/kilianvalkhof)
|
||||
|
||||
#### Other projects:
|
||||
|
||||
- 💻 [Polypane](https://polypane.app) - Develop responsive websites and apps twice as fast on multiple screens at once
|
||||
- 🖌️ [Superposition](https://superposition.design) - Kickstart your design system by extracting design tokens from your website
|
||||
- 🗒️ [FromScratch](https://fromscratch.rocks) - A smart but simple autosaving scratchpad
|
||||
|
||||
---
|
||||
|
||||
# Electron-to-Chromium [](https://www.npmjs.com/package/electron-to-chromium) [](https://www.npmjs.com/package/electron-to-chromium) [](https://codecov.io/gh/Kilian/electron-to-chromium)[](https://app.fossa.io/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium?ref=badge_shield)
|
||||
|
||||
This repository provides a mapping of Electron versions to the Chromium version that it uses.
|
||||
|
||||
This package is used in [Browserslist](https://github.com/ai/browserslist), so you can use e.g. `electron >= 1.4` in [Autoprefixer](https://github.com/postcss/autoprefixer), [Stylelint](https://github.com/stylelint/stylelint), [babel-preset-env](https://github.com/babel/babel-preset-env) and [eslint-plugin-compat](https://github.com/amilajack/eslint-plugin-compat).
|
||||
|
||||
**Supported by:**
|
||||
|
||||
<a href="https://m.do.co/c/bb22ea58e765">
|
||||
<img src="https://opensource.nyc3.cdn.digitaloceanspaces.com/attribution/assets/SVG/DO_Logo_horizontal_blue.svg" width="201px">
|
||||
</a>
|
||||
|
||||
|
||||
## Install
|
||||
Install using `npm install electron-to-chromium`.
|
||||
|
||||
## Usage
|
||||
To include Electron-to-Chromium, require it:
|
||||
|
||||
```js
|
||||
var e2c = require('electron-to-chromium');
|
||||
```
|
||||
|
||||
### Properties
|
||||
The Electron-to-Chromium object has 4 properties to use:
|
||||
|
||||
#### `versions`
|
||||
An object of key-value pairs with a _major_ Electron version as the key, and the corresponding major Chromium version as the value.
|
||||
|
||||
```js
|
||||
var versions = e2c.versions;
|
||||
console.log(versions['1.4']);
|
||||
// returns "53"
|
||||
```
|
||||
|
||||
#### `fullVersions`
|
||||
An object of key-value pairs with a Electron version as the key, and the corresponding full Chromium version as the value.
|
||||
|
||||
```js
|
||||
var versions = e2c.fullVersions;
|
||||
console.log(versions['1.4.11']);
|
||||
// returns "53.0.2785.143"
|
||||
```
|
||||
|
||||
#### `chromiumVersions`
|
||||
An object of key-value pairs with a _major_ Chromium version as the key, and the corresponding major Electron version as the value.
|
||||
|
||||
```js
|
||||
var versions = e2c.chromiumVersions;
|
||||
console.log(versions['54']);
|
||||
// returns "1.4"
|
||||
```
|
||||
|
||||
#### `fullChromiumVersions`
|
||||
An object of key-value pairs with a Chromium version as the key, and an array of the corresponding major Electron versions as the value.
|
||||
|
||||
```js
|
||||
var versions = e2c.fullChromiumVersions;
|
||||
console.log(versions['54.0.2840.101']);
|
||||
// returns ["1.5.1", "1.5.0"]
|
||||
```
|
||||
### Functions
|
||||
|
||||
#### `electronToChromium(query)`
|
||||
Arguments:
|
||||
* Query: string or number, required. A major or full Electron version.
|
||||
|
||||
A function that returns the corresponding Chromium version for a given Electron function. Returns a string.
|
||||
|
||||
If you provide it with a major Electron version, it will return a major Chromium version:
|
||||
|
||||
```js
|
||||
var chromeVersion = e2c.electronToChromium('1.4');
|
||||
// chromeVersion is "53"
|
||||
```
|
||||
|
||||
If you provide it with a full Electron version, it will return the full Chromium version.
|
||||
|
||||
```js
|
||||
var chromeVersion = e2c.electronToChromium('1.4.11');
|
||||
// chromeVersion is "53.0.2785.143"
|
||||
```
|
||||
|
||||
If a query does not match a Chromium version, it will return `undefined`.
|
||||
|
||||
```js
|
||||
var chromeVersion = e2c.electronToChromium('9000');
|
||||
// chromeVersion is undefined
|
||||
```
|
||||
|
||||
#### `chromiumToElectron(query)`
|
||||
Arguments:
|
||||
* Query: string or number, required. A major or full Chromium version.
|
||||
|
||||
Returns a string with the corresponding Electron version for a given Chromium query.
|
||||
|
||||
If you provide it with a major Chromium version, it will return a major Electron version:
|
||||
|
||||
```js
|
||||
var electronVersion = e2c.chromiumToElectron('54');
|
||||
// electronVersion is "1.4"
|
||||
```
|
||||
|
||||
If you provide it with a full Chrome version, it will return an array of full Electron versions.
|
||||
|
||||
```js
|
||||
var electronVersions = e2c.chromiumToElectron('56.0.2924.87');
|
||||
// electronVersions is ["1.6.3", "1.6.2", "1.6.1", "1.6.0"]
|
||||
```
|
||||
|
||||
If a query does not match an Electron version, it will return `undefined`.
|
||||
|
||||
```js
|
||||
var electronVersion = e2c.chromiumToElectron('10');
|
||||
// electronVersion is undefined
|
||||
```
|
||||
|
||||
#### `electronToBrowserList(query)` **DEPRECATED**
|
||||
Arguments:
|
||||
* Query: string or number, required. A major Electron version.
|
||||
|
||||
_**Deprecated**: Browserlist already includes electron-to-chromium._
|
||||
|
||||
A function that returns a [Browserslist](https://github.com/ai/browserslist) query that matches the given major Electron version. Returns a string.
|
||||
|
||||
If you provide it with a major Electron version, it will return a Browserlist query string that matches the Chromium capabilities:
|
||||
|
||||
```js
|
||||
var query = e2c.electronToBrowserList('1.4');
|
||||
// query is "Chrome >= 53"
|
||||
```
|
||||
|
||||
If a query does not match a Chromium version, it will return `undefined`.
|
||||
|
||||
```js
|
||||
var query = e2c.electronToBrowserList('9000');
|
||||
// query is undefined
|
||||
```
|
||||
|
||||
### Importing just versions, fullVersions, chromiumVersions and fullChromiumVersions
|
||||
All lists can be imported on their own, if file size is a concern.
|
||||
|
||||
#### `versions`
|
||||
|
||||
```js
|
||||
var versions = require('electron-to-chromium/versions');
|
||||
```
|
||||
|
||||
#### `fullVersions`
|
||||
|
||||
```js
|
||||
var fullVersions = require('electron-to-chromium/full-versions');
|
||||
```
|
||||
|
||||
#### `chromiumVersions`
|
||||
|
||||
```js
|
||||
var chromiumVersions = require('electron-to-chromium/chromium-versions');
|
||||
```
|
||||
|
||||
#### `fullChromiumVersions`
|
||||
|
||||
```js
|
||||
var fullChromiumVersions = require('electron-to-chromium/full-chromium-versions');
|
||||
```
|
||||
|
||||
## Updating
|
||||
This package will be updated with each new Electron release.
|
||||
|
||||
To update the list, run `npm run build.js`. Requires internet access as it downloads from the canonical list of Electron versions.
|
||||
|
||||
To verify correct behaviour, run `npm test`.
|
||||
|
||||
|
||||
## License
|
||||
[](https://app.fossa.io/projects/git%2Bgithub.com%2FKilian%2Felectron-to-chromium?ref=badge_large)
|
||||
89
work/dashboard-frontend/node_modules/electron-to-chromium/chromium-versions.js
generated
vendored
Normal file
89
work/dashboard-frontend/node_modules/electron-to-chromium/chromium-versions.js
generated
vendored
Normal file
|
|
@ -0,0 +1,89 @@
|
|||
module.exports = {
|
||||
"39": "0.20",
|
||||
"40": "0.21",
|
||||
"41": "0.21",
|
||||
"42": "0.25",
|
||||
"43": "0.27",
|
||||
"44": "0.30",
|
||||
"45": "0.31",
|
||||
"47": "0.36",
|
||||
"49": "0.37",
|
||||
"50": "1.1",
|
||||
"51": "1.2",
|
||||
"52": "1.3",
|
||||
"53": "1.4",
|
||||
"54": "1.4",
|
||||
"56": "1.6",
|
||||
"58": "1.7",
|
||||
"59": "1.8",
|
||||
"61": "2.0",
|
||||
"66": "3.0",
|
||||
"69": "4.0",
|
||||
"72": "5.0",
|
||||
"73": "5.0",
|
||||
"76": "6.0",
|
||||
"78": "7.0",
|
||||
"79": "8.0",
|
||||
"80": "8.0",
|
||||
"82": "9.0",
|
||||
"83": "9.0",
|
||||
"84": "10.0",
|
||||
"85": "10.0",
|
||||
"86": "11.0",
|
||||
"87": "11.0",
|
||||
"89": "12.0",
|
||||
"90": "13.0",
|
||||
"91": "13.0",
|
||||
"92": "14.0",
|
||||
"93": "14.0",
|
||||
"94": "15.0",
|
||||
"95": "16.0",
|
||||
"96": "16.0",
|
||||
"98": "17.0",
|
||||
"99": "18.0",
|
||||
"100": "18.0",
|
||||
"102": "19.0",
|
||||
"103": "20.0",
|
||||
"104": "20.0",
|
||||
"105": "21.0",
|
||||
"106": "21.0",
|
||||
"107": "22.0",
|
||||
"108": "22.0",
|
||||
"110": "23.0",
|
||||
"111": "24.0",
|
||||
"112": "24.0",
|
||||
"114": "25.0",
|
||||
"116": "26.0",
|
||||
"118": "27.0",
|
||||
"119": "28.0",
|
||||
"120": "28.0",
|
||||
"121": "29.0",
|
||||
"122": "29.0",
|
||||
"123": "30.0",
|
||||
"124": "30.0",
|
||||
"125": "31.0",
|
||||
"126": "31.0",
|
||||
"127": "32.0",
|
||||
"128": "32.0",
|
||||
"129": "33.0",
|
||||
"130": "33.0",
|
||||
"131": "34.0",
|
||||
"132": "34.0",
|
||||
"133": "35.0",
|
||||
"134": "35.0",
|
||||
"135": "36.0",
|
||||
"136": "36.0",
|
||||
"137": "37.0",
|
||||
"138": "37.0",
|
||||
"139": "38.0",
|
||||
"140": "38.0",
|
||||
"141": "39.0",
|
||||
"142": "39.0",
|
||||
"143": "40.0",
|
||||
"144": "40.0",
|
||||
"146": "41.0",
|
||||
"147": "42.0",
|
||||
"148": "42.0",
|
||||
"149": "43.0",
|
||||
"150": "43.0"
|
||||
};
|
||||
1
work/dashboard-frontend/node_modules/electron-to-chromium/chromium-versions.json
generated
vendored
Normal file
1
work/dashboard-frontend/node_modules/electron-to-chromium/chromium-versions.json
generated
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"39":"0.20","40":"0.21","41":"0.21","42":"0.25","43":"0.27","44":"0.30","45":"0.31","47":"0.36","49":"0.37","50":"1.1","51":"1.2","52":"1.3","53":"1.4","54":"1.4","56":"1.6","58":"1.7","59":"1.8","61":"2.0","66":"3.0","69":"4.0","72":"5.0","73":"5.0","76":"6.0","78":"7.0","79":"8.0","80":"8.0","82":"9.0","83":"9.0","84":"10.0","85":"10.0","86":"11.0","87":"11.0","89":"12.0","90":"13.0","91":"13.0","92":"14.0","93":"14.0","94":"15.0","95":"16.0","96":"16.0","98":"17.0","99":"18.0","100":"18.0","102":"19.0","103":"20.0","104":"20.0","105":"21.0","106":"21.0","107":"22.0","108":"22.0","110":"23.0","111":"24.0","112":"24.0","114":"25.0","116":"26.0","118":"27.0","119":"28.0","120":"28.0","121":"29.0","122":"29.0","123":"30.0","124":"30.0","125":"31.0","126":"31.0","127":"32.0","128":"32.0","129":"33.0","130":"33.0","131":"34.0","132":"34.0","133":"35.0","134":"35.0","135":"36.0","136":"36.0","137":"37.0","138":"37.0","139":"38.0","140":"38.0","141":"39.0","142":"39.0","143":"40.0","144":"40.0","146":"41.0","147":"42.0","148":"42.0","149":"43.0","150":"43.0"}
|
||||
2845
work/dashboard-frontend/node_modules/electron-to-chromium/full-chromium-versions.js
generated
vendored
Normal file
2845
work/dashboard-frontend/node_modules/electron-to-chromium/full-chromium-versions.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
work/dashboard-frontend/node_modules/electron-to-chromium/full-chromium-versions.json
generated
vendored
Normal file
1
work/dashboard-frontend/node_modules/electron-to-chromium/full-chromium-versions.json
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1807
work/dashboard-frontend/node_modules/electron-to-chromium/full-versions.js
generated
vendored
Normal file
1807
work/dashboard-frontend/node_modules/electron-to-chromium/full-versions.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
work/dashboard-frontend/node_modules/electron-to-chromium/full-versions.json
generated
vendored
Normal file
1
work/dashboard-frontend/node_modules/electron-to-chromium/full-versions.json
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
36
work/dashboard-frontend/node_modules/electron-to-chromium/index.js
generated
vendored
Normal file
36
work/dashboard-frontend/node_modules/electron-to-chromium/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
var versions = require('./versions');
|
||||
var fullVersions = require('./full-versions');
|
||||
var chromiumVersions = require('./chromium-versions');
|
||||
var fullChromiumVersions = require('./full-chromium-versions');
|
||||
|
||||
var electronToChromium = function (query) {
|
||||
var number = getQueryString(query);
|
||||
return number.split('.').length > 2 ? fullVersions[number] : versions[number] || undefined;
|
||||
};
|
||||
|
||||
var chromiumToElectron = function (query) {
|
||||
var number = getQueryString(query);
|
||||
return number.split('.').length > 2 ? fullChromiumVersions[number] : chromiumVersions[number] || undefined;
|
||||
};
|
||||
|
||||
var electronToBrowserList = function (query) {
|
||||
var number = getQueryString(query);
|
||||
return versions[number] ? "Chrome >= " + versions[number] : undefined;
|
||||
};
|
||||
|
||||
var getQueryString = function (query) {
|
||||
var number = query;
|
||||
if (query === 1) { number = "1.0" }
|
||||
if (typeof query === 'number') { number += ''; }
|
||||
return number;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
versions: versions,
|
||||
fullVersions: fullVersions,
|
||||
chromiumVersions: chromiumVersions,
|
||||
fullChromiumVersions: fullChromiumVersions,
|
||||
electronToChromium: electronToChromium,
|
||||
electronToBrowserList: electronToBrowserList,
|
||||
chromiumToElectron: chromiumToElectron
|
||||
};
|
||||
43
work/dashboard-frontend/node_modules/electron-to-chromium/package.json
generated
vendored
Normal file
43
work/dashboard-frontend/node_modules/electron-to-chromium/package.json
generated
vendored
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"name": "electron-to-chromium",
|
||||
"version": "1.5.373",
|
||||
"description": "Provides a list of electron-to-chromium version mappings",
|
||||
"main": "index.js",
|
||||
"files": [
|
||||
"versions.js",
|
||||
"full-versions.js",
|
||||
"chromium-versions.js",
|
||||
"full-chromium-versions.js",
|
||||
"versions.json",
|
||||
"full-versions.json",
|
||||
"chromium-versions.json",
|
||||
"full-chromium-versions.json",
|
||||
"LICENSE"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "node build.mjs",
|
||||
"update": "node automated-update.js",
|
||||
"test": "nyc ava --verbose",
|
||||
"report": "nyc report --reporter=text-lcov > coverage.lcov"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/Kilian/electron-to-chromium.git"
|
||||
},
|
||||
"keywords": [
|
||||
"electron",
|
||||
"chrome",
|
||||
"chromium",
|
||||
"browserslist",
|
||||
"browserlist"
|
||||
],
|
||||
"author": "Kilian Valkhof",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"ava": "^7.0.0",
|
||||
"compare-versions": "^6.1.1",
|
||||
"node-fetch": "^3.3.2",
|
||||
"nyc": "^18.0.0",
|
||||
"shelljs": "^0.10.0"
|
||||
}
|
||||
}
|
||||
255
work/dashboard-frontend/node_modules/electron-to-chromium/versions.js
generated
vendored
Normal file
255
work/dashboard-frontend/node_modules/electron-to-chromium/versions.js
generated
vendored
Normal file
|
|
@ -0,0 +1,255 @@
|
|||
module.exports = {
|
||||
"0.20": "39",
|
||||
"0.21": "41",
|
||||
"0.22": "41",
|
||||
"0.23": "41",
|
||||
"0.24": "41",
|
||||
"0.25": "42",
|
||||
"0.26": "42",
|
||||
"0.27": "43",
|
||||
"0.28": "43",
|
||||
"0.29": "43",
|
||||
"0.30": "44",
|
||||
"0.31": "45",
|
||||
"0.32": "45",
|
||||
"0.33": "45",
|
||||
"0.34": "45",
|
||||
"0.35": "45",
|
||||
"0.36": "47",
|
||||
"0.37": "49",
|
||||
"1.0": "49",
|
||||
"1.1": "50",
|
||||
"1.2": "51",
|
||||
"1.3": "52",
|
||||
"1.4": "53",
|
||||
"1.5": "54",
|
||||
"1.6": "56",
|
||||
"1.7": "58",
|
||||
"1.8": "59",
|
||||
"2.0": "61",
|
||||
"2.1": "61",
|
||||
"3.0": "66",
|
||||
"3.1": "66",
|
||||
"4.0": "69",
|
||||
"4.1": "69",
|
||||
"4.2": "69",
|
||||
"5.0": "73",
|
||||
"6.0": "76",
|
||||
"6.1": "76",
|
||||
"7.0": "78",
|
||||
"7.1": "78",
|
||||
"7.2": "78",
|
||||
"7.3": "78",
|
||||
"8.0": "80",
|
||||
"8.1": "80",
|
||||
"8.2": "80",
|
||||
"8.3": "80",
|
||||
"8.4": "80",
|
||||
"8.5": "80",
|
||||
"9.0": "83",
|
||||
"9.1": "83",
|
||||
"9.2": "83",
|
||||
"9.3": "83",
|
||||
"9.4": "83",
|
||||
"10.0": "85",
|
||||
"10.1": "85",
|
||||
"10.2": "85",
|
||||
"10.3": "85",
|
||||
"10.4": "85",
|
||||
"11.0": "87",
|
||||
"11.1": "87",
|
||||
"11.2": "87",
|
||||
"11.3": "87",
|
||||
"11.4": "87",
|
||||
"11.5": "87",
|
||||
"12.0": "89",
|
||||
"12.1": "89",
|
||||
"12.2": "89",
|
||||
"13.0": "91",
|
||||
"13.1": "91",
|
||||
"13.2": "91",
|
||||
"13.3": "91",
|
||||
"13.4": "91",
|
||||
"13.5": "91",
|
||||
"13.6": "91",
|
||||
"14.0": "93",
|
||||
"14.1": "93",
|
||||
"14.2": "93",
|
||||
"15.0": "94",
|
||||
"15.1": "94",
|
||||
"15.2": "94",
|
||||
"15.3": "94",
|
||||
"15.4": "94",
|
||||
"15.5": "94",
|
||||
"16.0": "96",
|
||||
"16.1": "96",
|
||||
"16.2": "96",
|
||||
"17.0": "98",
|
||||
"17.1": "98",
|
||||
"17.2": "98",
|
||||
"17.3": "98",
|
||||
"17.4": "98",
|
||||
"18.0": "100",
|
||||
"18.1": "100",
|
||||
"18.2": "100",
|
||||
"18.3": "100",
|
||||
"19.0": "102",
|
||||
"19.1": "102",
|
||||
"20.0": "104",
|
||||
"20.1": "104",
|
||||
"20.2": "104",
|
||||
"20.3": "104",
|
||||
"21.0": "106",
|
||||
"21.1": "106",
|
||||
"21.2": "106",
|
||||
"21.3": "106",
|
||||
"21.4": "106",
|
||||
"22.0": "108",
|
||||
"22.1": "108",
|
||||
"22.2": "108",
|
||||
"22.3": "108",
|
||||
"23.0": "110",
|
||||
"23.1": "110",
|
||||
"23.2": "110",
|
||||
"23.3": "110",
|
||||
"24.0": "112",
|
||||
"24.1": "112",
|
||||
"24.2": "112",
|
||||
"24.3": "112",
|
||||
"24.4": "112",
|
||||
"24.5": "112",
|
||||
"24.6": "112",
|
||||
"24.7": "112",
|
||||
"24.8": "112",
|
||||
"25.0": "114",
|
||||
"25.1": "114",
|
||||
"25.2": "114",
|
||||
"25.3": "114",
|
||||
"25.4": "114",
|
||||
"25.5": "114",
|
||||
"25.6": "114",
|
||||
"25.7": "114",
|
||||
"25.8": "114",
|
||||
"25.9": "114",
|
||||
"26.0": "116",
|
||||
"26.1": "116",
|
||||
"26.2": "116",
|
||||
"26.3": "116",
|
||||
"26.4": "116",
|
||||
"26.5": "116",
|
||||
"26.6": "116",
|
||||
"27.0": "118",
|
||||
"27.1": "118",
|
||||
"27.2": "118",
|
||||
"27.3": "118",
|
||||
"28.0": "120",
|
||||
"28.1": "120",
|
||||
"28.2": "120",
|
||||
"28.3": "120",
|
||||
"29.0": "122",
|
||||
"29.1": "122",
|
||||
"29.2": "122",
|
||||
"29.3": "122",
|
||||
"29.4": "122",
|
||||
"30.0": "124",
|
||||
"30.1": "124",
|
||||
"30.2": "124",
|
||||
"30.3": "124",
|
||||
"30.4": "124",
|
||||
"30.5": "124",
|
||||
"31.0": "126",
|
||||
"31.1": "126",
|
||||
"31.2": "126",
|
||||
"31.3": "126",
|
||||
"31.4": "126",
|
||||
"31.5": "126",
|
||||
"31.6": "126",
|
||||
"31.7": "126",
|
||||
"32.0": "128",
|
||||
"32.1": "128",
|
||||
"32.2": "128",
|
||||
"32.3": "128",
|
||||
"33.0": "130",
|
||||
"33.1": "130",
|
||||
"33.2": "130",
|
||||
"33.3": "130",
|
||||
"33.4": "130",
|
||||
"34.0": "132",
|
||||
"34.1": "132",
|
||||
"34.2": "132",
|
||||
"34.3": "132",
|
||||
"34.4": "132",
|
||||
"34.5": "132",
|
||||
"35.0": "134",
|
||||
"35.1": "134",
|
||||
"35.2": "134",
|
||||
"35.3": "134",
|
||||
"35.4": "134",
|
||||
"35.5": "134",
|
||||
"35.6": "134",
|
||||
"35.7": "134",
|
||||
"36.0": "136",
|
||||
"36.1": "136",
|
||||
"36.2": "136",
|
||||
"36.3": "136",
|
||||
"36.4": "136",
|
||||
"36.5": "136",
|
||||
"36.6": "136",
|
||||
"36.7": "136",
|
||||
"36.8": "136",
|
||||
"36.9": "136",
|
||||
"37.0": "138",
|
||||
"37.1": "138",
|
||||
"37.2": "138",
|
||||
"37.3": "138",
|
||||
"37.4": "138",
|
||||
"37.5": "138",
|
||||
"37.6": "138",
|
||||
"37.7": "138",
|
||||
"37.8": "138",
|
||||
"37.9": "138",
|
||||
"37.10": "138",
|
||||
"38.0": "140",
|
||||
"38.1": "140",
|
||||
"38.2": "140",
|
||||
"38.3": "140",
|
||||
"38.4": "140",
|
||||
"38.5": "140",
|
||||
"38.6": "140",
|
||||
"38.7": "140",
|
||||
"38.8": "140",
|
||||
"39.0": "142",
|
||||
"39.1": "142",
|
||||
"39.2": "142",
|
||||
"39.3": "142",
|
||||
"39.4": "142",
|
||||
"39.5": "142",
|
||||
"39.6": "142",
|
||||
"39.7": "142",
|
||||
"39.8": "142",
|
||||
"40.0": "144",
|
||||
"40.1": "144",
|
||||
"40.2": "144",
|
||||
"40.3": "144",
|
||||
"40.4": "144",
|
||||
"40.5": "144",
|
||||
"40.6": "144",
|
||||
"40.7": "144",
|
||||
"40.8": "144",
|
||||
"40.9": "144",
|
||||
"40.10": "144",
|
||||
"41.0": "146",
|
||||
"41.1": "146",
|
||||
"41.2": "146",
|
||||
"41.3": "146",
|
||||
"41.4": "146",
|
||||
"41.5": "146",
|
||||
"41.6": "146",
|
||||
"41.7": "146",
|
||||
"42.0": "148",
|
||||
"42.1": "148",
|
||||
"42.2": "148",
|
||||
"42.3": "148",
|
||||
"42.4": "148",
|
||||
"43.0": "150"
|
||||
};
|
||||
1
work/dashboard-frontend/node_modules/electron-to-chromium/versions.json
generated
vendored
Normal file
1
work/dashboard-frontend/node_modules/electron-to-chromium/versions.json
generated
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"0.20":"39","0.21":"41","0.22":"41","0.23":"41","0.24":"41","0.25":"42","0.26":"42","0.27":"43","0.28":"43","0.29":"43","0.30":"44","0.31":"45","0.32":"45","0.33":"45","0.34":"45","0.35":"45","0.36":"47","0.37":"49","1.0":"49","1.1":"50","1.2":"51","1.3":"52","1.4":"53","1.5":"54","1.6":"56","1.7":"58","1.8":"59","2.0":"61","2.1":"61","3.0":"66","3.1":"66","4.0":"69","4.1":"69","4.2":"69","5.0":"73","6.0":"76","6.1":"76","7.0":"78","7.1":"78","7.2":"78","7.3":"78","8.0":"80","8.1":"80","8.2":"80","8.3":"80","8.4":"80","8.5":"80","9.0":"83","9.1":"83","9.2":"83","9.3":"83","9.4":"83","10.0":"85","10.1":"85","10.2":"85","10.3":"85","10.4":"85","11.0":"87","11.1":"87","11.2":"87","11.3":"87","11.4":"87","11.5":"87","12.0":"89","12.1":"89","12.2":"89","13.0":"91","13.1":"91","13.2":"91","13.3":"91","13.4":"91","13.5":"91","13.6":"91","14.0":"93","14.1":"93","14.2":"93","15.0":"94","15.1":"94","15.2":"94","15.3":"94","15.4":"94","15.5":"94","16.0":"96","16.1":"96","16.2":"96","17.0":"98","17.1":"98","17.2":"98","17.3":"98","17.4":"98","18.0":"100","18.1":"100","18.2":"100","18.3":"100","19.0":"102","19.1":"102","20.0":"104","20.1":"104","20.2":"104","20.3":"104","21.0":"106","21.1":"106","21.2":"106","21.3":"106","21.4":"106","22.0":"108","22.1":"108","22.2":"108","22.3":"108","23.0":"110","23.1":"110","23.2":"110","23.3":"110","24.0":"112","24.1":"112","24.2":"112","24.3":"112","24.4":"112","24.5":"112","24.6":"112","24.7":"112","24.8":"112","25.0":"114","25.1":"114","25.2":"114","25.3":"114","25.4":"114","25.5":"114","25.6":"114","25.7":"114","25.8":"114","25.9":"114","26.0":"116","26.1":"116","26.2":"116","26.3":"116","26.4":"116","26.5":"116","26.6":"116","27.0":"118","27.1":"118","27.2":"118","27.3":"118","28.0":"120","28.1":"120","28.2":"120","28.3":"120","29.0":"122","29.1":"122","29.2":"122","29.3":"122","29.4":"122","30.0":"124","30.1":"124","30.2":"124","30.3":"124","30.4":"124","30.5":"124","31.0":"126","31.1":"126","31.2":"126","31.3":"126","31.4":"126","31.5":"126","31.6":"126","31.7":"126","32.0":"128","32.1":"128","32.2":"128","32.3":"128","33.0":"130","33.1":"130","33.2":"130","33.3":"130","33.4":"130","34.0":"132","34.1":"132","34.2":"132","34.3":"132","34.4":"132","34.5":"132","35.0":"134","35.1":"134","35.2":"134","35.3":"134","35.4":"134","35.5":"134","35.6":"134","35.7":"134","36.0":"136","36.1":"136","36.2":"136","36.3":"136","36.4":"136","36.5":"136","36.6":"136","36.7":"136","36.8":"136","36.9":"136","37.0":"138","37.1":"138","37.2":"138","37.3":"138","37.4":"138","37.5":"138","37.6":"138","37.7":"138","37.8":"138","37.9":"138","37.10":"138","38.0":"140","38.1":"140","38.2":"140","38.3":"140","38.4":"140","38.5":"140","38.6":"140","38.7":"140","38.8":"140","39.0":"142","39.1":"142","39.2":"142","39.3":"142","39.4":"142","39.5":"142","39.6":"142","39.7":"142","39.8":"142","40.0":"144","40.1":"144","40.2":"144","40.3":"144","40.4":"144","40.5":"144","40.6":"144","40.7":"144","40.8":"144","40.9":"144","40.10":"144","41.0":"146","41.1":"146","41.2":"146","41.3":"146","41.4":"146","41.5":"146","41.6":"146","41.7":"146","42.0":"148","42.1":"148","42.2":"148","42.3":"148","42.4":"148","43.0":"150"}
|
||||
Loading…
Add table
Add a link
Reference in a new issue