jekyll-graph 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 56a0cf412d49fe1abbc5280977f3bc732f7ff42836abddb64a948e26d4f5dc89
4
- data.tar.gz: 29914337ea3a859ea54a5585e10944cb3334d48c7d9a021902e2ab8f87130f64
3
+ metadata.gz: 7f64a2319cdd80cdb634a4afb7ca8d3acd865256e433b605ec1b12ad8ea3bd90
4
+ data.tar.gz: d4c26ae5b3275d7895efd9c86b51217d049b91e9a5e5979e17098c89325bd3d7
5
5
  SHA512:
6
- metadata.gz: 58d70f942b2024ba62c52c7fcd1a88162f36e342e02268ba198852f6dd09b08f7768edb2a7504abecb0495ae4d8f0d1071dc40320868bd95c06bc94330e82364
7
- data.tar.gz: 66f5daee147641ad9ac8c1c71c8baffe90a6d3400d6e52f42e725cf886444775e38272dbb7907be3df2e892e835e9230ebe4690774a3cc2decdd71f899652152
6
+ metadata.gz: 6e1bd089641de720a3eeb8c94d584ea4dc8c860a7b40e9fb450b3c3f3b908a9c2306b10aabe54d759a5bf2ab17c2f557bc2694a1e4c73f754b9ff77c381c1bad
7
+ data.tar.gz: a8b70f66a8f12b02b6cdffbd34b168b3fcc1db401f702af58a44c3f492a51501df0d469ab490fb52873367d35569ab3314b5af362de5d2b6aa8d4d140898c192
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [0.0.4] 2021-11-22
2
+ ### Fix
3
+ - Custom path config related fix in scripts.
4
+
1
5
  ## [0.0.3] 2021-11-22
2
6
  ### Change
3
7
  - Fix javascript inheritance.
@@ -8,7 +8,7 @@ export default class JekyllGraph {
8
8
 
9
9
  // d3
10
10
  drawNetWeb () {
11
- let assetsPath = '{{ site.graph.assets_path }}' !== '' ? '{{ site.graph.assets_path }}' : '/assets';
11
+ let assetsPath = '{{ site.graph.path.assets }}' !== '' ? '{{ site.graph.path.assets }}' : '/assets';
12
12
  fetch(`{{ site.baseurl }}${assetsPath}/graph-net-web.json`).then(res => res.json()).then(data => {
13
13
 
14
14
  // neighbors: replace ids with full object
@@ -110,7 +110,7 @@ export default class JekyllGraph {
110
110
  }
111
111
 
112
112
  drawTree () {
113
- let assetsPath = '{{ site.graph.assets_path }}' !== '' ? '{{ site.graph.assets_path }}' : '/assets';
113
+ let assetsPath = '{{ site.graph.path.assets }}' !== '' ? '{{ site.graph.path.assets }}' : '/assets';
114
114
  fetch(`{{ site.baseurl }}${assetsPath}/graph-tree.json`).then(res => res.json()).then(data => {
115
115
 
116
116
  if (this.graph) {
@@ -3,7 +3,7 @@
3
3
  module Jekyll
4
4
  module Graph
5
5
 
6
- VERSION = "0.0.3"
6
+ VERSION = "0.0.4"
7
7
 
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-graph
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - manunamz