Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-01-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-07-05Mark images as binary on initDenys Mishunov
2019-06-07IDE trigger files change eventPaul Slaughter
- On CMD+S when editor is focused - On editor blur - When file is created in tree - When file is removed in tree - When file is renamed in tree
2019-06-04Comply with `no-implicit-coercion` rule (CE)Nathan Friend
This commit is the result of running `yarn eslint --fix` after enabling the `no-implicit-coercion` ESLint rule. This rule has been added to our ESLint config here: https://gitlab.com/gitlab-org/gitlab-eslint-config/merge_requests/14
2019-04-18Stores 'binary' and 'rawPath' attr after uploadDenys Mishunov
- When uploading a file, we need to flag binary files correspondingly so that it gets propagated all the way to RepoEditor as it decides on whether to show editor for this or that file or not (shouldHideEditor()) - rawPath needs to be propagate all the way to ContentViewer as well so that uploaded images could be rendered as a base64 image right away instead of raw base64 string
2019-04-03Merge branch 'feature/webide_escaping' of gitlab.com:hiddentiger/gitlab-ce ↵Kieran Andrews
into feature/webide_escaping
2019-03-07Improve files_decorator performancePaul Slaughter
**How?** Previously the files_decorator inserted parent folders inefficiently. It started at the first part and ensured each was inserted. Since the file entries are given to use in alphabetical order, we can start at the last part of the blob's parents. If this exists, we can short circuit and be done inserting parents. **What else?** - Improve performance of decorateData. The object spread operator is not needed because the object is brand new.
2019-01-25Upgrade webpack and monaco-editor to latestMike Greiling
2018-10-10Prettify ide modulesMike Greiling
2018-07-26Enable deleting files in the Web IDEPhil Hughes
2018-07-06Updated colorPhil Hughes
2018-07-06Updated (color of indent guide in Web IDEPhil Hughes
Closes #48931
2018-06-25Enable "prefer-destructuring" in JS filesgfyoung
Partially addresses #47006.
2018-06-15Merge branch 'fix-web-ide-disable-markdown-autocomplete' into 'master'Phil Hughes
Resolve "Web IDE autocomplete should be disabled in markdown files" Closes #47796 See merge request gitlab-org/gitlab-ce!19760
2018-06-15Fix #47796 "Web IDE autocomplete should be disabled in markdown files"Isaac Smith
2018-06-15Enable no-restricted-globals in JS filesgfyoung
2018-06-08fix eslint violationMike Greiling
2018-06-08refactor monaco-editor import and stop storing as class property within modelMike Greiling
2018-06-08refactor monaco-editor import and stop storing as class property within editorMike Greiling
2018-06-08remove need to pass monaco around through DIMike Greiling
2018-06-08remove monacoLoader and import monaco directly within Editor classMike Greiling
2018-06-08fix bug in call to monaco.Uri. first param is checked with `typeof param ↵Mike Greiling
=== 'object'` which is true for `null` due to a JS quirk
2018-05-29fix `no-unused-vars`Lukas Eipert
2018-05-09Fixed empty editors in the IDEPhil Hughes
Closes #46153
2018-05-01hide edit/preview tabs in review & commit modePhil Hughes
only make diff mode editable in review mode
2018-04-26Merge branch 'ide-workbench-bar' into ide-activity-bar-review-modePhil Hughes
2018-04-23Added review mode to new IDE sidebarPhil Hughes
#44846
2018-04-23Merge branch 'master' into ide-file-finderPhil Hughes
2018-04-19Merge branch 'master' into ide-file-finderPhil Hughes
2018-04-19Merge branch 'ide-diff-marker-cache-fix' into 'master'Tim Zallmann
Fixed IDE diff markers being cached too long See merge request gitlab-org/gitlab-ce!18311
2018-04-16moved CSS into SCSS filePhil Hughes
added ellipsis to path but not name
2018-04-16added keymap to editor to open file finderPhil Hughes
clear file finder on close esc closes the file finder
2018-04-11Fixed IDE diff markers being cached too longPhil Hughes
2018-04-07Merge branch 'master' into ide-staged-changesPhil Hughes
2018-04-07added ability to have `head` file to compare againstPhil Hughes
fixed files getting into an opened & active state when it shouldnt
2018-04-05fixed staged content not updatingPhil Hughes
2018-04-05fixed eslintPhil Hughes
2018-04-05update staged files to correctly use pending tabPhil Hughes
2018-04-05Merge branch 'master' into ide-staged-changesPhil Hughes
2018-04-05set `renderSideBySide` when creating diff instancePhil Hughes
2018-04-05updated wordWrap option be `on`Phil Hughes
2018-04-05Change IDE diff view responsivelyPhil Hughes
Closes #44305
2018-04-03Merge branch 'master' into ide-staged-changesPhil Hughes
2018-04-03Merge branch 'master' into ide-pending-tabPhil Hughes
2018-03-29Merge branch 'master' into ide-staged-changesPhil Hughes
2018-03-28removed file changes that have no changes to make diff easierPhil Hughes
simplified SET_FILE_ACTIVE openFiles map use .find in router so that it returns early instead of looping all the values
2018-03-28remove pending tab when opening a file from the left sidebarPhil Hughes