Skip to content

Commit

Permalink
update submodule references, ready to release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hackape committed Nov 28, 2016
1 parent 7ac1967 commit f952316
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend
2 changes: 1 addition & 1 deletion frontend
Submodule frontend updated 91 files
+13 −0 .editorconfig
+2 −0 .eslintignore
+31 −0 .eslintrc
+1 −0 .gitignore
+49 −1 app/api/gitAPI.js
+46 −8 app/commands/commandBindings/git.js
+4 −0 app/commands/commandBindings/misc.js
+1 −1 app/commands/keymaps.js
+2 −2 app/commands/lib/keycodes.js
+5 −5 app/components/AceEditor/actions.js
+9 −3 app/components/AceEditor/index.jsx
+1 −1 app/components/DragAndDrop/actions.js
+37 −10 app/components/DragAndDrop/index.jsx
+9 −0 app/components/EditorWrapper/actions.js
+77 −0 app/components/EditorWrapper/index.jsx
+22 −0 app/components/EditorWrapper/reducer.js
+58 −44 app/components/FileTree/index.jsx
+87 −0 app/components/Git/GitBranchWidget.jsx
+37 −0 app/components/Git/GitCommitView.jsx
+51 −0 app/components/Git/GitCommitViewFlat.jsx
+225 −0 app/components/Git/GitFileTree.jsx
+935 −0 app/components/Git/ace-merge.js
+237 −17 app/components/Git/actions.js
+2 −116 app/components/Git/index.jsx
+51 −0 app/components/Git/modals/commitDiff.jsx
+53 −0 app/components/Git/modals/merge.jsx
+157 −0 app/components/Git/modals/mergeFile.jsx
+64 −0 app/components/Git/modals/newBranch.jsx
+65 −0 app/components/Git/modals/rebaseInput.jsx
+287 −0 app/components/Git/modals/rebasePrepare.jsx
+230 −0 app/components/Git/modals/rebaseStart.jsx
+1 −2 app/components/Git/modals/reset.jsx
+56 −0 app/components/Git/modals/resolveConflicts.jsx
+75 −0 app/components/Git/modals/tag.jsx
+173 −25 app/components/Git/reducer.js
+26 −0 app/components/MarkdownEditor/actions.js
+148 −0 app/components/MarkdownEditor/index.jsx
+40 −0 app/components/MarkdownEditor/reducer.js
+28 −4 app/components/Menu/index.jsx
+17 −3 app/components/MenuBar/index.jsx
+53 −1 app/components/MenuBar/menuBarItems.js
+11 −3 app/components/Modal/actions.js
+63 −21 app/components/Modal/index.jsx
+1 −1 app/components/Modal/modals/Prompt.jsx
+10 −0 app/components/Modal/modals/index.js
+34 −62 app/components/Modal/reducer.js
+23 −10 app/components/Pane/PaneAxis.jsx
+3 −2 app/components/Pane/actions.js
+2 −2 app/components/Pane/index.js
+13 −8 app/components/Pane/reducer.js
+2 −2 app/components/Panel/index.jsx
+30 −0 app/components/PictureEditor/index.jsx
+152 −0 app/components/ResizeBar.jsx
+24 −0 app/components/Setting/actions.js
+168 −0 app/components/Setting/index.jsx
+121 −0 app/components/Setting/reducer.js
+11 −6 app/components/Tab/actions.js
+52 −32 app/components/Tab/index.jsx
+29 −2 app/components/Tab/reducer.js
+42 −0 app/components/ThemeProvider.js
+1 −0 app/components/Workspace/actions.js
+54 −10 app/components/Workspace/index.jsx
+3 −3 app/containers/Panels.jsx
+0 −29 app/containers/Root.jsx
+6 −0 app/containers/Root/actions.js
+40 −0 app/containers/Root/index.jsx
+18 −0 app/containers/Root/reducer.js
+4 −0 app/i18n/en_US.js
+2 −0 app/i18n/index.js
+4 −0 app/i18n/zh_CN.js
+1 −1 app/index.js
+0 −1 app/states/index.js
+33 −3 app/store.js
+40 −6 app/styles/components/FileTree.styl
+13 −4 app/styles/components/Git.styl
+276 −0 app/styles/components/GitMerge.styl
+57 −0 app/styles/components/Settings.styl
+34 −7 app/styles/components/Tab.styl
+4 −0 app/styles/components/Workspace.styl
+5 −1 app/styles/components/index.styl
+1 −1 app/styles/main.styl
+8 −0 app/styles/mixins.styl
+1 −1 app/styles/themes/dark/styles/tabs.styl
+1 −1 app/styles/themes/light/styles/tabs.styl
+2 −1 app/styles/variables.styl
+33 −0 app/utils/createI18n.js
+1 −0 app/utils/index.js
+9 −3 app/utils/request.js
+12 −1 package.json
+16 −1 webpack_configs/devServer.config.js
+846 −355 yarn.lock

0 comments on commit f952316

Please sign in to comment.