Compare commits

..

No commits in common. "140b299631da2b7595a918531e4b0757bfb0b5f8" and "c9768c0ced1b7f664ad33318019216ca1391d4fe" have entirely different histories.

5 changed files with 6 additions and 11 deletions

View File

@ -1,7 +0,0 @@
root = true
[**]
indent_style = tab
tab_width = 4
charset = utf-8
end_of_line = lf

View File

@ -1,4 +1,4 @@
Copyright (c) 2016-2023, Alex A. Naanou Copyright (c) 2016-2019, Alex A. Naanou
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without

View File

@ -381,7 +381,7 @@ XXX
[BSD 3-Clause License](./LICENSE) [BSD 3-Clause License](./LICENSE)
Copyright (c) 2016-2023, Alex A. Naanou, Copyright (c) 2018+, Alex A. Naanou,
All rights reserved. All rights reserved.

View File

@ -1115,6 +1115,7 @@ object.Constructor('FeatureSet', {
gvGraph: function(lst, dep){ gvGraph: function(lst, dep){
lst = lst || this.features lst = lst || this.features
dep = dep || this dep = dep || this
var graph = '' var graph = ''
graph += 'digraph ImageGrid {\n' graph += 'digraph ImageGrid {\n'
lst lst
@ -1127,6 +1128,7 @@ object.Constructor('FeatureSet', {
graph += `\t"${f}" -> "${d}";\n` }) graph += `\t"${f}" -> "${d}";\n` })
: (graph += `\t"${f}";\n`) }) : (graph += `\t"${f}";\n`) })
graph += '}' graph += '}'
return graph }, return graph },
}) })

View File

@ -23,7 +23,7 @@
}, },
"homepage": "https://github.com/flynx/features.js#readme", "homepage": "https://github.com/flynx/features.js#readme",
"dependencies": { "dependencies": {
"ig-actions": "*", "ig-actions": "^3.24.29",
"ig-object": "*" "ig-object": "^5.4.16"
} }
} }