This project is mirrored from https://gitee.com/mirrors/intellij-community.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Last successful update .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Last successful update .
- 15 Mar, 2021 17 commits
-
-
Mikhail Sokolov authored
(cherry picked from commit 24677c30fd07e75138130560df4a40751d3c789c) IJ-CR-7002 GitOrigin-RevId: b09646b178ee91e8e9fda37578c28012a00b2d3f
-
Mikhail Sokolov authored
(cherry picked from commit 65eae0fd133ff1b8af9a8c269897b613b26757e8) IJ-CR-7002 GitOrigin-RevId: 64f51dafb95bc2d471cf0a3bc1e7245d579e5057
-
Mikhail Sokolov authored
(cherry picked from commit 67c7cab32b8297ff36f2e668a275ba789d80b54c) IJ-CR-7002 GitOrigin-RevId: d182747a7b3e2ba467fc5aafa6b6b19a17f73714
-
Vassiliy.Kudryashov authored
IDEA-264313 Find in Files: dots in empty text (cherry picked from commit 1a5b35e821d3f176a108325d2c1de737b75a78fa) IJ-CR-7066 GitOrigin-RevId: f792b63c22717824ec8a63fe2c7effc43b075e10
-
Alexey Kalina authored
(cherry picked from commit fcc182c33e87ca2f25467060c5f9b170e5ea633e) IJ-CR-6853 GitOrigin-RevId: 84ee9c7aa6f115dca8b02ef447bebf2d14dc3cdc
-
Vassiliy.Kudryashov authored
(cherry picked from commit 2c8d53397ba6e773c7d8c09e21850b23ca288072) IJ-CR-6966 GitOrigin-RevId: cf5642c8d19f88d9a9125b7ea4c487f22a0179af
-
Konstantin Bulenkov authored
(cherry picked from commit adb23456d201fe63ab9d02441202479710f84c25) IJ-CR-6162 GitOrigin-RevId: 7d5ea44fc00a4dca9927e867d0165f485fb924cc
-
Konstantin Bulenkov authored
(cherry picked from commit 2bcbd3fbeb9acf8807c0f13f101bcfd1ff779e4f) IJ-CR-6162 GitOrigin-RevId: 62a08a44bc3dae61099cef190847332f35dced20
-
Mikhail Golubev authored
(cherry picked from commit 92f5f4d86330756076a2f1a76d5b0ea4b9d83754) IJ-CR-6457 GitOrigin-RevId: b84dc0ccd0baa0680ae4bc7d2e486263cc452eb8
-
Michael Golubev authored
- refactoring: introduce common interface for upload/download volumes (cherry picked from commit dd1710114afc4fd17965ad98ba171c5c7d42a2e0) IDEA-CR-70919 GitOrigin-RevId: d0cef1d41908746e0030cfd6bb8b9b9c2c4436d3
-
Liudmila Kornilova authored
(cherry picked from commit 5fdfa8d3172605b15adea16e24ea481789d6cef6) IJ-CR-6418 (cherry picked from commit 311fe4d7d3ce72060f933b82e89258293d104e6d) GitOrigin-RevId: 5babf5c14e272437271f99bc5dc0ab0efde0e237
-
Vladislav.Soroka authored
(cherry picked from commit 40f60c9056eee60167c0cd88f2bcce0c85e61f62) IJ-CR-7010 GitOrigin-RevId: 28a1481f21b071570a6fe96a7e24a84e860f5425
-
Yuriy Artamonov authored
(cherry picked from commit f2727b1184e6ca1bdfc7fde090c8301e571ecf4f) IDEA-CR-70869 GitOrigin-RevId: 1c05ae7a4dec57f8d9a3d980b2aec5b6aa04c5b3
-
Andrey Lisin authored
(cherry picked from commit e11f500e1172a810723d7b7e276de6834fd77b4a) IDEA-CR-70896 GitOrigin-RevId: 13044b24e5cb3d7d28199d891d7a95588ac07870
-
Anton Tarasov authored
(cherry picked from commit 0fca300a9e592395e8e40baeb514b3c89fefa366) GitOrigin-RevId: d95d91b306e5e2243ce0ca6edb4d5f102fee96d2
-
Tagir Valeev authored
(cherry picked from commit 1661c82421ea73a3a18c349330889c309769e053) IJ-CR-6844 GitOrigin-RevId: cbb0eb5d697b35b6f159927bb20f1f13825249ad
-
andrey.matveev authored
(cherry picked from commit 84c75591aecddb195d847c21410adbc565a596ee) IJ-MR-5145 GitOrigin-RevId: fdf6d28f8ef4711112766f19152a03febc921dba
-
- 14 Mar, 2021 3 commits
-
-
Julia Beliaeva authored
EA-257914 (cherry picked from commit 9e8cb8e806fb3e0739e1f5c6f2da46ccb519404e) GitOrigin-RevId: 8d4a66535774d8a6c0bae7c8e21879ffb92d1957
-
Julia Beliaeva authored
When "View Mode" for toolwindow is set to "Float" or "Window", notification balloons should be displayed in that separate window (when it is visible) and not in the main IDE window. IDEA-119575 (cherry picked from commit e926c9ff1f39c38ca8bd8117589d25318421dc90) GitOrigin-RevId: a4aabf1e97313181e729f9d419d9ffe3295fcfed
-
Julia Beliaeva authored
This commit continues solving the problem with not detected renames (for example, in non-trivial merge commits, as described in d6643e6b9c90812cdbea7733d8a87ecc07cc6f1c). After refiner algorithm passes such commit, it marks a big part of the graph incorrectly as deleted, which leads to missing commits in file history. Commit d6643e6b9c90812cdbea7733d8a87ecc07cc6f1c partially solves the problem by changing order of processing commit parents. But it does not help in all cases, for example if the offending commit is not a merge. This commit postpones walking into the nodes where file was deleted until other commits are processed. Because of this, we are guaranteed to process the subgraph where file exists first (and thus find all of the detected renames there). After this change, ordering of commit parents implemented in d6643e6b9c90812cdbea7733d8a87ecc07cc6f1c is no longer required, but it seems like a good idea to leave it in place. IDEA-245949 (cherry picked from commit 1f0da83920c8b112e311eff2856158caa8fd9039) GitOrigin-RevId: e961640ab53ddaac9675b7518d7b022022fa445e
-
- 13 Mar, 2021 4 commits
-
-
Kirill.Skrygan authored
(cherry picked from commit 2a4b9cd2f6a14627b0b9963d14e7d0c4d78e08bd) IJ-CR-7040 GitOrigin-RevId: bdb5dcd163269aac1a5dec75817eef2c0d9f1816
-
Anna Kozlova authored
(cherry picked from commit 897a7d48c287d3fe99ecaaddbe44e8df1e671a54) IJ-CR-7015 GitOrigin-RevId: 37eb1385ac2201ac2a4285bbe7688c2eb9e80824
-
Piotr Tomiak authored
(cherry picked from commit c715dfcb07568f89379e4617b6e5dce74236407e) IJ-CR-6876 GitOrigin-RevId: d977865383a441b417f16717102db3cc5bb90d68
-
Anna Marchenko authored
(cherry picked from commit eca9fd9f51bee613ec2adc943919805291c2f303) IJ-CR-7029 GitOrigin-RevId: a7205784dd342b26fd01f294777234120b9f2828
-
- 12 Mar, 2021 16 commits
-
-
Sergey Malenkov authored
(cherry picked from commit fa5a232e86f2ffd144be0e3e45ab930e9ddfc549) IJ-CR-6968 GitOrigin-RevId: 904c09c98cc2d95b454c4dc34c01a87f5103ae77
-
Sergey Malenkov authored
(cherry picked from commit fc0d53e3872f9cbba7cc36e9c57c89cbc69a8455) IJ-CR-6968 GitOrigin-RevId: 28377c4bba92f307a840980b6d0af8c8b5b14050
-
Sergey Malenkov authored
(cherry picked from commit 55902192efe07601f851bfbce4054c901e1c5b9c) IJ-CR-6967 GitOrigin-RevId: 6d864066619647b551e97e3ec4b13e9158e0f4ac
-
Sergey Malenkov authored
(cherry picked from commit 3410a3af8719c858ccf09a69c7cc409e1f6fb918) IJ-CR-6927 GitOrigin-RevId: a3906421bd34b6aaae72ab38c9155d5f8ca7f774
-
Sergey Malenkov authored
(cherry picked from commit 726d213414dd772d764accc3a8771c7503669409) IJ-CR-6926 GitOrigin-RevId: 9d0a8f9cab26acb972c215eac33e67dafce19801
-
Sergey Malenkov authored
(cherry picked from commit 25025c176be599e95c5e0c97550d0f3c048412e8) IJ-CR-6926 GitOrigin-RevId: aabdf3ca7dcbd2d3eafd3fefb81b8294c1940131
-
Nadya Zabrodina authored
(cherry picked from commit 318b5699d97cf913f38802d2ee2aa3a1366bf88c) IJ-CR-6805 GitOrigin-RevId: 2ba90855e96836f00f6d06057ab35aff9f0184f7
-
Nadya Zabrodina authored
(cherry picked from commit 93533eb1ccaf395ffad37477c3469748aaf0f9c6) IJ-CR-6805 GitOrigin-RevId: d724c00f0744ef670a74cefdfb4f1f2e04e4cc6d
-
Nadya Zabrodina authored
(cherry picked from commit 839897784147729ae517ea80193f75a285503879) IJ-CR-6805 GitOrigin-RevId: b03d9d77f6bd0d4b1ff00d393824c60eba75f24d
-
Anton Tarasov authored
(cherry picked from commit 8c0077a1a44351af9ec38683d1c22ee1059346a2) GitOrigin-RevId: 0635629a64278cdd24213b358a96b63bafe20f15
-
Alexey Merkulov authored
(cherry picked from commit af020c44d3bc3ed333612727389d75eae2249dff) IJ-CR-6996 GitOrigin-RevId: c781b2a1e033c121fa8031b350e8f1cf48057dba
-
Alexey Merkulov authored
(cherry picked from commit 743686bf1ee4d326ef2c95c59b1ec615a4ae6e6a) IJ-CR-6996 GitOrigin-RevId: eb17d08ffb16bbff0d02c6f69076d2b1185cf85b
-
Anton Tarasov authored
IDEA-264004 (JBR-3171) [followup] JCEF JBCefOsrHandlerBrowser failed to invoke JS when global registry value ide.browser.jcef.jsQueryPoolSize is not set. (cherry picked from commit 8ad4e544fc756018459fec3994a8b99f0c31945a) GitOrigin-RevId: f7267bceed44cdf6517087abd433fc96db20fcde
-
Anton Tarasov authored
JBR-3171 JCEF JBCefOsrHandlerBrowser failed to invoke JS when global registry value ide.browser.jcef.jsQueryPoolSize is not set. (cherry picked from commit 855544ae9b8ed15b071e49a11e0979cb759cd226) GitOrigin-RevId: ac1c7a95e0a274fc456235e90e40f1732097786b
-
Anton Tarasov authored
Keep the property as String type for more flexibility. (cherry picked from commit b0aabe4c2307502aa5d64e329c05ca970c628862) GitOrigin-RevId: 0425efc360fe568b54c3aa5552c72eb971baac7f
-
Anton Tarasov authored
(cherry picked from commit d76d8549dc140f24d769d6e56c984f60f9427d4c) GitOrigin-RevId: 4b378e3cbc5063d4efa8344e03dc0f18d3e12146
-