Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Threading and Modules #173

Merged
merged 21 commits into from
Sep 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
ff78c72
Configured webpack-dev-server
n1474335 Jul 3, 2017
760ab68
Create ChefWorker and move bake process into it
n1474335 Jul 4, 2017
cc3aad1
OperationConfig now loaded into App via value-loader so that operatio…
n1474335 Jul 16, 2017
78d0369
Added loader for long bakes and improved initial loading sequence
n1474335 Jul 28, 2017
98884d8
Added staleness indicator to the output
n1474335 Jul 28, 2017
f1ebab0
Added the ability to cancel bakes
n1474335 Jul 28, 2017
e977a10
Merge branch 'master' into feature-threading
n1474335 Jul 28, 2017
6742bef
Separated out Diff and Windows Filetime operations into their own nam…
n1474335 Jul 30, 2017
9f19afc
Removed auto-bake threshold as long bakes can now be cancelled manually
n1474335 Jul 30, 2017
a61cf6a
Added module framework
n1474335 Aug 9, 2017
a4aee76
Added module and threading support for the inline version.
n1474335 Aug 24, 2017
6af8268
Fixed tests and Node version to work with modules
n1474335 Aug 24, 2017
d68523a
Added status message mechanism for the Worker to report to the app
n1474335 Aug 25, 2017
cb6708c
XOR Brute Force operation now has a variable key length
n1474335 Aug 30, 2017
c93edec
Switched to val-loader and compiling MetaConfig
n1474335 Sep 17, 2017
d3246b7
Merged upstream master
n1474335 Sep 17, 2017
77203a4
Excluded MetaConfig from JSDoc
n1474335 Sep 17, 2017
8c960f0
Moved worker handling code from App.js to WorkerWaiter.js
n1474335 Sep 17, 2017
13f07ab
Highlighting now works with the web worker
n1474335 Sep 19, 2017
f6b52b7
Operations can now set options from within the worker
n1474335 Sep 19, 2017
9028761
Loading message fade and cancelBake bugfix
n1474335 Sep 19, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
src/core/lib/**
src/core/config/MetaConfig.js
5 changes: 4 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@

"COMPILE_TIME": false,
"COMPILE_MSG": false,
"PKG_VERSION": false
"PKG_VERSION": false,
"ENVIRONMENT_IS_WORKER": false,
"ENVIRONMENT_IS_NODE": false,
"ENVIRONMENT_IS_WEB": false
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ docs/*
!docs/*.conf.json
!docs/*.ico
.vscode
src/core/config/MetaConfig.js
Loading