forked from chaiNNer-org/chaiNNer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.5.2 -- Bug fixes, new Preview Image node, etc minor features (chai…
…NNer-org#50) * Fix cuda issue in ONNX convert * Add relative paths to image iteration (theflyingzamboni) (chaiNNer-org#46) * Added Image Directory output to Load image * Add relative pathing to Iterator Load Image and Save Image * Lock DirectoryInput when connected * Fixed validation bug * Fixed minor relative path bug of no consequence * Removed unused import * Added 0.5.2 migration * Updated dependency requirements and incremented version * Split settings into its own context Fix snapToGrid import * Use env vars to kill upscaling during tiling * Potential fix for checking if image file exists * Change where extra data processing goes * Automatic param/bin file detection on change * Fix for consistent ncnn gpu index (will make it selectable in future) * Fix position problem, update some packages, fix iterator file types * eslint updates * Linting changes * Fix eslint cli not reading subdirs * Fix prop sorting * Attempt to fix iterator dropping on an edge * disable auto-split killing as it crashes backend * V0.5.2 dev (chaiNNer-org#48) * Fixed supported extensions bug * Reverted imread output to list to fix bug * Fixed image support fix * Fixed Typing bug preventing nodes from importing (chaiNNer-org#49) * Better nvidia-smi check * Fix casing issue and filetype double dot issue * Just check linting on pre-commit rather than fixing * Downgrade react-flow-renderer due to zIndex issue * Add new image preview external node and maybe fix load image file exists check for real * Fix iterator progress updates * Fix new image preview on linux, remove old image preview on linux * Replace original image show with new one Co-authored-by: theflyingzamboni <[email protected]>
- Loading branch information
1 parent
f7c04bb
commit 2ba760b
Showing
69 changed files
with
2,012 additions
and
1,136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
module.exports = { | ||
extends: [ | ||
'airbnb', | ||
'plugin:react/jsx-runtime', | ||
], | ||
globals: { | ||
MAIN_WINDOW_WEBPACK_ENTRY: true, | ||
SPLASH_SCREEN_WEBPACK_ENTRY: true, | ||
}, | ||
env: { | ||
browser: true, | ||
node: true, | ||
}, | ||
parserOptions: { | ||
ecmaVersion: 2020, | ||
}, | ||
rules: { | ||
'react/jsx-sort-props': ['error', { | ||
callbacksLast: true, | ||
shorthandFirst: true, | ||
}], | ||
'react/jsx-max-props-per-line': ['error', { maximum: 1, when: 'always' }], | ||
'import/extensions': 'off', | ||
'react/prop-types': 'off', | ||
}, | ||
settings: { | ||
'import/core-modules': ['electron'], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.