Skip to content

Commit

Permalink
update submodules for release v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hackape committed May 15, 2017
1 parent dff9d42 commit 3aa5138
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend
Submodule frontend updated 80 files
+2 −2 app/backendAPI/fileAPI.js
+4 −0 app/backendAPI/gitAPI.js
+1 −0 app/backendAPI/websocketClients.js
+31 −17 app/commands/commandBindings/file.js
+1 −1 app/commands/commandBindings/tab.js
+36 −0 app/commons/File/actions.js
+3 −0 app/commons/File/index.js
+142 −0 app/commons/File/state.js
+22 −0 app/commons/File/store.js
+10 −13 app/commons/File/subscribeToFileChange.js
+69 −0 app/commons/Pane/state.js
+0 −86 app/commons/Tab/actions.js
+20 −23 app/commons/Tab/state.js
+71 −0 app/commons/Tree/TreeNode.jsx
+3 −0 app/commons/Tree/index.js
+193 −0 app/commons/Tree/state.js
+35 −0 app/commons/Tree/store.js
+1 −1 app/components/Breadcrumbs/index.jsx
+0 −1 app/components/CodeMirrorEditor/getMode.js
+0 −183 app/components/CodeMirrorEditor/index.jsx
+0 −1 app/components/ContextMenu/ContextMenu.jsx
+20 −0 app/components/ContextMenu/ContextMenuContainer.jsx
+5 −0 app/components/ContextMenu/index.js
+10 −0 app/components/ContextMenu/state.js
+49 −0 app/components/ContextMenu/store.js
+1 −1 app/components/DragAndDrop.jsx
+10 −11 app/components/Editor/EditorWrapper.jsx
+0 −0 app/components/Editor/actions.js
+0 −0 app/components/Editor/components/CodeMirrorEditor/addons.js
+232 −0 app/components/Editor/components/CodeMirrorEditor/index.jsx
+0 −0 app/components/Editor/components/ImageEditor.jsx
+23 −0 app/components/Editor/components/MarkdownEditor/actions.js
+28 −47 app/components/Editor/components/MarkdownEditor/index.jsx
+0 −0 app/components/Editor/components/MarkdownEditor/reducer.js
+10 −0 app/components/Editor/components/MarkdownEditor/state.js
+0 −0 app/components/Editor/components/UnknownEditor.jsx
+0 −0 app/components/Editor/components/WelcomeEditor.js
+2 −0 app/components/Editor/index.jsx
+0 −124 app/components/Editor/reducer.js
+36 −18 app/components/Editor/state.js
+24 −0 app/components/Editor/store.js
+0 −9 app/components/EditorWrapper/actions.js
+0 −21 app/components/EditorWrapper/reducer.js
+23 −35 app/components/FileTree/FileTree.js
+0 −78 app/components/FileTree/FileTreeNode.js
+111 −90 app/components/FileTree/actions.js
+7 −0 app/components/FileTree/contextMenuItems.js
+16 −0 app/components/FileTree/fileTreeToFileBinding.js
+0 −97 app/components/FileTree/reducer.js
+47 −183 app/components/FileTree/state.js
+16 −0 app/components/FileTree/store.js
+2 −2 app/components/Git/GitHistoryView.jsx
+0 −26 app/components/MarkdownEditor/actions.js
+3 −3 app/components/Menu/MenuItem.jsx
+6 −12 app/components/Modal/FilePalette/component.jsx
+1 −2 app/components/Pane/Pane.jsx
+17 −64 app/components/Pane/state.js
+4 −4 app/components/Tab/TabContainer.jsx
+129 −0 app/components/Tab/actions.js
+0 −0 app/components/Tab/index.js
+84 −0 app/components/Tab/state.js
+25 −0 app/components/Tab/store.js
+1 −1 app/components/Terminal/Terminal.jsx
+3 −4 app/components/Terminal/TerminalContainer.jsx
+24 −0 app/components/Terminal/state.js
+1 −1 app/containers/IDE.jsx
+5 −4 app/containers/Utilities.jsx
+3 −1 app/mobxStore.js
+1 −11 app/store.js
+7 −0 app/styles/core-ui/Git.styl
+10 −10 app/utils/actions/createAction.js
+21 −0 app/utils/actions/handleAction.js
+2 −6 app/utils/actions/handleActions.js
+4 −1 app/utils/actions/index.js
+19 −0 app/utils/actions/registerAction.js
+2 −0 app/utils/index.js
+28 −0 app/utils/is.js
+22 −0 app/utils/multiline.js
+10 −6 app/utils/request.js
+1 −1 webpack_configs/webpack.dev.config.js

0 comments on commit 3aa5138

Please sign in to comment.