1. 20 1月, 2023 3 次提交
  2. 19 1月, 2023 5 次提交
  3. 18 1月, 2023 1 次提交
  4. 17 1月, 2023 7 次提交
  5. 16 1月, 2023 3 次提交
  6. 15 1月, 2023 3 次提交
    • Z
      Prevent panic on looking at api "git" endpoints for empty repos (#22457) (#22458) · f93522dd
      zeripath 提交于
      Backport #22457
      
      The API endpoints for "git" can panic if they are called on an empty
      repo. We can simply allow empty repos for these endpoints without worry
      as they should just work.
      
      Fix #22452
      Signed-off-by: NAndrew Thornton <art27@cantab.net>
      f93522dd
    • Z
      Fixed colour transparency regex matching in project board sorting (#22092) (#22437) · 10c9f96a
      zeripath 提交于
      Backport #22092
      
      As described in the linked issue (#22091), semi-transparent UI elements
      would result in JS errors due to the fact that the CSS `backgroundColor`
      element was being matched by the pattern
      `^rgb\((\d+),\s*(\d+),\s*(\d+)\)$`, which does not take the alpha
      channel into account.
      
      I changed the pattern to `^rgba?\((\d+),\s*(\d+),\s*(\d+).*\)$`. This
      new pattern accepts both `rgb` and `rgba` tuples, and ignores the alpha
      channel (that little `.*` at the end) from the sorting criteria. The
      reason why I chose to ignore alpha is because when it comes to kanban
      colour sorting, only the hue is important; the order of the panels
      should stay the same, even if some of them are transparent.
      
      Alternative solutions were discussed in the bug report and are included
      here for completeness:
      1. Change the regex from ^rgb\((\d+),\s*(\d+),\s*(\d+)\)$ to
      ^rgba?\((\d+),\s*(\d+),\s*(\d+)(,\s*(\d+(\.\d+)?))?\)$ (alpha channel is
      a float or NaN on 5th group) and include the alpha channel in the
      sorting criteria.
      2. Rethink on why you're reading colours out of the CSS in the first
      place, then reformat this sorting procedure.
      
      Fix #22091
      Co-authored-by: NMisterCavespider <deler.urist@tutanota.de>
      10c9f96a
    • J
      Log STDERR of external renderer when it fails (#22442) (#22444) · 7b60d47c
      Jonathan Tran 提交于
      Backport #22442.
      7b60d47c
  7. 14 1月, 2023 7 次提交
  8. 13 1月, 2023 1 次提交
    • Z
      Restore function to "Show more" buttons (#22399) (#22426) · 421d8793
      zeripath 提交于
      Backport #22399
      
      There was a serious regression in #21012 which broke the Show More
      button on the diff page, and the show more button was also broken on the
      file tree too.
      
      This PR fixes this by resetting the pageData.diffFiles as the vue
      watched value and reattachs a function to the show more button outside
      of the file tree view.
      
      Fix #22380
      Signed-off-by: NAndrew Thornton <art27@cantab.net>
      421d8793
  9. 12 1月, 2023 1 次提交
  10. 11 1月, 2023 1 次提交
  11. 10 1月, 2023 2 次提交
  12. 09 1月, 2023 1 次提交
  13. 05 1月, 2023 1 次提交
  14. 04 1月, 2023 3 次提交
  15. 03 1月, 2023 1 次提交