Added D3.js v3.5.17

This commit is contained in:
nobody42 2020-03-26 08:14:09 +01:00
parent afdc6c1c0f
commit 4077458dcf
No known key found for this signature in database
GPG Key ID: AB5145CF05BFE119
6 changed files with 17 additions and 0 deletions

View File

@ -48,6 +48,9 @@ var files = {
'resources/bootstrap-slider/10.6.2/bootstrap-slider.min.cssm': true,
'resources/bootstrap-slider/10.6.2/bootstrap-slider.min.jsm': true,
// D3.js
'resources/d3/3.5.17/d3.min.jsm': true,
// Dojo
'resources/dojo/1.14.1/dojo/dojo.jsm': true,

View File

@ -72,6 +72,7 @@ var mappings = {
'bootstrap-slider/{version}/css/bootstrap-slider.min.css': resources.bootstrapSliderCSS,
'bootstrap-slider/{version}/css/bootstrap-slider.css': resources.bootstrapSliderCSS,
'bootstrap-slider/{version}/bootstrap-slider.min.js': resources.bootstrapSliderJS,
'd3/{version}/d3.min.js': resources.d3JS,
'dojo/{version}/dojo.': resources.dojo,
'ember.js/{version}/ember.': resources.ember,
'ext-core/{version}/ext-core.': resources.extCore,

View File

@ -69,6 +69,11 @@ var resources = {
'path': 'resources/bootstrap-slider/{version}/bootstrap-slider.min.jsm',
'type': 'application/javascript'
},
// D3.js
'd3JS': {
'path': 'resources/d3/{version}/d3.min.jsm',
'type': 'application/javascript'
},
// Dojo
'dojo': {
'path': 'resources/dojo/{version}/dojo/dojo.jsm',

View File

@ -340,6 +340,8 @@ helpers.setLastVersion = function (type, versionNumber) {
version = '4.4.1';
} else if (type.includes('/bootstrap-slider/10.')) {
version = '10.6.2';
} else if (type.includes('/d3/3.')) {
version = '3.5.17';
} else if (type.includes('/dojo/1.')) {
version = '1.14.1';
} else if (type.includes('/ember.js/1.')) {

View File

@ -32,6 +32,7 @@
<li>Added jQuery Validation Plugin v1.19.1</li>
<li>Added rickshaw v1.6.6</li>
<li>Added jQuery jeditable v1.8.0</li>
<li>Added D3.js v3.5.17</li>
</ul>
<div class="topic-label">
Please update your uBlock/uMatrix rules

File diff suppressed because one or more lines are too long