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 .
  1. 15 Mar, 2024 12 commits
  2. 14 Mar, 2024 19 commits
  3. 13 Mar, 2024 9 commits
    • Denis Mukhametianov's avatar
      [spellchecker] fix RIDER-106853 · 58555ef1
      Denis Mukhametianov authored
      (cherry picked from commit 16f5a49227de384193be807d3b9459e4b2babc11)
      
      IJ-CR-128752
      
      GitOrigin-RevId: 276cd3767a7b7b89bf0388daa1110782ec4ab608
      58555ef1
    • Elena Shaverdova's avatar
      IJPL-603 Add file_id to "daemon" collector · 98ea33f2
      Elena Shaverdova authored
      (cherry picked from commit 3dcf428ac631435614dfeabc8c3e80e7ec4ce29c)
      
      IJ-CR-128650
      
      GitOrigin-RevId: edc47e3408dcd6679da24fc9d3b6d96e86e688ee
      98ea33f2
    • Nikita.Skvortsov's avatar
      [es] unwrap exception when checking the cause for retry attempt IDEA-339260 · 92f7faa6
      Nikita.Skvortsov authored
      ConnectException exists in java.net and in Gradle API. The method originally caught the Gradle's one, worked for Gradle. When abstracted to support Maven, it was switched to java.net.ConnectException, that worked for Maven, but failed for Gradle.
      Inspecting the root cause will make it build tool agnostic.
      
      (cherry picked from commit efc07dc7a69f258ace7cf1339a39fe1fccd36bf0)
      
      IJ-CR-128688
      
      GitOrigin-RevId: 7bad4907aec6e42ebe4d1742b30542eccc2abf82
      92f7faa6
    • Louis Vignier's avatar
      [fus] Update event names in JdkComboBoxCollector · 13a517b1
      Louis Vignier authored
      IJ-CR-126919
      
      (cherry picked from commit 84c41de2aef102a125a3fe7df12d88566292a97b)
      
      IJ-CR-126919
      
      GitOrigin-RevId: 6090c3d2f504bdb2aa9de4d8552c836fd27906a5
      13a517b1
    • Louis Vignier's avatar
      [fus] Fix findSdkVersion for GraalVM in JdkComboBoxCollector · 5425af00
      Louis Vignier authored
      (cherry picked from commit 85690e8eb9007e4e24ed6c2a37434e12820802cf)
      
      IJ-CR-126919
      
      GitOrigin-RevId: bab2cfde566874fed8d9a09072f7580208abb9e0
      5425af00
    • Louis Vignier's avatar
      [fus] Fix NumberFormatException in JdkComboBoxCollector · ace235ad
      Louis Vignier authored
      (cherry picked from commit f5285f2c3421ab7b568ee614c6672af8b7a8c19f)
      
      IJ-CR-126919
      
      GitOrigin-RevId: 71048cdc14ccb9e265d313d726f8b852064eb69b
      ace235ad
    • Louis Vignier's avatar
      [fus] Add FUS for ProjectWizardJdkComboBox · 0c67517f
      Louis Vignier authored
      (cherry picked from commit 8f53ca0c93d576109b6f47b9dcff585b5babb91b)
      
      IJ-CR-126919
      
      GitOrigin-RevId: 96b950f136943c3369459e687a747490f4cc1899
      0c67517f
    • Evgeniy.Stepanov's avatar
      [rider] Restore missing file index sensitivity flag, fix RIDER-104513 · fce17fc0
      Evgeniy.Stepanov authored
      GitOrigin-RevId: 23469f8019109055d6ca452769c7023e1986f883
      fce17fc0
    • Sergei Tachenov's avatar
      IDEA-347891 Don't call setBorder from getPreferredSize · 32d893e4
      Sergei Tachenov authored
      This is an anti-pattern and can cause infinite repaint loops
      (like this issue) and other problems.
      
      The perfect fix would be to just update the preferred size
      once when the state changes and cache it somewhere,
      but unfortunately the size depends on the state outside
      the component, for example, the number of tabs in
      the tool window. It's impossible to reliably track updates
      to the whole state from within the component.
      
      So instead of a proper fix, let's work around the issue
      by not calling setBorder, but instead setting up a border
      with mutable insets once and then just updating those
      insets. This way, we at least don't have any hidden repaint()
      calls in getPreferredSize().
      
      (cherry picked from commit fd31eba44f2c90de503f3b22210d007af09c7319)
      
      IJ-CR-128482
      
      GitOrigin-RevId: 5b38a62b6c3bf18f366ee97bb0c77e7ee00c0221
      32d893e4